diff options
author | Maximilian Gerhard <maxbox@directbox.com> | 2011-10-04 03:05:46 +0200 |
---|---|---|
committer | Andreas Loibl <andreas@andreas-loibl.de> | 2011-10-05 01:03:04 +0200 |
commit | 81f5cf2d76ccc5df85561062e5e6106ad951cac4 (patch) | |
tree | 37084125da5d972412f57e0e039411d21e95c100 | |
parent | 758528f4591e1c00fdecfc48f7d0e3fe974e7204 (diff) | |
download | acritoxinstaller-81f5cf2d76ccc5df85561062e5e6106ad951cac4.zip acritoxinstaller-81f5cf2d76ccc5df85561062e5e6106ad951cac4.tar.gz |
Fixed root pw indicator tooltips
-rw-r--r-- | translations/acritoxinstaller_de.ts | 8 | ||||
-rw-r--r-- | wizard/rootpwd.cpp | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/translations/acritoxinstaller_de.ts b/translations/acritoxinstaller_de.ts index c094c53..aaf8d83 100644 --- a/translations/acritoxinstaller_de.ts +++ b/translations/acritoxinstaller_de.ts @@ -539,7 +539,13 @@ p, li { white-space: pre-wrap; } <translation>Passwörter müssen mindestens 6 Zeichen lang sein!</translation> </message> <message> - <location filename="../wizard/rootpwd.cpp" line="47"/> + <location filename="../wizard/rootpwd.cpp" line="43"/> + <location filename="../wizard/rootpwd.cpp" line="53"/> + <source>Password OK</source> + <translation>Passwort OK</translation> + </message> + <message> + <location filename="../wizard/rootpwd.cpp" line="48"/> <source>Passwords don't match!</source> <translation>Passwörter stimmen nicht überein!</translation> </message> diff --git a/wizard/rootpwd.cpp b/wizard/rootpwd.cpp index 9ec4417..620364b 100644 --- a/wizard/rootpwd.cpp +++ b/wizard/rootpwd.cpp @@ -40,6 +40,7 @@ void wpRootPwd::updateStatus() } else { + passwordStatus->setToolTip(tr("Password OK")); passwordStatus->setPixmap(QIcon::fromTheme("dialog-ok").pixmap(24,24)); if(pw1 != pw2) @@ -49,6 +50,7 @@ void wpRootPwd::updateStatus() complete = false; } else + retypePasswordStatus->setToolTip(tr("Password OK")); retypePasswordStatus->setPixmap(QIcon::fromTheme("dialog-ok").pixmap(24,24)); } |