-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathui-grid.language.he.js
71 lines (70 loc) · 2.44 KB
/
ui-grid.language.he.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
/*!
* 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('he', {
aggregate: {
label: 'items'
},
groupPanel: {
description: 'גרור עמודה לכאן ושחרר בכדי לקבץ עמודה זו.'
},
search: {
placeholder: 'חפש...',
showingItems: 'מציג:',
selectedItems: 'סה"כ נבחרו:',
totalItems: 'סה"כ רשומות:',
size: 'תוצאות בדף:',
first: 'דף ראשון',
next: 'דף הבא',
previous: 'דף קודם',
last: 'דף אחרון'
},
menu: {
text: 'בחר עמודות:'
},
sort: {
ascending: 'סדר עולה',
descending: 'סדר יורד',
remove: 'בטל'
},
column: {
hide: 'טור הסתר'
},
aggregation: {
count: 'total rows: ',
sum: 'total: ',
avg: 'avg: ',
min: 'min: ',
max: 'max: '
},
gridMenu: {
columns: 'Columns:',
importerTitle: 'Import file',
exporterAllAsCsv: 'Export all data as csv',
exporterVisibleAsCsv: 'Export visible data as csv',
exporterSelectedAsCsv: 'Export selected data as csv',
exporterAllAsPdf: 'Export all data as pdf',
exporterVisibleAsPdf: 'Export visible data as pdf',
exporterSelectedAsPdf: 'Export selected data as pdf',
exporterAllAsExcel: 'Export all data as excel',
exporterVisibleAsExcel: 'Export visible data as excel',
exporterSelectedAsExcel: 'Export selected data as excel',
clearAllFilters: 'Clean all filters'
},
importer: {
noHeaders: 'Column names were unable to be derived, does the file have a header?',
noObjects: 'Objects were not able to be derived, was there data in the file other than headers?',
invalidCsv: 'File was unable to be processed, is it valid CSV?',
invalidJson: 'File was unable to be processed, is it valid Json?',
jsonNotArray: 'Imported json file must contain an array, aborting.'
}
});
return $delegate;
}]);
}]);
})();