diff options
author | saturneric <[email protected]> | 2024-01-31 09:19:37 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-01-31 09:19:37 +0000 |
commit | 07178f643f00a8b2da20ba8beebc4b6dc13b95a0 (patch) | |
tree | b94458f57d40018891f8bc0711ef49432ed18128 /src/ui/function/RaisePinentry.cpp | |
parent | feat: support qt5 build option (diff) | |
download | GpgFrontend-07178f643f00a8b2da20ba8beebc4b6dc13b95a0.tar.gz GpgFrontend-07178f643f00a8b2da20ba8beebc4b6dc13b95a0.zip |
fix: update translations
Diffstat (limited to '')
-rw-r--r-- | src/ui/function/RaisePinentry.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ui/function/RaisePinentry.cpp b/src/ui/function/RaisePinentry.cpp index 216712e8..7c68d67c 100644 --- a/src/ui/function/RaisePinentry.cpp +++ b/src/ui/function/RaisePinentry.cpp @@ -64,17 +64,17 @@ auto RaisePinentry::Exec() -> int { auto* pinentry = new PinEntryDialog(FindTopMostWindow(this), 0, 15, true, ask_for_new, - ask_for_new ? tr("Repeat PIN:") : QString(), + ask_for_new ? tr("Repeat Passphrase:") : QString(), tr("Show passphrase"), tr("Hide passphrase")); if (context_->IsPreWasBad()) { - pinentry->setError(tr("Given PIN was wrong. Please retry.")); + pinentry->setError(tr("Given Passphrase was wrong. Please retry.")); } - pinentry->setPrompt(tr("PIN:")); + pinentry->setPrompt(tr("Passphrase:")); if (!context_->GetUidsInfo().isEmpty()) { - pinentry->setDescription(QString("Please provide PIN of Key:\n%1\n") + pinentry->setDescription(QString("Please provide Passphrase of Key:\n%1\n") .arg(context_->GetUidsInfo())); } |