From d9c543afcddc1b602495c0595588fae9699aecb0 Mon Sep 17 00:00:00 2001 From: kwadronaut Date: Thu, 18 Feb 2021 17:05:32 +0100 Subject: swap 3 dots for ellipsis --- gui/qml/AboutDialog.qml | 2 +- gui/qml/main.qml | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) (limited to 'gui/qml') diff --git a/gui/qml/AboutDialog.qml b/gui/qml/AboutDialog.qml index 7c673d2..544d375 100644 --- a/gui/qml/AboutDialog.qml +++ b/gui/qml/AboutDialog.qml @@ -11,7 +11,7 @@ MessageDialog { var _name = ctx ? ctx.appName : "vpn" var _provider = ctx ? ctx.provider : "unknown" var _donateURL = ctx ? ctx.donateURL : "" - var _tosURL = ctx ? ctx.tosURL : "..." + var _tosURL = ctx ? ctx.tosURL : "…" var _donateTXT = "" if (_donateURL) { //: donation text of the about dialog diff --git a/gui/qml/main.qml b/gui/qml/main.qml index 4115922..14f0776 100644 --- a/gui/qml/main.qml +++ b/gui/qml/main.qml @@ -168,7 +168,7 @@ ApplicationWindow { Component.onCompleted: { icon.source = icons["off"] - tooltip = qsTr("Checking status...") + tooltip = qsTr("Checking status…") console.debug("systray init completed") hide() if (systrayVisible) { @@ -270,7 +270,7 @@ ApplicationWindow { MenuItem { id: statusItem - text: qsTr("Checking status...") + text: qsTr("Checking status…") enabled: false } @@ -305,7 +305,7 @@ ApplicationWindow { MenuSeparator {} MenuItem { - text: qsTr("About...") + text: qsTr("About…") onTriggered: { about.visible = true } @@ -313,7 +313,7 @@ ApplicationWindow { MenuItem { id: donateItem - text: qsTr("Donate...") + text: qsTr("Donate…") visible: ctx ? ctx.donateURL : false onTriggered: { donate.visible = true @@ -323,7 +323,7 @@ ApplicationWindow { MenuSeparator {} MenuItem { - text: qsTr("Help...") + text: qsTr("Help…") onTriggered: { console.debug(Qt.resolvedUrl(ctx.helpURL)) @@ -332,7 +332,7 @@ ApplicationWindow { } MenuItem { - text: qsTr("Report a bug...") + text: qsTr("Report a bug…") onTriggered: { Qt.openUrlExternally( -- cgit v1.2.3