summaryrefslogtreecommitdiff
path: root/src/components/Content.tsx
diff options
context:
space:
mode:
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>