summaryrefslogtreecommitdiff
path: root/gui/qml/main.qml
diff options
context:
space:
mode:
authorkali kaneko (leap communications) <kali@leap.se>2021-02-08 23:02:10 +0100
committerkali kaneko (leap communications) <kali@leap.se>2021-02-08 23:32:22 +0100
commit82ee9e4e415c60410980c1adb0bfb74dd1571fc2 (patch)
treeb3d3cfdc00cda51ebda34bd63079da4287e7a5b0 /gui/qml/main.qml
parent7af4d63ea872609a9d7c2f9d954a211bded1b5bb (diff)
[style] formatting
we should try to use qmlfmt, indeed
Diffstat (limited to 'gui/qml/main.qml')
-rw-r--r--gui/qml/main.qml50
1 files changed, 25 insertions, 25 deletions
diff --git a/gui/qml/main.qml b/gui/qml/main.qml
index 3ddf8d3..4fce2c4 100644
--- a/gui/qml/main.qml
+++ b/gui/qml/main.qml
@@ -49,30 +49,30 @@ ApplicationWindow {
}
function showInitFailure(msg) {
- console.debug("ERRORS:", ctx.errors)
- if (msg == undefined) {
- if (ctx.errors == 'bad_auth_502' || ctx.errors == 'bad_auth_timeout') {
- msg = qsTr("Oops! The authentication service seems down. Please try again later")
- initFailure.title = qsTr("Service Error")
- }
- else if (ctx.errors == 'bad_auth') {
- if (allowEmptyPass) {
- // For now, this is a libraryVPN, so we can be explicit about what credentials are here.
- // Another option to consider is to customize the error strings while vendoring.
- //: Incorrect library card number
- msg = qsTr("Please check your Patron ID")
- } else {
- msg = qsTr("Could not log in with those credentials, please retry")
- }
- initFailure.title = qsTr("Login Error")
- } else {
- //: %1 -> application name
- //: %2 -> error string
- msg = qsTr("Got an error starting %1: %2").arg(ctx.appName).arg(ctx.errors)
- }
- }
- initFailure.text = msg
- initFailure.visible = true
+ console.debug("ERRORS:", ctx.errors)
+ if (msg == undefined) {
+ if (ctx.errors == 'bad_auth_502' || ctx.errors == 'bad_auth_timeout') {
+ msg = qsTr("Oops! The authentication service seems down. Please try again later")
+ initFailure.title = qsTr("Service Error")
+ }
+ else if (ctx.errors == 'bad_auth') {
+ if (allowEmptyPass) {
+ // For now, this is a libraryVPN, so we can be explicit about what credentials are here.
+ // Another option to consider is to customize the error strings while vendoring.
+ //: Incorrect library card number
+ msg = qsTr("Please check your Patron ID")
+ } else {
+ msg = qsTr("Could not log in with those credentials, please retry")
+ }
+ initFailure.title = qsTr("Login Error")
+ } else {
+ //: %1 -> application name
+ //: %2 -> error string
+ msg = qsTr("Got an error starting %1: %2").arg(ctx.appName).arg(ctx.errors)
+ }
+ }
+ initFailure.text = msg
+ initFailure.visible = true
}
function shouldAllowEmptyPass() {
@@ -124,7 +124,7 @@ ApplicationWindow {
"wait": "qrc:/assets/icon/png/black/vpn_wait_0.png",
"blocked": "qrc:/assets/icon/png/black/vpn_blocked.png",
}
-
+
SystemTrayIcon {