Update translation

This commit is contained in:
Christian Hohnstaedt 2015-05-19 06:11:07 +02:00
parent 720b75c9aa
commit 279a6f3fdb
9 changed files with 3909 additions and 2680 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -222,7 +222,7 @@ exportType::etype db_key::clipboardFormat(QModelIndexList indexes)
tr("PEM private"));
ExportDialog *dlg = new ExportDialog(mainwin,
tr("Export keys to CLipboard"), QString(), NULL,
tr("Export keys to Clipboard"), QString(), NULL,
MainWindow::keyImg, types);
dlg->filename->setText(tr("Clipboard"));

View File

@ -79,7 +79,7 @@ void KeyTreeView::changePin()
scard = static_cast<pki_scard*>(currentIdx.internalPointer());
try {
if (!scard->isToken()) {
throw errorEx(tr("Tried to change PIN of a key"));
throw errorEx(tr("This is not a token"));
}
scard->changePin();
} catch (errorEx &err) {
@ -97,7 +97,7 @@ void KeyTreeView::initPin()
scard = static_cast<pki_scard*>(currentIdx.internalPointer());
try {
if (!scard->isToken()) {
throw errorEx(tr("Tried to init PIN of a key"));
throw errorEx(tr("This is not a token"));
}
scard->initPin();
} catch (errorEx &err) {
@ -115,7 +115,7 @@ void KeyTreeView::changeSoPin()
scard = static_cast<pki_scard*>(currentIdx.internalPointer());
try {
if (!scard->isToken()) {
throw errorEx(tr("Tried to change SO PIN of a key"));
throw errorEx(tr("This is not a token"));
}
scard->changeSoPin();
} catch (errorEx &err) {