Don't call direct messages friends

Not every person I communicate with is necessarily my friend

Use a more neutral term

BUG: 480167
This commit is contained in:
Nicolas Fella
2025-10-16 12:23:33 +02:00
parent f59e5a4b3c
commit 6d56b673c4
4 changed files with 8 additions and 8 deletions

View File

@@ -136,10 +136,10 @@ QQC2.Control {
text: {
if (directChatButton.hasCountableNotifications) {
return i18ncp("@button View all one-on-one chats with your friends.", "Friends (%1 notification)", "Friends (%1 notifications)", root.connection.directChatNotifications + root.connection.directChatInvites);
return i18ncp("@button View all one-on-one chats.", "Direct Messages (%1 notification)", "Direct Messages (%1 notifications)", root.connection.directChatNotifications + root.connection.directChatInvites);
}
return i18nc("@button View all one-on-one chats with your friends.", "Friends");
return i18nc("@button View all one-on-one chats.", "Direct Messages");
}
contentItem: Kirigami.Icon {
source: "system-users-symbolic"