diff --git a/i18n/locales/en/common.json b/i18n/locales/en/common.json index 6d268b8fa5..20b3bfaa24 100644 --- a/i18n/locales/en/common.json +++ b/i18n/locales/en/common.json @@ -427,7 +427,7 @@ "Send {{token}}": "Send {{token}}", "Send {{token}} here": "Send {{token}} here", "Sender": "Sender", - "Session timeout": "Your session was timed out after 10 minutes of no network activity. Please sign in to continue using your account.", + "Session timed out": "Your session was timed out after 10 minutes of no network activity. Please sign in to continue using your account.", "Settings": "Settings", "Settings saved!": "Settings saved!", "Share": "Share", @@ -561,7 +561,7 @@ "Wallet address": "Wallet address", "Wallet address:": "Wallet address:", "Wallet details": "Wallet details", - "Warning session timeout": "Warning session timeout", + "Warning: Session Timeout": "Warning: Session Timeout", "Watched": "Watched", "We are proud to announce that Lisk Core v3 now contains new improved robust security features.": "We are proud to announce that Lisk Core v3 now contains new improved robust security features.", "We kindly ask you to transfer your balance to the new account.": "We kindly ask you to transfer your balance to the new account.", @@ -601,7 +601,7 @@ "Your balance will be transferred in a few seconds.": "Your balance will be transferred in a few seconds.", "Your multisignatures groups": "Your multisignatures groups", "Your nickname": "Your nickname", - "Your session will timed out in {{time}} if no network activity occur.": "Your session will timed out in {{time}} if no network activity occur.", + "Your session will be timed out in {{time}} if no network activity occurs.": "Your session will be timed out in {{time}} if no network activity occurs.", "Your tokens and passphrase are safe.": "Your tokens and passphrase are safe.", "Your transaction has been submitted and will be confirmed in a few moments.": "Your transaction has been submitted and will be confirmed in a few moments.", "Your transaction is being submitted to the blockchain.": "Your transaction is being submitted to the blockchain.", diff --git a/src/components/shared/navigationBars/sideBar/autoSignOut/autoSignOut.css b/src/components/shared/navigationBars/sideBar/autoSignOut/autoSignOut.css index 540ae125f1..24124e0166 100644 --- a/src/components/shared/navigationBars/sideBar/autoSignOut/autoSignOut.css +++ b/src/components/shared/navigationBars/sideBar/autoSignOut/autoSignOut.css @@ -38,8 +38,12 @@ } .title { - text-decoration: underline; margin-bottom: 0; + margin-top: 20px; +} + +.content { + margin-bottom: 45px; } button { diff --git a/src/components/shared/navigationBars/sideBar/autoSignOut/index.js b/src/components/shared/navigationBars/sideBar/autoSignOut/index.js index 31b742cb26..cd9ac60238 100644 --- a/src/components/shared/navigationBars/sideBar/autoSignOut/index.js +++ b/src/components/shared/navigationBars/sideBar/autoSignOut/index.js @@ -6,7 +6,7 @@ import styles from './autoSignOut.css'; const TimeOutToast = ({ t, completed }) => ( completed && toast( -
{t('Warning session timeout')}
-{t('Your session will timed out in {{time}} if no network activity occur.', { time: `${minutes}${seconds}` })}
+{t('Your session will be timed out in {{time}} if no network activity occurs.', { time: `${minutes}${seconds}` })}