Miroir du dépôt intllib.
Go to file
BrunoMine ffc6159368 Update README-pt_BR.md 2017-01-26 00:38:00 -03:00
doc Remove references to `.mo` catalogs from docs. 2017-01-25 01:30:43 -03:00
intltest Add minimal example mod. 2017-01-24 00:48:19 -03:00
lib Add support for gettext message catalogs. 2017-01-24 00:24:57 -03:00
tools Add support for gettext message catalogs. 2017-01-24 00:24:57 -03:00
.gitignore Add `.gitignore`. 2017-01-24 01:10:53 -03:00
LICENSE.md Add support for gettext message catalogs. 2017-01-24 00:24:57 -03:00
README-es.md Add support for gettext message catalogs. 2017-01-24 00:24:57 -03:00
README-pt_BR.md Update README-pt_BR.md 2017-01-26 00:38:00 -03:00
README.md Add support for gettext message catalogs. 2017-01-24 00:24:57 -03:00
description.txt Add mod metadata files. 2016-11-03 21:47:33 -03:00
gettext.lua Output character itself if unknown escape. 2017-01-24 23:22:16 -03:00
init.lua Return nil if `msgstr` is empty. 2017-01-24 20:10:37 -03:00
intllib.lua Use optional dependencies to only load once and re-add support for escapes 2013-10-29 11:19:35 -04:00
lib.lua Add some missing escape sequences. 2016-10-06 04:22:00 -03:00
mod.conf Add mod metadata files. 2016-11-03 21:47:33 -03:00

README.md

Internationalization Lib for Minetest

By Diego Martínez (kaeza). Released under Unlicense. See LICENSE.md for details.

This mod is an attempt at providing internationalization support for mods (something Minetest currently lacks).

Should you have any comments/suggestions, please post them in the forum topic. For bug reports, use the bug tracker on Github.

How to use

If you are a regular player looking for translated texts, just install this mod like any other one, then enable it in the GUI.

The mod tries to detect your language, but since there's currently no portable way to do this, it tries several alternatives:

  • language setting in minetest.conf.
  • LANGUAGE environment variable.
  • LANG environment variable.
  • If all else fails, uses en.

In any case, the end result should be the ISO 639-1 Language Code of the desired language.

Mod developers

If you are a mod developer looking to add internationalization support to your mod, see doc/developer.md.

Translators

If you are a translator, see doc/translator.md.