tinymce / tinymce-angular

Official TinyMCE Angular Component
MIT License
320 stars 93 forks source link

Unlocalized strings found #233

Closed tmmiller6 closed 3 years ago

tmmiller6 commented 3 years ago

In our Angular application, in the localized strings we have noticed the following strings that are not localized.

For the table properties dialog, in the advanced tab and Border style dropdown, none of the options besides “None” are localized.

For the table menu’s Column menu item, the following are not localized: Cut column Copy column Paste column before Paste column after

For the image insert dialog, “Alternative description” is not localized.

In package.json, the dependencies section has the following: "tinymce": "^5.6.2", "tinymce-i18n": "^20.12.25",

Is there something that I’m missing? I have looked in the strings files in tinymce-i18n/langs (like ja.js) and the strings mentioned above are not included.

Screen Shot 2021-04-20 at 9 12 28 AM Screen Shot 2021-04-20 at 9 12 51 AM Screen Shot 2021-04-20 at 9 13 02 AM
exalate-issue-sync[bot] commented 3 years ago

Ref: INT-2514

jscasca commented 3 years ago

Hi @tmmiller6 ,

The Angular wrapper uses by default the cloud bundle from the CDN with their current language packs. If their language pack is incomplete, you can bring this to the TinyMCE repository or head over to https://www.tiny.cloud/get-tiny/language-packages/ and contribute with the current translations. As a workaround, you can always use a custom language file by specifying the file url as documented here: https://www.tiny.cloud/docs/configure/localization/#language_url

Hope this helps