fileinput_locale_ar.js 4.0 KB

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