Skip to content

Languages

The Froala Rich Text Editor's default language is English (United States), but you can easily change it by choosing between the 38 languages we are currently supporting. If you think any of the translations could be improved or you need a new language to be added, you can always contact us.




Example of changing the WYSIWYG HTML editor's language to Spanish (es):

HTML

<div id="edit"></div>

Javascript

<!-- Include the language file. -->
<script src='../langs/es.js'></script>
<script>
  $(function() {
    $('div#froala-editor').froalaEditor({
      // Set the language code.
      language: 'es'
    })
  });
</script>
File: 1770