Use ellipsis character instead of ...
This commit is contained in:
@@ -39,7 +39,7 @@ struct WebShortcutModelPrivate;
|
|||||||
* }
|
* }
|
||||||
* QQC2.MenuSeparator {}
|
* QQC2.MenuSeparator {}
|
||||||
* QQC2.MenuItem {
|
* QQC2.MenuItem {
|
||||||
* text: i18n("Configure Web Shortcuts...")
|
* text: i18n("Configure Web Shortcuts…")
|
||||||
* icon.name: "configure"
|
* icon.name: "configure"
|
||||||
* onTriggered: webshortcutmodel.configureWebShortcuts()
|
* onTriggered: webshortcutmodel.configureWebShortcuts()
|
||||||
* }
|
* }
|
||||||
|
|||||||
@@ -243,7 +243,7 @@ void NotificationsManager::postNotification(NeoChatRoom *room,
|
|||||||
|
|
||||||
if (canReply) {
|
if (canReply) {
|
||||||
std::unique_ptr<KNotificationReplyAction> replyAction(new KNotificationReplyAction(i18n("Reply")));
|
std::unique_ptr<KNotificationReplyAction> replyAction(new KNotificationReplyAction(i18n("Reply")));
|
||||||
replyAction->setPlaceholderText(i18n("Reply..."));
|
replyAction->setPlaceholderText(i18n("Reply…"));
|
||||||
connect(replyAction.get(), &KNotificationReplyAction::replied, this, [room, replyEventId](const QString &text) {
|
connect(replyAction.get(), &KNotificationReplyAction::replied, this, [room, replyEventId](const QString &text) {
|
||||||
TextHandler textHandler;
|
TextHandler textHandler;
|
||||||
textHandler.setData(text);
|
textHandler.setData(text);
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ Labs.MenuBar {
|
|||||||
|
|
||||||
Labs.MenuItem {
|
Labs.MenuItem {
|
||||||
enabled: pageStack.layers.currentItem.title !== i18n("Configure NeoChat…")
|
enabled: pageStack.layers.currentItem.title !== i18n("Configure NeoChat…")
|
||||||
text: i18nc("menu", "Configure NeoChat...")
|
text: i18nc("menu", "Configure NeoChat…")
|
||||||
|
|
||||||
shortcut: StandardKey.Preferences
|
shortcut: StandardKey.Preferences
|
||||||
onTriggered: NeoChatSettingsView.open()
|
onTriggered: NeoChatSettingsView.open()
|
||||||
|
|||||||
@@ -124,7 +124,7 @@ DelegateContextMenu {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Kirigami.Action {
|
Kirigami.Action {
|
||||||
text: i18n("Configure Web Shortcuts...")
|
text: i18n("Configure Web Shortcuts…")
|
||||||
icon.name: "configure"
|
icon.name: "configure"
|
||||||
visible: !Controller.isFlatpak && webshortcutModel.enabled
|
visible: !Controller.isFlatpak && webshortcutModel.enabled
|
||||||
onTriggered: webshortcutmodel.configureWebShortcuts()
|
onTriggered: webshortcutmodel.configureWebShortcuts()
|
||||||
|
|||||||
Reference in New Issue
Block a user