@progress/kendo-angular-messages 1.61.0-develop.1 → 1.61.0-develop.3
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/bin/kendo-translate.js +5 -4
- package/messages/grid/grid.ar.yml +54 -0
- package/messages/grid/grid.bg-BG.yml +54 -0
- package/messages/grid/grid.cs-CZ.yml +54 -0
- package/messages/grid/grid.da-DK.yml +54 -0
- package/messages/grid/grid.de-AT.yml +54 -0
- package/messages/grid/grid.de-CH.yml +54 -0
- package/messages/grid/grid.de-DE.yml +54 -0
- package/messages/grid/grid.de-LI.yml +54 -0
- package/messages/grid/grid.en-AU.yml +54 -0
- package/messages/grid/grid.en-CA.yml +54 -0
- package/messages/grid/grid.en-GB.yml +54 -0
- package/messages/grid/grid.en-US.yml +54 -0
- package/messages/grid/grid.es-AR.yml +54 -0
- package/messages/grid/grid.es-BO.yml +54 -0
- package/messages/grid/grid.es-CL.yml +54 -0
- package/messages/grid/grid.es-CO.yml +54 -0
- package/messages/grid/grid.es-CR.yml +54 -0
- package/messages/grid/grid.es-DO.yml +54 -0
- package/messages/grid/grid.es-EC.yml +54 -0
- package/messages/grid/grid.es-ES.yml +54 -0
- package/messages/grid/grid.es-GT.yml +54 -0
- package/messages/grid/grid.es-HN.yml +54 -0
- package/messages/grid/grid.es-MX.yml +54 -0
- package/messages/grid/grid.es-NI.yml +54 -0
- package/messages/grid/grid.es-PA.yml +54 -0
- package/messages/grid/grid.es-PE.yml +54 -0
- package/messages/grid/grid.es-PR.yml +54 -0
- package/messages/grid/grid.es-PY.yml +54 -0
- package/messages/grid/grid.es-US.yml +54 -0
- package/messages/grid/grid.es-UY.yml +54 -0
- package/messages/grid/grid.es-VE.yml +54 -0
- package/messages/grid/grid.fa-IR.yml +54 -0
- package/messages/grid/grid.fi-FI.yml +54 -0
- package/messages/grid/grid.fr-BE.yml +54 -0
- package/messages/grid/grid.fr-CA.yml +54 -0
- package/messages/grid/grid.fr-CD.yml +54 -0
- package/messages/grid/grid.fr-CH.yml +54 -0
- package/messages/grid/grid.fr-CI.yml +54 -0
- package/messages/grid/grid.fr-CM.yml +54 -0
- package/messages/grid/grid.fr-FR.yml +54 -0
- package/messages/grid/grid.fr-HT.yml +54 -0
- package/messages/grid/grid.fr-LU.yml +54 -0
- package/messages/grid/grid.fr-MA.yml +54 -0
- package/messages/grid/grid.fr-MC.yml +54 -0
- package/messages/grid/grid.fr-ML.yml +54 -0
- package/messages/grid/grid.fr-SN.yml +54 -0
- package/messages/grid/grid.he-IL.yml +54 -0
- package/messages/grid/grid.hy-AM.yml +54 -0
- package/messages/grid/grid.it-CH.yml +54 -0
- package/messages/grid/grid.it-IT.yml +54 -0
- package/messages/grid/grid.ja-JP.yml +54 -0
- package/messages/grid/grid.ka-GE.yml +54 -0
- package/messages/grid/grid.nb-NO.yml +54 -0
- package/messages/grid/grid.nl-BE.yml +54 -0
- package/messages/grid/grid.nl-NL.yml +54 -0
- package/messages/grid/grid.pl-PL.yml +54 -0
- package/messages/grid/grid.pt-BR.yml +54 -0
- package/messages/grid/grid.pt-PT.yml +54 -0
- package/messages/grid/grid.ro-RO.yml +54 -0
- package/messages/grid/grid.ru-RU.yml +54 -0
- package/messages/grid/grid.sk-SK.yml +54 -0
- package/messages/grid/grid.sv-SE.yml +54 -0
- package/messages/grid/grid.tr-TR.yml +54 -0
- package/messages/grid/grid.uk-UA.yml +54 -0
- package/messages/grid/grid.zh-CN.yml +54 -0
- package/messages/grid/grid.zh-HK.yml +54 -0
- package/messages/grid/grid.zh-TW.yml +54 -0
- package/package.json +2 -2
package/bin/kendo-translate.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
|
-
const glob = require('glob');
|
|
4
|
+
const {glob} = require('glob');
|
|
5
5
|
const path = require('path');
|
|
6
6
|
const yaml = require('js-yaml');
|
|
7
7
|
const fs = require('fs');
|
|
@@ -51,9 +51,10 @@ const complete = (reject, resolve) => (error, result) => {
|
|
|
51
51
|
};
|
|
52
52
|
|
|
53
53
|
// findFiles :: String => Task [FilePath]
|
|
54
|
-
const findFiles = wildcard
|
|
55
|
-
|
|
56
|
-
});
|
|
54
|
+
const findFiles = (wildcard) =>
|
|
55
|
+
new Task((reject, resolve) => {
|
|
56
|
+
glob(wildcard, { nocase: true, root: msgRoot }).then(resolve).catch(reject);
|
|
57
|
+
});
|
|
57
58
|
|
|
58
59
|
// readFile :: FilePath -> Task FileContent
|
|
59
60
|
const readFile = filename => new Task((reject, resolve) => {
|
|
@@ -257,3 +257,57 @@ kendo:
|
|
|
257
257
|
|
|
258
258
|
# The text of the aria-label attribute applied to the input element for entering the page number
|
|
259
259
|
pagerInputLabel: Type a page number
|
|
260
|
+
|
|
261
|
+
# The default text of a form validation error when using external editing
|
|
262
|
+
formValidationErrorText: 'The {fieldName} field has {errorName} validation error'
|
|
263
|
+
|
|
264
|
+
# The title of the remove item confirmation Dialog
|
|
265
|
+
removeConfirmationDialogTitle: Please confirm
|
|
266
|
+
|
|
267
|
+
# The title of the remove item confirmation Dialog
|
|
268
|
+
removeConfirmationDialogContent: Are you sure you want to delete this item?
|
|
269
|
+
|
|
270
|
+
# The text of the remove item confirmation Dialog confirm action button
|
|
271
|
+
removeConfirmationDialogConfirmText: Yes
|
|
272
|
+
|
|
273
|
+
# The text of the remove item confirmation Dialog reject action button
|
|
274
|
+
removeConfirmationDialogRejectText: No
|
|
275
|
+
|
|
276
|
+
# The title of the built-in external editing form container when editing an item
|
|
277
|
+
externalEditingTitle: Edit
|
|
278
|
+
|
|
279
|
+
# The text of the external editing form Save button
|
|
280
|
+
externalEditingSaveText: Save
|
|
281
|
+
|
|
282
|
+
# The text of the external editing form Cancel button
|
|
283
|
+
externalEditingCancelText: Cancel
|
|
284
|
+
|
|
285
|
+
# The text of the clear sort button located in the Sort Toolbar Tool and adaptive Sort Toolbar Tool
|
|
286
|
+
sortClearButton: Clear sorting
|
|
287
|
+
|
|
288
|
+
# The title of the Close button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode
|
|
289
|
+
adaptiveCloseButtonTitle: Close
|
|
290
|
+
|
|
291
|
+
# The title of the Back button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode
|
|
292
|
+
adaptiveBackButtonTitle: Back
|
|
293
|
+
|
|
294
|
+
# The text of the clear all filters button located in the Filter Toolbar Tool and adaptive Filter Toolbar Tool
|
|
295
|
+
filterClearAllButton: Clear all filters
|
|
296
|
+
|
|
297
|
+
# The text of the done sort button
|
|
298
|
+
sortDoneButton: Done
|
|
299
|
+
|
|
300
|
+
# The subtitle for the adaptive Grid Column Chooser and Column Chooser toolbar tool
|
|
301
|
+
columnsSubtitle: Selected fields are visible
|
|
302
|
+
|
|
303
|
+
# The title that is displayed in the adaptive Filter Toolbar Tool and Filter Menu
|
|
304
|
+
adaptiveFilterTitle: Filter by
|
|
305
|
+
|
|
306
|
+
# The title that is displayed in the Operators Action Sheet
|
|
307
|
+
adaptiveFilterOperatorsTitle: Operators
|
|
308
|
+
|
|
309
|
+
# The title that is displayed in the adaptive Sort Toolbar Tool
|
|
310
|
+
adaptiveSortTitle: Sort by
|
|
311
|
+
|
|
312
|
+
# The title of the built-in external editing form container when adding a new item
|
|
313
|
+
externalEditingAddTitle: Add
|
|
@@ -257,3 +257,57 @@ kendo:
|
|
|
257
257
|
|
|
258
258
|
# The text of the aria-label attribute applied to the input element for entering the page number
|
|
259
259
|
pagerInputLabel: Въведи номер на страница
|
|
260
|
+
|
|
261
|
+
# The default text of a form validation error when using external editing
|
|
262
|
+
formValidationErrorText: 'Грешка от тип {errorName} при валидация на полето {fieldName}'
|
|
263
|
+
|
|
264
|
+
# The title of the remove item confirmation Dialog
|
|
265
|
+
removeConfirmationDialogTitle: Моля потвърдете
|
|
266
|
+
|
|
267
|
+
# The title of the remove item confirmation Dialog
|
|
268
|
+
removeConfirmationDialogContent: Сигурни ли сте, че искате да изтриете този запис?
|
|
269
|
+
|
|
270
|
+
# The text of the remove item confirmation Dialog confirm action button
|
|
271
|
+
removeConfirmationDialogConfirmText: Да
|
|
272
|
+
|
|
273
|
+
# The text of the remove item confirmation Dialog reject action button
|
|
274
|
+
removeConfirmationDialogRejectText: Не
|
|
275
|
+
|
|
276
|
+
# The title of the built-in external editing form container when editing an item
|
|
277
|
+
externalEditingTitle: Редактиране
|
|
278
|
+
|
|
279
|
+
# The text of the external editing form Save button
|
|
280
|
+
externalEditingSaveText: Запази
|
|
281
|
+
|
|
282
|
+
# The text of the external editing form Cancel button
|
|
283
|
+
externalEditingCancelText: Откажи
|
|
284
|
+
|
|
285
|
+
# The text of the clear sort button located in the Sort Toolbar Tool and adaptive Sort Toolbar Tool
|
|
286
|
+
sortClearButton: Изчисти сортирането
|
|
287
|
+
|
|
288
|
+
# The title of the Close button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode
|
|
289
|
+
adaptiveCloseButtonTitle: Затвори
|
|
290
|
+
|
|
291
|
+
# The title of the Back button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode
|
|
292
|
+
adaptiveBackButtonTitle: Назад
|
|
293
|
+
|
|
294
|
+
# The text of the clear all filters button located in the Filter Toolbar Tool and adaptive Filter Toolbar Tool
|
|
295
|
+
filterClearAllButton: Изчисти всички филтри
|
|
296
|
+
|
|
297
|
+
# The text of the done sort button
|
|
298
|
+
sortDoneButton: Готово
|
|
299
|
+
|
|
300
|
+
# The subtitle for the adaptive Grid Column Chooser and Column Chooser toolbar tool
|
|
301
|
+
columnsSubtitle: Избраните колони са видими
|
|
302
|
+
|
|
303
|
+
# The title that is displayed in the adaptive Filter Toolbar Tool and Filter Menu
|
|
304
|
+
adaptiveFilterTitle: Филтрирай по
|
|
305
|
+
|
|
306
|
+
# The title that is displayed in the Operators Action Sheet
|
|
307
|
+
adaptiveFilterOperatorsTitle: Оператори
|
|
308
|
+
|
|
309
|
+
# The title that is displayed in the adaptive Sort Toolbar Tool
|
|
310
|
+
adaptiveSortTitle: Сортирай по
|
|
311
|
+
|
|
312
|
+
# The title of the built-in external editing form container when adding a new item
|
|
313
|
+
externalEditingAddTitle: Добави
|
|
@@ -257,3 +257,57 @@ kendo:
|
|
|
257
257
|
|
|
258
258
|
# The text of the aria-label attribute applied to the input element for entering the page number
|
|
259
259
|
pagerInputLabel: Type a page number
|
|
260
|
+
|
|
261
|
+
# The default text of a form validation error when using external editing
|
|
262
|
+
formValidationErrorText: 'The {fieldName} field has {errorName} validation error'
|
|
263
|
+
|
|
264
|
+
# The title of the remove item confirmation Dialog
|
|
265
|
+
removeConfirmationDialogTitle: Please confirm
|
|
266
|
+
|
|
267
|
+
# The title of the remove item confirmation Dialog
|
|
268
|
+
removeConfirmationDialogContent: Are you sure you want to delete this item?
|
|
269
|
+
|
|
270
|
+
# The text of the remove item confirmation Dialog confirm action button
|
|
271
|
+
removeConfirmationDialogConfirmText: Yes
|
|
272
|
+
|
|
273
|
+
# The text of the remove item confirmation Dialog reject action button
|
|
274
|
+
removeConfirmationDialogRejectText: No
|
|
275
|
+
|
|
276
|
+
# The title of the built-in external editing form container when editing an item
|
|
277
|
+
externalEditingTitle: Edit
|
|
278
|
+
|
|
279
|
+
# The text of the external editing form Save button
|
|
280
|
+
externalEditingSaveText: Save
|
|
281
|
+
|
|
282
|
+
# The text of the external editing form Cancel button
|
|
283
|
+
externalEditingCancelText: Cancel
|
|
284
|
+
|
|
285
|
+
# The text of the clear sort button located in the Sort Toolbar Tool and adaptive Sort Toolbar Tool
|
|
286
|
+
sortClearButton: Clear sorting
|
|
287
|
+
|
|
288
|
+
# The title of the Close button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode
|
|
289
|
+
adaptiveCloseButtonTitle: Close
|
|
290
|
+
|
|
291
|
+
# The title of the Back button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode
|
|
292
|
+
adaptiveBackButtonTitle: Back
|
|
293
|
+
|
|
294
|
+
# The text of the clear all filters button located in the Filter Toolbar Tool and adaptive Filter Toolbar Tool
|
|
295
|
+
filterClearAllButton: Clear all filters
|
|
296
|
+
|
|
297
|
+
# The text of the done sort button
|
|
298
|
+
sortDoneButton: Done
|
|
299
|
+
|
|
300
|
+
# The subtitle for the adaptive Grid Column Chooser and Column Chooser toolbar tool
|
|
301
|
+
columnsSubtitle: Selected fields are visible
|
|
302
|
+
|
|
303
|
+
# The title that is displayed in the adaptive Filter Toolbar Tool and Filter Menu
|
|
304
|
+
adaptiveFilterTitle: Filter by
|
|
305
|
+
|
|
306
|
+
# The title that is displayed in the Operators Action Sheet
|
|
307
|
+
adaptiveFilterOperatorsTitle: Operators
|
|
308
|
+
|
|
309
|
+
# The title that is displayed in the adaptive Sort Toolbar Tool
|
|
310
|
+
adaptiveSortTitle: Sort by
|
|
311
|
+
|
|
312
|
+
# The title of the built-in external editing form container when adding a new item
|
|
313
|
+
externalEditingAddTitle: Add
|
|
@@ -257,3 +257,57 @@ kendo:
|
|
|
257
257
|
|
|
258
258
|
# The text of the aria-label attribute applied to the input element for entering the page number
|
|
259
259
|
pagerInputLabel: Type a page number
|
|
260
|
+
|
|
261
|
+
# The default text of a form validation error when using external editing
|
|
262
|
+
formValidationErrorText: 'The {fieldName} field has {errorName} validation error'
|
|
263
|
+
|
|
264
|
+
# The title of the remove item confirmation Dialog
|
|
265
|
+
removeConfirmationDialogTitle: Please confirm
|
|
266
|
+
|
|
267
|
+
# The title of the remove item confirmation Dialog
|
|
268
|
+
removeConfirmationDialogContent: Are you sure you want to delete this item?
|
|
269
|
+
|
|
270
|
+
# The text of the remove item confirmation Dialog confirm action button
|
|
271
|
+
removeConfirmationDialogConfirmText: Yes
|
|
272
|
+
|
|
273
|
+
# The text of the remove item confirmation Dialog reject action button
|
|
274
|
+
removeConfirmationDialogRejectText: No
|
|
275
|
+
|
|
276
|
+
# The title of the built-in external editing form container when editing an item
|
|
277
|
+
externalEditingTitle: Edit
|
|
278
|
+
|
|
279
|
+
# The text of the external editing form Save button
|
|
280
|
+
externalEditingSaveText: Save
|
|
281
|
+
|
|
282
|
+
# The text of the external editing form Cancel button
|
|
283
|
+
externalEditingCancelText: Cancel
|
|
284
|
+
|
|
285
|
+
# The text of the clear sort button located in the Sort Toolbar Tool and adaptive Sort Toolbar Tool
|
|
286
|
+
sortClearButton: Clear sorting
|
|
287
|
+
|
|
288
|
+
# The title of the Close button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode
|
|
289
|
+
adaptiveCloseButtonTitle: Close
|
|
290
|
+
|
|
291
|
+
# The title of the Back button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode
|
|
292
|
+
adaptiveBackButtonTitle: Back
|
|
293
|
+
|
|
294
|
+
# The text of the clear all filters button located in the Filter Toolbar Tool and adaptive Filter Toolbar Tool
|
|
295
|
+
filterClearAllButton: Clear all filters
|
|
296
|
+
|
|
297
|
+
# The text of the done sort button
|
|
298
|
+
sortDoneButton: Done
|
|
299
|
+
|
|
300
|
+
# The subtitle for the adaptive Grid Column Chooser and Column Chooser toolbar tool
|
|
301
|
+
columnsSubtitle: Selected fields are visible
|
|
302
|
+
|
|
303
|
+
# The title that is displayed in the adaptive Filter Toolbar Tool and Filter Menu
|
|
304
|
+
adaptiveFilterTitle: Filter by
|
|
305
|
+
|
|
306
|
+
# The title that is displayed in the Operators Action Sheet
|
|
307
|
+
adaptiveFilterOperatorsTitle: Operators
|
|
308
|
+
|
|
309
|
+
# The title that is displayed in the adaptive Sort Toolbar Tool
|
|
310
|
+
adaptiveSortTitle: Sort by
|
|
311
|
+
|
|
312
|
+
# The title of the built-in external editing form container when adding a new item
|
|
313
|
+
externalEditingAddTitle: Add
|
|
@@ -257,3 +257,57 @@ kendo:
|
|
|
257
257
|
|
|
258
258
|
# The text of the aria-label attribute applied to the input element for entering the page number
|
|
259
259
|
pagerInputLabel: Type a page number
|
|
260
|
+
|
|
261
|
+
# The default text of a form validation error when using external editing
|
|
262
|
+
formValidationErrorText: 'The {fieldName} field has {errorName} validation error'
|
|
263
|
+
|
|
264
|
+
# The title of the remove item confirmation Dialog
|
|
265
|
+
removeConfirmationDialogTitle: Please confirm
|
|
266
|
+
|
|
267
|
+
# The title of the remove item confirmation Dialog
|
|
268
|
+
removeConfirmationDialogContent: Are you sure you want to delete this item?
|
|
269
|
+
|
|
270
|
+
# The text of the remove item confirmation Dialog confirm action button
|
|
271
|
+
removeConfirmationDialogConfirmText: Yes
|
|
272
|
+
|
|
273
|
+
# The text of the remove item confirmation Dialog reject action button
|
|
274
|
+
removeConfirmationDialogRejectText: No
|
|
275
|
+
|
|
276
|
+
# The title of the built-in external editing form container when editing an item
|
|
277
|
+
externalEditingTitle: Edit
|
|
278
|
+
|
|
279
|
+
# The text of the external editing form Save button
|
|
280
|
+
externalEditingSaveText: Save
|
|
281
|
+
|
|
282
|
+
# The text of the external editing form Cancel button
|
|
283
|
+
externalEditingCancelText: Cancel
|
|
284
|
+
|
|
285
|
+
# The text of the clear sort button located in the Sort Toolbar Tool and adaptive Sort Toolbar Tool
|
|
286
|
+
sortClearButton: Clear sorting
|
|
287
|
+
|
|
288
|
+
# The title of the Close button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode
|
|
289
|
+
adaptiveCloseButtonTitle: Close
|
|
290
|
+
|
|
291
|
+
# The title of the Back button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode
|
|
292
|
+
adaptiveBackButtonTitle: Back
|
|
293
|
+
|
|
294
|
+
# The text of the clear all filters button located in the Filter Toolbar Tool and adaptive Filter Toolbar Tool
|
|
295
|
+
filterClearAllButton: Clear all filters
|
|
296
|
+
|
|
297
|
+
# The text of the done sort button
|
|
298
|
+
sortDoneButton: Done
|
|
299
|
+
|
|
300
|
+
# The subtitle for the adaptive Grid Column Chooser and Column Chooser toolbar tool
|
|
301
|
+
columnsSubtitle: Selected fields are visible
|
|
302
|
+
|
|
303
|
+
# The title that is displayed in the adaptive Filter Toolbar Tool and Filter Menu
|
|
304
|
+
adaptiveFilterTitle: Filter by
|
|
305
|
+
|
|
306
|
+
# The title that is displayed in the Operators Action Sheet
|
|
307
|
+
adaptiveFilterOperatorsTitle: Operators
|
|
308
|
+
|
|
309
|
+
# The title that is displayed in the adaptive Sort Toolbar Tool
|
|
310
|
+
adaptiveSortTitle: Sort by
|
|
311
|
+
|
|
312
|
+
# The title of the built-in external editing form container when adding a new item
|
|
313
|
+
externalEditingAddTitle: Add
|
|
@@ -257,3 +257,57 @@ kendo:
|
|
|
257
257
|
|
|
258
258
|
# The text of the aria-label attribute applied to the input element for entering the page number
|
|
259
259
|
pagerInputLabel: Type a page number
|
|
260
|
+
|
|
261
|
+
# The default text of a form validation error when using external editing
|
|
262
|
+
formValidationErrorText: 'The {fieldName} field has {errorName} validation error'
|
|
263
|
+
|
|
264
|
+
# The title of the remove item confirmation Dialog
|
|
265
|
+
removeConfirmationDialogTitle: Please confirm
|
|
266
|
+
|
|
267
|
+
# The title of the remove item confirmation Dialog
|
|
268
|
+
removeConfirmationDialogContent: Are you sure you want to delete this item?
|
|
269
|
+
|
|
270
|
+
# The text of the remove item confirmation Dialog confirm action button
|
|
271
|
+
removeConfirmationDialogConfirmText: Yes
|
|
272
|
+
|
|
273
|
+
# The text of the remove item confirmation Dialog reject action button
|
|
274
|
+
removeConfirmationDialogRejectText: No
|
|
275
|
+
|
|
276
|
+
# The title of the built-in external editing form container when editing an item
|
|
277
|
+
externalEditingTitle: Edit
|
|
278
|
+
|
|
279
|
+
# The text of the external editing form Save button
|
|
280
|
+
externalEditingSaveText: Save
|
|
281
|
+
|
|
282
|
+
# The text of the external editing form Cancel button
|
|
283
|
+
externalEditingCancelText: Cancel
|
|
284
|
+
|
|
285
|
+
# The text of the clear sort button located in the Sort Toolbar Tool and adaptive Sort Toolbar Tool
|
|
286
|
+
sortClearButton: Clear sorting
|
|
287
|
+
|
|
288
|
+
# The title of the Close button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode
|
|
289
|
+
adaptiveCloseButtonTitle: Close
|
|
290
|
+
|
|
291
|
+
# The title of the Back button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode
|
|
292
|
+
adaptiveBackButtonTitle: Back
|
|
293
|
+
|
|
294
|
+
# The text of the clear all filters button located in the Filter Toolbar Tool and adaptive Filter Toolbar Tool
|
|
295
|
+
filterClearAllButton: Clear all filters
|
|
296
|
+
|
|
297
|
+
# The text of the done sort button
|
|
298
|
+
sortDoneButton: Done
|
|
299
|
+
|
|
300
|
+
# The subtitle for the adaptive Grid Column Chooser and Column Chooser toolbar tool
|
|
301
|
+
columnsSubtitle: Selected fields are visible
|
|
302
|
+
|
|
303
|
+
# The title that is displayed in the adaptive Filter Toolbar Tool and Filter Menu
|
|
304
|
+
adaptiveFilterTitle: Filter by
|
|
305
|
+
|
|
306
|
+
# The title that is displayed in the Operators Action Sheet
|
|
307
|
+
adaptiveFilterOperatorsTitle: Operators
|
|
308
|
+
|
|
309
|
+
# The title that is displayed in the adaptive Sort Toolbar Tool
|
|
310
|
+
adaptiveSortTitle: Sort by
|
|
311
|
+
|
|
312
|
+
# The title of the built-in external editing form container when adding a new item
|
|
313
|
+
externalEditingAddTitle: Add
|
|
@@ -257,3 +257,57 @@ kendo:
|
|
|
257
257
|
|
|
258
258
|
# The text of the aria-label attribute applied to the input element for entering the page number
|
|
259
259
|
pagerInputLabel: Type a page number
|
|
260
|
+
|
|
261
|
+
# The default text of a form validation error when using external editing
|
|
262
|
+
formValidationErrorText: 'The {fieldName} field has {errorName} validation error'
|
|
263
|
+
|
|
264
|
+
# The title of the remove item confirmation Dialog
|
|
265
|
+
removeConfirmationDialogTitle: Please confirm
|
|
266
|
+
|
|
267
|
+
# The title of the remove item confirmation Dialog
|
|
268
|
+
removeConfirmationDialogContent: Are you sure you want to delete this item?
|
|
269
|
+
|
|
270
|
+
# The text of the remove item confirmation Dialog confirm action button
|
|
271
|
+
removeConfirmationDialogConfirmText: Yes
|
|
272
|
+
|
|
273
|
+
# The text of the remove item confirmation Dialog reject action button
|
|
274
|
+
removeConfirmationDialogRejectText: No
|
|
275
|
+
|
|
276
|
+
# The title of the built-in external editing form container when editing an item
|
|
277
|
+
externalEditingTitle: Edit
|
|
278
|
+
|
|
279
|
+
# The text of the external editing form Save button
|
|
280
|
+
externalEditingSaveText: Save
|
|
281
|
+
|
|
282
|
+
# The text of the external editing form Cancel button
|
|
283
|
+
externalEditingCancelText: Cancel
|
|
284
|
+
|
|
285
|
+
# The text of the clear sort button located in the Sort Toolbar Tool and adaptive Sort Toolbar Tool
|
|
286
|
+
sortClearButton: Clear sorting
|
|
287
|
+
|
|
288
|
+
# The title of the Close button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode
|
|
289
|
+
adaptiveCloseButtonTitle: Close
|
|
290
|
+
|
|
291
|
+
# The title of the Back button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode
|
|
292
|
+
adaptiveBackButtonTitle: Back
|
|
293
|
+
|
|
294
|
+
# The text of the clear all filters button located in the Filter Toolbar Tool and adaptive Filter Toolbar Tool
|
|
295
|
+
filterClearAllButton: Clear all filters
|
|
296
|
+
|
|
297
|
+
# The text of the done sort button
|
|
298
|
+
sortDoneButton: Done
|
|
299
|
+
|
|
300
|
+
# The subtitle for the adaptive Grid Column Chooser and Column Chooser toolbar tool
|
|
301
|
+
columnsSubtitle: Selected fields are visible
|
|
302
|
+
|
|
303
|
+
# The title that is displayed in the adaptive Filter Toolbar Tool and Filter Menu
|
|
304
|
+
adaptiveFilterTitle: Filter by
|
|
305
|
+
|
|
306
|
+
# The title that is displayed in the Operators Action Sheet
|
|
307
|
+
adaptiveFilterOperatorsTitle: Operators
|
|
308
|
+
|
|
309
|
+
# The title that is displayed in the adaptive Sort Toolbar Tool
|
|
310
|
+
adaptiveSortTitle: Sort by
|
|
311
|
+
|
|
312
|
+
# The title of the built-in external editing form container when adding a new item
|
|
313
|
+
externalEditingAddTitle: Add
|
|
@@ -257,3 +257,57 @@ kendo:
|
|
|
257
257
|
|
|
258
258
|
# The text of the aria-label attribute applied to the input element for entering the page number
|
|
259
259
|
pagerInputLabel: Type a page number
|
|
260
|
+
|
|
261
|
+
# The default text of a form validation error when using external editing
|
|
262
|
+
formValidationErrorText: 'The {fieldName} field has {errorName} validation error'
|
|
263
|
+
|
|
264
|
+
# The title of the remove item confirmation Dialog
|
|
265
|
+
removeConfirmationDialogTitle: Please confirm
|
|
266
|
+
|
|
267
|
+
# The title of the remove item confirmation Dialog
|
|
268
|
+
removeConfirmationDialogContent: Are you sure you want to delete this item?
|
|
269
|
+
|
|
270
|
+
# The text of the remove item confirmation Dialog confirm action button
|
|
271
|
+
removeConfirmationDialogConfirmText: Yes
|
|
272
|
+
|
|
273
|
+
# The text of the remove item confirmation Dialog reject action button
|
|
274
|
+
removeConfirmationDialogRejectText: No
|
|
275
|
+
|
|
276
|
+
# The title of the built-in external editing form container when editing an item
|
|
277
|
+
externalEditingTitle: Edit
|
|
278
|
+
|
|
279
|
+
# The text of the external editing form Save button
|
|
280
|
+
externalEditingSaveText: Save
|
|
281
|
+
|
|
282
|
+
# The text of the external editing form Cancel button
|
|
283
|
+
externalEditingCancelText: Cancel
|
|
284
|
+
|
|
285
|
+
# The text of the clear sort button located in the Sort Toolbar Tool and adaptive Sort Toolbar Tool
|
|
286
|
+
sortClearButton: Clear sorting
|
|
287
|
+
|
|
288
|
+
# The title of the Close button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode
|
|
289
|
+
adaptiveCloseButtonTitle: Close
|
|
290
|
+
|
|
291
|
+
# The title of the Back button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode
|
|
292
|
+
adaptiveBackButtonTitle: Back
|
|
293
|
+
|
|
294
|
+
# The text of the clear all filters button located in the Filter Toolbar Tool and adaptive Filter Toolbar Tool
|
|
295
|
+
filterClearAllButton: Clear all filters
|
|
296
|
+
|
|
297
|
+
# The text of the done sort button
|
|
298
|
+
sortDoneButton: Done
|
|
299
|
+
|
|
300
|
+
# The subtitle for the adaptive Grid Column Chooser and Column Chooser toolbar tool
|
|
301
|
+
columnsSubtitle: Selected fields are visible
|
|
302
|
+
|
|
303
|
+
# The title that is displayed in the adaptive Filter Toolbar Tool and Filter Menu
|
|
304
|
+
adaptiveFilterTitle: Filter by
|
|
305
|
+
|
|
306
|
+
# The title that is displayed in the Operators Action Sheet
|
|
307
|
+
adaptiveFilterOperatorsTitle: Operators
|
|
308
|
+
|
|
309
|
+
# The title that is displayed in the adaptive Sort Toolbar Tool
|
|
310
|
+
adaptiveSortTitle: Sort by
|
|
311
|
+
|
|
312
|
+
# The title of the built-in external editing form container when adding a new item
|
|
313
|
+
externalEditingAddTitle: Add
|
|
@@ -257,3 +257,57 @@ kendo:
|
|
|
257
257
|
|
|
258
258
|
# The text of the aria-label attribute applied to the input element for entering the page number
|
|
259
259
|
pagerInputLabel: Type a page number
|
|
260
|
+
|
|
261
|
+
# The default text of a form validation error when using external editing
|
|
262
|
+
formValidationErrorText: 'The {fieldName} field has {errorName} validation error'
|
|
263
|
+
|
|
264
|
+
# The title of the remove item confirmation Dialog
|
|
265
|
+
removeConfirmationDialogTitle: Please confirm
|
|
266
|
+
|
|
267
|
+
# The title of the remove item confirmation Dialog
|
|
268
|
+
removeConfirmationDialogContent: Are you sure you want to delete this item?
|
|
269
|
+
|
|
270
|
+
# The text of the remove item confirmation Dialog confirm action button
|
|
271
|
+
removeConfirmationDialogConfirmText: Yes
|
|
272
|
+
|
|
273
|
+
# The text of the remove item confirmation Dialog reject action button
|
|
274
|
+
removeConfirmationDialogRejectText: No
|
|
275
|
+
|
|
276
|
+
# The title of the built-in external editing form container when editing an item
|
|
277
|
+
externalEditingTitle: Edit
|
|
278
|
+
|
|
279
|
+
# The text of the external editing form Save button
|
|
280
|
+
externalEditingSaveText: Save
|
|
281
|
+
|
|
282
|
+
# The text of the external editing form Cancel button
|
|
283
|
+
externalEditingCancelText: Cancel
|
|
284
|
+
|
|
285
|
+
# The text of the clear sort button located in the Sort Toolbar Tool and adaptive Sort Toolbar Tool
|
|
286
|
+
sortClearButton: Clear sorting
|
|
287
|
+
|
|
288
|
+
# The title of the Close button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode
|
|
289
|
+
adaptiveCloseButtonTitle: Close
|
|
290
|
+
|
|
291
|
+
# The title of the Back button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode
|
|
292
|
+
adaptiveBackButtonTitle: Back
|
|
293
|
+
|
|
294
|
+
# The text of the clear all filters button located in the Filter Toolbar Tool and adaptive Filter Toolbar Tool
|
|
295
|
+
filterClearAllButton: Clear all filters
|
|
296
|
+
|
|
297
|
+
# The text of the done sort button
|
|
298
|
+
sortDoneButton: Done
|
|
299
|
+
|
|
300
|
+
# The subtitle for the adaptive Grid Column Chooser and Column Chooser toolbar tool
|
|
301
|
+
columnsSubtitle: Selected fields are visible
|
|
302
|
+
|
|
303
|
+
# The title that is displayed in the adaptive Filter Toolbar Tool and Filter Menu
|
|
304
|
+
adaptiveFilterTitle: Filter by
|
|
305
|
+
|
|
306
|
+
# The title that is displayed in the Operators Action Sheet
|
|
307
|
+
adaptiveFilterOperatorsTitle: Operators
|
|
308
|
+
|
|
309
|
+
# The title that is displayed in the adaptive Sort Toolbar Tool
|
|
310
|
+
adaptiveSortTitle: Sort by
|
|
311
|
+
|
|
312
|
+
# The title of the built-in external editing form container when adding a new item
|
|
313
|
+
externalEditingAddTitle: Add
|
|
@@ -257,3 +257,57 @@ kendo:
|
|
|
257
257
|
|
|
258
258
|
# The text of the aria-label attribute applied to the input element for entering the page number
|
|
259
259
|
pagerInputLabel: Type a page number
|
|
260
|
+
|
|
261
|
+
# The default text of a form validation error when using external editing
|
|
262
|
+
formValidationErrorText: 'The {fieldName} field has {errorName} validation error'
|
|
263
|
+
|
|
264
|
+
# The title of the remove item confirmation Dialog
|
|
265
|
+
removeConfirmationDialogTitle: Please confirm
|
|
266
|
+
|
|
267
|
+
# The title of the remove item confirmation Dialog
|
|
268
|
+
removeConfirmationDialogContent: Are you sure you want to delete this item?
|
|
269
|
+
|
|
270
|
+
# The text of the remove item confirmation Dialog confirm action button
|
|
271
|
+
removeConfirmationDialogConfirmText: Yes
|
|
272
|
+
|
|
273
|
+
# The text of the remove item confirmation Dialog reject action button
|
|
274
|
+
removeConfirmationDialogRejectText: No
|
|
275
|
+
|
|
276
|
+
# The title of the built-in external editing form container when editing an item
|
|
277
|
+
externalEditingTitle: Edit
|
|
278
|
+
|
|
279
|
+
# The text of the external editing form Save button
|
|
280
|
+
externalEditingSaveText: Save
|
|
281
|
+
|
|
282
|
+
# The text of the external editing form Cancel button
|
|
283
|
+
externalEditingCancelText: Cancel
|
|
284
|
+
|
|
285
|
+
# The text of the clear sort button located in the Sort Toolbar Tool and adaptive Sort Toolbar Tool
|
|
286
|
+
sortClearButton: Clear sorting
|
|
287
|
+
|
|
288
|
+
# The title of the Close button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode
|
|
289
|
+
adaptiveCloseButtonTitle: Close
|
|
290
|
+
|
|
291
|
+
# The title of the Back button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode
|
|
292
|
+
adaptiveBackButtonTitle: Back
|
|
293
|
+
|
|
294
|
+
# The text of the clear all filters button located in the Filter Toolbar Tool and adaptive Filter Toolbar Tool
|
|
295
|
+
filterClearAllButton: Clear all filters
|
|
296
|
+
|
|
297
|
+
# The text of the done sort button
|
|
298
|
+
sortDoneButton: Done
|
|
299
|
+
|
|
300
|
+
# The subtitle for the adaptive Grid Column Chooser and Column Chooser toolbar tool
|
|
301
|
+
columnsSubtitle: Selected fields are visible
|
|
302
|
+
|
|
303
|
+
# The title that is displayed in the adaptive Filter Toolbar Tool and Filter Menu
|
|
304
|
+
adaptiveFilterTitle: Filter by
|
|
305
|
+
|
|
306
|
+
# The title that is displayed in the Operators Action Sheet
|
|
307
|
+
adaptiveFilterOperatorsTitle: Operators
|
|
308
|
+
|
|
309
|
+
# The title that is displayed in the adaptive Sort Toolbar Tool
|
|
310
|
+
adaptiveSortTitle: Sort by
|
|
311
|
+
|
|
312
|
+
# The title of the built-in external editing form container when adding a new item
|
|
313
|
+
externalEditingAddTitle: Add
|
|
@@ -257,3 +257,57 @@ kendo:
|
|
|
257
257
|
|
|
258
258
|
# The text of the aria-label attribute applied to the input element for entering the page number
|
|
259
259
|
pagerInputLabel: Type a page number
|
|
260
|
+
|
|
261
|
+
# The default text of a form validation error when using external editing
|
|
262
|
+
formValidationErrorText: 'The {fieldName} field has {errorName} validation error'
|
|
263
|
+
|
|
264
|
+
# The title of the remove item confirmation Dialog
|
|
265
|
+
removeConfirmationDialogTitle: Please confirm
|
|
266
|
+
|
|
267
|
+
# The title of the remove item confirmation Dialog
|
|
268
|
+
removeConfirmationDialogContent: Are you sure you want to delete this item?
|
|
269
|
+
|
|
270
|
+
# The text of the remove item confirmation Dialog confirm action button
|
|
271
|
+
removeConfirmationDialogConfirmText: Yes
|
|
272
|
+
|
|
273
|
+
# The text of the remove item confirmation Dialog reject action button
|
|
274
|
+
removeConfirmationDialogRejectText: No
|
|
275
|
+
|
|
276
|
+
# The title of the built-in external editing form container when editing an item
|
|
277
|
+
externalEditingTitle: Edit
|
|
278
|
+
|
|
279
|
+
# The text of the external editing form Save button
|
|
280
|
+
externalEditingSaveText: Save
|
|
281
|
+
|
|
282
|
+
# The text of the external editing form Cancel button
|
|
283
|
+
externalEditingCancelText: Cancel
|
|
284
|
+
|
|
285
|
+
# The text of the clear sort button located in the Sort Toolbar Tool and adaptive Sort Toolbar Tool
|
|
286
|
+
sortClearButton: Clear sorting
|
|
287
|
+
|
|
288
|
+
# The title of the Close button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode
|
|
289
|
+
adaptiveCloseButtonTitle: Close
|
|
290
|
+
|
|
291
|
+
# The title of the Back button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode
|
|
292
|
+
adaptiveBackButtonTitle: Back
|
|
293
|
+
|
|
294
|
+
# The text of the clear all filters button located in the Filter Toolbar Tool and adaptive Filter Toolbar Tool
|
|
295
|
+
filterClearAllButton: Clear all filters
|
|
296
|
+
|
|
297
|
+
# The text of the done sort button
|
|
298
|
+
sortDoneButton: Done
|
|
299
|
+
|
|
300
|
+
# The subtitle for the adaptive Grid Column Chooser and Column Chooser toolbar tool
|
|
301
|
+
columnsSubtitle: Selected fields are visible
|
|
302
|
+
|
|
303
|
+
# The title that is displayed in the adaptive Filter Toolbar Tool and Filter Menu
|
|
304
|
+
adaptiveFilterTitle: Filter by
|
|
305
|
+
|
|
306
|
+
# The title that is displayed in the Operators Action Sheet
|
|
307
|
+
adaptiveFilterOperatorsTitle: Operators
|
|
308
|
+
|
|
309
|
+
# The title that is displayed in the adaptive Sort Toolbar Tool
|
|
310
|
+
adaptiveSortTitle: Sort by
|
|
311
|
+
|
|
312
|
+
# The title of the built-in external editing form container when adding a new item
|
|
313
|
+
externalEditingAddTitle: Add
|