@donotdev/core 0.0.13 → 0.0.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/eslint/index.js +1 -1
  2. package/functions/index.d.ts +1083 -3
  3. package/functions/index.js +11 -1
  4. package/i18n/locales/eager/dndev_ar.json +0 -139
  5. package/i18n/locales/eager/dndev_de.json +0 -139
  6. package/i18n/locales/eager/dndev_en.json +5 -139
  7. package/i18n/locales/eager/dndev_es.json +0 -139
  8. package/i18n/locales/eager/dndev_fr.json +0 -139
  9. package/i18n/locales/eager/dndev_it.json +47 -186
  10. package/i18n/locales/eager/dndev_ja.json +0 -139
  11. package/i18n/locales/eager/dndev_ko.json +0 -139
  12. package/i18n/locales/lazy/crud_ar.json +195 -0
  13. package/i18n/locales/lazy/crud_de.json +195 -0
  14. package/i18n/locales/lazy/crud_en.json +412 -0
  15. package/i18n/locales/lazy/crud_es.json +195 -0
  16. package/i18n/locales/lazy/crud_fr.json +195 -0
  17. package/i18n/locales/lazy/crud_it.json +195 -0
  18. package/i18n/locales/lazy/crud_ja.json +195 -0
  19. package/i18n/locales/lazy/crud_ko.json +195 -0
  20. package/i18n/locales/lazy/oauth_ar.json +11 -11
  21. package/i18n/locales/lazy/oauth_de.json +11 -11
  22. package/i18n/locales/lazy/oauth_en.json +11 -11
  23. package/i18n/locales/lazy/oauth_es.json +11 -11
  24. package/i18n/locales/lazy/oauth_fr.json +11 -11
  25. package/i18n/locales/lazy/oauth_it.json +11 -11
  26. package/i18n/locales/lazy/oauth_ja.json +11 -11
  27. package/i18n/locales/lazy/oauth_ko.json +11 -11
  28. package/index.d.ts +6636 -6348
  29. package/index.js +37 -37
  30. package/next/index.d.ts +209 -154
  31. package/next/index.js +20 -20
  32. package/package.json +1 -1
  33. package/server.d.ts +4787 -3940
  34. package/server.js +1 -1
  35. package/vite/index.d.ts +209 -154
  36. package/vite/index.js +2 -2
@@ -208,145 +208,6 @@
208
208
  "changeLanguage": "言語を変更"
209
209
  }
210
210
  },
