UNPKG

2.51 kBJavaScriptView Raw
1export default {
2 isoName: 'en-gb',
3 nativeName: 'English (UK)',
4 label: {
5 clear: 'Clear',
6 ok: 'OK',
7 cancel: 'Cancel',
8 close: 'Close',
9 set: 'Set',
10 select: 'Select',
11 reset: 'Reset',
12 remove: 'Remove',
13 update: 'Update',
14 create: 'Create',
15 search: 'Search',
16 filter: 'Filter',
17 refresh: 'Refresh'
18 },
19 date: {
20 days: 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'),
21 daysShort: 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),
22 months: 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'),
23 monthsShort: 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
24 firstDayOfWeek: 1, // 0-6, 0 - Sunday, 1 Monday, ...
25 format24h: true
26 },
27 table: {
28 noData: 'No data available',
29 noResults: 'No matching records found',
30 loading: 'Loading...',
31 selectedRecords: function (rows) {
32 return rows === 1
33 ? '1 record selected.'
34 : (rows === 0 ? 'No' : rows) + ' records selected.'
35 },
36 recordsPerPage: 'Records per page:',
37 allRows: 'All',
38 pagination: function (start, end, total) {
39 return start + '-' + end + ' of ' + total
40 },
41 columns: 'Columns'
42 },
43 editor: {
44 url: 'URL',
45 bold: 'Bold',
46 italic: 'Italic',
47 strikethrough: 'Strikethrough',
48 underline: 'Underline',
49 unorderedList: 'Unordered List',
50 orderedList: 'Ordered List',
51 subscript: 'Subscript',
52 superscript: 'Superscript',
53 hyperlink: 'Hyperlink',
54 toggleFullscreen: 'Toggle Fullscreen',
55 quote: 'Quote',
56 left: 'Left align',
57 center: 'Center align',
58 right: 'Right align',
59 justify: 'Justify align',
60 print: 'Print',
61 outdent: 'Decrease indentation',
62 indent: 'Increase indentation',
63 removeFormat: 'Remove formatting',
64 formatting: 'Formatting',
65 fontSize: 'Font Size',
66 align: 'Align',
67 hr: 'Insert Horizontal Rule',
68 undo: 'Undo',
69 redo: 'Redo',
70 heading1: 'Heading 1',
71 heading2: 'Heading 2',
72 heading3: 'Heading 3',
73 heading4: 'Heading 4',
74 heading5: 'Heading 5',
75 heading6: 'Heading 6',
76 paragraph: 'Paragraph',
77 code: 'Code',
78 size1: 'Very small',
79 size2: 'A bit small',
80 size3: 'Normal',
81 size4: 'Medium-large',
82 size5: 'Big',
83 size6: 'Very big',
84 size7: 'Maximum',
85 defaultFont: 'Default Font',
86 viewSource: 'View Source'
87 },
88 tree: {
89 noNodes: 'No nodes available',
90 noResults: 'No matching nodes found'
91 }
92}