diff --git a/backend/locales/en-US.json b/backend/locales/en-US.json
index 180a8a70..82ad3800 100644
--- a/backend/locales/en-US.json
+++ b/backend/locales/en-US.json
@@ -234,6 +234,10 @@
"testing": "Testing"
}
},
+ "TitleView":{
+ "decky_store_desc": "Open Decky Store",
+ "settings_desc": "Open Decky Settings"
+ },
"Updater": {
"decky_updates": "Decky Updates",
"no_patch_notes_desc": "no patch notes for this version",
diff --git a/frontend/src/components/TitleView.tsx b/frontend/src/components/TitleView.tsx
index 7e529d21..6ae6b2ae 100644
--- a/frontend/src/components/TitleView.tsx
+++ b/frontend/src/components/TitleView.tsx
@@ -1,5 +1,6 @@
import { DialogButton, Focusable, Router, staticClasses } from 'decky-frontend-lib';
import { CSSProperties, VFC } from 'react';
+import { useTranslation } from 'react-i18next';
import { BsGearFill } from 'react-icons/bs';
import { FaArrowLeft, FaStore } from 'react-icons/fa';
@@ -13,6 +14,7 @@ const titleStyles: CSSProperties = {
const TitleView: VFC = () => {
const { activePlugin, closeActivePlugin } = useDeckyState();
+ const { t } = useTranslation();
const onSettingsClick = () => {
Router.CloseSideMenus();
@@ -31,12 +33,14 @@ const TitleView: VFC = () => {