diff --git a/src/locales/en.json b/src/locales/en.json index f5e67de..4cae426 100644 --- a/src/locales/en.json +++ b/src/locales/en.json @@ -65,7 +65,7 @@ }, "comingsoon": "Coming soon!", "themes": { - "main": "Por defecto", - "catppucinMocha": "Catppucin Mocha" + "main": "Main", + "catppuccinMocha": "Catppuccin Mocha" } } diff --git a/src/locales/es.json b/src/locales/es.json index 2105c48..6d4761f 100644 --- a/src/locales/es.json +++ b/src/locales/es.json @@ -66,6 +66,6 @@ "comingsoon": "¡Próximamente!", "themes": { "main": "Por defecto", - "catppucinMocha": "Catppucin Mocha" + "catppuccinMocha": "Catppuccin Mocha" } } diff --git a/src/locales/ja.json b/src/locales/ja.json index 8c7471a..d6e9642 100644 --- a/src/locales/ja.json +++ b/src/locales/ja.json @@ -66,6 +66,6 @@ "comingsoon": "近日公開", "themes": { "main": "デフォルト", - "catppucinMocha": "Catppucin Mocha" + "catppuccinMocha": "Catppuccin Mocha" } } diff --git a/src/pages/Settings/Customization.tsx b/src/pages/Settings/Customization.tsx index ba4edbf..52e0d5b 100644 --- a/src/pages/Settings/Customization.tsx +++ b/src/pages/Settings/Customization.tsx @@ -8,8 +8,8 @@ function Customization({ id, active }) { const { t } = useTranslation(); const themes = [ - { id: "main", label: "Main" }, - { id: "catppucinMocha", label: "Catppucin Mocha" } + { id: "main", label: t("themes.main") }, + { id: "catppucinMocha", label: t("themes.catppuccinMocha") } ]; return (