Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[LLM] -[LIVE-10591] - Fix swap main header translation value in Turkish #6867

Merged
merged 2 commits into from
May 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/moody-hotels-arrive.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"live-mobile": patch
---

Fix swap main header translation value in Turkish on LLM
3 changes: 0 additions & 3 deletions apps/ledger-live-mobile/src/locales/en/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -3131,9 +3131,6 @@
"whatIsSwap": "What is Swap?",
"disclaimer": "Exchange crypto directly from your Ledger device. This service is not available in some countries, including the US."
},
"main": {
"header": "Swap"
},
"notAvailable": {
"title": "Service temporarily unavailable, or not available in your country"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export default function useAccountActions({ account, parentAccount, colors }: Pr
},
},
],
label: t("transfer.swap.main.header", { currency: currency.name }),
label: t("account.swap", { currency: currency.name }),
Icon: iconSwap,
disabled: isPtxServiceCtaScreensDisabled || isZeroBalance,
modalOnDisabledClick: {
Expand Down
Loading