Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change "Token Address" to "Token Contract Address" #6182

Merged
merged 1 commit into from
Feb 19, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions app/_locales/en/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -1364,6 +1364,9 @@
"tokenBalance": {
"message": "Your Token Balance is:"
},
"tokenContractAddress": {
"message": "Token Contract Address"
},
"tokenSelection": {
"message": "Search for tokens or select from our list of popular tokens."
},
Expand Down
2 changes: 1 addition & 1 deletion ui/app/components/pages/add-token/add-token.component.js
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ class AddToken extends Component {
<div className="add-token__custom-token-form">
<TextField
id="custom-address"
label={this.context.t('tokenAddress')}
label={this.context.t('tokenContractAddress')}
type="text"
value={customAddress}
onChange={e => this.handleCustomAddressChange(e.target.value)}
Expand Down