{ "translations": { "Calendar" : "יומן", "Todos" : "משימות מטלות", "Personal" : "אישי", "{actor} created calendar {calendar}" : "היומן {calendar} נוצר על ידי {actor}", "You created calendar {calendar}" : "מחקת את היומן {calendar}", "{actor} deleted calendar {calendar}" : "היומן {calendar} נמחק על ידי {actor}", "You deleted calendar {calendar}" : "מחקת את היומן {calendar}", "{actor} updated calendar {calendar}" : "היומן {calendar} עודכן על ידי {actor}", "You updated calendar {calendar}" : "עדכנת את היומן {calendar}", "You shared calendar {calendar} as public link" : "שיתפת את היומן {calendar} כקישור ציבורי", "You removed public link for calendar {calendar}" : "הסרת את הקישור הציבורי ליומן {calendar}", "A calendar was modified" : " יומן נערך", "A calendar event was modified" : "אירוע ביומן נערך", "Contact birthdays" : "ימי הולדת של אנשי קשר", "Invitation canceled" : "ההזמנה בוטלה", "Hello %s," : "שלום %s,", "The meeting »%s« with %s was canceled." : "הפגישה „%s” עם %s בוטלה.", "Invitation updated" : "ההזמנה עודכנה", "The meeting »%s« with %s was updated." : "הפגישה „%s” עם %s עודכנה.", "When:" : "מתי:", "Where:" : "איפה:", "Description:" : "תיאור:", "Link:" : "קישור:", "Contacts" : "אנשי קשר", "WebDAV" : "WebDAV", "Technical details" : "פרטים טכניים", "Remote Address: %s" : "כתובת מרוחקת: %s", "Request ID: %s" : "מזהה בקשה: %s", "CalDAV server" : "שרת CalDAV", "Send invitations to attendees" : "שליחת הזמנות למשתתפים", "Please make sure to properly set up the email settings above." : "נא לוודא שהגדרת את הדוא״ל שלהלן כראוי.", "Automatically generate a birthday calendar" : "יצירת יומן ימי הולדת אוטומטית", "Birthday calendars will be generated by a background job." : "יומני ימי הולדת ייווצרו על ידי משימה ברקע.", "Hence they will not be available immediately after enabling but will show up after some time." : "לכן הם לא יהיה זמינים מיד לאחר ההפעלה אלא הם יופיעו לאחר זמן מה." },"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;" }steners'>admin_audit/enh/move-to-event-listeners Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
summaryrefslogtreecommitdiffstats
path: root/lib/filechunking.php
blob: e6d69273a44a6e08e4ad1bcf728c6cea78808ea2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149