This is rather a feature request ;-)

I would like to ask to include the texts for the multiselector component in the locale files.

For English that would be



Code:



Ext.define("Ext.locale.de.view.MultiSelectorSearch", {
override: 'Ext.view.MultiSelectorSearch' ,
searchText: 'Search...'
});

Ext.define("Ext.locale.de.view.MultiSelector", {
override: 'Ext.view.MultiSelector',
emptyText: 'Nothing selected',
removeRowTip: 'Remove this item',
addToolText: 'Search for items to add'
}

I needed it for German, thus here's the translation for that


Code:



Ext.define("Ext.locale.de.view.MultiSelectorSearch", {
override: 'Ext.view.MultiSelectorSearch' ,
searchText: 'Suche...'
});

Ext.define("Ext.locale.de.view.MultiSelector", {
override: 'Ext.view.MultiSelector',
emptyText: 'Nichts ausgewählt',
removeRowTip: 'Enferne dieses Element',
addToolText: 'Suche nach Elementen zum Hinzufügen'
});