Skip to main content

Plone i18n for JavaScript

Project description

While internationalization in Zope/Plone is very mature there is no generally accepted way of doing i18n in JavaScript. Typically packages that contain Javascript code expose i18n by having hard-coded dictionaries or templates that dynamically create these dictionaries. While this is fine for small i18n catalogs, it easily gets tedious and is hard to update.

This package provides the essentials for leveraging the i18n infrastructure in Plone inside your JavaScript code:

  • Allows you to load arbitrary gettext catalogs from Plone.

  • Provides you with Message Factories very similar to the ones used in your python code.

  • Makes use of the local storage available in modern browsers to avoid reloading message catalogs.

Usage

Your package should depend on jarn.jsi18n and include it in its meta-data dependencies.

In order to instantiate a MessageFactory and use it you will need to load the i18n catalog. Typically, this will be done in a way similar to:

$(document).ready(function () {
    jarn.i18n.loadCatalog('plone', 'el');
    _ = jarn.i18n.MessageFactory('plone')
});

The second parameter in loadCatalog specifying the language is optional, when omitted the lang attribute in the html tag is used.

Now that we have a message factory we can use it to get translated strings:

> _('Contributor');
Συντελεστής

or with keyword parameters:

> _('Groups are: ${names}', {names: 'Jarnians'})
"Οι ομάδες είναι: Jarnians "

You can if you wish load multiple catalogs (or languages for the same catalog) and instantiate their respective factories, for instance:

> jarn.i18n.loadCatalog('plone', 'es');
> _es = jarn.i18n.MessageFactory('plone', 'es');
> _es('Contributor');
"Contribuyente"

Caching

If the client browser supports local storage it will be used to store the catalogs that you load. This makes it possible to avoid making an ajax request every time in order to load the full catalog. The stored catalog is by default valid for 24 hours. You can set the time-to-live by calling jarn.i18n.setTTL(millis) passing in milliseconds for how long the local storage cache should remain valid. Note that if local storage is supported, and the cache has not expired, the browser will NOT reload a catalog even if it changes in the filesystem.

Changelog

0.2 -

  • A few bug fixes. [ggozad]

  • Test coverage with jasmine.js [ggozad]

0.11 - 2011-11-01

  • Fix typos.

0.1 - 2011-11-01

  • First release.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

jarn.jsi18n-0.2.zip (41.1 kB view details)

Uploaded Source

File details

Details for the file jarn.jsi18n-0.2.zip.

File metadata

  • Download URL: jarn.jsi18n-0.2.zip
  • Upload date:
  • Size: 41.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for jarn.jsi18n-0.2.zip
Algorithm Hash digest
SHA256 5506fa35a8cca7c10262d83d2b90cdca446c5ea9ec392fdbc886ef078f5e2af2
MD5 216ba11548bef461ff220f48a873b3bd
BLAKE2b-256 3507b5921a89896ed1ee610f74839fe9e6149ba64211824fe7e4ce733f505858

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page