Fix some OpenPGP translations

This commit is contained in:
the-djmaze 2022-02-09 15:43:14 +01:00
parent 8e515ed2af
commit 92b81b777b
39 changed files with 395 additions and 360 deletions

View file

@ -650,7 +650,7 @@ export class MailMessageView extends AbstractViewRight {
}
/*
if (result && result.success) {
i18n('PGP_NOTIFICATIONS/GOOD_SIGNATURE', {
i18n('OPENPGP/GOOD_SIGNATURE', {
USER: validKey.user + ' (' + validKey.id + ')'
});
message.getText()
@ -660,7 +660,7 @@ export class MailMessageView extends AbstractViewRight {
? keyIds.map(item => (item && item.toHex ? item.toHex() : null)).filter(v => v).join(', ')
: '';
i18n('PGP_NOTIFICATIONS/PGP_ERROR', {
i18n('OPENPGP/ERROR', {
ERROR: 'message'
}) + (additional ? ' (' + additional + ')' : '');
}