]> git.proxmox.com Git - pve-manager.git/blame - www/manager6/form/CompressionSelector.js
ui: ScheduleSimulator: split date and time into two columns
[pve-manager.git] / www / manager6 / form / CompressionSelector.js
CommitLineData
19019f58 1Ext.define('PVE.form.CompressionSelector', {
09cacce7 2 extend: 'Proxmox.form.KVComboBox',
19019f58 3 alias: ['widget.pveCompressionSelector'],
8d92aacf 4 comboItems: [
e7ade592 5 ['0', Proxmox.Utils.noneText],
8d92aacf 6 ['lzo', 'LZO (' + gettext('fast') + ')'],
3e2c5105 7 ['gzip', 'GZIP (' + gettext('good') + ')'],
1c783f74 8 ['zstd', 'ZSTD (' + gettext('fast and good') + ')'],
f6710aac 9 ],
19019f58 10});