l10n: Correct two typo

Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
This commit is contained in:
Valdnet 2021-09-10 09:05:35 +02:00 committed by Matthieu Gallien
parent 06f37234dc
commit a441d733dc
2 changed files with 2 additions and 2 deletions

View File

@ -134,7 +134,7 @@ ColumnLayout {
TextField {
id: userStatusMessageTextField
Layout.fillWidth: true
placeholderText: qsTr("What is your Status?")
placeholderText: qsTr("What is your status?")
text: userStatusSelectorModel.userStatusMessage
onEditingFinished: userStatusSelectorModel.setUserStatusMessage(text)
}

View File

@ -453,7 +453,7 @@ void NSISUpdater::showUpdateErrorDialog(const QString &targetVersion)
ico->setPixmap(infoIcon.pixmap(iconSize));
auto lbl = new QLabel;
QString txt = tr("<p>A new version of the %1 Client is available but the updating process failed.</p>"
"<p><b>%2</b> has been downloaded. The installed version is %3. If you confirm restart and upate, your computer may reboot to complete the installation.</p>")
"<p><b>%2</b> has been downloaded. The installed version is %3. If you confirm restart and update, your computer may reboot to complete the installation.</p>")
.arg(Utility::escape(Theme::instance()->appNameGUI()),
Utility::escape(targetVersion), Utility::escape(clientVersion()));