Hi.
How can I localize captions of buttons in a filter?
My settings:
'grid': {
...
'Item': 'запись',
'Items': 'записей',
'Print': 'Печать',
'Excelexport': 'Экспорт в Excel',
'Equal': "Равно",
'NotEqual': 'Не равно'
}
|
'grid': {
. . .
//following are Filtering localization text
'FilterButton': 'CustomFilter', //change the corresponding locale text for menu filter
'ClearButton': 'CustomClear',
'StartsWith': 'Starts With rock',
'EndsWith': 'Ends With',
'Contains': 'Contains',
'Equal': 'Equal',
'NotEqual': 'Not Equal',
'LessThan': 'Less Than',
'LessThanOrEqual': 'Less Than Or Equal',
'GreaterThan': 'Greater Than',
'GreaterThanOrEqual': 'Greater Than Or Equal',
'ChooseDate': 'Choose a Date',
'EnterValue': 'Custom place holder',
. . .
}, |
|
'grid': {
. . .
//Toolbar locale text
'Add': 'Add',
'Edit': 'CustomEdit',
'Cancel': 'Cancel',
'Update': 'Update',
'Delete': 'Delete',
'Print': 'Print',
'Pdfexport': 'PDF Export',
'Excelexport': 'Excel Export',
'Wordexport': 'Word Export',
'Csvexport': 'CSV Export',
'Search': 'Search',
'Columnchooser': 'Columns',
'Save': 'Save',
. . .
} |
|
'grid': {
. . .
//Contextmenu locale text
'Copy': 'Customcopy',
'Group': 'Group by this column',
'Ungroup': 'Ungroup by this column',
'autoFitAll': 'CustomText',
'autoFit': 'Auto Fit this column',
'Export': 'Export',
'FirstPage': 'First Page',
'LastPage': 'Last Page',
'PreviousPage': 'Previous Page',
'NextPage': 'Next Page',
'SortAscending': 'Custom Sort Ascending',
'SortDescending': 'Sort Descending',
'EditRecord': 'Custom Edit Record',
'DeleteRecord': 'Custom Delete Record',
'FilterMenu': 'Filter'
},
|
|
'grid': {
. . .
//Edit or Delete if we doesn't select a record
'EditOperationAlert': 'No records selected for edit operation',
'DeleteOperationAlert': 'No records selected for delete operation',
//Edit buttons
'SaveButton': 'Save',
'OKButton': 'OK',
'CancelButton': 'Cancel',
//Dialog Popup title for edit and add
'EditFormTitle': 'Details of ',
'AddFormTitle': 'Add New Record',
//If we enable batch editing
'BatchSaveConfirm': 'Are you sure you want to save changes?',
'BatchSaveLostChanges': 'Unsaved changes will be lost. Are you sure you want to continue?',
//Delete confirmation dialog
'ConfirmDelete': 'Are you sure you want to Delete Record?',
'CancelEdit': 'Are you sure you want to Cancel the changes?'
. . .
}, |