mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-09-10 12:03:18 +02:00
misc: ux/ui rename “swarm” to “group”
A(n) [type] error occurred while {verb} {noun} createSwarm → createGroup → newGroup Create swarm → Create new group startSwarm → startGroup → newGroup Start swarm → Create new group swarmName → groupName Swarm name → Group name Change-Id: I9cb6f7b124d3db193bd190d2e52b5b27ea10ecf3 GitLab: #1845
This commit is contained in:
parent
93cde493d8
commit
7e926a3e23
5 changed files with 14 additions and 15 deletions
|
@ -152,7 +152,7 @@ CurrentConversation::updateData()
|
|||
updateProfile(convId);
|
||||
updateActiveCalls(accountId, convId);
|
||||
} catch (...) {
|
||||
qWarning() << "Can't update current conversation data for" << convId;
|
||||
qWarning() << "An error occurred while updating current conversation data for" << convId;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -150,7 +150,7 @@ DualPaneView {
|
|||
Layout.preferredWidth: JamiTheme.preferredFieldWidth
|
||||
|
||||
staticText: ""
|
||||
placeholderText: JamiStrings.swarmName
|
||||
placeholderText: JamiStrings.groupName
|
||||
|
||||
textColor: {
|
||||
if (UtilsAdapter.luma(root.color)) {
|
||||
|
@ -205,7 +205,7 @@ DualPaneView {
|
|||
preferredWidth: textSize.width + 2 * JamiTheme.buttontextWizzardPadding
|
||||
|
||||
primary: true
|
||||
text: JamiStrings.createSwarm
|
||||
text: JamiStrings.newGroup
|
||||
|
||||
onClicked: createSwarmClicked(title.dynamicText, description.dynamicText, UtilsAdapter.tempCreationImage())
|
||||
}
|
||||
|
|
|
@ -214,7 +214,7 @@ SidePanelBase {
|
|||
font.bold: true
|
||||
font.pointSize: JamiTheme.contactEventPointSize
|
||||
|
||||
text: JamiStrings.createSwarm
|
||||
text: JamiStrings.newGroup
|
||||
}
|
||||
|
||||
PushButton {
|
||||
|
@ -288,7 +288,7 @@ SidePanelBase {
|
|||
visible: !swarmMemberSearchList.visible && CurrentAccount.type !== Profile.Type.SIP
|
||||
|
||||
source: smartListLayout.visible ? JamiResources.create_swarm_svg : JamiResources.round_close_24dp_svg
|
||||
toolTipText: smartListLayout.visible ? JamiStrings.startSwarm : JamiStrings.cancel
|
||||
toolTipText: smartListLayout.visible ? JamiStrings.newGroup : JamiStrings.cancel
|
||||
|
||||
onClicked: toggleCreateSwarmView()
|
||||
}
|
||||
|
|
|
@ -115,7 +115,7 @@ Rectangle {
|
|||
titleLine.editMode = activeFocus;
|
||||
}
|
||||
|
||||
infoTipLineText: CurrentConversation.isCoreDialog ? JamiStrings.contactName : JamiStrings.swarmName
|
||||
infoTipLineText: CurrentConversation.isCoreDialog ? JamiStrings.contactName : JamiStrings.groupName
|
||||
}
|
||||
|
||||
ModalTextEdit {
|
||||
|
|
|
@ -33,7 +33,7 @@ Item {
|
|||
property string endCall: qsTr("End call")
|
||||
property string incomingAudioCallFrom: qsTr("Incoming audio call from {}")
|
||||
property string incomingVideoCallFrom: qsTr("Incoming video call from {}")
|
||||
property string startSwarm: qsTr("Start swarm")
|
||||
property string newGroup: qsTr("Create new group")
|
||||
property string invitations: qsTr("Invitations")
|
||||
property string description: qsTr("Jami is a universal communication platform, with privacy as its foundation, that relies on a free distributed network for everyone.")
|
||||
property string updateToSwarm: qsTr("Migrating to the Swarm technology will enable synchronizing this conversation across multiple devices and improve reliability. The legacy conversation history will be cleared in the process.")
|
||||
|
@ -536,8 +536,8 @@ Item {
|
|||
property string troubleshootButton: qsTr("Open logs")
|
||||
property string troubleshootText: qsTr("Get logs")
|
||||
|
||||
property string experimentalCallSwarm: qsTr("(Experimental) Enable call support for swarm")
|
||||
property string experimentalCallSwarmTooltip: qsTr("This feature will enable call buttons in swarms with multiple participants.")
|
||||
property string experimentalCallSwarm: qsTr("(Experimental) Enable call support for groups")
|
||||
property string experimentalCallSwarmTooltip: qsTr("This feature will enable the audio and video call buttons in group conversations.")
|
||||
|
||||
// Recording Settings
|
||||
property string quality: qsTr("Quality")
|
||||
|
@ -780,8 +780,8 @@ Item {
|
|||
property string joinWithVideo: qsTr("Join with video")
|
||||
property string startedACall: qsTr("Started a call")
|
||||
property string wantToJoin: qsTr("A call is in progress. Do you want to join the call?")
|
||||
property string needsHost: qsTr("Current host for this swarm seems unreachable. Do you want to host the call?")
|
||||
property string selectHost: qsTr("Select dedicated device for hosting future calls in this swarm. If not set, the host will be the device starting a call.")
|
||||
property string needsHost: qsTr("Current host for this group conversation seems unreachable. Do you want to host the call?")
|
||||
property string selectHost: qsTr("Select dedicated device for hosting future calls in this group conversation. If not set, the host will be the device starting a call.")
|
||||
property string selectThisDevice: qsTr("Select this device")
|
||||
property string selectDevice: qsTr("Select device")
|
||||
property string removeCurrentDevice: qsTr("Remove current device")
|
||||
|
@ -797,10 +797,10 @@ Item {
|
|||
property string invitationViewAcceptedConversation: qsTr("You have accepted\nthe conversation invitation.")
|
||||
property string invitationViewWaitingForSync: qsTr("Waiting until %1\nconnects to synchronize the conversation.")
|
||||
|
||||
// SwarmDetailsPanel
|
||||
// SwarmDetailsPanel (group conversation panel)
|
||||
property string members: qsTr("%1 Members")
|
||||
property string member: qsTr("Member")
|
||||
property string swarmName: qsTr("Swarm name")
|
||||
property string groupName: qsTr("Group name")
|
||||
property string contactName: qsTr("Contact name")
|
||||
property string addDescription: qsTr("Add description")
|
||||
|
||||
|
@ -812,8 +812,7 @@ Item {
|
|||
property string typeOfSwarm: qsTr("Type")
|
||||
property string none: qsTr("None")
|
||||
|
||||
// NewSwarmPage
|
||||
property string createSwarm: qsTr("Create swarm")
|
||||
// NewSwarmPage (new group conversation page)
|
||||
property string goToConversation: qsTr("Go to conversation")
|
||||
property string kickMember: qsTr("Kick member")
|
||||
property string reinstateMember: qsTr("Reinstate member")
|
||||
|
|
Loading…
Add table
Reference in a new issue