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}
-