Fix menu translations

This commit is contained in:
Laura Hausmann 2023-07-21 18:56:36 +02:00
parent 3ea160e8b6
commit adb187d4ae
No known key found for this signature in database
GPG key ID: D044E84C5BE01605
6 changed files with 6 additions and 6 deletions

View file

@ -134,7 +134,7 @@ const headerActions = $computed(() => []);
const headerTabs = $computed(() => []); const headerTabs = $computed(() => []);
definePageMetadata({ definePageMetadata({
title: i18n.ts.aboutFirefish, title: i18n.ts.aboutIceshrimp,
icon: null, icon: null,
}); });
</script> </script>

View file

@ -63,7 +63,7 @@
<template #value>{{ version }}</template> <template #value>{{ version }}</template>
</MkKeyValue> </MkKeyValue>
<FormLink to="/about-iceshrimp">{{ <FormLink to="/about-iceshrimp">{{
i18n.ts.aboutFirefish i18n.ts.aboutIceshrimp
}}</FormLink> }}</FormLink>
</FormSection> </FormSection>

View file

@ -177,7 +177,7 @@ function showMenu(ev) {
}, },
}, },
{ {
text: i18n.ts.aboutFirefish, text: i18n.ts.aboutIceshrimp,
icon: "ph-info ph-bold ph-lg", icon: "ph-info ph-bold ph-lg",
action: () => { action: () => {
os.pageWindow("/about-iceshrimp"); os.pageWindow("/about-iceshrimp");

View file

@ -156,7 +156,7 @@ export default defineComponent({
}, },
}, },
{ {
text: i18n.ts.aboutFirefish, text: i18n.ts.aboutIceshrimp,
icon: "ph-info ph-bold ph-lg", icon: "ph-info ph-bold ph-lg",
action: () => { action: () => {
os.pageWindow("/about-iceshrimp"); os.pageWindow("/about-iceshrimp");

View file

@ -182,7 +182,7 @@ export default defineComponent({
}, },
}, },
{ {
text: i18n.ts.aboutFirefish, text: i18n.ts.aboutIceshrimp,
icon: "ph-info ph-bold ph-lg", icon: "ph-info ph-bold ph-lg",
action: () => { action: () => {
os.pageWindow("/about-iceshrimp"); os.pageWindow("/about-iceshrimp");

View file

@ -20,7 +20,7 @@ export function openHelpMenu_(ev: MouseEvent) {
}, },
{ {
type: "link", type: "link",
text: i18n.ts.aboutFirefish, text: i18n.ts.aboutIceshrimp,
icon: "ph-lightbulb ph-bold ph-lg", icon: "ph-lightbulb ph-bold ph-lg",
to: "/about-iceshrimp", to: "/about-iceshrimp",
}, },