diff --git a/public/pdfjs/web/viewer.css b/public/pdfjs/web/viewer.css index 96df5d0..a3f33a3 100644 --- a/public/pdfjs/web/viewer.css +++ b/public/pdfjs/web/viewer.css @@ -76,16 +76,16 @@ } :is(.messageBar > div)::before { + -webkit-mask-image: var(--message-bar-icon); + -webkit-mask-size: cover; + background-color: var(--message-bar-icon-color); content: ''; display: inline-block; - width: 16px; - height: 16px; - -webkit-mask-image: var(--message-bar-icon); - mask-image: var(--message-bar-icon); - -webkit-mask-size: cover; - mask-size: cover; - background-color: var(--message-bar-icon-color); flex-shrink: 0; + height: 16px; + mask-image: var(--message-bar-icon); + mask-size: cover; + width: 16px; } .messageBar button { diff --git a/src/App.tsx b/src/App.tsx index 4aad404..5138080 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', })} @@ -3033,7 +3034,7 @@ function App() { - + {t('auth:wallet.password_confirmation', { @@ -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} - + )} {showScrollDownButton && !showScrollButton && ( diff --git a/src/components/Chat/ChatOptions.tsx b/src/components/Chat/ChatOptions.tsx index 23712af..59124a0 100644 --- a/src/components/Chat/ChatOptions.tsx +++ b/src/components/Chat/ChatOptions.tsx @@ -280,7 +280,7 @@ export const ChatOptions = ({ {mentionList?.length === 0 && ( setAvatarFile(file)}> - @@ -475,6 +475,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', })} @@ -864,7 +865,15 @@ export const ListOfGroupPromotions = () => { aria-labelledby="alert-dialog-title" aria-describedby="alert-dialog-description" > - + {t('group:action.promote_group', { postProcess: 'capitalizeFirstChar', })} @@ -928,7 +937,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/Group/UserListOfInvites.tsx b/src/components/Group/UserListOfInvites.tsx index 50cbb5b..d28d514 100644 --- a/src/components/Group/UserListOfInvites.tsx +++ b/src/components/Group/UserListOfInvites.tsx @@ -272,7 +272,7 @@ export const UserListOfInvites = ({ }} >

- {t('core:list.invite', { + {t('core:list.invites', { postProcess: 'capitalizeFirstChar', })}

diff --git a/src/components/MainAvatar.tsx b/src/components/MainAvatar.tsx index 9f6945e..fbacc18 100644 --- a/src/components/MainAvatar.tsx +++ b/src/components/MainAvatar.tsx @@ -300,7 +300,20 @@ const PopoverComp = ({ setAvatarFile(file)}> - @@ -955,6 +964,7 @@ export const NotAuthenticated = ({ })}
)} + {mode === 'add-node' && ( + saveCustomNodes(customNodes)} autoFocus > - {t('core:save', { postProcess: 'capitalizeFirstChar' })} + {t('core:action.save', { + postProcess: 'capitalizeFirstChar', + })} )} @@ -1044,7 +1057,15 @@ export const NotAuthenticated = ({ aria-labelledby="alert-dialog-title" aria-describedby="alert-dialog-description" > - + {t('auth:apikey.enter', { postProcess: 'capitalizeFirstChar' })} @@ -1124,7 +1145,7 @@ export const NotAuthenticated = ({ }} autoFocus > - {t('core:save', { postProcess: 'capitalizeFirstChar' })} + {t('core:action.save', { postProcess: 'capitalizeFirstChar' })}