1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Fix translations whose substitutions params were not in arrays.

This commit is contained in:
Dan 2018-03-14 12:34:13 -02:30
parent 5fbfb0b67c
commit edd5c38492
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ class NewAccountCreateForm extends Component {
this.state = { this.state = {
newAccountName: '', newAccountName: '',
defaultAccountName: t('newAccountNumberName', newAccountNumber), defaultAccountName: t('newAccountNumberName', [newAccountNumber]),
} }
} }

View File

@ -143,7 +143,7 @@ ShapeshiftForm.prototype.renderQrCode = function () {
return h('div.shapeshift-form', {}, [ return h('div.shapeshift-form', {}, [
h('div.shapeshift-form__deposit-instruction', [ h('div.shapeshift-form__deposit-instruction', [
t('depositCoin', depositCoin.toUpperCase()), t('depositCoin', [depositCoin.toUpperCase()]),
]), ]),
h('div', depositAddress), h('div', depositAddress),