From 5cb364aee6be0ee1b94b3d3da37ccf9311891b11 Mon Sep 17 00:00:00 2001 From: Ruben Pollan Date: Fri, 20 Nov 2020 20:06:51 +0100 Subject: [i18n] Fix strings from comments in transifex --- gui/qml/LoginDialog.qml | 4 ++-- gui/qml/main.qml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'gui/qml') diff --git a/gui/qml/LoginDialog.qml b/gui/qml/LoginDialog.qml index 8e28d59..ba0065d 100644 --- a/gui/qml/LoginDialog.qml +++ b/gui/qml/LoginDialog.qml @@ -17,11 +17,11 @@ Dialog { } TextField { id: username - placeholderText: qsTr("patron id") + placeholderText: qsTr("Patron ID") } TextField { id: password - placeholderText: qsTr("password") + placeholderText: qsTr("Password") echoMode: TextInput.PasswordEchoOnEdit visible: !allowEmptyPass } diff --git a/gui/qml/main.qml b/gui/qml/main.qml index 5d8b825..e6c1964 100644 --- a/gui/qml/main.qml +++ b/gui/qml/main.qml @@ -35,7 +35,7 @@ ApplicationWindow { if (ctx.errors ) { login.visible = false if ( ctx.errors == "nohelpers" ) { - showInitFailure(qsTr("Could not find helpers. Check your installation")) + showInitFailure(qsTr("Could not find helpers. Please check your installation")) } else if ( ctx.errors == "nopolkit" ) { showInitFailure(qsTr("Could not find polkit agent.")) } else { -- cgit v1.2.3