gwt - How can I localize the text used as tool tips of vaadin richtext area? -


in official documentation suggested use css localizing tool tips of vaadin richtext area , says:

localizing richtextarea toolbars

the rich text area 1 of few components in vaadin contain textual labels. selection boxes in toolbar in english , can not localized in other way inheriting or reimplementing client-side vrichtexttoolbar widget. buttons can localized css downloading copy of toolbar background image, editing it, , replacing default toolbar. toolbar single image file individual button icons picked, order of icons different rendered. image file depends on client-side implementation of toolbar.

.v-richtextarea-richtextexample .gwt-togglebutton .gwt-image {   background-image: url(img/richtextarea-toolbar-fi.png)                     !important; } 

i've downloaded toolbar background image. question how can localize string used tool-tips of rich text area tool bar? or there vaadin add-ons can used replacement of rich text area language localization feature?

try vaadin addon - wrapper ck editor.

here can find online demo. automaticaly localizes browser language.

you can find more information on official ckeditor site.


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -