Skip to content

Commit

Permalink
chore: [IA-45] In wallet home header when VO is active, the title and…
Browse files Browse the repository at this point in the history
… the add card method is not clear (pagopa#3164)

* [IA-45] in wallet home header, when VO is active, the title and the add card method the pronunciation is not clear

* Update locales/it/index.yml

Co-authored-by: Simone <[email protected]>
  • Loading branch information
Nicola Cannata and debiff authored Jul 2, 2021
1 parent 00ae7b4 commit b397c99
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions locales/en/index.yml
Original file line number Diff line number Diff line change
Expand Up @@ -853,6 +853,7 @@ wallet:
noName: Name unavailable
loading: Loading bank list...
accessibility:
addElement: Add element to wallet
cardsPreview: Payment methods' preview. Activate to navigate to the the list of payment methods.
transactionListItem:
payment:
Expand Down
1 change: 1 addition & 0 deletions locales/it/index.yml
Original file line number Diff line number Diff line change
Expand Up @@ -872,6 +872,7 @@ wallet:
noName: Nome non disponibile
loading: Carico la lista delle banche...
accessibility:
addElement: Aggiungi elemento al portafoglio
cardsPreview: Anteprima dei metodi di pagamento. Attiva per accedere alla lista dei tuoi metodi
transactionListItem:
payment:
Expand Down
7 changes: 5 additions & 2 deletions ts/components/wallet/WalletHomeHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,15 +124,18 @@ const WalletHomeHeader: React.FC<Props> = (props: Props) => {
}
]}
>
<H1 color={"white"}>{I18n.t("wallet.wallet")}</H1>
<H1 color={"white"} accessible={true} accessibilityRole="header">
{I18n.t("wallet.wallet")}
</H1>
<TouchableDefaultOpacity
style={{
flexDirection: "row",
alignItems: "center"
}}
onPress={openBS}
accessible={true}
accessibilityRole={"button"}
accessibilityLabel={I18n.t("wallet.accessibility.addElement")}
accessibilityRole="button"
>
<IconFont
name="io-plus"
Expand Down

0 comments on commit b397c99

Please sign in to comment.