The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
2.0 KiB
2.0 KiB
I18n module
This module provides internationalisation and localisation functionality.
Usage
To use this module, just do: i18n = import('i18n')
. The
following functions will then be available as methods on the object
with the name i18n
. You can, of course, replace the name i18n
with
anything else.
i18n.gettext()
Sets up gettext localisation so that translations are built and placed into their proper locations during install. Takes one positional argument which is the name of the gettext module.
args
: list of extra arguments to pass toxgettext
when generating the pot filedata_dirs
: (Added 0.36.0) list of directories to be set forGETTEXTDATADIRS
env var (Requires gettext 0.19.8+), used for local its fileslanguages
: list of languages that are to be generated. As of 0.37.0 this is optional and the LINGUAS file is read.preset
: (Added 0.37.0) name of a preset list of arguments, current option is'glib'
, see source for for their valueinstall
: (Added 0.43.0) if false, do not install the built translations.
This function also defines targets for maintainers to use: Note: These output to the source directory
<project_id>-pot
: runsxgettext
to regenerate the pot file<project_id>-update-po
: regenerates the.po
files from current.pot
file<project_id>-gmo
: builds the translations without installing
i18n.merge_file()
This merges translations into a text file using msgfmt
. See
custom_target
for normal keywords. In addition it accepts these keywords:
data_dirs
: (Added 0.41.0) list of directories for its files (See alsoi18n.gettext()
)po_dir
: directory containing translations, relative to current directorytype
: type of file, valid options are'xml'
(default) and'desktop'
Added 0.37.0