source: prototipo_portal_2018/WebContent/js/fileinput_locale_uk.js @ 1e85930

Last change on this file since 1e85930 was 9631190, checked in by antonioaraujob <antonioaraujob@…>, 9 years ago

Se agregan los archivos del portal de prueba al control de versiones.

  • Property mode set to 100755
File size: 2.7 KB
Line 
1/*!
2 * FileInput Ukrainian 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 CyanoFresh <cyanofresh@gmail.com>
9 *
10 * NOTE: this file must be saved in UTF-8 encoding.
11 */
12(function ($) {
13    "use strict";
14
15    $.fn.fileinput.locales.uk = {
16        fileSingle: 'файл',
17        filePlural: 'файли',
18        browseLabel: 'Вибрати &hellip;',
19        removeLabel: 'Видалити',
20        removeTitle: 'Видалити вибрані файли',
21        cancelLabel: 'Скасувати',
22        cancelTitle: 'Скасувати поточну загрузку',
23        uploadLabel: 'Загрузити',
24        uploadTitle: 'Загрузити вибрані файли',
25        msgSizeTooLarge: 'Файл "{name}" (<b>{size} KB</b>) перевищує максимальний розмыр <b>{maxSize} KB</b>',
26        msgFilesTooLess: 'Ви повинні вибрати як мінімум <b>{n}</b> {files} для загрузки',
27        msgFilesTooMany: 'Кількість вибраних файлів <b>({n})</b> перевищує максимально допустиму кількість <b>{m}</b>',
28        msgFileNotFound: 'Файл "{name}" не знайдено!',
29        msgFileSecured: 'Обмеження безпеки перешкоджають читанню файла "{name}".',
30        msgFileNotReadable: 'Файл "{name}" неможливо прочитати.',
31        msgFilePreviewAborted: 'Перегляд скасований для файла "{name}".',
32        msgFilePreviewError: 'Сталася помилка під час читання файла "{name}".',
33        msgInvalidFileType: 'Заборонений тип файла для "{name}". Тільки "{types}" дозволені.',
34        msgInvalidFileExtension: 'Заборонене розширення для файла "{name}". Тільки "{extensions}" дозволені.',
35        msgValidationError: 'Помилка під час загрузки файла',
36        msgLoading: 'Загрузка файла {index} із {files} &hellip;',
37        msgProgress: 'Загрузка файла {index} із {files} - {name} - {percent}% завершено.',
38        msgSelected: '{n} файл(ів) вибрано',
39        msgFoldersNotAllowed: 'Дозволено перетягувати тільки файли! Пропущено {n} папок.',
40        dropZoneTitle: 'Перетяніть файли сюди &hellip;'
41    };
42
43    $.extend($.fn.fileinput.defaults, $.fn.fileinput.locales.uk);
44})(window.jQuery);
Note: See TracBrowser for help on using the repository browser.