bg.js 5.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /*!
  2. * FileInput Bulgarian 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. *
  9. * NOTE: this file must be saved in UTF-8 encoding.
  10. */
  11. (function ($) {
  12. "use strict";
  13. $.fn.fileinputLocales['bg'] = {
  14. fileSingle: 'файл',
  15. filePlural: 'файла',
  16. browseLabel: 'Избери …',
  17. removeLabel: 'Премахни',
  18. removeTitle: 'Изчисти избраните',
  19. cancelLabel: 'Откажи',
  20. cancelTitle: 'Откажи качването',
  21. uploadLabel: 'Качи',
  22. uploadTitle: 'Качи избраните файлове',
  23. msgNo: 'Не',
  24. msgNoFilesSelected: '',
  25. msgCancelled: 'Отменен',
  26. msgZoomModalHeading: 'Детайлен преглед',
  27. msgFileRequired: 'You must select a file to upload.',
  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} KB</b>) надвишава максималните разрешени <b>{maxSize} KB</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. msgFileTypes: {
  41. 'image': 'image',
  42. 'html': 'HTML',
  43. 'text': 'text',
  44. 'video': 'video',
  45. 'audio': 'audio',
  46. 'flash': 'flash',
  47. 'pdf': 'PDF',
  48. 'object': 'object'
  49. },
  50. msgUploadAborted: 'Качите файла, бе прекратена',
  51. msgUploadThreshold: 'Processing...',
  52. msgUploadBegin: 'Initializing...',
  53. msgUploadEnd: 'Done',
  54. msgUploadEmpty: 'No valid data available for upload.',
  55. msgUploadError: 'Error',
  56. msgValidationError: 'утвърждаване грешка',
  57. msgLoading: 'Зареждане на файл {index} от общо {files} &hellip;',
  58. msgProgress: 'Зареждане на файл {index} от общо {files} - {name} - {percent}% завършени.',
  59. msgSelected: '{n} {files} избрани',
  60. msgFoldersNotAllowed: 'Само пуснати файлове! Пропуснати {n} пуснати папки.',
  61. msgImageWidthSmall: 'Широчината на изображението "{name}" трябва да е поне {size} px.',
  62. msgImageHeightSmall: 'Височината на изображението "{name}" трябва да е поне {size} px.',
  63. msgImageWidthLarge: 'Широчината на изображението "{name}" не може да е по-голяма от {size} px.',
  64. msgImageHeightLarge: 'Височината на изображението "{name}" нее може да е по-голяма от {size} px.',
  65. msgImageResizeError: 'Не може да размерите на изображението, за да промените размера.',
  66. msgImageResizeException: 'Грешка при промяна на размера на изображението.<pre>{errors}</pre>',
  67. msgAjaxError: 'Something went wrong with the {operation} operation. Please try again later!',
  68. msgAjaxProgressError: '{operation} failed',
  69. ajaxOperations: {
  70. deleteThumb: 'file delete',
  71. uploadThumb: 'file upload',
  72. uploadBatch: 'batch file upload',
  73. uploadExtra: 'form data upload'
  74. },
  75. dropZoneTitle: 'Пуснете файловете тук &hellip;',
  76. dropZoneClickTitle: '<br>(or click to select {files})',
  77. fileActionSettings: {
  78. removeTitle: 'Махни файл',
  79. uploadTitle: 'Качване на файл',
  80. uploadRetryTitle: 'Retry upload',
  81. zoomTitle: 'Вижте детайли',
  82. dragTitle: 'Move / Rearrange',
  83. indicatorNewTitle: 'Все още не е качил',
  84. indicatorSuccessTitle: 'Качено',
  85. indicatorErrorTitle: 'Качи Error',
  86. indicatorLoadingTitle: 'Качва се ...'
  87. },
  88. previewZoomButtonTitles: {
  89. prev: 'View previous file',
  90. next: 'View next file',
  91. toggleheader: 'Toggle header',
  92. fullscreen: 'Toggle full screen',
  93. borderless: 'Toggle borderless mode',
  94. close: 'Close detailed preview'
  95. }
  96. };
  97. })(window.jQuery);