Skip to content

Commit

Permalink
feat/FAT-133 Bad key for wording
Browse files Browse the repository at this point in the history
  • Loading branch information
juan-cortes committed Oct 4, 2022
1 parent 8b981ef commit 41a835c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions apps/ledger-live-mobile/src/locales/en/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -1040,6 +1040,7 @@
},
"installSetOfApps": {
"landing": {
"estimatedTime": "{{ minutes }} min",
"title": "{{ productName }} uses apps to enable secure blockchain transactions",
"subtitle": "We recommend downloading a default set of apps. You can download more later.",
"installCTA": "Intall apps",
Expand Down
4 changes: 2 additions & 2 deletions apps/ledger-live-mobile/src/screens/DebugMultiAppInstall.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ export default function DebugMultiAppInstall() {
}, [device]);

const formatEstimatedTime = (estimatedTime: number) =>
t("syncOnboarding.estimatedTimeFormat", {
estimatedTime: estimatedTime / 60,
t("installSetOfApps.landing.estimatedTime", {
minutes: estimatedTime / 60,
});

return (
Expand Down

0 comments on commit 41a835c

Please sign in to comment.