ar.js 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /*!
  2. * FileInput Arabic Translations
  3. *
  4. * This file must be loaded after 'fileinput.js'. Patterns in braces '{}', or
  5. * any HTML markup tags in the messages must not be converted or translated.
  6. *
  7. * @see http://github.com/kartik-v/bootstrap-fileinput
  8. * @author Yasser Lotfy <[email protected]>
  9. *
  10. * NOTE: this file must be saved in UTF-8 encoding.
  11. */
  12. (function ($) {
  13. "use strict";
  14. $.fn.fileinputLocales['ar'] = {
  15. fileSingle: 'ملف',
  16. filePlural: 'ملفات',
  17. browseLabel: 'تصفح &hellip;',
  18. removeLabel: 'إزالة',
  19. removeTitle: 'إزالة الملفات المختارة',
  20. cancelLabel: 'إلغاء',
  21. cancelTitle: 'إنهاء الرفع الحالي',
  22. uploadLabel: 'رفع',
  23. uploadTitle: 'رفع الملفات المختارة',
  24. msgNo: 'لا',
  25. msgNoFilesSelected: '',
  26. msgCancelled: 'ألغيت',
  27. msgZoomModalHeading: 'معاينة تفصيلية',
  28. msgSizeTooSmall: 'File "{name}" (<b>{size} KB</b>) is too small and must be larger than <b>{minSize} KB</b>.',
  29. msgSizeTooLarge: 'الملف "{name}" (<b>{size} ك.ب</b>) تعدى الحد الأقصى المسموح للرفع <b>{maxSize} ك.ب</b>.',
  30. msgFilesTooLess: 'يجب عليك اختيار <b>{n}</b> {files} على الأقل للرفع.',
  31. msgFilesTooMany: 'عدد الملفات المختارة للرفع <b>({n})</b> تعدت الحد الأقصى المسموح به لعدد <b>{m}</b>.',
  32. msgFileNotFound: 'الملف "{name}" غير موجود!',
  33. msgFileSecured: 'قيود أمنية تمنع قراءة الملف "{name}".',
  34. msgFileNotReadable: 'الملف "{name}" غير قابل للقراءة.',
  35. msgFilePreviewAborted: 'تم إلغاء معاينة الملف "{name}".',
  36. msgFilePreviewError: 'حدث خطأ أثناء قراءة الملف "{name}".',
  37. msgInvalidFileName: 'Invalid or unsupported characters in file name "{name}".',
  38. msgInvalidFileType: 'نوعية غير صالحة للملف "{name}". فقط هذه النوعيات مدعومة "{types}".',
  39. msgInvalidFileExtension: 'امتداد غير صالح للملف "{name}". فقط هذه الملفات مدعومة "{extensions}".',
  40. msgUploadAborted: 'تم إلغاء رفع الملف',
  41. msgUploadThreshold: 'Processing...',
  42. msgValidationError: 'خطأ التحقق من صحة',
  43. msgLoading: 'تحميل ملف {index} من {files} &hellip;',
  44. msgProgress: 'تحميل ملف {index} من {files} - {name} - {percent}% منتهي.',
  45. msgSelected: '{n} {files} مختار(ة)',
  46. msgFoldersNotAllowed: 'اسحب وأفلت الملفات فقط! تم تخطي {n} مجلد(ات).',
  47. msgImageWidthSmall: 'عرض ملف الصورة "{name}" يجب أن يكون على الأقل {size} px.',
  48. msgImageHeightSmall: 'طول ملف الصورة "{name}" يجب أن يكون على الأقل {size} px.',
  49. msgImageWidthLarge: 'عرض ملف الصورة "{name}" لا يمكن أن يتعدى {size} px.',
  50. msgImageHeightLarge: 'طول ملف الصورة "{name}" لا يمكن أن يتعدى {size} px.',
  51. msgImageResizeError: 'لم يتمكن من معرفة أبعاد الصورة لتغييرها.',
  52. msgImageResizeException: 'حدث خطأ أثناء تغيير أبعاد الصورة.<pre>{errors}</pre>',
  53. dropZoneTitle: 'اسحب وأفلت الملفات هنا &hellip;',
  54. dropZoneClickTitle: '<br>(or click to select {files})',
  55. fileActionSettings: {
  56. removeTitle: 'إزالة الملف',
  57. uploadTitle: 'رفع الملف',
  58. zoomTitle: 'مشاهدة التفاصيل',
  59. dragTitle: 'Move / Rearrange',
  60. indicatorNewTitle: 'لم يتم الرفع بعد',
  61. indicatorSuccessTitle: 'تم الرفع',
  62. indicatorErrorTitle: 'خطأ بالرفع',
  63. indicatorLoadingTitle: 'جارٍ الرفع ...'
  64. },
  65. previewZoomButtonTitles: {
  66. prev: 'View previous file',
  67. next: 'View next file',
  68. toggleheader: 'Toggle header',
  69. fullscreen: 'Toggle full screen',
  70. borderless: 'Toggle borderless mode',
  71. close: 'Close detailed preview'
  72. }
  73. };
  74. })(window.jQuery);