mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-07-17 15:31:39 +00:00

other targets/sources might have a different list of available compressions. Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
11 lines
405 B
JavaScript
11 lines
405 B
JavaScript
Ext.define('PVE.form.BackupCompressionSelector', {
|
|
extend: 'Proxmox.form.KVComboBox',
|
|
alias: ['widget.pveBackupCompressionSelector'],
|
|
comboItems: [
|
|
['0', Proxmox.Utils.noneText],
|
|
['lzo', 'LZO (' + gettext('fast') + ')'],
|
|
['gzip', 'GZIP (' + gettext('good') + ')'],
|
|
['zstd', 'ZSTD (' + gettext('fast and good') + ')'],
|
|
],
|
|
});
|