ar.js 4.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. msgSizeTooLarge: 'الملف "{name}" (<b>{size} ك.ب</b>) تعدى الحد الأقصى المسموح للرفع <b>{maxSize} ك.ب</b>.',
  29. msgFilesTooLess: 'يجب عليك اختيار <b>{n}</b> {files} على الأقل للرفع.',
  30. msgFilesTooMany: 'عدد الملفات المختارة للرفع <b>({n})</b> تعدت الحد الأقصى المسموح به لعدد <b>{m}</b>.',
  31. msgFileNotFound: 'الملف "{name}" غير موجود!',
  32. msgFileSecured: 'قيود أمنية تمنع قراءة الملف "{name}".',
  33. msgFileNotReadable: 'الملف "{name}" غير قابل للقراءة.',
  34. msgFilePreviewAborted: 'تم إلغاء معاينة الملف "{name}".',
  35. msgFilePreviewError: 'حدث خطأ أثناء قراءة الملف "{name}".',
  36. msgInvalidFileType: 'نوعية غير صالحة للملف "{name}". فقط هذه النوعيات مدعومة "{types}".',
  37. msgInvalidFileExtension: 'امتداد غير صالح للملف "{name}". فقط هذه الملفات مدعومة "{extensions}".',
  38. msgUploadAborted: 'تم إلغاء رفع الملف',
  39. msgUploadThreshold: 'Processing...',
  40. msgValidationError: 'خطأ التحقق من صحة',
  41. msgLoading: 'تحميل ملف {index} من {files} &hellip;',
  42. msgProgress: 'تحميل ملف {index} من {files} - {name} - {percent}% منتهي.',
  43. msgSelected: '{n} {files} مختار(ة)',
  44. msgFoldersNotAllowed: 'اسحب وأفلت الملفات فقط! تم تخطي {n} مجلد(ات).',
  45. msgImageWidthSmall: 'عرض ملف الصورة "{name}" يجب أن يكون على الأقل {size} px.',
  46. msgImageHeightSmall: 'طول ملف الصورة "{name}" يجب أن يكون على الأقل {size} px.',
  47. msgImageWidthLarge: 'عرض ملف الصورة "{name}" لا يمكن أن يتعدى {size} px.',
  48. msgImageHeightLarge: 'طول ملف الصورة "{name}" لا يمكن أن يتعدى {size} px.',
  49. msgImageResizeError: 'لم يتمكن من معرفة أبعاد الصورة لتغييرها.',
  50. msgImageResizeException: 'حدث خطأ أثناء تغيير أبعاد الصورة.<pre>{errors}</pre>',
  51. dropZoneTitle: 'اسحب وأفلت الملفات هنا &hellip;',
  52. dropZoneClickTitle: '<br>(or click to select {files})',
  53. fileActionSettings: {
  54. removeTitle: 'إزالة الملف',
  55. uploadTitle: 'رفع الملف',
  56. zoomTitle: 'مشاهدة التفاصيل',
  57. dragTitle: 'Move / Rearrange',
  58. indicatorNewTitle: 'لم يتم الرفع بعد',
  59. indicatorSuccessTitle: 'تم الرفع',
  60. indicatorErrorTitle: 'خطأ بالرفع',
  61. indicatorLoadingTitle: 'جارٍ الرفع ...'
  62. },
  63. previewZoomButtonTitles: {
  64. prev: 'View previous file',
  65. next: 'View next file',
  66. toggleheader: 'Toggle header',
  67. fullscreen: 'Toggle full screen',
  68. borderless: 'Toggle borderless mode',
  69. close: 'Close detailed preview'
  70. }
  71. };
  72. })(window.jQuery);