source: prototipo_portal_2018/WebContent/js/fileinput_locale_LANG.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.1 KB
Line 
1/*!
2 * FileInput <_LANG_> 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
14    $.fn.fileinput.locales._LANG_ = {
15        fileSingle: 'file',
16        filePlural: 'files',
17        browseLabel: 'Browse &hellip;',
18        removeLabel: 'Remove',
19        removeTitle: 'Clear selected files',
20        cancelLabel: 'Cancel',
21        cancelTitle: 'Abort ongoing upload',
22        uploadLabel: 'Upload',
23        uploadTitle: 'Upload selected files',
24        msgSizeTooLarge: 'File "{name}" (<b>{size} KB</b>) exceeds maximum allowed upload size of <b>{maxSize} KB</b>. Please retry your upload!',
25        msgFilesTooLess: 'You must select at least <b>{n}</b> {files} to upload. Please retry your upload!',
26        msgFilesTooMany: 'Number of files selected for upload <b>({n})</b> exceeds maximum allowed limit of <b>{m}</b>. Please retry your upload!',
27        msgFileNotFound: 'File "{name}" not found!',
28        msgFileSecured: 'Security restrictions prevent reading the file "{name}".',
29        msgFileNotReadable: 'File "{name}" is not readable.',
30        msgFilePreviewAborted: 'File preview aborted for "{name}".',
31        msgFilePreviewError: 'An error occurred while reading the file "{name}".',
32        msgInvalidFileType: 'Invalid type for file "{name}". Only "{types}" files are supported.',
33        msgInvalidFileExtension: 'Invalid extension for file "{name}". Only "{extensions}" files are supported.',
34        msgValidationError: 'File Upload Error',
35        msgLoading: 'Loading file {index} of {files} &hellip;',
36        msgProgress: 'Loading file {index} of {files} - {name} - {percent}% completed.',
37        msgSelected: '{n} files selected',
38        msgFoldersNotAllowed: 'Drag & drop files only! Skipped {n} dropped folder(s).',
39        dropZoneTitle: 'Drag & drop files here &hellip;'
40    };
41
42    $.extend($.fn.fileinput.defaults, $.fn.fileinput.locales._LANG_);
43})(window.jQuery);
Note: See TracBrowser for help on using the repository browser.