i18n entry for 'Copy as plain text' bugfix (#1674)

This commit is contained in:
Salah Benmoussati 2023-01-12 10:43:14 +01:00 committed by GitHub
parent b177e250a9
commit 7279351c63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 4 deletions

View File

@ -70,6 +70,7 @@ export class SpellChecker {
copy: () => i18n.t('Copy')(), copy: () => i18n.t('Copy')(),
paste: () => i18n.t('Paste')(), paste: () => i18n.t('Paste')(),
inspectElement: () => i18n.t('Inspect Element', namespace)(), inspectElement: () => i18n.t('Inspect Element', namespace)(),
pasteAsPlainText: () => i18n.t('Paste as plain text')(),
}; };
} }