handsontable
Version:
Handsontable is a JavaScript Data Grid available for React, Angular and Vue.
102 lines • 5.07 kB
JavaScript
/**
* @preserve
* Authors: Handsoncode
* Last updated: Nov 15, 2017
*
* Description: Definition file for English - United States language-country.
*/
import Handsontable from "handsontable";
const C = Handsontable.languages.dictionaryKeys;
const dictionary = {
languageCode: 'en-US',
[]: 'No available options',
[]: 'Insert row above',
[]: 'Insert row below',
[]: 'Insert column left',
[]: 'Insert column right',
[]: ['Remove row', 'Remove rows'],
[]: ['Remove column', 'Remove columns'],
[]: 'Undo',
[]: 'Redo',
[]: 'Read only',
[]: 'Clear column',
[]: 'Alignment',
[]: 'Left',
[]: 'Center',
[]: 'Right',
[]: 'Justify',
[]: 'Top',
[]: 'Middle',
[]: 'Bottom',
[]: 'Freeze column',
[]: 'Unfreeze column',
[]: 'Borders',
[]: 'Top',
[]: 'Right',
[]: 'Bottom',
[]: 'Left',
[]: 'Remove border(s)',
[]: 'Add comment',
[]: 'Edit comment',
[]: 'Delete comment',
[]: 'Read-only comment',
[]: 'Merge cells',
[]: 'Unmerge cells',
[]: 'Copy',
[]: ['Copy with header', 'Copy with headers'],
[]: ['Copy with group header', 'Copy with group headers'],
[]: ['Copy header only', 'Copy headers only'],
[]: 'Cut',
[]: 'Insert child row',
[]: 'Detach from parent',
[]: ['Hide column', 'Hide columns'],
[]: ['Show column', 'Show columns'],
[]: ['Hide row', 'Hide rows'],
[]: ['Show row', 'Show rows'],
[]: 'None',
[]: 'Is empty',
[]: 'Is not empty',
[]: 'Is equal to',
[]: 'Is not equal to',
[]: 'Begins with',
[]: 'Ends with',
[]: 'Contains',
[]: 'Does not contain',
[]: 'Greater than',
[]: 'Greater than or equal to',
[]: 'Less than',
[]: 'Less than or equal to',
[]: 'Is between',
[]: 'Is not between',
[]: 'After',
[]: 'Before',
[]: 'Today',
[]: 'Tomorrow',
[]: 'Yesterday',
[]: 'Blank cells',
[]: 'Filter by condition',
[]: 'Filter by value',
[]: 'And',
[]: 'Or',
[]: 'Select all',
[]: 'Clear',
[]: 'OK',
[]: 'Cancel',
[]: 'Search',
[]: 'Value',
[]: 'Second value',
[]: 'Pagination',
[]: 'Page size',
[]: 'Auto',
[]: '[start] - [end] of [total]',
[]: 'Page [currentPage] of [totalPages]',
[]: 'Go to first page',
[]: 'Go to previous page',
[]: 'Go to next page',
[]: 'Go to last page',
[]: 'Checked',
[]: 'Unchecked',
[]: 'Loading...'
};
Handsontable.languages.registerLanguageDictionary(dictionary);
export default dictionary;