add support for LC_TIME and LC_MESSAGES translations
authorRich Felker <dalias@aerifal.cx>
Sat, 26 Jul 2014 09:36:25 +0000 (05:36 -0400)
committerRich Felker <dalias@aerifal.cx>
Sat, 26 Jul 2014 09:36:25 +0000 (05:36 -0400)
commitc5b8f1930512d206a7c1cf1093a4a47e1722a414
treea8b58dafc8f53f19858bb10d7a70d9f79a40ba58
parent0206f596d5156af560e8af10e950d3cb2f29b73d
add support for LC_TIME and LC_MESSAGES translations

for LC_MESSAGES, translation of strerror and similar literal message
functions is supported. for messages in other places (particularly the
dynamic linker) that use format strings, translation is not yet
supported. in order to make it possible and safe, such messages will
need to be refactored to separate the textual content from the format.

for LC_TIME, the day and month names and strftime-style format strings
provided by nl_langinfo are supported for translation. however there
may be limitations, as some of the original C-locale nl_langinfo
strings are non-unique and thus perhaps non-suitable as keys.

overall, the locale support activated by this commit should not be
seen as complete and polished but as a basis for beginning to test
locale functionality and implement locales.
src/errno/strerror.c
src/locale/langinfo.c
src/locale/strerror_l.c [deleted file]
src/network/gai_strerror.c
src/network/hstrerror.c
src/regex/regerror.c
src/string/strsignal.c