InternationalizingApplications

Version 6.1 by Silvia Macovei on 2010/03/04
Warning: For security reasons, the document is displayed in restricted mode as it is not the current version. There may be differences and errors due to this.

Writing Internationalized XWiki Applications

Invalid macro parameters used for the [toc] macro. Cause: [Failed to validate bean: [must be greater than or equal to 1]]. Click on this message for details.

Using the static Resource Bundles

  • Stop your XWiki instance
  • Unjar the WEB-INF/lib/xwiki-core-*.jar file (it was named xwiki.jar in old versions) in WEB-INF/classes and remove it from WEB-INF/lib
  • Edit the WEB-INF/classes/ApplicationResources*.properties Resource Bundle files by adding the key/value pairs you need for your application.
  • In your document, use the following to get the value associated with a key:
$msg.get("key")

This will get the value from the Resource Bundle corresponding to the current language you are using in XWiki.

Using properties located in XWiki pages

Warning

The features described below are only available in XWiki 1.0 Beta 4 and above. The ability to parametrize the resource string is available only in XWiki 1.0 Beta 5 and above.

  • Create a page that will host your key/value pairs.
  • Enter all the key/value pairs in that page (use the wiki editor). For example:
greeting=hello
welcome=Welcome
withparams=I can {0} pass {1} {2} params too using the Java MessageFormat syntax
  • Do the same for all the translations you want.
Information

To enable multiple languages you'll need to go to the Administration page and set MultiLingual to true and list the different languages you wish to use in the Languages field.

  • Tell XWiki that your page is a Document Bundle by going to the Administration page, selecting the "Programming" icon and entering it in the "Internationalization Document Bundles" field. You can specify several pages, separated by commas.
Information

When creating 

  • Alternatively you can also specify the list of Internationalization Document Bundles in xwiki.cfg under the key xwiki.documentBundles.
  • On the page where you want to use the internationalized message, use:
$msg.get("key")
$msg.get("key", ["param1", "param2", ...])

where key is the key for the message to retrieve. Parameters can also be passed as is shown in the second syntax above.

I18n of XWiki Objects

This is currently not implemented (see our logged issue: XWIKI-69). There are 2 workarounds you can use:

  • Have several objects, one for each language, with a language field, and then decide which object to use (for example in a Class Sheet, based on the current language).
  • Use Velocity scripting to do an IF in your object. For example, you could have:
#if ($context.language == "fr")
  French texts
#else
  Default texts
#end

Get Connected