mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-05-04 18:41:53 +00:00
11 lines
393 B
JavaScript
11 lines
393 B
JavaScript
Ext.define('PVE.form.CompressionSelector', {
|
|
extend: 'Proxmox.form.KVComboBox',
|
|
alias: ['widget.pveCompressionSelector'],
|
|
comboItems: [
|
|
['0', Proxmox.Utils.noneText],
|
|
['lzo', 'LZO (' + gettext('fast') + ')'],
|
|
['gzip', 'GZIP (' + gettext('good') + ')'],
|
|
['zstd', 'ZSTD (' + gettext('fast and good') + ')'],
|
|
],
|
|
});
|