mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-05-12 09:45:00 +00:00

we can now set the language in the datacenter config file, but the value is not used (we still have no i18n)
11 lines
238 B
JavaScript
11 lines
238 B
JavaScript
Ext.define('PVE.form.LanguageSelector', {
|
|
extend: 'PVE.form.KVComboBox',
|
|
alias: ['widget.pveLanguageSelector'],
|
|
|
|
initComponent: function() {
|
|
var me = this;
|
|
me.data = PVE.Utils.language_array();
|
|
me.callParent();
|
|
}
|
|
});
|