jQuery.i18n.properties is a lightweight jQuery plugin for providing internationalization to javascript from ‘.properties’ files, just like in Java Resource Bundles. It loads and parses resource bundles (.properties) based on provided language and country codes (ISO-639 and ISO-3166) or language reported by browser.
Resource bundles are ‘.properties‘ files containing locale specific key-value pairs. The use of ‘.properties‘ files for translation is specially useful when sharing i18n files between Java and Javascript projects. This plugin loads the default file (eg, Messages.properties) first and then locale specific files (Messages_pt.properties, then Messages_pt_PT.properties), so that a default value is always available when there is no translation provided. Translation keys will be available to developer as javascript variables/functions (functions, if translated value contains substitutions (eg, {0}) or as a map.
This plugin was inspired on the Localisation assistance for jQuery from Keith Wood.
- Use Java standard ‘.properties‘ files for translations
- Use standard ISO-639 for language code and ISO-3166 for country code
- Sequential loading of resource bundles from base language to user-specified/browser-specified so there is always a default value for an untranslated string (eg: msg.properties, msg_pt.properties, msg_pt_PT.properties)
- Use browser reported language if no language was specified
- Placeholder substitution in resource bundle strings (eg, msg_hello = Hello {0}!!)
- Suport for namespaces in keys (eg, com.company.msgs.hello = Hello!)
- Support for multi-line property values
- Resource bundle keys available as Javascript vars/functions or as a map
This project was originally created by Nuno Miguel Correia Serra Fernandes and published on Google Code. In 2014 it has been migrated to Github which is now the official repository.
Since then, other great contributors joined the project (see Credits section below).
It has been used in various projects, including the WebRTC phone JSCommunicator (see the demo there to see jquery-i18n-properties in action), some Sakai Project tools, etc.
Take as an example the following .properties files:
Messages.properties:
# This line is ignored by the plugin
msg_hello = Hello
msg_world = World
msg_complex = Good morning {0}!
Messages_pt.properties:
# We only provide a translation for the 'msg_hello' key
msg_hello = Bom dia
Messages_pt_PT.properties:
# We only provide a translation for the 'msg_hello' key
msg_hello = Olá
Now, suppose these files are located on the bundle/
folder. One can invoke the plugin like below:
// This will initialize the plugin
// and show two dialog boxes: one with the text "Olá World"
// and other with the text "Good morning John!"
jQuery.i18n.properties({
name:'Messages',
path:'bundle/',
mode:'both',
language:'pt_PT',
callback: function() {
// We specified mode: 'both' so translated values will be
// available as JS vars/functions and as a map
// Accessing a simple value through the map
jQuery.i18n.prop('msg_hello');
// Accessing a value with placeholders through the map
jQuery.i18n.prop('msg_complex', 'John');
// Accessing a simple value through a JS variable
alert(msg_hello +' '+ msg_world);
// Accessing a value with placeholders through a JS function
alert(msg_complex('John'));
}
});
This will initialize the plugin (loading bundle files and parsing them) and show a dialog box with the text “Olá World” and other with “Good morning John!”. The english word “World” is shown because we didn’t provide a translation for the msg_world
key. Also notice that keys are available as a map and also as javascript variables (for simple strings) and javascript functions (for strings with placeholders for substitution).
- Include it on your
<head>
section:
<script type="text/javascript" language="JavaScript"
src="js/jquery.i18n.properties-min.js"></script>
- Initialize the plugin (minimal usage, will use language reported by browser), and access a translated value (assuming a key named ‘org.somekey‘ exists):
<script>
jQuery.i18n.properties({
name: 'Messages',
callback: function(){ alert( org.somekey ); }
});
</script>
-
Install the closure compiler tool:
apt-get update && apt-get install closure-compiler
-
Run it:
closure-compiler --js jquery.i18n.properties.js \ --js_output_file jquery.i18n.properties.min.js
Option | Description | Notes |
---|---|---|
name | Partial name (or names) of files representing resource bundles (eg, ‘Messages’ or ['Msg1','Msg2']). Defaults to 'Messages' | Optional String or String[] |
language | ISO-639 Language code and, optionally, ISO-3166 country code (eg, ‘en’, ‘en_US’, ‘pt_PT’). If not specified, language reported by the browser will be used instead. | Optional String |
path | Path to directory that contains ‘.properties‘ files to load. | Optional String |
mode | Option to have resource bundle keys available as Javascript vars/functions OR as a map. The ‘map’ option is mandatory if your bundle keys contain Javascript Reserved Words. Possible options: ‘vars’ (default), ‘map’ or ‘both’. | Optional String |
cache | Whether bundles should be cached by the browser, or forcibly reloaded on each page load. Defaults to false (i.e. forcibly reloaded). | Optional boolean |
encoding | The encoding to request for bundles. Property file resource bundles are specified to be in ISO-8859-1 format. Defaults to UTF-8 for backward compatibility. | Optional String |
callback | Callback function to be called uppon script execution completion. | Optional function() |
Copyright © 2011 Nuno Miguel Correia Serra Fernandes (nunogrilo.com)
Special thanks to great contributors:
Licensed under the MIT License.