Add translation to save page

This commit is contained in:
Nicola Benaglia 2025-04-23 20:30:47 +02:00
parent 5fc2174861
commit 1a0ccbc08d
2 changed files with 58 additions and 21 deletions

View File

@ -12,6 +12,8 @@
},
"description": "description",
"edit": "edit",
"export": "export",
"import": "import",
"last_height": "last height",
"loading": "loading...",
"logout": "logout",
@ -36,8 +38,20 @@
}
},
"save_options": {
"no_pinned_changes": "you currently do not have any changes to your pinned apps",
"overwrite_changes": "the app was unable to download your existing QDN-saved pinned apps. Would you like to overwrite those changes?",
"overwrite_qdn": "overwrite to QDN",
"publish_qdn": "would you like to publish your settings to QDN (encrypted)?",
"save": "save"
"qdn": "use QDN saving",
"register_name": "you need a registered Qortal name to save your pinned apps to QDN.",
"reset_pinned": "don't like your current local changes? Would you like to reset to the default pinned apps?",
"reset_qdn": "don't like your current local changes? Would you like to reset to your saved QDN pinned apps?",
"revert_default": "revert to default",
"revert_qdn": "revert to QDN",
"save_qdn": "save to QDN",
"save": "save",
"settings": "you are using the export/import way of saving settings.",
"unsaved_changes": " You have unsaved changes to your pinned apps. Save them to QDN."
},
"settings": "settings",
"supply": "supply",

View File

@ -281,9 +281,10 @@ export const Save = ({ isDesktop, disableWidth, myName }) => {
fontSize: '14px',
}}
>
You are using the export/import way of saving settings.
{t('core:save_options.settings', {
postProcess: 'capitalize',
})}
</Typography>{' '}
// TODO: translate
<Spacer height="40px" />
<Button
size="small"
@ -309,7 +310,9 @@ export const Save = ({ isDesktop, disableWidth, myName }) => {
},
}}
>
Use QDN saving
{t('core:save_options.qdn', {
postProcess: 'capitalize',
})}
</Button>
</Box>
</Box>
@ -338,8 +341,9 @@ export const Save = ({ isDesktop, disableWidth, myName }) => {
fontSize: '14px',
}}
>
You need a registered Qortal name to save your pinned apps to
QDN.
{t('core:save_options.register_name', {
postProcess: 'capitalize',
})}
</Typography>
</Box>
) : (
@ -358,8 +362,9 @@ export const Save = ({ isDesktop, disableWidth, myName }) => {
fontSize: '14px',
}}
>
You have unsaved changes to your pinned apps. Save them to
QDN.
{t('core:save_options.unsaved_changes', {
postProcess: 'capitalize',
})}
</Typography>
<Spacer height="10px" />
@ -381,7 +386,9 @@ export const Save = ({ isDesktop, disableWidth, myName }) => {
onClick={saveToQdn}
variant="contained"
>
Save to QDN
{t('core:save_options.save_qdn', {
postProcess: 'capitalize',
})}
</LoadingButton>
<Spacer height="20px" />
{!isNaN(settingsQdnLastUpdated) &&
@ -392,8 +399,9 @@ export const Save = ({ isDesktop, disableWidth, myName }) => {
fontSize: '14px',
}}
>
Don't like your current local changes? Would you
like to reset to your saved QDN pinned apps?
{t('core:save_options.reset_qdn', {
postProcess: 'capitalize',
})}
</Typography>
<Spacer height="10px" />
<LoadingButton
@ -413,7 +421,9 @@ export const Save = ({ isDesktop, disableWidth, myName }) => {
},
}}
>
Revert to QDN
{t('core:save_options.revert_qdn', {
postProcess: 'capitalize',
})}
</LoadingButton>
</>
)}
@ -425,8 +435,10 @@ export const Save = ({ isDesktop, disableWidth, myName }) => {
fontSize: '14px',
}}
>
Don't like your current local changes? Would you
like to reset to the default pinned apps?
{' '}
{t('core:save_options.reset_pinned', {
postProcess: 'capitalize',
})}
</Typography>
<Spacer height="10px" />
<LoadingButton
@ -434,7 +446,9 @@ export const Save = ({ isDesktop, disableWidth, myName }) => {
onClick={revertChanges}
variant="contained"
>
Revert to default
{t('core:save_options.revert_default', {
postProcess: 'capitalize',
})}
</LoadingButton>
</>
)}
@ -456,8 +470,9 @@ export const Save = ({ isDesktop, disableWidth, myName }) => {
fontSize: '14px',
}}
>
The app was unable to download your existing QDN-saved
pinned apps. Would you like to overwrite those changes?
{t('core:save_options.overwrite_changes', {
postProcess: 'capitalize',
})}
</Typography>
<Spacer height="10px" />
<LoadingButton
@ -477,7 +492,9 @@ export const Save = ({ isDesktop, disableWidth, myName }) => {
},
}}
>
Overwrite to QDN
{t('core:save_options.overwrite_qdn', {
postProcess: 'capitalize',
})}
</LoadingButton>
</Box>
)}
@ -495,7 +512,9 @@ export const Save = ({ isDesktop, disableWidth, myName }) => {
fontSize: '14px',
}}
>
You currently do not have any changes to your pinned apps
{t('core:save_options.no_pinned_changes', {
postProcess: 'capitalize',
})}
</Typography>
</Box>
)}
@ -550,7 +569,9 @@ export const Save = ({ isDesktop, disableWidth, myName }) => {
}
}}
>
Import
{t('core:import', {
postProcess: 'capitalize',
})}
</ButtonBase>
<ButtonBase
@ -573,7 +594,9 @@ export const Save = ({ isDesktop, disableWidth, myName }) => {
}
}}
>
Export
{t('core:export', {
postProcess: 'capitalize',
})}
</ButtonBase>
</Box>
</Box>