- Getting Started
- Browser Support
- Languages Support
- Shortcuts
- Activation
- Examples
- Customize the Editor
- Use-cases
- Plugins
- APIs
- Development Frameworks
- Server Integrations
- Server SDKs
- Migration Guides
- Changelog
Languages
The Froala Editor's default language is English (United States), but you can easily change it to any of the 38 languages currently supported. If you have any suggestions for improving translations or adding a new language, you can always contact us.
The following example shows how to change the 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>