Skip to content

Commit

Permalink
Merge branch 'daedalus-demo' of https://github.com/input-output-hk/da…
Browse files Browse the repository at this point in the history
…edalus into daedalus-demo
  • Loading branch information
thedanheller committed Jul 1, 2020
2 parents 328a352 + 09906de commit d565466
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
@@ -1,7 +1,7 @@
// @flow
import React, { Component } from 'react';
import { observer } from 'mobx-react';
import { defineMessages, intlShape, FormattedHTMLMessage } from 'react-intl';
import { defineMessages, intlShape, FormattedMessage } from 'react-intl';
import { Button } from 'react-polymorph/lib/components/Button';
import { ButtonSkin } from 'react-polymorph/lib/skins/simple/ButtonSkin';
import { Link } from 'react-polymorph/lib/components/Link';
Expand Down Expand Up @@ -112,7 +112,7 @@ export default class LegacyNotification extends Component<Props> {
activeWalletName,
..._values,
};
return <FormattedHTMLMessage {...message} values={values} />;
return <FormattedMessage {...message} values={values} />;
};

render() {
Expand Down
6 changes: 3 additions & 3 deletions source/renderer/app/i18n/locales/en-US.json
Expand Up @@ -541,14 +541,14 @@
"wallet.byron.notification.actionLearnMore": "Learn more",
"wallet.byron.notification.actionMove": "Move ada to an existing wallet",
"wallet.byron.notification.addWallet": "Create a new wallet",
"wallet.byron.notification.addWalletDescription.line1": "<q>{activeWalletName}</q> is a Byron legacy wallet that does not support Shelley delegation features. To earn ada from delegating your stake, please move all funds from this wallet to a new wallet that is Shelley-compatible.",
"wallet.byron.notification.addWalletDescription.line1": "\"{activeWalletName}\" is a Byron legacy wallet that does not support Shelley delegation features. To earn ada from delegating your stake, please move all funds from this wallet to a new wallet that is Shelley-compatible.",
"wallet.byron.notification.addWalletDescription.line2": "Since all of your wallets are Byron legacy wallets you will first need to create a new Shelley wallet.",
"wallet.byron.notification.addWalletTitle": "Create a Shelley wallet",
"wallet.byron.notification.learnMore.url": "https://iohk.zendesk.com/hc/en-us/articles/360038726373",
"wallet.byron.notification.moveFundsDescription.line1": "<q>{activeWalletName}</q> is a Byron legacy wallet that does not support Shelley delegation features. To earn ada from delegating your stake, please move all funds from this wallet to a new wallet that is Shelley-compatible.",
"wallet.byron.notification.moveFundsDescription.line1": "\"{activeWalletName}\" is a Byron legacy wallet that does not support Shelley delegation features. To earn ada from delegating your stake, please move all funds from this wallet to a new wallet that is Shelley-compatible.",
"wallet.byron.notification.moveFundsDescription.line2": "You can create a {moveFundsLink} or move funds to one of your existing wallets.",
"wallet.byron.notification.moveFundsDescription.line2.link.label": "brand new wallet",
"wallet.byron.notification.moveFundsTitle": "Move funds from <q>{activeWalletName}</q>",
"wallet.byron.notification.moveFundsTitle": "Move funds from \"{activeWalletName}\"",
"wallet.create.dialog.configStep": "Config",
"wallet.create.dialog.create.personal.wallet.button.label": "Create wallet",
"wallet.create.dialog.create.personal.wallet.button.label.itn": "Create Shelley wallet",
Expand Down
4 changes: 2 additions & 2 deletions source/renderer/app/i18n/locales/ja-JP.json
Expand Up @@ -515,11 +515,11 @@
"wallet.byron.notification.actionLearnMore": "もっと知る",
"wallet.byron.notification.actionMove": "既存のウォレットにADAを移す",
"wallet.byron.notification.addWallet": "ウォレットを新規作成する",
"wallet.byron.notification.addWalletDescription.line1": "<q>{activeWalletName}</q>」はByronのレガシーウォレットであり、Shelleyの委任機能をサポートしていません。ステークを委任して報酬を得るには、すべての資金をこのウォレットからShelley対応の新ウォレットに移してください。",
"wallet.byron.notification.addWalletDescription.line1": "「{activeWalletName}」はByronのレガシーウォレットであり、Shelleyの委任機能をサポートしていません。ステークを委任して報酬を得るには、すべての資金をこのウォレットからShelley対応の新ウォレットに移してください。",
"wallet.byron.notification.addWalletDescription.line2": "既存ウォレットはすべてByronのレガシーウォレットであるため、Shelleyウォレットを新規作成する必要があります。",
"wallet.byron.notification.addWalletTitle": "Shelleyウォレットを作成してください",
"wallet.byron.notification.learnMore.url": "https://iohk.zendesk.com/hc/ja/articles/360038726373",
"wallet.byron.notification.moveFundsDescription.line1": "<q>{activeWalletName}</q>」はByronのレガシーウォレットであり、Shelleyの委任機能をサポートしていません。ステークを委任して報酬を得るには、すべての資金をこのウォレットからShelley対応の新ウォレットに移してください。",
"wallet.byron.notification.moveFundsDescription.line1": "「{activeWalletName}」はByronのレガシーウォレットであり、Shelleyの委任機能をサポートしていません。ステークを委任して報酬を得るには、すべての資金をこのウォレットからShelley対応の新ウォレットに移してください。",
"wallet.byron.notification.moveFundsDescription.line2": "{moveFundsLink}か、既存ウォレットの1つに資金を移すことができます。",
"wallet.byron.notification.moveFundsDescription.line2.link.label": "ウォレットを新規作成する",
"wallet.byron.notification.moveFundsTitle": "「{activeWalletName}」の資金を移してください",
Expand Down

0 comments on commit d565466

Please sign in to comment.