pve-manager/www/manager/form/CompressionSelector.js
2012-02-24 14:39:01 +01:00

17 lines
355 B
JavaScript

Ext.define('PVE.form.CompressionSelector', {
extend: 'PVE.form.KVComboBox',
alias: ['widget.pveCompressionSelector'],
initComponent: function() {
var me = this;
me.data = [
['', gettext('none')],
['lzo', 'LZO (' + gettext('fast') + ')'],
['gzip', 'GZIP (' + gettext('good') + ')']
];
me.callParent();
}
});