diff options
author | kali kaneko (leap communications) <kali@leap.se> | 2021-06-01 12:28:47 +0200 |
---|---|---|
committer | kali kaneko (leap communications) <kali@leap.se> | 2021-06-01 12:34:11 +0200 |
commit | a0fd057bfda06de2159bf173035a88ca3d1dbadd (patch) | |
tree | 4f8358cd06789bf4f372c24510c90500687e8d12 /gui/qml/VpnState.qml | |
parent | c2a582fa4915b1a820bcc5e5bc589cd9ac2e2d19 (diff) |
[feat] hide window by default, raise for picking location
Diffstat (limited to 'gui/qml/VpnState.qml')
-rw-r--r-- | gui/qml/VpnState.qml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gui/qml/VpnState.qml b/gui/qml/VpnState.qml index 332dcaa..481d68e 100644 --- a/gui/qml/VpnState.qml +++ b/gui/qml/VpnState.qml @@ -69,9 +69,9 @@ StateGroup { text: { if (autoSelectionButton.checked) { //: %1 -> location to which the client is connected to - qsTr("Best (%1)").arg(locationStr()) + qsTr("Recommended (%1)").arg(locationStr()) } else { - qsTr("Best") + qsTr("Recommended") } } } @@ -101,9 +101,9 @@ StateGroup { text: { if (autoSelectionButton.checked) { //: %1 -> location to which the client is connected to - qsTr("Best (%1)").arg(locationStr()) + qsTr("Recommended (%1)").arg(locationStr()) } else { - qsTr("Best") + qsTr("Recommended") } } } @@ -129,7 +129,7 @@ StateGroup { } PropertyChanges { target: autoSelectionItem - text: qsTr("Best") + text: qsTr("Recommended") } PropertyChanges { target: mainStatus @@ -153,7 +153,7 @@ StateGroup { } PropertyChanges { target: autoSelectionItem - text: qsTr("Best") + text: qsTr("Recommended") } PropertyChanges { target: mainStatus |