diff --git a/src/locales/en/translation.json b/src/locales/en/translation.json index 9dd14580..eab4bc92 100644 --- a/src/locales/en/translation.json +++ b/src/locales/en/translation.json @@ -17,7 +17,7 @@ "home": "Home", "queued": "{{title}} (Queued)", "game_has_no_executable": "Game has no executable selected", - "signin": "Sign in" + "sign_in": "Sign in" }, "header": { "search": "Search games", @@ -241,9 +241,9 @@ "edit_profile": "Edit Profile", "saved_successfully": "Saved successfully", "try_again": "Please, try again", - "signout_modal_title": "Are you sure?", + "sign_out_modal_title": "Are you sure?", "cancel": "Cancel", - "signout": "Sign out", + "sign_out": "Sign out", "playing_for": "Playing for {{amount}}" } } diff --git a/src/locales/pt/translation.json b/src/locales/pt/translation.json index 7289119a..910d965c 100644 --- a/src/locales/pt/translation.json +++ b/src/locales/pt/translation.json @@ -17,7 +17,7 @@ "home": "Início", "queued": "{{title}} (Na fila)", "game_has_no_executable": "Jogo não possui executável selecionado", - "signin": "Login" + "sign_in": "Login" }, "header": { "search": "Buscar jogos", @@ -242,8 +242,8 @@ "saved_successfully": "Salvo com sucesso", "try_again": "Por favor, tente novamente", "cancel": "Cancelar", - "signout": "Sair da conta", - "signout_modal_title": "Tem certeza?", + "sign_out": "Sair da conta", + "sign_out_modal_title": "Tem certeza?", "playing_for": "Jogando por {{amount}}" } } diff --git a/src/renderer/src/components/sidebar/sidebar-profile.tsx b/src/renderer/src/components/sidebar/sidebar-profile.tsx index f8d2225e..859c904b 100644 --- a/src/renderer/src/components/sidebar/sidebar-profile.tsx +++ b/src/renderer/src/components/sidebar/sidebar-profile.tsx @@ -51,7 +51,7 @@ export function SidebarProfile() {

- {userDetails ? userDetails.displayName : t("signin")} + {userDetails ? userDetails.displayName : t("sign_in")}

{userDetails && runningGame && ( diff --git a/src/renderer/src/pages/user/user-content.tsx b/src/renderer/src/pages/user/user-content.tsx index 6a541375..98aad705 100644 --- a/src/renderer/src/pages/user/user-content.tsx +++ b/src/renderer/src/pages/user/user-content.tsx @@ -195,7 +195,7 @@ export function UserContent({ theme="danger" onClick={() => setShowSignOutModal(true)} > - {t("signout")} + {t("sign_out")}
diff --git a/src/renderer/src/pages/user/user-signout-modal.tsx b/src/renderer/src/pages/user/user-signout-modal.tsx index a6c40630..5e05a61e 100644 --- a/src/renderer/src/pages/user/user-signout-modal.tsx +++ b/src/renderer/src/pages/user/user-signout-modal.tsx @@ -19,7 +19,7 @@ export const UserSignOutModal = ({ <>