mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-17 05:44:08 -07:00
Updates tinygettext to upstream commit 0e34a55e514763a48f8abe7812405ffe722a31f4. No actual code changes from the previously bundled version, but it was relicensed to zlib. Keeps the addition of precompiled.h and win32 dirent. This was SVN commit r16705.
23 lines
775 B
Markdown
23 lines
775 B
Markdown
tinygettext
|
|
===========
|
|
|
|
tinygettext is a minimal replacement for gettext written in C++. It
|
|
can read `.po` files directly and doesn't need `.mo` files generated
|
|
from `.po`. It also can read the `.po` files from arbitary locations,
|
|
so it's better suited for non-Unix systems and situations in which one
|
|
wants to store or distribute `.po` files seperately from the software
|
|
itself. It is licensed under
|
|
[zlib license](http://en.wikipedia.org/wiki/Zlib_License).
|
|
|
|
The latest version can be found at:
|
|
|
|
* https://github.com/tinygettext/tinygettext
|
|
|
|
|
|
Detecting the locale setting
|
|
----------------------------
|
|
|
|
Different operating systems store the default locale in different
|
|
places; a portable way to find it is provided by FindLocale:
|
|
|
|
* http://icculus.org/~aspirin/findlocale/
|