diff --git a/emhttp/plugins/dynamix.vm.manager/include/VMMachines.php b/emhttp/plugins/dynamix.vm.manager/include/VMMachines.php index 0fd847a86..1e4fea84c 100644 --- a/emhttp/plugins/dynamix.vm.manager/include/VMMachines.php +++ b/emhttp/plugins/dynamix.vm.manager/include/VMMachines.php @@ -212,7 +212,7 @@ foreach ($vms as $vm) { $bus = $arrValidDiskBuses[$arrDisk['bus']] ?? 'VirtIO'; $boot= $arrDisk["boot order"]; $serial = $arrDisk["serial"]; - if ($boot < 1) $boot="Not set"; + if ($boot < 1) $boot = _('Not set'); echo "$disk$serial$bus"; if ($state == 'shutoff') { echo ""; @@ -239,7 +239,7 @@ foreach ($vms as $vm) { $dev = $arrCD['device']; $bus = $arrValidDiskBuses[$arrCD['bus']] ?? 'VirtIO'; $boot = $arrCD["boot order"] ?? "" ; - if ($boot < 1) $boot = "Not set"; + if ($boot < 1) $boot = _('Not set'); if ($disk != "" ) { $title = _('Eject CD Drive'); $changemedia = "changemedia(\"{$uuid}\",\"{$dev}\",\"{$bus}\", \"--eject\")";