i18n: zjednotené VM a LXC v Aplikáciách

This commit is contained in:
VAIO73
2026-09-12 11:36:49 +02:00
parent 9ff1fa1bda
commit e0c5740a47
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -640,7 +640,7 @@ function AppCard({
if (link.customId) onEditCustom(link.customId)
}
const guestPrefix = link.guestType === "qemu" ? "VM" : "CT"
const guestPrefix = link.guestType === "qemu" ? "VM" : "LXC"
const hasBinding = link.vmid != null
return (
+1 -1
View File
@@ -258,7 +258,7 @@ export function CustomLinkEditor({
<SelectItem value={UNBOUND_KEY}>{t("apps.customLinkBindingNone")}</SelectItem>
{sortedGuests.map((g) => (
<SelectItem key={`${g.type}:${g.vmid}`} value={`${g.type}:${g.vmid}`}>
{g.type === "qemu" ? "VM" : "CT"} {g.vmid} · {g.name}
{g.type === "qemu" ? "VM" : "LXC"} {g.vmid} · {g.name}
</SelectItem>
))}
</SelectContent>