diff --git a/src/App.tsx b/src/App.tsx index 4aad404..9ba8912 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1512,6 +1512,7 @@ function App() { )} + {userInfo && !userInfo?.name && ( - {t('auth:action.authenticate', { + {t('auth:authentication', { postProcess: 'capitalizeFirstChar', })} @@ -3337,14 +3338,29 @@ function App() { zIndex: 10001, }} > - - {message.paymentFee ? 'Payment' : 'Publish'} + + {message.paymentFee + ? t('core:payment', { + postProcess: 'capitalizeFirstChar', + }) + : t('core:publish', { + postProcess: 'capitalizeFirstChar', + })} {message.message} + {message?.paymentFee && ( {t('core:fee.payment', { @@ -3353,6 +3369,7 @@ function App() { : {message.paymentFee} )} + {message?.publishFee && ( {t('core:fee.publish', { @@ -3414,8 +3431,18 @@ function App() { aria-labelledby="alert-dialog-title" aria-describedby="alert-dialog-description" > - - {'Important Info'} + + {t('tutorial:important_info', { + postProcess: 'capitalizeAll', + })} @@ -3440,18 +3467,45 @@ function App() { aria-labelledby="alert-dialog-title" aria-describedby="alert-dialog-description" > - + {t('core:action.logout', { postProcess: 'capitalizeAll' })} - + {messageUnsavedChanges.message} - @@ -474,6 +474,7 @@ export const ListOfGroupPromotions = () => { + { color: 'rgba(255, 255, 255, 0.2)', }} > - {t('group.message.generic.no_display', { + {t('group:message.generic.no_display', { postProcess: 'capitalizeFirstChar', })} @@ -863,7 +864,15 @@ export const ListOfGroupPromotions = () => { aria-labelledby="alert-dialog-title" aria-describedby="alert-dialog-description" > - + {t('group:action.promote_group', { postProcess: 'capitalizeFirstChar', })} @@ -927,7 +936,7 @@ export const ListOfGroupPromotions = () => { { type: 'error', message: error?.message ? t('group:message.error.decrypt_wallet', { - errorMessage: error?.message, + message: error?.message, postProcess: 'capitalizeFirstChar', }) : t('group:message.error.descrypt_wallet', { @@ -308,7 +308,15 @@ const ExportPrivateKey = ({ rawWallet }) => { aria-labelledby="alert-dialog-title" aria-describedby="alert-dialog-description" > - + {t('group:action.export_password', { postProcess: 'capitalizeFirstChar', })} diff --git a/src/components/MainAvatar.tsx b/src/components/MainAvatar.tsx index c985bb2..58ac4c9 100644 --- a/src/components/MainAvatar.tsx +++ b/src/components/MainAvatar.tsx @@ -299,7 +299,20 @@ const PopoverComp = ({ setAvatarFile(file)}> - @@ -955,6 +963,7 @@ export const NotAuthenticated = ({ })} )} + {mode === 'add-node' && ( + saveCustomNodes(customNodes)} autoFocus > - {t('core:save', { postProcess: 'capitalizeFirstChar' })} + {t('core:action.save', { + postProcess: 'capitalizeFirstChar', + })} )} @@ -1044,7 +1056,15 @@ export const NotAuthenticated = ({ aria-labelledby="alert-dialog-title" aria-describedby="alert-dialog-description" > - + {t('auth:apikey.enter', { postProcess: 'capitalizeFirstChar' })} @@ -1124,7 +1144,7 @@ export const NotAuthenticated = ({ }} autoFocus > - {t('core:save', { postProcess: 'capitalizeFirstChar' })} + {t('core:action.save', { postProcess: 'capitalizeFirstChar' })}