211
- "fields": {
212
- "array": "配列",
213
- "boolean": "ブール値",
214
- "checkbox": "チェックボックス",
215
- "date": "日付",
216
- "datetime-local": "日時",
217
- "email": "メールアドレス",
218
- "file": "ファイル",
219
- "geopoint": "位置",
220
- "image": "画像",
221
- "map": "マップ",
222
- "multiselect": "複数選択",
223
- "number": "数値",
224
- "password": "パスワード",
225
- "phone": "電話番号",
226
- "radio": "ラジオボタン",
227
- "range": "範囲",
228
- "reference": "参照",
229
- "select": "選択",
230
- "tel": "電話番号",
231
- "text": "テキスト",
232
- "textarea": "テキストエリア",
233
- "timestamp": "タイムスタンプ",
234
- "url": "URL"
235
- },
236
- "text": {
237
- "required": "{{field}}は必須です",
238
- "minLength": "{{field}}は少なくとも{{min}}文字である必要があります",
239
- "maxLength": "{{field}}は{{max}}文字を超えてはいけません",
240
- "email": "有効なメールアドレスを入力してください",
241
- "url": "有効なURLを入力してください",
242
- "matches": "{{field}}はパターン{{pattern}}と一致する必要があります",
243
- "unique": "{{field}}は一意である必要があります",
244
- "alphanumeric": "{{field}}は文字と数字のみを含む必要があります",
245
- "lettersOnly": "{{field}}は文字のみを含む必要があります"
246
- },
247
- "number": {
248
- "required": "{{field}}は必須です",
249
- "min": "{{field}}は少なくとも{{min}}である必要があります",
250
- "max": "{{field}}は{{max}}を超えてはいけません",
251
- "integer": "{{field}}は整数である必要があります",
252
- "positive": "{{field}}は正の数である必要があります",
253
- "negative": "{{field}}は負の数である必要があります",
254
- "between": "{{field}}は{{min}}と{{max}}の間である必要があります",
255
- "precision": "{{field}}は最大{{precision}}桁の小数点を持つ必要があります"
256
- },
257
- "date": {
258
- "required": "{{field}}は必須です",
259
- "min": "{{field}}は{{min}}より後である必要があります",
260
- "max": "{{field}}は{{max}}より前である必要があります",
261
- "between": "{{field}}は{{min}}と{{max}}の間である必要があります",
262
- "format": "有効な日付を入力してください",
263
- "future": "{{field}}は未来である必要があります",
264
- "past": "{{field}}は過去である必要があります",
265
- "today": "{{field}}は今日である必要があります"
266
- },
267
- "select": {
268
- "required": "{{field}}を選択してください",
269
- "invalid": "{{field}}の無効な選択",
270
- "min": "少なくとも{{min}}個のオプションを選択してください",
271
- "max": "{{max}}個を超えるオプションを選択することはできません"
272
- },
273
- "boolean": {
274
- "required": "{{field}}を選択する必要があります"
275
- },
276
- "array": {
277
- "required": "少なくとも1つの{{field}}が必要です",
278
- "minItems": "少なくとも{{min}}個の{{field}}を選択してください",
279
- "maxItems": "{{max}}個を超える{{field}}を選択することはできません",
280
- "uniqueItems": "すべての{{field}}は一意である必要があります"
281
- },
282
- "file": {
283
- "required": "ファイルを選択してください",
284
- "maxSize": "ファイルサイズは{{max}}を超えてはいけません",
285
- "minSize": "ファイルサイズは少なくとも{{min}}である必要があります",
286
- "type": "ファイルタイプは{{types}}である必要があります",
287
- "dimensions": "画像のサイズは{{width}}x{{height}}である必要があります"
288
- },
289
- "image": {
290
- "undo": {
291
- "ariaLabel": "最後の操作を元に戻す",
292
- "title": "元に戻す (Ctrl+Z)"
293
- },
294
- "redo": {
295
- "ariaLabel": "最後の操作をやり直す",
296
- "title": "やり直す (Ctrl+Shift+Z)"
297
- },
298
- "upload": {
299
- "ariaLabel": "{{type}}をアップロード",
300
- "ariaLabelSingle": "画像をアップロード",
301
- "ariaLabelMultiple": "画像をアップロード",
302
- "selectAriaLabel": "アップロードする{{type}}を選択",
303
- "selectAriaLabelSingle": "アップロードする画像を選択",
304
- "selectAriaLabelMultiple": "アップロードする画像を選択",
305
- "dropzone": "ドラッグ&ドロップ、貼り付け、またはクリックして{{type}}をアップロード",
306
- "dropzoneSingle": "ドラッグ&ドロップ、貼り付け、またはクリックして画像をアップロード",
307
- "dropzoneMultiple": "ドラッグ&ドロップ、貼り付け、またはクリックして画像をアップロード",
308
- "maxFiles": "最大{{max}}枚の画像、それぞれ{{size}}MB",
309
- "maxSize": "それぞれ{{size}}MB",
310
- "progress": "アップロード進捗: {{progress}}%",
311
- "pending": "アップロード待機中",
312
- "uploaded": "{{count}}枚の{{type}}をアップロードしました",
313
- "uploadedSingle": "{{count}}枚の画像をアップロードしました",
314
- "uploadedMultiple": "{{count}}枚の画像をアップロードしました",
315
- "failed": "{{fileName}}のアップロードに失敗しました"
316
- },
317
- "delete": {
318
- "ariaLabel": "画像{{index}}を削除",
319
- "title": "削除 (Delete/Backspace)",
320
- "failed": "画像の削除に失敗しました"
321
- },
322
- "reorder": {
323
- "ariaLabel": "ドラッグして並べ替え"
324
- },
325
- "rotate": {
326
- "failed": "画像の回転に失敗しました"
327
- },
328
- "errors": {
329
- "maxFiles": "最大{{max}}枚の画像まで許可されています",
330
- "singleOnly": "画像は1枚のみ許可されています",
331
- "notImage": "{{fileName}}は画像ではありません",
332
- "exceedsSize": "{{fileName}}は{{size}}MBの制限を超えています"
333
- },
334
- "warnings": {
335
- "duplicates": "重複した画像をスキップしました: {{files}}"
336
- },
337
- "alt": {
338
- "upload": "アップロード{{index}}",
339
- "uploaded": "{{label}} {{index}}{{suffix}} (アップロード済み)",
340
- "pending": "{{label}} {{index}}{{suffix}} (アップロード待機中)"
341
- }
342
- },
343
- "custom": {
344
- "passwordMatch": "パスワードは一致する必要があります",
345
- "phoneNumber": "有効な電話番号を入力してください",
346
- "postalCode": "有効な郵便番号を入力してください",
347
- "currency": "有効な金額を入力してください",
348
- "color": "有効なカラーコードを入力してください"
349
- },
350
211
  "footer": {
351
212
  "landing": {
352
213
  "company": {
@@ -208,145 +208,6 @@
208
208
  "changeLanguage": "언어 변경"
209
209
  }
210
210
  },
211
- "fields": {
212
- "array": "배열",
213
- "boolean": "불린",
214
- "checkbox": "체크박스",
215
- "date": "날짜",
216
- "datetime-local": "날짜 및 시간",
217
- "email": "이메일",
218
- "file": "파일",
219
- "geopoint": "위치",
220
- "image": "이미지",
221
- "map": "지도",
222
- "multiselect": "다중 선택",
223
- "number": "숫자",
224
- "password": "비밀번호",
225
- "phone": "전화번호",
226
- "radio": "라디오 버튼",
227
- "range": "범위",
228
- "reference": "참조",
229
- "select": "선택",
230
- "tel": "전화번호",
231
- "text": "텍스트",
232
- "textarea": "텍스트 영역",
233
- "timestamp": "타임스탬프",
234
- "url": "URL"
235
- },
236
- "text": {
237
- "required": "{{field}}은(는) 필수입니다",
238
- "minLength": "{{field}}은(는) 최소 {{min}}자 이상이어야 합니다",
239
- "maxLength": "{{field}}은(는) {{max}}자를 초과할 수 없습니다",
240
- "email": "유효한 이메일 주소를 입력해 주세요",
241
- "url": "유효한 URL을 입력해 주세요",
242
- "matches": "{{field}}은(는) 패턴 {{pattern}}과 일치해야 합니다",
243
- "unique": "{{field}}은(는) 고유해야 합니다",
244
- "alphanumeric": "{{field}}은(는) 문자와 숫자만 포함해야 합니다",
245
- "lettersOnly": "{{field}}은(는) 문자만 포함해야 합니다"
246
- },
247
- "number": {
248
- "required": "{{field}}은(는) 필수입니다",
249
- "min": "{{field}}은(는) 최소 {{min}} 이상이어야 합니다",
250
- "max": "{{field}}은(는) {{max}}을(를) 초과할 수 없습니다",
251
- "integer": "{{field}}은(는) 정수여야 합니다",
252
- "positive": "{{field}}은(는) 양수여야 합니다",
253
- "negative": "{{field}}은(는) 음수여야 합니다",
254
- "between": "{{field}}은(는) {{min}}과 {{max}} 사이여야 합니다",
255
- "precision": "{{field}}은(는) 최대 {{precision}}자리 소수점을 가져야 합니다"
256
- },
257
- "date": {
258
- "required": "{{field}}은(는) 필수입니다",
259
- "min": "{{field}}은(는) {{min}} 이후여야 합니다",
260
- "max": "{{field}}은(는) {{max}} 이전이어야 합니다",
261
- "between": "{{field}}은(는) {{min}}과 {{max}} 사이여야 합니다",
262
- "format": "유효한 날짜를 입력해 주세요",
263
- "future": "{{field}}은(는) 미래여야 합니다",
264
- "past": "{{field}}은(는) 과거여야 합니다",
265
- "today": "{{field}}은(는) 오늘이어야 합니다"
266
- },
267
- "select": {
268
- "required": "{{field}}을(를) 선택해 주세요",
269
- "invalid": "{{field}}에 대한 잘못된 선택입니다",
270
- "min": "최소 {{min}}개의 옵션을 선택해 주세요",
271
- "max": "최대 {{max}}개의 옵션만 선택할 수 있습니다"
272
- },
273
- "boolean": {
274
- "required": "{{field}}을(를) 선택해야 합니다"
275
- },
276
- "array": {
277
- "required": "최소 하나의 {{field}}이(가) 필요합니다",
278
- "minItems": "최소 {{min}}개의 {{field}}을(를) 선택해 주세요",
279
- "maxItems": "{{max}}개 이상의 {{field}}을(를) 선택할 수 없습니다",
280
- "uniqueItems": "모든 {{field}}은(는) 고유해야 합니다"
281
- },
282
- "file": {
283
- "required": "파일을 선택해 주세요",
284
- "maxSize": "파일 크기는 {{max}}을(를) 초과할 수 없습니다",
285
- "minSize": "파일 크기는 최소 {{min}} 이상이어야 합니다",
286
- "type": "파일 유형은 {{types}}이어야 합니다",
287
- "dimensions": "이미지 크기는 {{width}}x{{height}}이어야 합니다"
288
- },
289
- "image": {
290
- "undo": {
291
- "ariaLabel": "마지막 작업 실행 취소",
292
- "title": "실행 취소 (Ctrl+Z)"
293
- },
294
- "redo": {
295
- "ariaLabel": "마지막 작업 다시 실행",
296
- "title": "다시 실행 (Ctrl+Shift+Z)"
297
- },
298
- "upload": {
299
- "ariaLabel": "{{type}} 업로드",
300
- "ariaLabelSingle": "이미지 업로드",
301
- "ariaLabelMultiple": "이미지 업로드",
302
- "selectAriaLabel": "업로드할 {{type}} 선택",
303
- "selectAriaLabelSingle": "업로드할 이미지 선택",
304
- "selectAriaLabelMultiple": "업로드할 이미지 선택",
305
- "dropzone": "드래그 앤 드롭, 붙여넣기 또는 클릭하여 {{type}} 업로드",
306
- "dropzoneSingle": "드래그 앤 드롭, 붙여넣기 또는 클릭하여 이미지 업로드",
307
- "dropzoneMultiple": "드래그 앤 드롭, 붙여넣기 또는 클릭하여 이미지 업로드",
308
- "maxFiles": "최대 {{max}}개 이미지, 각각 {{size}}MB",
309
- "maxSize": "각각 {{size}}MB",
310
- "progress": "업로드 진행률: {{progress}}%",
311
- "pending": "업로드 대기 중",
312
- "uploaded": "{{count}}개의 {{type}} 업로드됨",
313
- "uploadedSingle": "{{count}}개의 이미지 업로드됨",
314
- "uploadedMultiple": "{{count}}개의 이미지 업로드됨",
315
- "failed": "{{fileName}} 업로드 실패"
316
- },
317
- "delete": {
318
- "ariaLabel": "이미지 {{index}} 삭제",
319
- "title": "삭제 (Delete/Backspace)",
320
- "failed": "이미지 삭제 실패"
321
- },
322
- "reorder": {
323
- "ariaLabel": "드래그하여 재정렬"
324
- },
325
- "rotate": {
326
- "failed": "이미지 회전 실패"
327
- },
328
- "errors": {
329
- "maxFiles": "최대 {{max}}개의 이미지가 허용됩니다",
330
- "singleOnly": "이미지는 하나만 허용됩니다",
331
- "notImage": "{{fileName}}은(는) 이미지가 아닙니다",
332
- "exceedsSize": "{{fileName}}은(는) {{size}}MB 제한을 초과합니다"
333
- },
334
- "warnings": {
335
- "duplicates": "중복된 이미지 건너뜀: {{files}}"
336
- },
337
- "alt": {
338
- "upload": "업로드 {{index}}",
339
- "uploaded": "{{label}} {{index}}{{suffix}} (업로드됨)",
340
- "pending": "{{label}} {{index}}{{suffix}} (업로드 대기 중)"
341
- }
342
- },
343
- "custom": {
344
- "passwordMatch": "비밀번호가 일치해야 합니다",
345
- "phoneNumber": "유효한 전화번호를 입력해 주세요",
346
- "postalCode": "유효한 우편번호를 입력해 주세요",
347
- "currency": "유효한 금액을 입력해 주세요",
348
- "color": "유효한 색상 코드를 입력해 주세요"
349
- },
350
211
  "footer": {
351
212
  "landing": {
352
213
  "company": {
@@ -0,0 +1,195 @@
1
+ {
2
+ "fields": {
3
+ "array": "مصفوفة",
4
+ "boolean": "منطقي",
5
+ "checkbox": "مربع اختيار",
6
+ "date": "تاريخ",
7
+ "datetime-local": "التاريخ والوقت",
8
+ "email": "بريد إلكتروني",
9
+ "file": "ملف",
10
+ "geopoint": "موقع",
11
+ "image": "صورة",
12
+ "map": "خريطة",
13
+ "multiselect": "اختيار متعدد",
14
+ "number": "رقم",
15
+ "password": "كلمة مرور",
16
+ "phone": "رقم هاتف",
17
+ "radio": "أزرار اختيار",
18
+ "range": "نطاق",
19
+ "reference": "مرجع",
20
+ "select": "اختيار",
21
+ "tel": "رقم هاتف",
22
+ "text": "نص",
23
+ "textarea": "منطقة نص",
24
+ "timestamp": "طابع زمني",
25
+ "url": "رابط",
26
+ "status": "الحالة",
27
+ "id": "المعرف",
28
+ "_createdAt": "تم الإنشاء في",
29
+ "_updatedAt": "تم التحديث في",
30
+ "_createdById": "تم الإنشاء بواسطة",
31
+ "_updatedById": "تم التحديث بواسطة"
32
+ },
33
+ "text": {
34
+ "required": "{{field}} مطلوب",
35
+ "minLength": "{{field}} يجب أن يكون {{min}} أحرف على الأقل",
36
+ "maxLength": "{{field}} يجب ألا يتجاوز {{max}} حرف",
37
+ "email": "يرجى إدخال عنوان بريد إلكتروني صالح",
38
+ "url": "يرجى إدخال رابط صالح",
39
+ "matches": "{{field}} يجب أن يطابق النمط {{pattern}}",
40
+ "unique": "{{field}} يجب أن يكون فريداً",
41
+ "alphanumeric": "{{field}} يجب أن يحتوي على أحرف وأرقام فقط",
42
+ "lettersOnly": "{{field}} يجب أن يحتوي على أحرف فقط"
43
+ },
44
+ "number": {
45
+ "required": "{{field}} مطلوب",
46
+ "min": "{{field}} يجب أن يكون {{min}} على الأقل",
47
+ "max": "{{field}} يجب ألا يتجاوز {{max}}",
48
+ "integer": "{{field}} يجب أن يكون رقماً صحيحاً",
49
+ "positive": "{{field}} يجب أن يكون موجباً",
50
+ "negative": "{{field}} يجب أن يكون سالباً",
51
+ "between": "{{field}} يجب أن يكون بين {{min}} و {{max}}",
52
+ "precision": "{{field}} يجب أن يحتوي على {{precision}} منازل عشرية كحد أقصى"
53
+ },
54
+ "date": {
55
+ "required": "{{field}} مطلوب",
56
+ "min": "{{field}} يجب أن يكون بعد {{min}}",
57
+ "max": "{{field}} يجب أن يكون قبل {{max}}",
58
+ "between": "{{field}} يجب أن يكون بين {{min}} و {{max}}",
59
+ "format": "يرجى إدخال تاريخ صالح",
60
+ "future": "{{field}} يجب أن يكون في المستقبل",
61
+ "past": "{{field}} يجب أن يكون في الماضي",
62
+ "today": "{{field}} يجب أن يكون اليوم"
63
+ },
64
+ "select": {
65
+ "required": "يرجى اختيار {{field}}",
66
+ "invalid": "اختيار غير صالح لـ {{field}}",
67
+ "min": "يرجى اختيار {{min}} خيارات على الأقل",
68
+ "max": "يرجى اختيار {{max}} خيارات كحد أقصى"
69
+ },
70
+ "boolean": {
71
+ "required": "{{field}} يجب أن يكون محدداً"
72
+ },
73
+ "array": {
74
+ "required": "{{field}} واحد على الأقل مطلوب",
75
+ "minItems": "يرجى اختيار {{min}} {{field}} على الأقل",
76
+ "maxItems": "لا يمكن اختيار أكثر من {{max}} {{field}}",
77
+ "uniqueItems": "جميع {{field}} يجب أن تكون فريدة"
78
+ },
79
+ "file": {
80
+ "required": "يرجى اختيار ملف",
81
+ "maxSize": "حجم الملف يجب ألا يتجاوز {{max}}",
82
+ "minSize": "حجم الملف يجب أن يكون {{min}} على الأقل",
83
+ "type": "نوع الملف يجب أن يكون {{types}}",
84
+ "dimensions": "أبعاد الصورة يجب أن تكون {{width}}x{{height}}",
85
+ "upload": {
86
+ "ariaLabel": "رفع ملف",
87
+ "ariaLabelSingle": "رفع ملف واحد",
88
+ "ariaLabelMultiple": "رفع ملفات",
89
+ "dragDropSingle": "اسحب وأفلت، الصق، أو انقر لرفع ملف",
90
+ "dragDropMultiple": "اسحب وأفلت، الصق، أو انقر لرفع ملفات"
91
+ },
92
+ "delete": {
93
+ "ariaLabel": "حذف الملف",
94
+ "failed": "فشل في حذف الملف"
95
+ },
96
+ "errors": {
97
+ "maxFiles": "الحد الأقصى {{max}} ملف مسموح به",
98
+ "exceedsSize": "{{fileName}} يتجاوز الحد {{size}} ميجابايت"
99
+ }
100
+ },
101
+ "document": {
102
+ "upload": {
103
+ "ariaLabel": "رفع وثيقة",
104
+ "hint": "اسحب وأفلت، الصق، أو انقر لرفع وثائق"
105
+ },
106
+ "delete": {
107
+ "ariaLabel": "حذف الوثيقة",
108
+ "failed": "فشل في حذف الوثيقة"
109
+ },
110
+ "preview": {
111
+ "ariaLabel": "معاينة الوثيقة",
112
+ "title": "معاينة الوثيقة"
113
+ },
114
+ "errors": {
115
+ "maxFiles": "الحد الأقصى {{max}} وثيقة مسموح بها",
116
+ "invalidType": "نوع الوثيقة غير صالح: {{fileName}}",
117
+ "exceedsSize": "{{fileName}} يتجاوز الحد {{size}} ميجابايت"
118
+ }
119
+ },
120
+ "image": {
121
+ "undo": {
122
+ "ariaLabel": "تراجع عن الإجراء الأخير",
123
+ "title": "تراجع (Ctrl+Z)"
124
+ },
125
+ "redo": {
126
+ "ariaLabel": "أعد الإجراء الأخير",
127
+ "title": "أعد (Ctrl+Shift+Z)"
128
+ },
129
+ "upload": {
130
+ "ariaLabel": "رفع {{type}}",
131
+ "ariaLabelSingle": "رفع صورة",
132
+ "ariaLabelMultiple": "رفع صور",
133
+ "selectAriaLabel": "اختر {{type}} للرفع",
134
+ "selectAriaLabelSingle": "اختر صورة للرفع",
135
+ "selectAriaLabelMultiple": "اختر صور للرفع",
136
+ "dropzone": "اسحب وأفلت، الصق، أو انقر لرفع {{type}}",
137
+ "dropzoneSingle": "اسحب وأفلت، الصق، أو انقر لرفع صورة",
138
+ "dropzoneMultiple": "اسحب وأفلت، الصق، أو انقر لرفع صور",
139
+ "maxFiles": "حد أقصى {{max}} صورة، {{size}} ميجابايت لكل منها",
140
+ "maxSize": "{{size}} ميجابايت لكل منها",
141
+ "progress": "تقدم الرفع: {{progress}}%",
142
+ "pending": "رفع معلق",
143
+ "uploaded": "تم رفع {{count}} {{type}}",
144
+ "uploadedSingle": "تم رفع {{count}} صورة",
145
+ "uploadedMultiple": "تم رفع {{count}} صورة",
146
+ "failed": "فشل رفع {{fileName}}"
147
+ },
148
+ "delete": {
149
+ "ariaLabel": "حذف الصورة {{index}}",
150
+ "title": "حذف (Delete/Backspace)",
151
+ "failed": "فشل حذف الصورة"
152
+ },
153
+ "reorder": {
154
+ "ariaLabel": "اسحب لإعادة الترتيب"
155
+ },
156
+ "rotate": {
157
+ "failed": "فشل تدوير الصورة"
158
+ },
159
+ "errors": {
160
+ "maxFiles": "الحد الأقصى {{max}} صورة مسموح بها",
161
+ "singleOnly": "صورة واحدة فقط مسموح بها",
162
+ "notImage": "{{fileName}} ليست صورة",
163
+ "exceedsSize": "{{fileName}} يتجاوز الحد {{size}} ميجابايت"
164
+ },
165
+ "warnings": {
166
+ "duplicates": "تم تخطي الصور المكررة: {{files}}"
167
+ },
168
+ "alt": {
169
+ "upload": "رفع {{index}}",
170
+ "uploaded": "{{label}} {{index}}{{suffix}} (مرفوعة)",
171
+ "pending": "{{label}} {{index}}{{suffix}} (رفع معلق)"
172
+ }
173
+ },
174
+ "custom": {
175
+ "passwordMatch": "كلمات المرور يجب أن تتطابق",
176
+ "phoneNumber": "يرجى إدخال رقم هاتف صالح",
177
+ "postalCode": "يرجى إدخال رمز بريدي صالح",
178
+ "currency": "يرجى إدخال مبلغ صالح",
179
+ "color": "يرجى إدخال كود لون صالح"
180
+ },
181
+ "filters": {
182
+ "title": "تصفح {{entity}} - المرشحات",
183
+ "apply": "تطبيق المرشحات",
184
+ "clear": "مسح المرشحات",
185
+ "noResults": "لا توجد نتائج تطابق مرشحاتك",
186
+ "selected": "{{count}} محدد"
187
+ },
188
+ "results": {
189
+ "title": {
190
+ "fetching": "جاري الجلب...",
191
+ "count_one": "تم العثور على {{count}} نتيجة",
192
+ "count_other": "تم العثور على {{count}} نتائج"
193
+ }
194
+ }
195
+ }