Fix spelling errors found by lintian packge checker

This commit is contained in:
Christohper Knadle 2016-02-01 12:09:48 +01:00 committed by Christian Hohnstaedt
parent 3173bdba96
commit 2f3a1de7ac
14 changed files with 15 additions and 15 deletions

View File

@ -947,7 +947,7 @@ msgid ""
msgstr ""
#: MainWindow#71
msgid "The following error occured:"
msgid "The following error occurred:"
msgstr ""
#: MainWindow#72

View File

@ -1156,7 +1156,7 @@ msgstr ""
"%1"
#: MainWindow#84
msgid "The following error occured:"
msgid "The following error occurred:"
msgstr "L'erreur suivante s'est produite:"
#: MainWindow#85

View File

@ -960,7 +960,7 @@ msgid ""
msgstr ""
#: MainWindow#70
msgid "The following error occured:"
msgid "The following error occurred:"
msgstr ""
#: MainWindow#71

View File

@ -1112,7 +1112,7 @@ msgid ""
msgstr ""
#: MainWindow#84
msgid "The following error occured:"
msgid "The following error occurred:"
msgstr ""
#: MainWindow#85

View File

@ -1082,7 +1082,7 @@ Dies löscht den Schlüssel &apos;%1&apos; und macht ihn nicht-exportierbar</tra
</message>
<message>
<location line="+62"/>
<source>The following error occured:</source>
<source>The following error occurred:</source>
<translation>Der folgende Fehler ist aufgetreten:</translation>
</message>
<message>

View File

@ -1360,7 +1360,7 @@ This will delete the key &apos;%1&apos; and make it unexportable</source>
</message>
<message>
<location line="+34"/>
<source>The following error occured:</source>
<source>The following error occurred:</source>
<translation type="unfinished"></translation>
</message>
<message>

View File

@ -1352,7 +1352,7 @@ Cela détruirait la clé &apos;%1&apos; et la rendrait non-exportable.</translat
</message>
<message>
<location line="+34"/>
<source>The following error occured:</source>
<source>The following error occurred:</source>
<translation>L&apos;erreur suivante s&apos;est produite:</translation>
</message>
<message>

View File

@ -1518,7 +1518,7 @@ To će obrisati ključ &apos;%1&apos; i zabraniti njegov izvoz </translation>
</message>
<message>
<location line="+34"/>
<source>The following error occured:</source>
<source>The following error occurred:</source>
<translation>Desila se sljedeća greška:</translation>
</message>
<message>

View File

@ -1083,7 +1083,7 @@ This will delete the key &apos;%1&apos; and make it unexportable</source>
</message>
<message>
<location line="+62"/>
<source>The following error occured:</source>
<source>The following error occurred:</source>
<translation>Внимание произошла ошибка:</translation>
</message>
<message>

View File

@ -1399,7 +1399,7 @@ This will delete the key &apos;%1&apos; and make it unexportable</source>
</message>
<message>
<location line="+34"/>
<source>The following error occured:</source>
<source>The following error occurred:</source>
<translation type="unfinished"></translation>
</message>
<message>

View File

@ -148,7 +148,7 @@ int read_dump(const char *filename, db_base **dbs, char *md5, int md5_len)
pki->oldFromData((unsigned char*)p, retlen);
db->insert(pki);
} catch (errorEx &err) {
printf("Error catched for '%s'\n", CCHAR(pki->getIntName()));
printf("Error caught for '%s'\n", CCHAR(pki->getIntName()));
}
}
} else if (md5) {

View File

@ -266,7 +266,7 @@ pk11_attlist pki_scard::objectAttributesNoId(EVP_PKEY *pk, bool priv) const
break;
#endif
default:
throw errorEx(QString("Unkown Keytype %d").arg(pk->type));
throw errorEx(QString("Unknown Keytype %d").arg(pk->type));
}
return attrs;
@ -419,7 +419,7 @@ void pki_scard::store_token(slotid slot, EVP_PKEY *pkey)
}
#endif
default:
throw errorEx(QString("Unkown Keytype %d").arg(pkey->type));
throw errorEx(QString("Unknown Keytype %d").arg(pkey->type));
}

View File

@ -380,7 +380,7 @@ void MainWindow::setOptFlags(QString flags)
else if (flag == "disable_netscape")
pki_x509::disable_netscape = true;
else if (!flag.isEmpty())
fprintf(stderr, "Unkown flag '%s'\n", CCHAR(flag));
fprintf(stderr, "Unknown flag '%s'\n", CCHAR(flag));
}
if (old_disable_netscape != pki_x509::disable_netscape) {
certView->showHideSections();

View File

@ -782,7 +782,7 @@ void MainWindow::Error(errorEx &err)
{
if (err.isEmpty())
return;
QString msg = tr("The following error occured:") + "\n" + err.getString();
QString msg = tr("The following error occurred:") + "\n" + err.getString();
xcaWarning box(NULL, msg);
box.addButton(QMessageBox::Apply)->setText(tr("Copy to Clipboard"));
box.addButton(QMessageBox::Ok);