mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-05-08 02:27:14 +00:00

some function are now in Proxmox.Utils instead, so we have to use that Signed-off-by: Dominik Csapak <d.csapak@proxmox.com> Reviewed-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
10 lines
318 B
JavaScript
10 lines
318 B
JavaScript
Ext.define('PVE.form.CompressionSelector', {
|
|
extend: 'PVE.form.KVComboBox',
|
|
alias: ['widget.pveCompressionSelector'],
|
|
comboItems: [
|
|
['0', Proxmox.Utils.noneText],
|
|
['lzo', 'LZO (' + gettext('fast') + ')'],
|
|
['gzip', 'GZIP (' + gettext('good') + ')']
|
|
]
|
|
});
|