@cdmx/wappler_ag_grid 1.9.5-test → 1.9.6-locale-test
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/app_connect/components.hjson +8 -16
- package/dmx-ag-grid.js +30 -32
- package/package.json +6 -2
- package/he.js +0 -355
- package/pt.js +0 -268
|
@@ -119,9 +119,10 @@
|
|
|
119
119
|
{title: 'English', value: 'EN'},
|
|
120
120
|
{title: 'Hebrew', value: 'HE'},
|
|
121
121
|
{title: 'Russian', value: 'RU'},
|
|
122
|
-
{title: 'Portuguese', value: 'PT'}
|
|
122
|
+
{title: 'Portuguese', value: 'PT'},
|
|
123
|
+
{title: 'Spanish', value: 'ES'}
|
|
123
124
|
],
|
|
124
|
-
"help": "Select locale for the Grid, Currently Supproted Hebrew (HE), Russian (RU) and English (EN) locale"
|
|
125
|
+
"help": "Select locale for the Grid, Currently Supproted Hebrew (HE), Russian (RU), Spanish (ES) and English (EN) locale"
|
|
125
126
|
}
|
|
126
127
|
]
|
|
127
128
|
},
|
|
@@ -3176,8 +3177,8 @@
|
|
|
3176
3177
|
"dst": "js/papaparse.js"
|
|
3177
3178
|
},
|
|
3178
3179
|
{
|
|
3179
|
-
"src": "../../../node_modules/
|
|
3180
|
-
"dst": "js/
|
|
3180
|
+
"src": "../../../node_modules/read-excel-file/bundle/read-excel-file.min.js",
|
|
3181
|
+
"dst": "js/read-excel-file.min.js"
|
|
3181
3182
|
},
|
|
3182
3183
|
{
|
|
3183
3184
|
"src": "../../../node_modules/pdfmake/build/pdfmake.min.js",
|
|
@@ -3212,17 +3213,13 @@
|
|
|
3212
3213
|
"dst": "js/dmx-ag-grid.js"
|
|
3213
3214
|
},
|
|
3214
3215
|
{
|
|
3215
|
-
"src": "
|
|
3216
|
-
"dst": "js/locale/
|
|
3216
|
+
"src": "../../../node_modules/@ag-grid-community/locale/dist/umd/@ag-grid-community/locale.min.js",
|
|
3217
|
+
"dst": "js/locale/locale.min.js"
|
|
3217
3218
|
},
|
|
3218
3219
|
{
|
|
3219
3220
|
"src": "ru.js",
|
|
3220
3221
|
"dst": "js/locale/ru.js"
|
|
3221
3222
|
},
|
|
3222
|
-
{
|
|
3223
|
-
"src": "pt.js",
|
|
3224
|
-
"dst": "js/locale/pt.js"
|
|
3225
|
-
},
|
|
3226
3223
|
{
|
|
3227
3224
|
"src": "../../../node_modules/pdfmake/build/pdfmake.min.js",
|
|
3228
3225
|
"dst": "js/pdfmake.min.js"
|
|
@@ -3254,7 +3251,7 @@
|
|
|
3254
3251
|
"defer": true
|
|
3255
3252
|
},
|
|
3256
3253
|
{
|
|
3257
|
-
"src": "js/locale/
|
|
3254
|
+
"src": "js/locale/locale.min.js",
|
|
3258
3255
|
"type": "js",
|
|
3259
3256
|
"defer": true
|
|
3260
3257
|
},
|
|
@@ -3263,11 +3260,6 @@
|
|
|
3263
3260
|
"type": "js",
|
|
3264
3261
|
"defer": true
|
|
3265
3262
|
},
|
|
3266
|
-
{
|
|
3267
|
-
"src": "js/locale/pt.js",
|
|
3268
|
-
"type": "js",
|
|
3269
|
-
"defer": true
|
|
3270
|
-
},
|
|
3271
3263
|
{
|
|
3272
3264
|
"src": "js/pdfmake.min.js",
|
|
3273
3265
|
"type": "js",
|
package/dmx-ag-grid.js
CHANGED
|
@@ -394,37 +394,36 @@ dmx.Component('ag-grid', {
|
|
|
394
394
|
});
|
|
395
395
|
};
|
|
396
396
|
|
|
397
|
-
const parseExcel = (
|
|
397
|
+
const parseExcel = (file) => {
|
|
398
398
|
return new Promise((resolve, reject) => {
|
|
399
|
-
const
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
if (rowNumber === 1) {
|
|
408
|
-
row.eachCell((cell) => {
|
|
409
|
-
headers.push(cell.value);
|
|
410
|
-
});
|
|
399
|
+
const headers = [];
|
|
400
|
+
const data = [];
|
|
401
|
+
readXlsxFile(file)
|
|
402
|
+
.then((rows) => {
|
|
403
|
+
rows.forEach((row, rowIndex) => {
|
|
404
|
+
if (rowIndex === 0) {
|
|
405
|
+
// First row contains headers
|
|
406
|
+
headers.push(...row);
|
|
411
407
|
} else {
|
|
408
|
+
// Map data rows to objects using the headers
|
|
412
409
|
const rowData = {};
|
|
413
|
-
row.
|
|
414
|
-
|
|
410
|
+
row.forEach((cell, colIndex) => {
|
|
411
|
+
// Use headers to map values to the respective columns
|
|
412
|
+
rowData[headers[colIndex]] = cell;
|
|
415
413
|
});
|
|
416
414
|
data.push(rowData);
|
|
417
415
|
}
|
|
418
416
|
});
|
|
419
|
-
|
|
417
|
+
// Resolve the promise with the parsed data
|
|
420
418
|
resolve(data);
|
|
421
419
|
})
|
|
422
420
|
.catch((error) => {
|
|
421
|
+
// Reject the promise in case of an error
|
|
423
422
|
reject(error.message);
|
|
424
423
|
});
|
|
425
424
|
});
|
|
426
425
|
};
|
|
427
|
-
|
|
426
|
+
|
|
428
427
|
const fileInput = document.getElementById(fieldId);
|
|
429
428
|
if (!fileInput) {
|
|
430
429
|
console.error('Field having field Id: '+fieldId+' not found.');
|
|
@@ -438,19 +437,17 @@ dmx.Component('ag-grid', {
|
|
|
438
437
|
const reader = new FileReader();
|
|
439
438
|
reader.onload = async (e) => {
|
|
440
439
|
const fileData = e.target.result;
|
|
441
|
-
|
|
442
440
|
try {
|
|
443
441
|
let parsedData;
|
|
444
442
|
// Detect the file type based on the file extension or other criteria
|
|
445
443
|
if (file.name.endsWith('.csv')) {
|
|
446
444
|
parsedData = await parseCSV(fileData);
|
|
447
445
|
} else if (file.name.endsWith('.xlsx') || file.type === 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet') {
|
|
448
|
-
parsedData = await parseExcel(
|
|
446
|
+
parsedData = await parseExcel(file);
|
|
449
447
|
} else {
|
|
450
448
|
console.error('Unsupported file type. Please select a CSV or Excel file.');
|
|
451
449
|
return;
|
|
452
450
|
}
|
|
453
|
-
|
|
454
451
|
this.set('fileData', parsedData);
|
|
455
452
|
} catch (error) {
|
|
456
453
|
console.error('Error parsing file:', error);
|
|
@@ -477,7 +474,6 @@ dmx.Component('ag-grid', {
|
|
|
477
474
|
const enableCellClickEvent = this.props.row_click_event && (this.props.enable_actions || this.props.row_checkbox_event);
|
|
478
475
|
const enableCellDoubleClickEvent = this.props.row_double_click_event && (this.props.enable_actions || this.props.row_checkbox_event);
|
|
479
476
|
const actionButtonClassToggles = options.action_button_class_toggles
|
|
480
|
-
let localeText;
|
|
481
477
|
let columnDefs = [];
|
|
482
478
|
let groupedColumnDefs = [];
|
|
483
479
|
let exportToCSV = this.props.export_to_csv;
|
|
@@ -1529,20 +1525,17 @@ dmx.Component('ag-grid', {
|
|
|
1529
1525
|
}
|
|
1530
1526
|
options.actions_column_position=='right' ? columnDefs.push(actionsColumn):columnDefs.unshift(actionsColumn);
|
|
1531
1527
|
}
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
}
|
|
1538
|
-
else if (options.locale_text == 'PT') {
|
|
1539
|
-
localeText = AG_GRID_LOCALE_PT
|
|
1540
|
-
}
|
|
1528
|
+
const localeMap = {
|
|
1529
|
+
'HE': AG_GRID_LOCALE_HE,
|
|
1530
|
+
'RU': AG_GRID_LOCALE_RU,
|
|
1531
|
+
'PT': AG_GRID_LOCALE_PT,
|
|
1532
|
+
'ES': AG_GRID_LOCALE_ES,
|
|
1533
|
+
};
|
|
1541
1534
|
const gridOptions = {
|
|
1542
1535
|
...(idFieldPresent ? { getRowId: params => String(params.data.id) } : {}),
|
|
1543
1536
|
columnDefs: (groupedColumnDefs && groupedColumnDefs.length > 0) ? groupedColumnDefs : columnDefs,
|
|
1544
1537
|
getRowStyle: options.rstyles ? createRowStyleFunction(options.rstyles): undefined,
|
|
1545
|
-
localeText:
|
|
1538
|
+
localeText: localeMap[options.locale_text] || null,
|
|
1546
1539
|
enableRtl: options.enable_rtl,
|
|
1547
1540
|
onRowClicked: enableRowClickEvent ? onRowClicked : undefined,
|
|
1548
1541
|
onRowDoubleClicked: enableRowDoubleClickEvent ? onRowDoubleClicked : undefined,
|
|
@@ -2317,7 +2310,12 @@ dmx.Component('ag-grid', {
|
|
|
2317
2310
|
},
|
|
2318
2311
|
|
|
2319
2312
|
requestUpdate: function (props, oldValue) {
|
|
2320
|
-
|
|
2313
|
+
// Check if data exists before trying to access its length
|
|
2314
|
+
if (this.props.data) {
|
|
2315
|
+
this.set('count', this.props.data.length);
|
|
2316
|
+
} else {
|
|
2317
|
+
this.set('count', 0);
|
|
2318
|
+
}
|
|
2321
2319
|
if (!dmx.equal(this.props.data, oldValue?.data) && !this.props.noload) {
|
|
2322
2320
|
let gridInstance = this.refreshGrid();
|
|
2323
2321
|
this.set('gridInstance', gridInstance);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cdmx/wappler_ag_grid",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.6-locale-test",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "App Connect module for AG Grid Table Generation.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -14,7 +14,11 @@
|
|
|
14
14
|
"ag-grid"
|
|
15
15
|
],
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"ag-grid-community": "
|
|
17
|
+
"@ag-grid-community/locale": "~32.3.3",
|
|
18
|
+
"ag-grid-community": "~32.3.3",
|
|
19
|
+
"papaparse": "~5.4.1",
|
|
20
|
+
"pdfmake": "~0.2.16",
|
|
21
|
+
"read-excel-file": "~5.8.6"
|
|
18
22
|
},
|
|
19
23
|
"scripts": {
|
|
20
24
|
"build": "rollup --config",
|
package/he.js
DELETED
|
@@ -1,355 +0,0 @@
|
|
|
1
|
-
const AG_GRID_LOCALE_HE = {
|
|
2
|
-
// Set Filter
|
|
3
|
-
selectAll: '(בחר הכל)',
|
|
4
|
-
selectAllSearchResults: '(בחר את כל תוצאות החיפוש)',
|
|
5
|
-
searchOoo: 'חיפוש...',
|
|
6
|
-
blanks: '(ריק)',
|
|
7
|
-
noMatches: 'אין התאמות',
|
|
8
|
-
|
|
9
|
-
// Number Filter & Text Filter
|
|
10
|
-
filterOoo: 'סינון...',
|
|
11
|
-
equals: 'שווה',
|
|
12
|
-
notEqual: 'לא שווה',
|
|
13
|
-
blank: 'ריק',
|
|
14
|
-
notBlank: 'לא ריק',
|
|
15
|
-
empty: 'בחר',
|
|
16
|
-
|
|
17
|
-
// Number Filter
|
|
18
|
-
lessThan: 'פחות מ',
|
|
19
|
-
greaterThan: 'גדול מ',
|
|
20
|
-
lessThanOrEqual: 'פחות או שווה ל',
|
|
21
|
-
greaterThanOrEqual: 'גדול או שווה ל',
|
|
22
|
-
inRange: 'בטווח',
|
|
23
|
-
inRangeStart: 'מ',
|
|
24
|
-
inRangeEnd: 'עד',
|
|
25
|
-
|
|
26
|
-
// Text Filter
|
|
27
|
-
contains: 'מכיל',
|
|
28
|
-
notContains: 'לא מכיל',
|
|
29
|
-
startsWith: 'מתחיל עם',
|
|
30
|
-
endsWith: 'מסתיים עם',
|
|
31
|
-
|
|
32
|
-
// Date Filter
|
|
33
|
-
dateFormatOoo: 'yyyy-mm-dd',
|
|
34
|
-
|
|
35
|
-
// Filter Conditions
|
|
36
|
-
andCondition: 'וגם',
|
|
37
|
-
orCondition: 'או',
|
|
38
|
-
|
|
39
|
-
// Filter Buttons
|
|
40
|
-
applyFilter: 'החל',
|
|
41
|
-
resetFilter: 'אפס',
|
|
42
|
-
clearFilter: 'נקה',
|
|
43
|
-
cancelFilter: 'ביטול',
|
|
44
|
-
|
|
45
|
-
// Filter Titles
|
|
46
|
-
textFilter: 'סינון טקסט',
|
|
47
|
-
numberFilter: 'סינון מספרים',
|
|
48
|
-
dateFilter: 'סינון תאריכים',
|
|
49
|
-
setFilter: 'הגדר סינון',
|
|
50
|
-
|
|
51
|
-
// Group Column Filter
|
|
52
|
-
groupFilterSelect: 'בחר שדה:',
|
|
53
|
-
|
|
54
|
-
// Side Bar
|
|
55
|
-
columns: 'עמודות',
|
|
56
|
-
filters: 'מסננים',
|
|
57
|
-
|
|
58
|
-
// columns tool panel
|
|
59
|
-
pivotMode: 'מצב צירופים',
|
|
60
|
-
groups: 'קבוצות שורות',
|
|
61
|
-
rowGroupColumnsEmptyMessage: 'גרור לכאן כדי להגדיר קבוצות שורות',
|
|
62
|
-
values: 'ערכים',
|
|
63
|
-
valueColumnsEmptyMessage: 'גרור לכאן כדי לסכם',
|
|
64
|
-
pivots: 'תגיות עמודות',
|
|
65
|
-
pivotColumnsEmptyMessage: 'גרור לכאן כדי להגדיר תגיות עמודות',
|
|
66
|
-
|
|
67
|
-
// Header of the Default Group Column
|
|
68
|
-
group: 'קבוצה',
|
|
69
|
-
|
|
70
|
-
// Row Drag
|
|
71
|
-
rowDragRow: 'שורה',
|
|
72
|
-
rowDragRows:'שורות',
|
|
73
|
-
|
|
74
|
-
// Other
|
|
75
|
-
loadingOoo: 'טוען...',
|
|
76
|
-
loadingError: 'שגיאה',
|
|
77
|
-
noRowsToShow: 'אין שורות להצגה',
|
|
78
|
-
enabled: 'מאופשר',
|
|
79
|
-
|
|
80
|
-
// Menu
|
|
81
|
-
pinColumn: 'נעיצת עמודה',
|
|
82
|
-
pinLeft: 'נעיצה לשמאל',
|
|
83
|
-
pinRight: 'נעיצה לימין',
|
|
84
|
-
noPin: 'לא לנעיצה',
|
|
85
|
-
valueAggregation: 'סיכום ערכים',
|
|
86
|
-
noAggregation: 'אין',
|
|
87
|
-
autosizeThiscolumn: 'התאם רוחב עמודה זו',
|
|
88
|
-
autosizeAllColumns: 'התאם רוחב לכל העמודות',
|
|
89
|
-
groupBy: 'קיבוץ לפי',
|
|
90
|
-
ungroupBy: 'הפסק קיבוץ לפי',
|
|
91
|
-
addToValues: 'הוסף ${variable} לערכים',
|
|
92
|
-
removeFromValues: 'הסר ${variable} מהערכים',
|
|
93
|
-
addToLabels: 'הוסף ${variable} לתוויות',
|
|
94
|
-
removeFromLabels: 'הסר ${variable} מהתוויות',
|
|
95
|
-
resetColumns: 'איפוס עמודות',
|
|
96
|
-
expandAll: 'הרחבת כל קבוצות השורות',
|
|
97
|
-
collapseAll: 'כיווץ כל קבוצות השורות',
|
|
98
|
-
copy: 'העתק',
|
|
99
|
-
ctrlC: 'Ctrl+C',
|
|
100
|
-
ctrlX: 'Ctrl+X',
|
|
101
|
-
copyWithHeaders: 'העתק עם כותרות',
|
|
102
|
-
copyWithGroupHeaders: 'העתק עם כותרות קבוצה',
|
|
103
|
-
cut: 'גזור',
|
|
104
|
-
paste: 'הדבק',
|
|
105
|
-
ctrlV: 'Ctrl+V',
|
|
106
|
-
export: 'יצוא',
|
|
107
|
-
csvExport: 'יצוא ל-CSV',
|
|
108
|
-
excelExport: 'יצוא ל-Excel',
|
|
109
|
-
|
|
110
|
-
// Enterprise Menu Aggregation and Status Bar
|
|
111
|
-
sum: 'סכום',
|
|
112
|
-
first: 'ראשון',
|
|
113
|
-
last: 'אחרון',
|
|
114
|
-
min: 'מינימום',
|
|
115
|
-
max: 'מקסימום',
|
|
116
|
-
none: 'ללא',
|
|
117
|
-
count: 'ספירה',
|
|
118
|
-
avg: 'ממוצע',
|
|
119
|
-
filteredRows: 'סוננו',
|
|
120
|
-
selectedRows: 'נבחרו',
|
|
121
|
-
totalRows: 'סך הכל שורות',
|
|
122
|
-
totalAndFilteredRows: 'שורות',
|
|
123
|
-
more: 'עוד',
|
|
124
|
-
to: 'עד',
|
|
125
|
-
of: 'מתוך',
|
|
126
|
-
page: 'עמוד',
|
|
127
|
-
pageLastRowUnknown: '?',
|
|
128
|
-
nextPage: 'עמוד הבא',
|
|
129
|
-
lastPage: 'עמוד אחרון',
|
|
130
|
-
firstPage: 'עמוד ראשון',
|
|
131
|
-
previousPage: 'עמוד קודם',
|
|
132
|
-
pageSizeSelectorLabel: 'גודל עמוד:',
|
|
133
|
-
// Pivoting
|
|
134
|
-
pivotColumnGroupTotals: 'סכומים',
|
|
135
|
-
|
|
136
|
-
// Enterprise Menu (Charts)
|
|
137
|
-
pivotChartAndPivotMode: 'תרשים צירופים ומצב צירופים',
|
|
138
|
-
pivotChart: 'תרשים צירופים',
|
|
139
|
-
chartRange: 'טווח תרשים',
|
|
140
|
-
|
|
141
|
-
columnChart: 'עמודות',
|
|
142
|
-
groupedColumn: 'קיבוץ',
|
|
143
|
-
stackedColumn: 'מוערכות',
|
|
144
|
-
normalizedColumn: 'מוערכות 100%',
|
|
145
|
-
|
|
146
|
-
barChart: 'טורים',
|
|
147
|
-
groupedBar: 'קיבוץ',
|
|
148
|
-
stackedBar: 'מוערכות',
|
|
149
|
-
normalizedBar: 'מוערכות 100%',
|
|
150
|
-
|
|
151
|
-
pieChart: 'עוגה',
|
|
152
|
-
pie: 'עוגה',
|
|
153
|
-
doughnut: 'תופסת',
|
|
154
|
-
|
|
155
|
-
line: 'קו',
|
|
156
|
-
|
|
157
|
-
xyChart: 'XY (פיזור)',
|
|
158
|
-
scatter: 'פיזור',
|
|
159
|
-
bubble: 'בועה',
|
|
160
|
-
|
|
161
|
-
areaChart: 'אזור',
|
|
162
|
-
area: 'אזור',
|
|
163
|
-
stackedArea: 'מוערכות',
|
|
164
|
-
normalizedArea: 'מוערכות 100%',
|
|
165
|
-
|
|
166
|
-
histogramChart: 'היסטוגרמה',
|
|
167
|
-
histogramFrequency: 'תדירות',
|
|
168
|
-
|
|
169
|
-
combinationChart: 'שילוב',
|
|
170
|
-
columnLineCombo: 'עמודות וקו',
|
|
171
|
-
AreaColumnCombo: 'אזור ועמודות',
|
|
172
|
-
|
|
173
|
-
// Charts
|
|
174
|
-
pivotChartTitle: 'תרשים צירופים',
|
|
175
|
-
rangeChartTitle: 'תרשים טווח',
|
|
176
|
-
settings: 'הגדרות',
|
|
177
|
-
data: 'נתונים',
|
|
178
|
-
format: 'תבנית',
|
|
179
|
-
categories: 'קטגוריות',
|
|
180
|
-
defaultCategory: '(ללא)',
|
|
181
|
-
series: 'סדרות',
|
|
182
|
-
xyValues: 'ערכי XY',
|
|
183
|
-
paired: 'מצב זוגי',
|
|
184
|
-
axis: 'ציר',
|
|
185
|
-
navigator: 'נווט',
|
|
186
|
-
color: 'צבע',
|
|
187
|
-
thickness: 'עובי',
|
|
188
|
-
xType: 'סוג X',
|
|
189
|
-
automatic: 'אוטומטי',
|
|
190
|
-
category: 'קטגוריה',
|
|
191
|
-
number: 'מספר',
|
|
192
|
-
time: 'זמן',
|
|
193
|
-
autoRotate: 'סיבוב אוטומטי',
|
|
194
|
-
xRotation: 'סיבוב X',
|
|
195
|
-
yRotation: 'סיבוב Y',
|
|
196
|
-
ticks: 'סימניות',
|
|
197
|
-
width: 'רוחב',
|
|
198
|
-
height: 'גובה',
|
|
199
|
-
length: 'אורך',
|
|
200
|
-
padding: 'ריפוד',
|
|
201
|
-
spacing: 'ריווח',
|
|
202
|
-
chart: 'תרשים',
|
|
203
|
-
title: 'כותרת',
|
|
204
|
-
titlePlaceholder: 'כותרת התרשים - לחץ פעמיים לעריכה',
|
|
205
|
-
background: 'רקע',
|
|
206
|
-
font: 'גופן',
|
|
207
|
-
top: 'עליון',
|
|
208
|
-
right: 'ימין',
|
|
209
|
-
bottom: 'תחתון',
|
|
210
|
-
left: 'שמאל',
|
|
211
|
-
labels: 'תוויות',
|
|
212
|
-
size: 'גודל',
|
|
213
|
-
minSize: 'גודל מינימלי',
|
|
214
|
-
maxSize: 'גודל מקסימלי',
|
|
215
|
-
legend: 'מקרא',
|
|
216
|
-
position: 'מיקום',
|
|
217
|
-
markerSize: 'גודל מרקר',
|
|
218
|
-
markerStroke: 'מסגרת מרקר',
|
|
219
|
-
markerPadding: 'ריפוד מרקר',
|
|
220
|
-
itemSpacing: 'ריווח פריט',
|
|
221
|
-
itemPaddingX: 'ריפוד פריט X',
|
|
222
|
-
itemPaddingY: 'ריפוד פריט Y',
|
|
223
|
-
layoutHorizontalSpacing: 'ריווח אופקי',
|
|
224
|
-
layoutVerticalSpacing: 'ריווח אנכי',
|
|
225
|
-
strokeWidth: 'רוחב קו',
|
|
226
|
-
lineDash: 'קו מקווקו',
|
|
227
|
-
offset: 'היסט',
|
|
228
|
-
offsets: 'היסטים',
|
|
229
|
-
tooltips: 'תיבות מידע',
|
|
230
|
-
callout: 'תיבת התראה',
|
|
231
|
-
markers: 'מרקרים',
|
|
232
|
-
shadow: 'צל',
|
|
233
|
-
blur: 'טשטוש',
|
|
234
|
-
xOffset: 'היסט X',
|
|
235
|
-
yOffset: 'היסט Y',
|
|
236
|
-
lineWidth: 'עובי קו',
|
|
237
|
-
normal: 'רגיל',
|
|
238
|
-
bold: 'מודגש',
|
|
239
|
-
italic: 'נטוי',
|
|
240
|
-
boldItalic: 'מודגש נטוי',
|
|
241
|
-
predefined: 'מוגדר מראש',
|
|
242
|
-
fillOpacity: 'אטימות מילוי',
|
|
243
|
-
strokeOpacity: 'אטימות קו',
|
|
244
|
-
histogramBinCount: 'ספירת תאים',
|
|
245
|
-
columnGroup: 'עמודה',
|
|
246
|
-
barGroup: 'טור',
|
|
247
|
-
pieGroup: 'עוגה',
|
|
248
|
-
lineGroup: 'קו',
|
|
249
|
-
scatterGroup: 'XY (פיזור)',
|
|
250
|
-
areaGroup: 'אזור',
|
|
251
|
-
histogramGroup: 'היסטוגרמה',
|
|
252
|
-
combinationGroup: 'שילוב',
|
|
253
|
-
groupedColumnTooltip: 'קיבוץ',
|
|
254
|
-
stackedColumnTooltip: 'מוערכות',
|
|
255
|
-
normalizedColumnTooltip: 'מוערכות 100%',
|
|
256
|
-
groupedBarTooltip: 'קיבוץ',
|
|
257
|
-
stackedBarTooltip: 'מוערכות',
|
|
258
|
-
normalizedBarTooltip: 'מוערכות 100%',
|
|
259
|
-
pieTooltip: 'עוגה',
|
|
260
|
-
doughnutTooltip: 'תופסת',
|
|
261
|
-
lineTooltip: 'קו',
|
|
262
|
-
groupedAreaTooltip: 'אזור',
|
|
263
|
-
stackedAreaTooltip: 'מוערכות',
|
|
264
|
-
normalizedAreaTooltip: 'מוערכות 100%',
|
|
265
|
-
scatterTooltip: 'פיזור',
|
|
266
|
-
bubbleTooltip: 'בועה',
|
|
267
|
-
histogramTooltip: 'היסטוגרמה',
|
|
268
|
-
columnLineComboTooltip: 'עמודות וקו',
|
|
269
|
-
areaColumnComboTooltip: 'אזור ועמודות',
|
|
270
|
-
customComboTooltip: 'שילוב מותאם אישית',
|
|
271
|
-
noDataToChart: 'אין נתונים זמינים לתרשים.',
|
|
272
|
-
pivotChartRequiresPivotMode: 'תרשים צירופים דורש מצב צירופים מופעל.',
|
|
273
|
-
chartSettingsToolbarTooltip: 'תפריט',
|
|
274
|
-
chartLinkToolbarTooltip: 'קישור לגריד',
|
|
275
|
-
chartUnlinkToolbarTooltip: 'ביטול קישור מהגריד',
|
|
276
|
-
chartDownloadToolbarTooltip: 'הורדת התרשים',
|
|
277
|
-
seriesChartType: 'סוג תרשים סדרות',
|
|
278
|
-
seriesType: 'סוג סדרות',
|
|
279
|
-
secondaryAxis: 'ציר משני',
|
|
280
|
-
|
|
281
|
-
// ARIA
|
|
282
|
-
ariaChecked: 'מסומן',
|
|
283
|
-
ariaColumn: 'עמודה',
|
|
284
|
-
ariaColumnGroup: 'קבוצת עמודות',
|
|
285
|
-
ariaColumnList: 'רשימת עמודות',
|
|
286
|
-
ariaColumnSelectAll: 'בחר את כל העמודות',
|
|
287
|
-
ariaDateFilterInput: 'תיבת קלט סינון תאריכים',
|
|
288
|
-
ariaDefaultListName: 'רשימה',
|
|
289
|
-
ariaFilterColumnsInput: 'תיבת קלט סינון עמודות',
|
|
290
|
-
ariaFilterFromValue: 'ערך מסנן מ',
|
|
291
|
-
ariaFilterInput: 'תיבת קלט סינון',
|
|
292
|
-
ariaFilterList: 'רשימת סינון',
|
|
293
|
-
ariaFilterToValue: 'ערך מסנן אל',
|
|
294
|
-
ariaFilterValue: 'ערך מסנן',
|
|
295
|
-
ariaFilterMenuOpen: 'פתח תפריט סינון',
|
|
296
|
-
ariaFilteringOperator: 'מפעיל סינון',
|
|
297
|
-
ariaHidden: 'מוסתר',
|
|
298
|
-
ariaIndeterminate:'לא מוגדר',
|
|
299
|
-
ariaInputEditor: 'עורך קלט',
|
|
300
|
-
ariaMenuColumn: 'לחץ על CTRL ENTER כדי לפתוח תפריט עמודה.',
|
|
301
|
-
ariaRowDeselect: 'לחץ על SPACE כדי לבטל בחירה בשורה זו',
|
|
302
|
-
ariaRowSelectAll: 'לחץ על SPACE כדי לשנות את בחירת כל השורות',
|
|
303
|
-
ariaRowToggleSelection: 'לחץ על SPACE כדי לשנות את בחירת השורה',
|
|
304
|
-
ariaRowSelect: 'לחץ על SPACE כדי לבחור את השורה',
|
|
305
|
-
ariaSearch: 'חיפוש',
|
|
306
|
-
ariaSortableColumn: 'לחץ על ENTER כדי למיין',
|
|
307
|
-
ariaToggleVisibility: 'לחץ על SPACE כדי לשנות את הראות',
|
|
308
|
-
ariaToggleCellValue: 'לחץ על SPACE כדי לשנות את ערך התא',
|
|
309
|
-
ariaUnchecked: 'לא מסומן',
|
|
310
|
-
ariaVisible: 'מוצג',
|
|
311
|
-
ariaSearchFilterValues: 'חיפוש בערכי הסינון',
|
|
312
|
-
|
|
313
|
-
// ARIA Labels for Drop Zones
|
|
314
|
-
ariaRowGroupDropZonePanelLabel: 'קבוצות שורות',
|
|
315
|
-
ariaValuesDropZonePanelLabel: 'ערכים',
|
|
316
|
-
ariaPivotDropZonePanelLabel: 'תגיות עמודות',
|
|
317
|
-
ariaDropZoneColumnComponentDescription: 'לחץ DELETE כדי להסיר',
|
|
318
|
-
ariaDropZoneColumnValueItemDescription: 'לחץ ENTER כדי לשנות את סוג האגרגציה',
|
|
319
|
-
ariaDropZoneColumnGroupItemDescription: 'לחץ ENTER כדי למיין',
|
|
320
|
-
ariaDropZoneColumnComponentAggFuncSeparator: ' של ',
|
|
321
|
-
ariaDropZoneColumnComponentSortAscending: 'מיון עולה',
|
|
322
|
-
ariaDropZoneColumnComponentSortDescending: 'מיון יורד',
|
|
323
|
-
|
|
324
|
-
// ARIA Labels for Dialogs
|
|
325
|
-
ariaLabelColumnMenu: 'תפריט עמודות',
|
|
326
|
-
ariaLabelCellEditor: 'עורך תא',
|
|
327
|
-
ariaLabelDialog: 'דיאלוג',
|
|
328
|
-
ariaLabelSelectField: 'בחירת שדה',
|
|
329
|
-
ariaLabelTooltip: 'הסבר קצר',
|
|
330
|
-
ariaLabelContextMenu: 'תפריט הקשר',
|
|
331
|
-
ariaLabelSubMenu: 'תת תפריט',
|
|
332
|
-
ariaLabelAggregationFunction: 'פונקציית אגרגציה',
|
|
333
|
-
|
|
334
|
-
// Number Format (Status Bar, Pagination Panel)
|
|
335
|
-
thousandSeparator: ',',
|
|
336
|
-
decimalSeparator: '.',
|
|
337
|
-
|
|
338
|
-
// Data types
|
|
339
|
-
true: 'נכון',
|
|
340
|
-
false: 'לא נכון',
|
|
341
|
-
invalidDate: 'תאריך לא תקין',
|
|
342
|
-
invalidNumber: 'מספר לא תקין',
|
|
343
|
-
january: 'ינואר',
|
|
344
|
-
february: 'פברואר',
|
|
345
|
-
march: 'מרץ',
|
|
346
|
-
april: 'אפריל',
|
|
347
|
-
may: 'מאי',
|
|
348
|
-
june: 'יוני',
|
|
349
|
-
july: 'יולי',
|
|
350
|
-
august: 'אוגוסט',
|
|
351
|
-
september: 'ספטמבר',
|
|
352
|
-
october: 'אוקטובר',
|
|
353
|
-
november: 'נובמבר',
|
|
354
|
-
december: 'דצמבר',
|
|
355
|
-
};
|
package/pt.js
DELETED
|
@@ -1,268 +0,0 @@
|
|
|
1
|
-
const AG_GRID_LOCALE_PT = {
|
|
2
|
-
// Seleção do filtro
|
|
3
|
-
selectAll: '(Destacar tudo)',
|
|
4
|
-
selectAllSearchResults: '(Destacar todos os resultados da pesquisa)',
|
|
5
|
-
searchOoo: 'Pesquisar...',
|
|
6
|
-
blanks: '(Espaços em branco)',
|
|
7
|
-
noMatches: 'Nenhuma correspondência',
|
|
8
|
-
|
|
9
|
-
// Filtro numérico e filtro de texto
|
|
10
|
-
filterOoo: 'Filtragem...',
|
|
11
|
-
equals: 'Igual',
|
|
12
|
-
notEqual: 'Diferente',
|
|
13
|
-
empty: 'Vazio',
|
|
14
|
-
|
|
15
|
-
// Filtro numérico
|
|
16
|
-
lessThan: 'Menos de',
|
|
17
|
-
greaterThan: 'Mais de',
|
|
18
|
-
lessThanOrEqual: 'Menor ou igual a',
|
|
19
|
-
greaterThanOrEqual: 'Maior ou igual a',
|
|
20
|
-
inRange: 'Entre',
|
|
21
|
-
inRangeStart: 'De',
|
|
22
|
-
inRangeEnd: 'Até',
|
|
23
|
-
|
|
24
|
-
// Filtro de texto
|
|
25
|
-
contains: 'Contém',
|
|
26
|
-
notContains: 'Não contém',
|
|
27
|
-
startsWith: 'Começa com',
|
|
28
|
-
endsWith: 'Termina em',
|
|
29
|
-
|
|
30
|
-
// Filtro de data
|
|
31
|
-
dateFormatOoo: 'dd-mm-yyyy',
|
|
32
|
-
|
|
33
|
-
// Condições de filtragem
|
|
34
|
-
andCondition: 'E',
|
|
35
|
-
orCondition: 'OU',
|
|
36
|
-
|
|
37
|
-
// Botões de filtro
|
|
38
|
-
applyFilter: 'Aplicar filtro',
|
|
39
|
-
resetFilter: 'Reiniciar filtro',
|
|
40
|
-
clearFilter: 'Limpar filtro',
|
|
41
|
-
cancelFilter: 'Cancelar',
|
|
42
|
-
|
|
43
|
-
// Cabeçalhos de filtro
|
|
44
|
-
textFilter: 'Filtro de texto',
|
|
45
|
-
numberFilter: 'Filtro numérico',
|
|
46
|
-
dateFilter: 'Filtrar por data',
|
|
47
|
-
setFilter: 'Selecionar filtro',
|
|
48
|
-
|
|
49
|
-
// Painel lateral
|
|
50
|
-
columns: 'Colunas',
|
|
51
|
-
filters: 'Filtros',
|
|
52
|
-
|
|
53
|
-
// Barra de ferramentas da coluna
|
|
54
|
-
pivotMode: 'Modo de quadro resumo',
|
|
55
|
-
groups: 'Grupos de linhas',
|
|
56
|
-
rowGroupColumnsEmptyMessage: 'Arrastar e largar aqui para agrupar por linhas',
|
|
57
|
-
values: 'Valores',
|
|
58
|
-
valueColumnsEmptyMessage: 'Arrastar e largar aqui para agregação',
|
|
59
|
-
pivots: 'Títulos de coluna',
|
|
60
|
-
pivotColumnsEmptyMessage: 'Arrastar e largar aqui para definir os títulos das colunas',
|
|
61
|
-
|
|
62
|
-
// Cabeçalho de grupo de colunas por defeito
|
|
63
|
-
group: 'Grupo',
|
|
64
|
-
|
|
65
|
-
// Outros
|
|
66
|
-
loadingOoo: 'A carregar...',
|
|
67
|
-
noRowsToShow: 'Sem dados',
|
|
68
|
-
enabled: 'Incluído',
|
|
69
|
-
|
|
70
|
-
// Menu
|
|
71
|
-
pinColumn: 'Fixar a coluna',
|
|
72
|
-
pinLeft: 'Fixar à esquerda',
|
|
73
|
-
pinRight: 'Fixar à direita',
|
|
74
|
-
noPin: 'Não fixar',
|
|
75
|
-
valueAggregation: 'Agregação por valor',
|
|
76
|
-
autosizeThiscolumn: 'Define automaticamente o tamanho desta coluna',
|
|
77
|
-
autosizeAllColumns: 'Dimensionar automaticamente todas as colunas',
|
|
78
|
-
groupBy: 'Agrupar por',
|
|
79
|
-
ungroupBy: 'Desagrupar por',
|
|
80
|
-
resetColumns: 'Repor colunas',
|
|
81
|
-
expandAll: 'Expandir tudo',
|
|
82
|
-
collapseAll: 'Recolher tudo',
|
|
83
|
-
copy: 'Copiar',
|
|
84
|
-
ctrlC: 'Ctrl+C',
|
|
85
|
-
copyWithHeaders: 'Copiar com cabeçalhos',
|
|
86
|
-
paste: 'Colar',
|
|
87
|
-
ctrlV: 'Ctrl+V',
|
|
88
|
-
export: 'Exportar',
|
|
89
|
-
csvExport: 'Exportar para CSV (.csv)',
|
|
90
|
-
excelExport: 'Exportar para Excel (.xlsx)',
|
|
91
|
-
excelXmlExport: 'Exportar para XML (.xml)',
|
|
92
|
-
|
|
93
|
-
// Agregação do menu corporativo e da barra de estado
|
|
94
|
-
sum: 'Soma',
|
|
95
|
-
min: 'Mínimo',
|
|
96
|
-
max: 'Máximo',
|
|
97
|
-
none: 'Nenhum',
|
|
98
|
-
count: 'Contar',
|
|
99
|
-
avg: 'Média',
|
|
100
|
-
filteredRows: 'Linhas filtradas',
|
|
101
|
-
selectedRows: 'Linhas selecionadas',
|
|
102
|
-
totalRows: 'Total de linhas',
|
|
103
|
-
totalAndFilteredRows: 'Linhas totais e filtradas',
|
|
104
|
-
more: 'Mais',
|
|
105
|
-
to: 'até',
|
|
106
|
-
of: 'de',
|
|
107
|
-
page: 'Página',
|
|
108
|
-
nextPage: 'Página seguinte',
|
|
109
|
-
lastPage: 'Última página',
|
|
110
|
-
firstPage: 'Primeira página',
|
|
111
|
-
previousPage: 'Página anterior',
|
|
112
|
-
pageSizeSelectorLabel: 'Tamanho da página:',
|
|
113
|
-
// Menu empresarial (gráficos)
|
|
114
|
-
pivotChartAndPivotMode: 'Gráfico de resumo e modo de resumo',
|
|
115
|
-
pivotChart: 'Pivot chart',
|
|
116
|
-
chartRange: 'Chart range',
|
|
117
|
-
|
|
118
|
-
columnChart: 'Column chart',
|
|
119
|
-
groupedColumn: 'Grouped column',
|
|
120
|
-
stackedColumn: 'Stacked column',
|
|
121
|
-
normalizedColumn: 'Normalized column',
|
|
122
|
-
|
|
123
|
-
barChart: 'Bar chart',
|
|
124
|
-
groupedBar: 'Grouped bar',
|
|
125
|
-
stackedBar: 'Stacked bar',
|
|
126
|
-
normalizedBar: 'Normalized bar',
|
|
127
|
-
|
|
128
|
-
pieChart: 'Pie chart',
|
|
129
|
-
pie: 'Pie',
|
|
130
|
-
doughnut: 'Donuts',
|
|
131
|
-
|
|
132
|
-
line: 'Line',
|
|
133
|
-
|
|
134
|
-
xyChart: 'XY chart',
|
|
135
|
-
scatter: 'Scatter',
|
|
136
|
-
bubble: 'Bubble',
|
|
137
|
-
|
|
138
|
-
areaChart: 'Area chart',
|
|
139
|
-
area: 'Area',
|
|
140
|
-
stackedArea: 'Stacked area',
|
|
141
|
-
normalizedArea: 'Normalized area',
|
|
142
|
-
|
|
143
|
-
histogramChart: 'Histogram chart',
|
|
144
|
-
|
|
145
|
-
// Gráficos
|
|
146
|
-
pivotChartTitle: 'Título do gráfico',
|
|
147
|
-
rangeChartTitle: 'Título do gráfico',
|
|
148
|
-
settings: 'Definições',
|
|
149
|
-
data: 'Dados',
|
|
150
|
-
format: 'formato',
|
|
151
|
-
categories: 'Categorias',
|
|
152
|
-
defaultCategory: '(Categoria predefinida)',
|
|
153
|
-
series: 'Series',
|
|
154
|
-
xyValues: 'X Y Valores',
|
|
155
|
-
paired: 'Emparelhado',
|
|
156
|
-
axis: 'axis',
|
|
157
|
-
navigator: 'Navegação',
|
|
158
|
-
color: 'Cor',
|
|
159
|
-
thickness: 'Espessura',
|
|
160
|
-
xType: 'X Tipo',
|
|
161
|
-
automatic: 'Automaticamente',
|
|
162
|
-
category: 'Categoria',
|
|
163
|
-
number: 'Número',
|
|
164
|
-
time: 'Tempo',
|
|
165
|
-
xRotation: 'Rotação X',
|
|
166
|
-
yRotation: 'Rotação Y',
|
|
167
|
-
ticks: 'Marcas',
|
|
168
|
-
width: 'Largura',
|
|
169
|
-
height: 'Altura',
|
|
170
|
-
length: 'Comprimento',
|
|
171
|
-
padding: 'Preenchimento',
|
|
172
|
-
spacing: 'Espaçamento',
|
|
173
|
-
chart: 'Gráfico',
|
|
174
|
-
title: 'Título',
|
|
175
|
-
titlePlaceholder: 'Título do gráfico - clique duas vezes para editar',
|
|
176
|
-
background: 'Fundo',
|
|
177
|
-
font: 'Fonte',
|
|
178
|
-
top: 'Topo',
|
|
179
|
-
right: 'Direita',
|
|
180
|
-
bottom: 'Fundo',
|
|
181
|
-
left: 'Esquerda',
|
|
182
|
-
labels: 'Etiquetas',
|
|
183
|
-
size: 'Tamanho',
|
|
184
|
-
minSize: 'Tamanho mínimo',
|
|
185
|
-
maxSize: 'Tamanho máximo',
|
|
186
|
-
legend: 'Legenda',
|
|
187
|
-
position: 'Posição',
|
|
188
|
-
markerSize: 'Tamanho do marcador',
|
|
189
|
-
markerStroke: 'Traço do marcador',
|
|
190
|
-
markerPadding: 'Preenchimento do marcador',
|
|
191
|
-
itemSpacing: 'Distância entre itens',
|
|
192
|
-
itemPaddingX: 'Preenchimento de item X',
|
|
193
|
-
itemPaddingY: 'Preenchimento de item Y',
|
|
194
|
-
layoutHorizontalSpacing: 'Espaçamento horizontal',
|
|
195
|
-
layoutVerticalSpacing: 'Espaçamento vertical',
|
|
196
|
-
strokeWidth: 'Largura do marcador',
|
|
197
|
-
offset: 'Offset',
|
|
198
|
-
offsets: 'Offsets',
|
|
199
|
-
tooltips: 'Dicas',
|
|
200
|
-
callout: 'Desafio',
|
|
201
|
-
markers: 'Marcadores',
|
|
202
|
-
shadow: 'Sombra',
|
|
203
|
-
blur: 'Desfocagem',
|
|
204
|
-
xOffset: 'Offset по X',
|
|
205
|
-
yOffset: 'Offset по Y',
|
|
206
|
-
lineWidth: 'Largura da linha',
|
|
207
|
-
normal: 'Normal',
|
|
208
|
-
bold: 'Negrito',
|
|
209
|
-
italic: 'Itálico',
|
|
210
|
-
boldItalic: 'Negrito itálico',
|
|
211
|
-
predefined: 'Pré-definido',
|
|
212
|
-
fillOpacity: 'Opacidade do preenchimento',
|
|
213
|
-
strokeOpacity: 'Opacidade do marcador',
|
|
214
|
-
histogramBinCount: 'Número de segmentos',
|
|
215
|
-
columnGroup: 'Column group',
|
|
216
|
-
barGroup: 'Bar group',
|
|
217
|
-
pieGroup: 'Pie group',
|
|
218
|
-
lineGroup: 'Line group',
|
|
219
|
-
scatterGroup: 'Scatter group',
|
|
220
|
-
areaGroup: 'Area group',
|
|
221
|
-
histogramGroup: 'Histogram group',
|
|
222
|
-
groupedColumnTooltip: 'Grouped column tooltip',
|
|
223
|
-
stackedColumnTooltip: 'Stacked column tooltip',
|
|
224
|
-
normalizedColumnTooltip: 'Normalized column Tooltip',
|
|
225
|
-
groupedBarTooltip: 'GroupedBar tooltip',
|
|
226
|
-
stackedBarTooltip: 'StackedBar tooltip',
|
|
227
|
-
normalizedBarTooltip: 'NormalizedBar tooltip',
|
|
228
|
-
pieTooltip: 'Pie tooltip',
|
|
229
|
-
doughnutTooltip: 'doughnut tooltip',
|
|
230
|
-
lineTooltip: 'Line tooltip',
|
|
231
|
-
groupedAreaTooltip: 'Grouped area tooltip',
|
|
232
|
-
stackedAreaTooltip: 'Stacked area tooltip',
|
|
233
|
-
normalizedAreaTooltip: 'Normalized area tooltip',
|
|
234
|
-
scatterTooltip: 'Scatter tooltip',
|
|
235
|
-
bubbleTooltip: 'Bubble tooltip',
|
|
236
|
-
histogramTooltip: 'Histogram tooltip',
|
|
237
|
-
noDataToChart: 'Não há dados para apresentar no gráfico.',
|
|
238
|
-
pivotChartRequiresPivotMode: 'Para um gráfico de resumo, é necessário ativar o modo de gráfico de resumo.',
|
|
239
|
-
chartSettingsToolbarTooltip: 'Chart settings toolbar tooltip',
|
|
240
|
-
chartLinkToolbarTooltip: 'Chart link toolbar tooltip',
|
|
241
|
-
chartUnlinkToolbarTooltip: 'Chart unlink toolbar tooltip',
|
|
242
|
-
chartDownloadToolbarTooltip: 'Chart download toolbar tooltip',
|
|
243
|
-
|
|
244
|
-
// ARIA
|
|
245
|
-
ariaHidden: 'Oculto',
|
|
246
|
-
ariaVisible: 'Visível',
|
|
247
|
-
ariaChecked: 'Verificado',
|
|
248
|
-
ariaUnchecked: 'Não verificado',
|
|
249
|
-
ariaIndeterminate: 'Indeterminado',
|
|
250
|
-
ariaColumnSelectAll: 'Mudar para a seleção de todas as colunas',
|
|
251
|
-
ariaInputEditor: 'Editor de entradas',
|
|
252
|
-
ariaDateFilterInput: 'Introduzir um filtro de data',
|
|
253
|
-
ariaFilterInput: 'Entrada do filtro',
|
|
254
|
-
ariaFilterColumnsInput: 'Introduzir um filtro de coluna',
|
|
255
|
-
ariaFilterValue: 'Valor do filtro',
|
|
256
|
-
ariaFilterFromValue: 'Filtrar a partir do valor',
|
|
257
|
-
ariaFilterToValue: 'Filtrar para um valor',
|
|
258
|
-
ariaFilteringOperator: 'Operador de filtro',
|
|
259
|
-
ariaColumnToggleVisibility: 'Alternar a visibilidade da coluna',
|
|
260
|
-
ariaColumnGroupToggleVisibility: 'Alternar a visibilidade de um grupo de colunas',
|
|
261
|
-
ariaRowSelect: 'Prima a tecla ESPAÇO para realçar esta linha',
|
|
262
|
-
ariaRowDeselect: 'Prima ESPAÇO para anular a seleção desta linha',
|
|
263
|
-
ariaRowToggleSelection: 'Prima ESPAÇO para alternar a seleção de linha',
|
|
264
|
-
ariaRowSelectAll: 'Prima ESPAÇO para alternar a seleção de todas as linhas',
|
|
265
|
-
ariaSearch: 'Pesquisar',
|
|
266
|
-
ariaSearchFilterValues: 'Pesquisa de valores por filtro',
|
|
267
|
-
}
|
|
268
|
-
|