summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorThorsten Behrens <Thorsten.Behrens@CIB.de>2017-12-08 00:34:06 +0100
committerThorsten Behrens <Thorsten.Behrens@CIB.de>2017-12-08 23:28:30 +0100
commitd595a081b38bbfda7a64fd1c2680c24880f02025 (patch)
tree79aa465e7efeaed2296c869b5e3349283edc78fa /sfx2
parent955b59e8720951821ed84ba79d8e8c22999b2bd3 (diff)
gpg4libre: add error string for failed/untrusted encryption
There's one rather common failure mode with gpg, in that untrusted keys are not accepted by gpgme for encryption. A user can override that with --trust-model config or cmd line params, but we can't do much from the gpgme client side: https://www.gnupg.org/documentation/manuals/gnupg/GPG-Configuration-Options.html Change-Id: Ia140a7fd25bd3f428aa11a7ceb0b7bdc47b2c900 Reviewed-on: https://gerrit.libreoffice.org/46060 Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de> Tested-by: Thorsten Behrens <Thorsten.Behrens@CIB.de> (cherry picked from commit d46dc8e547810208287aab77f0313f1971901464) Reviewed-on: https://gerrit.libreoffice.org/46084 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de>
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/dialog/filedlghelper.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/dialog/filedlghelper.cxx b/sfx2/source/dialog/filedlghelper.cxx
index 6e997d92ebc5..3820ee4107c9 100644
--- a/sfx2/source/dialog/filedlghelper.cxx
+++ b/sfx2/source/dialog/filedlghelper.cxx
@@ -1534,7 +1534,7 @@ ErrCode FileDialogHelper_Impl::execute( std::vector<OUString>& rpURLList,
{
ScopedVclPtrInstance< MessageDialog > aBox(
mpPreferredParentWindow,
- SfxResId(RID_SVXSTR_INCORRECT_PASSWORD));
+ SfxResId(RID_SVXSTR_GPG_ENCRYPT_FAILURE));
aBox->Execute();
}
}