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::File - Retrieve language translations for all supported languages, from a single file.

DESCRIPTION

This backing store is capable of loading language rules from a translation file.

The file must be formatted as shown in the example.txt file (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
language/dialect
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 file) which may be encoded using any character encoding. Since we need to know something about the file we are trying to load, we expect this object to be constructed with the following options:

file

The full path to the file containing the translations. eg:

  /usr/local/myapp/translations.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 encoded text translations.

dont_reload

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

Default: reload if file changes

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

Retrieve the translations (that have been previously loaded), using the selected languages. This implementation will reload the 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.