Skip to content

Commit d9ce0ef

Browse files
authored
fix(stage-tamagotchi): color-scheme setting i18n (#575)
1 parent e02e8c6 commit d9ce0ef

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

apps/stage-tamagotchi/src/pages/settings/system/color-scheme.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const { t } = useI18n()
1414
<Section
1515
v-motion
1616
mb-2
17-
:title="t('settings.pages.themes.sections.section.custom-color.title')"
17+
:title="t('settings.pages.system.sections.section.custom-color.title')"
1818
icon="i-solar:pallete-2-bold-duotone"
1919
:initial="{ opacity: 0, y: 10 }"
2020
:enter="{ opacity: 1, y: 0 }"
@@ -31,7 +31,7 @@ const { t } = useI18n()
3131
:delay="5 * 50"
3232
transition="all ease-in-out duration-250"
3333
>
34-
<span text-lg font-normal>{{ $t('settings.pages.themes.sections.section.custom-color.fields.field.primary-color.label') }}</span>
34+
<span text-lg font-normal>{{ $t('settings.pages.system.sections.section.custom-color.fields.field.primary-color.label') }}</span>
3535
<label relative flex cursor-pointer items-center gap-2>
3636
<input
3737
v-model="settings.themeColorsHueDynamic"
@@ -41,7 +41,7 @@ const { t } = useI18n()
4141
<div
4242
class="h-6 w-11 rounded-full bg-neutral-200 after:absolute after:left-[2px] after:top-[2px] after:h-5 after:w-5 after:rounded-full after:bg-white dark:bg-neutral-600 peer-checked:bg-primary-500 after:transition-all after:content-[''] peer-checked:after:translate-x-full peer-checked:after:border-white"
4343
/>
44-
{{ $t('settings.pages.themes.sections.section.custom-color.fields.field.primary-color.rgb-on.title') }}
44+
{{ $t('settings.pages.system.sections.section.custom-color.fields.field.primary-color.rgb-on.title') }}
4545
</label>
4646
</div>
4747
<ColorHueRange
@@ -118,7 +118,7 @@ const { t } = useI18n()
118118
transition="all ease-in-out duration-250"
119119
>
120120
<div
121-
v-for="({ title, description, colors }, i) in $tm('settings.pages.themes.sections.section.theme-presets.presets')" :key="i"
121+
v-for="({ title, description, colors }, i) in $tm('settings.pages.system.sections.section.theme-presets.presets')" :key="i"
122122
v-motion
123123
class="w-full flex flex-col items-start justify-between gap-2 rounded-lg px-4 py-3 outline-none transition-all duration-250 ease-in-out md:flex-row md:items-center md:gap-0"
124124
bg="neutral-100 dark:neutral-800"

0 commit comments

Comments
 (0)