The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Locale::MakePhrase::BackingStore::Directory - Retrieve translations from files located in specified directory.

DESCRTIPION

This backing store is capable of loading language rules, from files located in the specified directory. All files ending with the extension .mpt will try to be loaded.

Files need to be named according to language/dialect. For example:

  en.mpt
  en_au.mpt
  cn.mpt

Thus, the filename is used to defined the language component of the language rule object.

The files must be formatted as shown in the en.mpt-example and cn.mpt-example files (which can be located in the same directories that these modules are are installed in). The important points to note are that the file is broken into groups containing:

key
expression
priority
translation

Where expression & priority are optional. However, if you specify the priority and/or expression, make sure the translation key is the last entry in the group (see TODO).

API

The following functions are implemented:

$self init([...])

We support loading text/translations (from the translation files) which may be encoded using any character encoding. Since we need to know something about the files we are trying to load, we expect this object to be constructed with the following options:

directory

The full path to the directory containing the translation files. eg:

  /usr/local/myapp/translations

Default file extension: .mpt

encoding

We can load translations from any enocding supported by the Encode module. Upon load, this module will convert the translations from the specified encoding, into the interal encoding of UTF-8.

Default: load UTF-8 text translations.

dont_reload

It is handy for the language module to be able to dynamically reload its known translations, if the files get updated. You can set this to avoid reloading the file if it changes.

Default: reload language file if changed

\@rule_objs get_rules($context,$key\@languages)

Retrieve the translations (that have been previously loaded), using the selected languages. This implementation will reload the appropiate language file if it changes (unless it has been told not to).

TODO

Need to re-implement file parser to allow the syntax of the file to be a little more flexible / user-friendly.

NOTES

If you find that the filename extension .mpt is unsuitable, you can change it by setting the variable:

$Locale::MakePhrase::BackingStore::Directory::language_file_extension

to the extension that you prefer.