mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-03-28 14:56:19 +01:00
add_contact: change default message when adding someone
Currently when adding a new user there is no indication in the chatview whether that person is in your contacts. This patch aims to work towards a chatview which makes this interaction clearer. Change-Id: I68827f42b0e97e0ee80e631ce057016eb8df0305
This commit is contained in:
parent
5540001e7a
commit
0b49077de9
2 changed files with 2 additions and 1 deletions
|
@ -110,7 +110,7 @@ Rectangle {
|
||||||
id: messageBarTextArea
|
id: messageBarTextArea
|
||||||
objectName: "messageBarTextArea"
|
objectName: "messageBarTextArea"
|
||||||
|
|
||||||
placeholderText: JamiStrings.writeTo.arg(CurrentConversation.title)
|
placeholderText: CurrentConversation.isTemporary ? JamiStrings.writeToNewContact.arg(CurrentConversation.title) : JamiStrings.writeTo.arg(CurrentConversation.title)
|
||||||
|
|
||||||
anchors {
|
anchors {
|
||||||
right: (showTypo) ? previewButton.left : messageRow.right
|
right: (showTypo) ? previewButton.left : messageRow.right
|
||||||
|
|
|
@ -779,6 +779,7 @@ Item {
|
||||||
property string inReplyToMe: qsTr("Me")
|
property string inReplyToMe: qsTr("Me")
|
||||||
property string reply: qsTr("Reply")
|
property string reply: qsTr("Reply")
|
||||||
property string writeTo: qsTr("Write to %1")
|
property string writeTo: qsTr("Write to %1")
|
||||||
|
property string writeToNewContact: qsTr("Send a message to %1 in order to add them as a contact")
|
||||||
property string edit: qsTr("Edit")
|
property string edit: qsTr("Edit")
|
||||||
property string edited: qsTr("Edited")
|
property string edited: qsTr("Edited")
|
||||||
property string joinCall: qsTr("Join call")
|
property string joinCall: qsTr("Join call")
|
||||||
|
|
Loading…
Add table
Reference in a new issue