mirror of
https://github.com/chris2511/xca.git
synced 2026-09-12 19:51:05 +05:00
Update translation
This commit is contained in:
parent
720b75c9aa
commit
279a6f3fdb
817
lang/xca.pot
817
lang/xca.pot
File diff suppressed because it is too large
Load Diff
992
lang/xca_de.ts
992
lang/xca_de.ts
File diff suppressed because it is too large
Load Diff
950
lang/xca_es.ts
950
lang/xca_es.ts
File diff suppressed because it is too large
Load Diff
922
lang/xca_fr.ts
922
lang/xca_fr.ts
File diff suppressed because it is too large
Load Diff
948
lang/xca_hr.ts
948
lang/xca_hr.ts
File diff suppressed because it is too large
Load Diff
998
lang/xca_ru.ts
998
lang/xca_ru.ts
File diff suppressed because it is too large
Load Diff
954
lang/xca_tr.ts
954
lang/xca_tr.ts
File diff suppressed because it is too large
Load Diff
@ -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"));
|
||||
|
||||
@ -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) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user