diff options
| author | Kurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com> | 2026-08-03 14:36:43 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-08-03 14:36:43 -0400 |
| commit | 1bba458079c36c4f95b757e820c746a0f95ed64f (patch) | |
| tree | 52c1cad716b92c784d2946d063cc36b34255ea5e /src/components/Content.tsx | |
| parent | 5598bb0e97fd9a0e16f63c4c93a4dc6ae1f169ab (diff) | |
| parent | c52d1fa86d302d0d6cb29808aa62c755c7b33362 (diff) | |
| download | decky-lsfg-vk-1bba458079c36c4f95b757e820c746a0f95ed64f.tar.gz decky-lsfg-vk-1bba458079c36c4f95b757e820c746a0f95ed64f.zip | |
Merge pull request #231 from sana2dang/language
Add multiple languages
Diffstat (limited to 'src/components/Content.tsx')
| -rw-r--r-- | src/components/Content.tsx | 7 |
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> |
