We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bba6fff commit 351e084Copy full SHA for 351e084
assets/controllers/elements/ckeditor_controller.js
@@ -87,7 +87,8 @@ export default class extends Controller {
87
//Load translations if not english
88
let translations = loadTranslation(language);
89
if (translations) {
90
- config.translations = [translations];
+ //Keep existing translations (e.g. from other plugins), if any
91
+ config.translations = [window.CKEDITOR_TRANSLATIONS, translations];
92
}
93
94
const watchdog = new EditorWatchdog();
0 commit comments