mirror of
https://github.com/sussy-code/smov.git
synced 2024-12-20 14:37:43 +01:00
Made some more keys translatable
This commit is contained in:
parent
82d2516951
commit
75af3b992d
4 changed files with 6 additions and 3 deletions
|
@ -25,6 +25,7 @@
|
|||
},
|
||||
"generate": {
|
||||
"title": "Your passphrase",
|
||||
"passphraseFrameLabel": "Passphrase",
|
||||
"next": "I have saved my passphrase",
|
||||
"description": "Your passphrase acts as your username and password. Make sure to keep it safe as you will need to enter it to login to your account"
|
||||
},
|
||||
|
|
|
@ -25,7 +25,9 @@ export function PassphraseDisplay(props: { mnemonic: string }) {
|
|||
return (
|
||||
<div className="rounded-lg border border-authentication-border/50 ">
|
||||
<div className="px-4 py-2 flex justify-between border-b border-authentication-border/50">
|
||||
<p className="font-bold text-sm text-white">Passphrase</p>
|
||||
<p className="font-bold text-sm text-white">
|
||||
{t("auth.generate.passphraseFrameLabel")}
|
||||
</p>
|
||||
<button
|
||||
type="button"
|
||||
className="text-authentication-copyText hover:text-authentication-copyTextHover transition-colors flex gap-2 items-center cursor-pointer"
|
||||
|
|
|
@ -196,7 +196,7 @@ export function SettingsPage() {
|
|||
<SettingsLayout>
|
||||
<div id="settings-account">
|
||||
<Heading1 border className="!mb-0">
|
||||
Account
|
||||
{t("settings.account.title")}
|
||||
</Heading1>
|
||||
{user.account && state.profile.state ? (
|
||||
<AccountSettings
|
||||
|
|
|
@ -122,7 +122,7 @@ export function SidebarPart() {
|
|||
boundaryElement=".sidebar-boundary"
|
||||
>
|
||||
<div className="hidden lg:block">
|
||||
<SidebarSection title="Settings">
|
||||
<SidebarSection title={t("global.pages.settings")}>
|
||||
{settingLinks.map((v) => (
|
||||
<SidebarLink
|
||||
icon={v.icon}
|
||||
|
|
Loading…
Reference in a new issue