5
0
mirror of git://git.proxmox.com/git/proxmox-backup.git synced 2025-01-06 13:18:00 +03:00

ui: use same label for removable datastore created from disk

The `Add datastore` window labels the flag for creating a removable
datastore as `Removable datastore`, while creating the datastore via the
storage/disks interface will refer to it as `is removable`.

Use the same `Removable datastore` as label for both locations.

Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
This commit is contained in:
Christian Ebner 2024-11-26 12:14:25 +01:00 committed by Thomas Lamprecht
parent a910ee8c0d
commit caba859692

View File

@ -56,7 +56,7 @@ Ext.define('PBS.window.CreateDirectory', {
{ {
xtype: 'proxmoxcheckbox', xtype: 'proxmoxcheckbox',
name: 'removable-datastore', name: 'removable-datastore',
fieldLabel: gettext('is removable'), fieldLabel: gettext('Removable datastore'),
}, },
], ],
}); });