?
avatar nadjak77
nadjak77
17 Oct 2020

Steps to reproduce the issue

install f.e. german installation pack
go to article - new article
see the TinyMCE
on the right bottom you can see
grafik

This is not a languagestring, so it cannot be translated

Expected result

should be translation string

Actual result

there is no constant in the languagefile

System information (as much as possible)

Additional comments

avatar nadjak77 nadjak77 - open - 17 Oct 2020
avatar joomla-cms-bot joomla-cms-bot - change - 17 Oct 2020
Labels Added: ?
avatar joomla-cms-bot joomla-cms-bot - labeled - 17 Oct 2020
avatar nadjak77
nadjak77 - comment - 17 Oct 2020

I do Not mean the Editor-Button, but the text „words „ above the blue button

avatar brianteeman
brianteeman - comment - 17 Oct 2020

This is part of TinyMCE, not joomla

avatar bembelimen
bembelimen - comment - 18 Oct 2020

The reason is very easy, in media/vendor/tinymce/langs/de.js (and all other language files) the string is:

"Words: {0}": "W\u00f6rter: {0}",

but should be:

"{0} Words": "W\u00f6rter: {0}",

or https://github.com/tinymce/tinymce/blob/develop/modules/tinymce/src/themes/silver/main/ts/ui/statusbar/WordCount.ts#L22

has to be changed from:

'{0} ' + mode

to

mode + ': {0}'

(to test you can change the media/vendor/tinymce/themes/silver/theme.min.js, search for "{0} "+e and change to e+": {0} ")

So as @brianteeman said, you have to report it at TinyMCE.

avatar alikon alikon - change - 18 Oct 2020
Status New Closed
Closed_Date 0000-00-00 00:00:00 2020-10-18 06:08:36
Closed_By alikon
avatar alikon
alikon - comment - 18 Oct 2020

closing as non core issue
please report on https://github.com/tinymce/tinymce

avatar alikon alikon - close - 18 Oct 2020
avatar brianteeman
brianteeman - comment - 18 Oct 2020

Thanks for digging into this @bembelimen

avatar nadjak77
nadjak77 - comment - 18 Oct 2020

Thanks. I will report it at TinyMCE

Add a Comment

Login with GitHub to post a comment