Skip to content

Commit

Permalink
[issue-1110] Update message on the Create on account
Browse files Browse the repository at this point in the history
  • Loading branch information
dominhquang committed Oct 31, 2023
1 parent 1801b71 commit 0c0c532
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,9 @@ const AuthorizeConfirmation: React.FC<Props> = (props: Props) => {
<Text style={styles.text}>{i18n.common.chooseAccount}</Text>
) : (
<>
<Text style={styles.noAccountTextStyle}>{i18n.common.noAvailableAccount}</Text>
<Text style={styles.noAccountTextStyle}>
{i18n.formatString(i18n.common.noAvailableAccount, accountTypeMessage || '')}
</Text>
<Text style={styles.textCenter}>{i18n.common.youDonotHaveAnyAcc(accountTypeMessage || '')}</Text>
</>
)}
Expand Down
2 changes: 1 addition & 1 deletion src/utils/i18n/en_US.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export const en = {
chooseAccount: 'Choose the account(s) you’d like to connect',
youDonotHaveAnyAcc: (accountType: string) =>
`You don't have any ${accountType} accounts to connect. Please create a new one`,
noAvailableAccount: 'No available account',
noAvailableAccount: 'No available {0} account',
connect: 'Connect',
favorites: 'Favorites',
history: 'History',
Expand Down

0 comments on commit 0c0c532

Please sign in to comment.