Clarify label for starting a new conversation

When user a enters a number that is not a contact, we prompt them to start a new
conversation.
This commit is contained in:
Daniel Gasienica 2018-02-26 17:16:49 -05:00
parent 715a406436
commit d7a206bc8e
2 changed files with 4 additions and 4 deletions

View File

@ -835,9 +835,9 @@
"message": "Hide menu bar",
"description": "Label text for menu bar visibility setting"
},
"newContact": {
"message": "Click to create new contact",
"description": ""
"startConversation": {
"message": "Start conversation…",
"description": "Label underneath number a user enters that is not an existing contact"
},
"newPhoneNumber": {
"message": "Enter a phone number to add a contact.",

View File

@ -22,7 +22,7 @@
},
render_attributes() {
return {
number: i18n('newContact'),
number: i18n('startConversation'),
title: this.model.getNumber(),
avatar: this.model.getAvatar(),
};