mirror of
https://invent.kde.org/system/dolphin
synced 2024-11-05 18:47:12 +00:00
CVS_SILENT Typographical corrections and changes
svn path=/trunk/kdebase/kdepasswd/; revision=293432
This commit is contained in:
parent
5d6c2f13c0
commit
46aa210a36
1 changed files with 3 additions and 3 deletions
|
@ -38,7 +38,7 @@ bool KDEpasswd1Dialog::checkPassword(const char *password)
|
|||
QString msg = QString::fromLocal8Bit(proc.error());
|
||||
if (!msg.isEmpty())
|
||||
msg = "<p>\"<i>" + msg + "</i>\"";
|
||||
msg = "<qt>" + i18n("Conversation with `passwd' failed.") + msg;
|
||||
msg = "<qt>" + i18n("Conversation with 'passwd' failed.") + msg;
|
||||
KMessageBox::error(this, msg);
|
||||
done(Rejected);
|
||||
return false;
|
||||
|
@ -48,7 +48,7 @@ bool KDEpasswd1Dialog::checkPassword(const char *password)
|
|||
return true;
|
||||
|
||||
case PasswdProcess::PasswdNotFound:
|
||||
KMessageBox::error(this, i18n("Could not find the program `passwd'."));
|
||||
KMessageBox::error(this, i18n("Could not find the program 'passwd'."));
|
||||
done(Rejected);
|
||||
return false;
|
||||
|
||||
|
@ -156,7 +156,7 @@ bool KDEpasswd2Dialog::checkPassword(const char *password)
|
|||
QString msg = QString::fromLocal8Bit(proc.error());
|
||||
if (!msg.isEmpty())
|
||||
msg = "<p>\"<i>" + msg + "</i>\"";
|
||||
msg = "<qt>" + i18n("Conversation with `passwd' failed.") + msg;
|
||||
msg = "<qt>" + i18n("Conversation with 'passwd' failed.") + msg;
|
||||
KMessageBox::sorry(this, msg);
|
||||
done(Rejected);
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue