all files / models/ default-locale.js

100% Statements 3/3
100% Branches 0/0
100% Functions 1/1
100% Lines 3/3
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105                                                                                                                                                                                                           
/**
 * Specifies the default locale of FileManager component
 */
define(["require", "exports"], function (require, exports) {
    "use strict";
    Object.defineProperty(exports, "__esModule", { value: true });
    exports.defaultLocale = {
        'NewFolder': 'New folder',
        'Upload': 'Upload',
        'Delete': 'Delete',
        'Rename': 'Rename',
        'Download': 'Download',
        'Cut': 'Cut',
        'Copy': 'Copy',
        'Paste': 'Paste',
        'SortBy': 'Sort by',
        'Refresh': 'Refresh',
        'Item-Selection': 'item selected',
        'Items-Selection': 'items selected',
        'View': 'View',
        'Details': 'Details',
        'SelectAll': 'Select all',
        'Open': 'Open',
        'Tooltip-NewFolder': 'New folder',
        'Tooltip-Upload': 'Upload',
        'Tooltip-Delete': 'Delete',
        'Tooltip-Rename': 'Rename',
        'Tooltip-Download': 'Download',
        'Tooltip-Cut': 'Cut',
        'Tooltip-Copy': 'Copy',
        'Tooltip-Paste': 'Paste',
        'Tooltip-SortBy': 'Sort by',
        'Tooltip-Refresh': 'Refresh',
        'Tooltip-Selection': 'Clear selection',
        'Tooltip-View': 'View',
        'Tooltip-Details': 'Details',
        'Tooltip-SelectAll': 'Select all',
        'Name': 'Name',
        'Size': 'Size',
        'DateModified': 'Modified',
        'DateCreated': 'Date created',
        'Path': 'Path',
        'Modified': 'Modified',
        'Created': 'Created',
        'Location': 'Location',
        'Type': 'Type',
        'Permission': 'Permission',
        'Ascending': 'Ascending',
        'Descending': 'Descending',
        'None': 'None',
        'View-LargeIcons': 'Large icons',
        'View-Details': 'Details',
        'Search': 'Search',
        'Button-Ok': 'OK',
        'Button-Cancel': 'Cancel',
        'Button-Yes': 'Yes',
        'Button-No': 'No',
        'Button-Create': 'Create',
        'Button-Save': 'Save',
        'Header-NewFolder': 'Folder',
        'Content-NewFolder': 'Enter your folder name',
        'Header-Rename': 'Rename',
        'Content-Rename': 'Enter your new name',
        'Header-Rename-Confirmation': 'Rename Confirmation',
        'Content-Rename-Confirmation': 'If you change a file name extension, the file might become unstable. ' +
            'Are you sure you want to change it?',
        'Header-Delete': 'Delete File',
        'Content-Delete': 'Are you sure you want to delete this file?',
        'Header-Folder-Delete': 'Delete Folder',
        'Content-Folder-Delete': 'Are you sure you want to delete this folder?',
        'Header-Multiple-Delete': 'Delete Multiple Items',
        'Content-Multiple-Delete': 'Are you sure you want to delete these {0} items?',
        'Header-Duplicate': 'File/Folder exists',
        'Content-Duplicate': '{0} already exists. Do you want to rename and paste?',
        'Header-Upload': 'Upload Files',
        'Error': 'Error',
        'Validation-Empty': 'The file or folder name cannot be empty.',
        'Validation-Invalid': 'The file or folder name {0} contains invalid characters. Please use a different name. ' +
            // eslint-disable-next-line no-useless-escape
            'Valid file or folder names cannot end with a dot or space, and cannot contain any of the following characters: \\/:*?\"<>|',
        'Validation-NewFolder-Exists': 'A file or folder with the name {0} already exists.',
        'Validation-Rename-Exists': 'Cannot rename {0} to {1}: destination already exists.',
        'Folder-Empty': 'This folder is empty',
        'File-Upload': 'Drag files here to upload',
        'Search-Empty': 'No results found',
        'Search-Key': 'Try with different keywords',
        'Filter-Empty': 'No results found',
        'Filter-Key': 'Try with different filter',
        'Sub-Folder-Error': 'The destination folder is the subfolder of the source folder.',
        'Same-Folder-Error': 'The destination folder is the same as the source folder.',
        'Access-Denied': 'Access Denied',
        'Access-Details': 'You don"t have permission to access this folder.',
        'Header-Retry': 'File Already Exists',
        'Content-Retry': 'A file with this name already exists in this folder. What would you like to do?',
        'Button-Keep-Both': 'Keep both',
        'Button-Replace': 'Replace',
        'Button-Skip': 'Skip',
        'ApplyAll-Label': 'Do this for all current items',
        'KB': 'KB',
        'Access-Message': '{0} is not accessible. You need permission to perform the {1} action.',
        'Network-Error': 'NetworkError: Failed to send on XMLHTTPRequest: Failed to load',
        'Server-Error': 'ServerError: Invalid response from'
    };
});