diff options
-rw-r--r-- | translations/acritoxinstaller_de.ts | 8 | ||||
-rw-r--r-- | wizard/userpwd.cpp | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/translations/acritoxinstaller_de.ts b/translations/acritoxinstaller_de.ts index 4c3fd49..68538c2 100644 --- a/translations/acritoxinstaller_de.ts +++ b/translations/acritoxinstaller_de.ts @@ -724,7 +724,13 @@ p, li { white-space: pre-wrap; } <translation>Passwörter müssen mindestens 6 Zeichen lang sein!</translation> </message> <message> - <location filename="../wizard/userpwd.cpp" line="47"/> + <location filename="../wizard/userpwd.cpp" line="43"/> + <location filename="../wizard/userpwd.cpp" line="53"/> + <source>Password OK</source> + <translation>Passwort OK</translation> + </message> + <message> + <location filename="../wizard/userpwd.cpp" line="48"/> <source>Passwords don't match!</source> <translation>Passwörter stimmen nicht überein!</translation> </message> diff --git a/wizard/userpwd.cpp b/wizard/userpwd.cpp index 48a9e91..478e59c 100644 --- a/wizard/userpwd.cpp +++ b/wizard/userpwd.cpp @@ -40,6 +40,7 @@ void wpUserPwd::updateStatus() } else { + passwordStatus->setToolTip(tr("Password OK")); passwordStatus->setPixmap(QIcon::fromTheme("dialog-ok").pixmap(24,24)); if(pw1 != pw2) @@ -49,6 +50,7 @@ void wpUserPwd::updateStatus() complete = false; } else + retypePasswordStatus->setToolTip(tr("Password OK")); retypePasswordStatus->setPixmap(QIcon::fromTheme("dialog-ok").pixmap(24,24)); } emit completeChanged(); |