From 111a45ab3846d2806c8f6b12411567e400ba6f1a Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Fri, 17 Jan 2025 16:50:12 +0100 Subject: [PATCH] Use ellipsis character instead of ... --- src/models/webshortcutmodel.h | 2 +- src/notificationsmanager.cpp | 2 +- src/qml/GlobalMenu.qml | 2 +- src/qml/MessageDelegateContextMenu.qml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/models/webshortcutmodel.h b/src/models/webshortcutmodel.h index 662f90e20..ea0e241fd 100644 --- a/src/models/webshortcutmodel.h +++ b/src/models/webshortcutmodel.h @@ -39,7 +39,7 @@ struct WebShortcutModelPrivate; * } * QQC2.MenuSeparator {} * QQC2.MenuItem { - * text: i18n("Configure Web Shortcuts...") + * text: i18n("Configure Web Shortcuts…") * icon.name: "configure" * onTriggered: webshortcutmodel.configureWebShortcuts() * } diff --git a/src/notificationsmanager.cpp b/src/notificationsmanager.cpp index f4a9edb6d..458f92be2 100644 --- a/src/notificationsmanager.cpp +++ b/src/notificationsmanager.cpp @@ -243,7 +243,7 @@ void NotificationsManager::postNotification(NeoChatRoom *room, if (canReply) { std::unique_ptr replyAction(new KNotificationReplyAction(i18n("Reply"))); - replyAction->setPlaceholderText(i18n("Reply...")); + replyAction->setPlaceholderText(i18n("Reply…")); connect(replyAction.get(), &KNotificationReplyAction::replied, this, [room, replyEventId](const QString &text) { TextHandler textHandler; textHandler.setData(text); diff --git a/src/qml/GlobalMenu.qml b/src/qml/GlobalMenu.qml index 0424b5a92..a9ef3e2d1 100644 --- a/src/qml/GlobalMenu.qml +++ b/src/qml/GlobalMenu.qml @@ -22,7 +22,7 @@ Labs.MenuBar { Labs.MenuItem { enabled: pageStack.layers.currentItem.title !== i18n("Configure NeoChat…") - text: i18nc("menu", "Configure NeoChat...") + text: i18nc("menu", "Configure NeoChat…") shortcut: StandardKey.Preferences onTriggered: NeoChatSettingsView.open() diff --git a/src/qml/MessageDelegateContextMenu.qml b/src/qml/MessageDelegateContextMenu.qml index a92bf6f78..6e578847a 100644 --- a/src/qml/MessageDelegateContextMenu.qml +++ b/src/qml/MessageDelegateContextMenu.qml @@ -124,7 +124,7 @@ DelegateContextMenu { } Kirigami.Action { - text: i18n("Configure Web Shortcuts...") + text: i18n("Configure Web Shortcuts…") icon.name: "configure" visible: !Controller.isFlatpak && webshortcutModel.enabled onTriggered: webshortcutmodel.configureWebShortcuts()