Languages for videojs

Create, edit, apply languages for Videojs and Nuevo plugin

Video.js framework supports multiple languages and allows for users of non-English locales to natively interact with the player.
The player example above with the pre-roll video uses the Spanish language.

Additional language support can be added to the Video.js player in multiple ways.Language support is described in detail on dedicated website http://docs.videojs.com/docs/guides/languages.html.

The Video.js distribution package includes a "lang" directory with multiple .json files, each representing certain language translation. For much easier use, Nuevodevel prepared appropriate JavaScript files with language translations. This makes very easy to load and apply custom language, just like Spanish (es.js) in the example below.
Code snippet
<script src="//domain.com/video-js/video.min.js"></script>
<script src="//domain.com/video-js/lang/es.js"></script>
<script src="//domain.com/video-js/nuevo.min.js"></script>
<script>
var player = videojs('example_video_1',{language: 'es'});
player.nuevo({
//plugin options here
});
</script>
We have prepared the video.js language editor, and now you can translate all player's text string, including those for plugins by Nuevodevel.com and DOWNLOAD ready language JavaScript and JSON files. You can also edit one of the existing video.js languages, adjust or translate missing texts, and DOWNLOAD ready files. Just try our editor here.

Of course you can edit any of the existing languages or create new language files manually. Remember to edit the language file in an editor with UTF-8 character code support.