1
0
Fork 0
mirror of https://git.jami.net/savoirfairelinux/jami-client-qt.git synced 2025-08-04 14:55:43 +02:00

misc: replace Group's name by Swarm's name

Change-Id: I3e006bd1c9eceb2fafd8a04c9a9cf2a9ad2a0433
This commit is contained in:
Sébastien Blin 2022-05-17 03:35:01 -04:00
parent cd027db503
commit 469a45bb9e
3 changed files with 5 additions and 5 deletions

View file

@ -622,7 +622,7 @@ Item {
property string members: qsTr("%1 Members") property string members: qsTr("%1 Members")
property string member: qsTr("Member") property string member: qsTr("Member")
property string documents: qsTr("Documents") property string documents: qsTr("Documents")
property string groupName: qsTr("Group's name") property string swarmName: qsTr("Swarm's name")
property string addADescription: qsTr("Add a description") property string addADescription: qsTr("Add a description")
property string ignoreTheSwarm: qsTr("Ignore the swarm") property string ignoreTheSwarm: qsTr("Ignore the swarm")

View file

@ -128,8 +128,8 @@ Rectangle {
horizontalAlignment: editable ? Text.AlignLeft : Text.AlignHCenter horizontalAlignment: editable ? Text.AlignLeft : Text.AlignHCenter
verticalAlignment: Text.AlignVCenter verticalAlignment: Text.AlignVCenter
placeholderText: JamiStrings.groupName placeholderText: JamiStrings.swarmName
tooltipText: JamiStrings.groupName tooltipText: JamiStrings.swarmName
backgroundColor: root.color backgroundColor: root.color
color: UtilsAdapter.luma(backgroundColor) ? color: UtilsAdapter.luma(backgroundColor) ?
JamiTheme.chatviewTextColorLight : JamiTheme.chatviewTextColorLight :

View file

@ -68,7 +68,7 @@ Rectangle {
verticalAlignment: Text.AlignVCenter verticalAlignment: Text.AlignVCenter
text: CurrentConversation.title text: CurrentConversation.title
placeholderText: JamiStrings.groupName placeholderText: JamiStrings.swarmName
placeholderTextColor: { placeholderTextColor: {
if (editable) { if (editable) {
if (UtilsAdapter.luma(root.color)) { if (UtilsAdapter.luma(root.color)) {
@ -84,7 +84,7 @@ Rectangle {
} }
} }
} }
tooltipText: JamiStrings.groupName tooltipText: JamiStrings.swarmName
backgroundColor: root.color backgroundColor: root.color
color: UtilsAdapter.luma(backgroundColor) ? color: UtilsAdapter.luma(backgroundColor) ?
JamiTheme.chatviewTextColorLight : JamiTheme.chatviewTextColorLight :