8
0
Просмотр исходного кода

Merge branch 'master' into t/ckeditor5/914

Piotrek Koszuliński 7 лет назад
Родитель
Сommit
6b74d9f21c
1 измененных файлов с 4 добавлено и 4 удалено
  1. 4 4
      packages/ckeditor5-utils/src/translation-service.js

+ 4 - 4
packages/ckeditor5-utils/src/translation-service.js

@@ -10,14 +10,14 @@
  *
  * Translation service provides {module:utils/translation-service.translate translate} method which can be used
  * to translate phrase to the given language. Translation should be previously added directly to
- * the window.CKEDITOR_TRANSLATIONS variable, safely extending current ones.
+ * the `window.CKEDITOR_TRANSLATIONS` variable, safely extending current ones.
  *
- * 		<script src="./path/to/ckeditor.js"></script>
- * 		<script src="./path/to/translations/de.js"></script>
+ *		<script src="./path/to/ckeditor.js"></script>
+ *		<script src="./path/to/translations/de.js"></script>
  *
  * Example of the function that can add translations to the given language.
  *
- * 		function addTranslations( lang, translations ) {
+ *		function addTranslations( lang, translations ) {
  *			if ( !window.CKEDITOR_TRANSLATIONS ) {
  *				window.CKEDITOR_TRANSLATIONS = {};
  *			}