]> git.proxmox.com Git - pve-manager.git/blob - www/manager6/form/CompressionSelector.js
update shipped appliance info index
[pve-manager.git] / www / manager6 / form / CompressionSelector.js
1 Ext.define('PVE.form.CompressionSelector', {
2 extend: 'Proxmox.form.KVComboBox',
3 alias: ['widget.pveCompressionSelector'],
4 comboItems: [
5 ['0', Proxmox.Utils.noneText],
6 ['lzo', 'LZO (' + gettext('fast') + ')'],
7 ['gzip', 'GZIP (' + gettext('good') + ')'],
8 ['zstd', 'ZSTD (' + gettext('fast and good') + ')'],
9 ],
10 });