summaryrefslogtreecommitdiff
path: root/src/components/Content.tsx
diff options
context:
space:
mode:
authorKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2026-08-03 14:36:43 -0400
committerGitHub <noreply@github.com>2026-08-03 14:36:43 -0400
commit9080ea21a68ec0817168a45811f3d51ade8d6be0 (patch)
tree52c1cad716b92c784d2946d063cc36b34255ea5e /src/components/Content.tsx
parentb936baab13b026d4355844d94616a622753a7370 (diff)
parente0681b06efdee3dcacb6ddfca515d947b802faff (diff)
downloaddecky-lsfg-vk-9080ea21a68ec0817168a45811f3d51ade8d6be0.tar.gz
decky-lsfg-vk-9080ea21a68ec0817168a45811f3d51ade8d6be0.zip
Merge pull request #231 from sana2dang/language
Add multiple languages
Diffstat (limited to 'src/components/Content.tsx')
-rw-r--r--src/components/Content.tsx7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/components/Content.tsx b/src/components/Content.tsx
index 3f94745..5988e79 100644
--- a/src/components/Content.tsx
+++ b/src/components/Content.tsx
@@ -14,6 +14,7 @@ import { FpsMultiplierControl } from "./FpsMultiplierControl";
import { NerdStuffModal } from "./NerdStuffModal";
import { FlatpaksModal } from "./FlatpaksModal";
import { ConfigurationData } from "../config/configSchema";
+import t from '../i18n/i18n';
export function Content() {
const {
@@ -108,7 +109,7 @@ export function Content() {
color: "white"
}}
>
- FPS Multiplier
+ {t('CONTENT_FPS_MULTIPLIER', 'FPS Multiplier')}
</div>
</PanelSectionRow>
@@ -150,7 +151,7 @@ export function Content() {
layout="below"
onClick={handleShowNerdStuff}
>
- Nerd Stuff
+ {t('CONTENT_NERD_STUFF', 'Nerd Stuff')}
</ButtonItem>
</PanelSectionRow>
@@ -159,7 +160,7 @@ export function Content() {
layout="below"
onClick={handleShowFlatpaks}
>
- Flatpak Setup
+ {t('CONTENT_FLATPAK_SETUP', 'Flatpak Setup')}
</ButtonItem>
</PanelSectionRow>