Skip to content

Commit

Permalink
Add Localhost 8545 for network dropdown names
Browse files Browse the repository at this point in the history
  • Loading branch information
tmashuang committed Apr 10, 2019
1 parent 7e0006a commit d7a2ea9
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 1 deletion.
3 changes: 3 additions & 0 deletions app/_locales/en/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,9 @@
"connectingToRinkeby": {
"message": "Connecting to Rinkeby Test Network"
},
"connectingToLocalhost": {
"message": "Connecting to Localhost 8545"
},
"connectingToUnknown": {
"message": "Connecting to Unknown Network"
},
Expand Down
2 changes: 2 additions & 0 deletions ui/app/components/app/dropdowns/network-dropdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,8 @@ NetworkDropdown.prototype.getNetworkName = function () {
name = this.context.t('kovan')
} else if (providerName === 'rinkeby') {
name = this.context.t('rinkeby')
} else if (providerName === 'localhost') {
name = this.context.t('localhost')
} else {
name = provider.nickname || this.context.t('unknownNetwork')
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ export default class LoadingNetworkScreen extends PureComponent {
name = this.context.t('connectingToKovan')
} else if (providerName === 'rinkeby') {
name = this.context.t('connectingToRinkeby')
} else if (providerName === 'localhost') {
name = this.context.t('connectingToLocalhost')
} else {
name = this.context.t('connectingTo', [providerId])
}
Expand Down
2 changes: 1 addition & 1 deletion ui/app/components/app/network.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ Network.prototype.render = function () {
},
}),

h('.network-name', providerNick || context.t('privateNetwork')),
h('.network-name', providerName === 'localhost' ? context.t('localhost') : providerNick || context.t('privateNetwork')),
h('i.fa.fa-chevron-down.fa-lg.network-caret'),
])
}
Expand Down
4 changes: 4 additions & 0 deletions ui/app/pages/routes/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,8 @@ class Routes extends Component {
name = this.context.t('connectingToKovan')
} else if (providerName === 'rinkeby') {
name = this.context.t('connectingToRinkeby')
} else if (providerName === 'localhost') {
name = this.context.t('connectingToLocalhost')
} else {
name = this.context.t('connectingTo', [providerId])
}
Expand All @@ -288,6 +290,8 @@ class Routes extends Component {
name = this.context.t('kovan')
} else if (providerName === 'rinkeby') {
name = this.context.t('rinkeby')
} else if (providerName === 'localhost') {
name = this.context.t('localhost')
} else {
name = this.context.t('unknownNetwork')
}
Expand Down

0 comments on commit d7a2ea9

Please sign in to comment.