diff options
author | Rich Felker <dalias@aerifal.cx> | 2014-07-26 05:36:25 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2014-07-26 05:36:25 -0400 |
commit | c5b8f1930512d206a7c1cf1093a4a47e1722a414 (patch) | |
tree | a8b58dafc8f53f19858bb10d7a70d9f79a40ba58 /src/network | |
parent | 0206f596d5156af560e8af10e950d3cb2f29b73d (diff) | |
download | musl-c5b8f1930512d206a7c1cf1093a4a47e1722a414.tar.gz musl-c5b8f1930512d206a7c1cf1093a4a47e1722a414.tar.bz2 musl-c5b8f1930512d206a7c1cf1093a4a47e1722a414.tar.xz musl-c5b8f1930512d206a7c1cf1093a4a47e1722a414.zip |
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.
Diffstat (limited to 'src/network')
-rw-r--r-- | src/network/gai_strerror.c | 4 | ||||
-rw-r--r-- | src/network/hstrerror.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/src/network/gai_strerror.c b/src/network/gai_strerror.c index 0bf3e379..9596580e 100644 --- a/src/network/gai_strerror.c +++ b/src/network/gai_strerror.c @@ -1,4 +1,5 @@ #include <netdb.h> +#include "locale_impl.h" static const char msgs[] = "Invalid flags\0" @@ -19,5 +20,6 @@ const char *gai_strerror(int ecode) { const char *s; for (s=msgs, ecode++; ecode && *s; ecode++, s++) for (; *s; s++); - return *s ? s : s+1; + if (!*s) s++; + return LCTRANS_CUR(s); } diff --git a/src/network/hstrerror.c b/src/network/hstrerror.c index b7a6ab6c..a4d001c5 100644 --- a/src/network/hstrerror.c +++ b/src/network/hstrerror.c @@ -1,5 +1,6 @@ #define _GNU_SOURCE #include <netdb.h> +#include "locale_impl.h" static const char msgs[] = "Host not found\0" @@ -12,5 +13,6 @@ const char *hstrerror(int ecode) { const char *s; for (s=msgs, ecode--; ecode && *s; ecode--, s++) for (; *s; s++); - return *s ? s : s+1; + if (!*s) s++; + return LCTRANS_CUR(s); } |