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

Started on Tx list i18n

This commit is contained in:
Thomas 2018-03-20 10:29:22 -07:00
parent cffaf44714
commit 7a8e080245
2 changed files with 7 additions and 1 deletions

View File

@ -98,6 +98,9 @@
"confirm": { "confirm": {
"message": "Confirm" "message": "Confirm"
}, },
"confirmed": {
"message": "Confirmed"
},
"confirmContract": { "confirmContract": {
"message": "Confirm Contract" "message": "Confirm Contract"
}, },
@ -812,6 +815,9 @@
"uiWelcomeMessage": { "uiWelcomeMessage": {
"message": "You are now using the new Metamask UI. Take a look around, try out new features like sending tokens, and let us know if you have any issues." "message": "You are now using the new Metamask UI. Take a look around, try out new features like sending tokens, and let us know if you have any issues."
}, },
"unapproved": {
"message": "Unapproved"
},
"unavailable": { "unavailable": {
"message": "Unavailable" "message": "Unavailable"
}, },

View File

@ -40,7 +40,7 @@ TxList.prototype.render = function () {
return h('div.flex-column', [ return h('div.flex-column', [
h('div.flex-row.tx-list-header-wrapper', [ h('div.flex-row.tx-list-header-wrapper', [
h('div.flex-row.tx-list-header', [ h('div.flex-row.tx-list-header', [
h('div', 'transactions'), h('div', t('transactions')),
]), ]),
]), ]),
h('div.flex-column.tx-list-container', {}, [ h('div.flex-column.tx-list-container', {}, [