-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathui-grid.language.zh-tw.js
77 lines (76 loc) · 2.33 KB
/
ui-grid.language.zh-tw.js
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
/*!
* ui-grid - v4.12.7 - 2024-04-12
* http://ui-grid.info/
* Copyright (c) 2024 ; License: MIT
*/
(function() {
angular.module('ui.grid').config(['$provide', function($provide) {
$provide.decorator('i18nService', ['$delegate', function($delegate) {
$delegate.add('zh-tw', {
aggregate: {
label: '行'
},
groupPanel: {
description: '拖曳表頭到此處進行分組'
},
search: {
placeholder: '查找',
showingItems: '已顯示行數:',
selectedItems: '已選擇行數:',
totalItems: '總行數:',
size: '每頁顯示行數:',
first: '首頁',
next: '下壹頁',
previous: '上壹頁',
last: '末頁'
},
menu: {
text: '選擇列:'
},
sort: {
ascending: '升序',
descending: '降序',
remove: '取消排序'
},
column: {
hide: '隱藏列'
},
aggregation: {
count: '計數:',
sum: '求和:',
avg: '均值:',
min: '最小值:',
max: '最大值:'
},
pinning: {
pinLeft: '左側固定',
pinRight: '右側固定',
unpin: '取消固定'
},
gridMenu: {
columns: '列:',
importerTitle: '導入文件',
exporterAllAsCsv: '導出全部數據到CSV',
exporterVisibleAsCsv: '導出可見數據到CSV',
exporterSelectedAsCsv: '導出已選數據到CSV',
exporterAllAsPdf: '導出全部數據到PDF',
exporterVisibleAsPdf: '導出可見數據到PDF',
exporterSelectedAsPdf: '導出已選數據到PDF',
clearAllFilters: '清除所有过滤器'
},
importer: {
noHeaders: '無法獲取列名,確定文件包含表頭?',
noObjects: '無法獲取數據,確定文件包含數據?',
invalidCsv: '無法處理文件,確定是合法的CSV文件?',
invalidJson: '無法處理文件,確定是合法的JSON文件?',
jsonNotArray: '導入的文件不是JSON數組!'
},
pagination: {
sizes: '行每頁',
totalItems: '行'
}
});
return $delegate;
}]);
}]);
})();