From c5b8f1930512d206a7c1cf1093a4a47e1722a414 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sat, 26 Jul 2014 05:36:25 -0400 Subject: 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 | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'src/errno') diff --git a/src/errno/strerror.c b/src/errno/strerror.c index b5559cbe..24c94d37 100644 --- a/src/errno/strerror.c +++ b/src/errno/strerror.c @@ -1,5 +1,7 @@ #include #include +#include "locale_impl.h" +#include "libc.h" #define E(a,b) ((unsigned char)a), static const unsigned char errid[] = { @@ -12,7 +14,7 @@ static const char errmsg[] = #include "__strerror.h" ; -char *strerror(int e) +char *__strerror_l(int e, locale_t loc) { const char *s; int i; @@ -24,5 +26,12 @@ char *strerror(int e) } for (i=0; errid[i] && errid[i] != e; i++); for (s=errmsg; i; s++, i--) for (; *s; s++); - return (char *)s; + return (char *)LCTRANS(s, LC_MESSAGES, loc); +} + +char *strerror(int e) +{ + return __strerror_l(e, CURRENT_LOCALE); } + +weak_alias(__strerror_l, strerror_l); -- cgit v1.2.1