| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 | /*! * FileInput <_LANG_> Translations * * This file must be loaded after 'fileinput.js'. Patterns in braces '{}', or * any HTML markup tags in the messages must not be converted or translated. * * @see http://github.com/kartik-v/bootstrap-fileinput * * NOTE: this file must be saved in UTF-8 encoding. */(function ($) {    "use strict";    $.fn.fileinputLocales['_LANG_'] = {        fileSingle: 'file',        filePlural: 'files',        browseLabel: 'Browse …',        removeLabel: 'Remove',        removeTitle: 'Clear selected files',        cancelLabel: 'Cancel',        cancelTitle: 'Abort ongoing upload',        pauseLabel: 'Pause',        pauseTitle: 'Pause ongoing upload',        uploadLabel: 'Upload',        uploadTitle: 'Upload selected files',        msgNo: 'No',        msgNoFilesSelected: 'No files selected',        msgPaused: 'Paused',        msgCancelled: 'Cancelled',        msgPlaceholder: 'Select {files} ...',        msgZoomModalHeading: 'Detailed Preview',        msgFileRequired: 'You must select a file to upload.',        msgSizeTooSmall: 'File "{name}" (<b>{size} KB</b>) is too small and must be larger than <b>{minSize} KB</b>.',        msgSizeTooLarge: 'File "{name}" (<b>{size} KB</b>) exceeds maximum allowed upload size of <b>{maxSize} KB</b>.',        msgFilesTooLess: 'You must select at least <b>{n}</b> {files} to upload.',        msgFilesTooMany: 'Number of files selected for upload <b>({n})</b> exceeds maximum allowed limit of <b>{m}</b>.',        msgTotalFilesTooMany: 'You can upload a maximum of <b>{m}</b> files (<b>{n}</b> files detected).',        msgFileNotFound: 'File "{name}" not found!',        msgFileSecured: 'Security restrictions prevent reading the file "{name}".',        msgFileNotReadable: 'File "{name}" is not readable.',        msgFilePreviewAborted: 'File preview aborted for "{name}".',        msgFilePreviewError: 'An error occurred while reading the file "{name}".',        msgInvalidFileName: 'Invalid or unsupported characters in file name "{name}".',        msgInvalidFileType: 'Invalid type for file "{name}". Only "{types}" files are supported.',        msgInvalidFileExtension: 'Invalid extension for file "{name}". Only "{extensions}" files are supported.',        msgFileTypes: {            'image': 'image',            'html': 'HTML',            'text': 'text',            'video': 'video',            'audio': 'audio',            'flash': 'flash',            'pdf': 'PDF',            'object': 'object'        },        msgUploadAborted: 'The file upload was aborted',        msgUploadThreshold: 'Processing …',        msgUploadBegin: 'Initializing …',        msgUploadEnd: 'Done',        msgUploadResume: 'Resuming upload …',        msgUploadEmpty: 'No valid data available for upload.',        msgUploadError: 'Upload Error',        msgDeleteError: 'Delete Error',        msgProgressError: 'Error',        msgValidationError: 'Validation Error',        msgLoading: 'Loading file {index} of {files} …',        msgProgress: 'Loading file {index} of {files} - {name} - {percent}% completed.',        msgSelected: '{n} {files} selected',        msgFoldersNotAllowed: 'Drag & drop files only! Skipped {n} dropped folder(s).',        msgImageWidthSmall: 'Width of image file "{name}" must be at least {size} px.',        msgImageHeightSmall: 'Height of image file "{name}" must be at least {size} px.',        msgImageWidthLarge: 'Width of image file "{name}" cannot exceed {size} px.',        msgImageHeightLarge: 'Height of image file "{name}" cannot exceed {size} px.',        msgImageResizeError: 'Could not get the image dimensions to resize.',        msgImageResizeException: 'Error while resizing the image.<pre>{errors}</pre>',        msgAjaxError: 'Something went wrong with the {operation} operation. Please try again later!',        msgAjaxProgressError: '{operation} failed',        msgDuplicateFile: 'File "{name}" of same size "{size} KB" has already been selected earlier. Skipping duplicate selection.',        msgResumableUploadRetriesExceeded:  'Upload aborted beyond <b>{max}</b> retries for file <b>{file}</b>! Error Details: <pre>{error}</pre>',        msgPendingTime: '{time} remaining',        msgCalculatingTime: 'calculating time remaining',        ajaxOperations: {            deleteThumb: 'file delete',            uploadThumb: 'file upload',            uploadBatch: 'batch file upload',            uploadExtra: 'form data upload'        },        dropZoneTitle: 'Drag & drop files here …',        dropZoneClickTitle: '<br>(or click to select {files})',        fileActionSettings: {            removeTitle: 'Remove file',            uploadTitle: 'Upload file',            uploadRetryTitle: 'Retry upload',            downloadTitle: 'Download file',            zoomTitle: 'View details',            dragTitle: 'Move / Rearrange',            indicatorNewTitle: 'Not uploaded yet',            indicatorSuccessTitle: 'Uploaded',            indicatorErrorTitle: 'Upload Error',            indicatorPausedTitle: 'Upload Paused',            indicatorLoadingTitle:  'Uploading …'        },        previewZoomButtonTitles: {            prev: 'View previous file',            next: 'View next file',            toggleheader: 'Toggle header',            fullscreen: 'Toggle full screen',            borderless: 'Toggle borderless mode',            close: 'Close detailed preview'        }    };})(window.jQuery);
 |