mirror of
https://github.com/anope/anope.git
synced 2026-06-27 01:56:38 +02:00
Merge pull request #10 from l/translation_ja_1.8
Japanese Translation for 1.8 branch
This commit is contained in:
+3
-2
@@ -1326,9 +1326,10 @@ typedef struct ircd_modes_ {
|
||||
#define LANG_RU 13 /* Russian */
|
||||
#define LANG_HUN 14 /* Hungarian */
|
||||
#define LANG_PL 15 /* Polish */
|
||||
#define LANG_JA_UTF8 16 /* Japanese (UTF-8 encoding) */
|
||||
|
||||
#define NUM_LANGS 16 /* Number of languages */
|
||||
#define USED_LANGS 13 /* Number of languages provided */
|
||||
#define NUM_LANGS 17 /* Number of languages */
|
||||
#define USED_LANGS 14 /* Number of languages provided */
|
||||
|
||||
|
||||
#define DEF_LANGUAGE LANG_EN_US
|
||||
|
||||
+4
-2
@@ -6,8 +6,8 @@ MAKEARGS = 'CFLAGS=${CFLAGS}' 'CC=${CC}' 'ANOPELIBS=${ANOPELIBS}' \
|
||||
'TOUCH=${TOUCH}' 'SHELL=${SHELL}' 'DATDEST=${DATDEST}' \
|
||||
'RUNGROUP=${RUNGROUP}' 'USE_MODULES=${USE_MODULES}'
|
||||
|
||||
LANGOBJS = cat de en_us es fr gr hun it nl pl pt ru tr
|
||||
LANGSRCS = cat.l de.l en_us.l es.l fr.l gr.l hun.l it.l nl.l pl.l pt.l ru.l tr.l
|
||||
LANGOBJS = cat de en_us es fr gr hun it ja_utf8 nl pl pt ru tr
|
||||
LANGSRCS = cat.l de.l en_us.l es.l fr.l gr.l hun.l it.l ja_utf8.l nl.l pl.l pt.l ru.l tr.l
|
||||
|
||||
LANGCOMP = ./langcomp
|
||||
#LANGCOMP = ./langcomp -w
|
||||
@@ -59,6 +59,8 @@ hun: hun.l langcomp index
|
||||
./langcomp $@.l
|
||||
it: it.l langcomp index
|
||||
./langcomp $@.l
|
||||
ja_utf8: ja_utf8.l langcomp index
|
||||
./langcomp $@.l
|
||||
nl: nl.l langcomp index
|
||||
./langcomp $@.l
|
||||
pl: pl.l langcomp index
|
||||
|
||||
+6494
File diff suppressed because it is too large
Load Diff
@@ -43,6 +43,7 @@ static int langorder[NUM_LANGS] = {
|
||||
LANG_RU, /* Russian */
|
||||
LANG_HUN, /* Hungarian */
|
||||
LANG_PL, /* Polish */
|
||||
LANG_JA_UTF8, /* Japanese (UTF-8 encoding) */
|
||||
};
|
||||
|
||||
/*************************************************************************/
|
||||
@@ -191,6 +192,7 @@ void lang_init()
|
||||
load_lang(LANG_RU, "ru");
|
||||
load_lang(LANG_HUN, "hun");
|
||||
load_lang(LANG_PL, "pl");
|
||||
load_lang(LANG_JA_UTF8, "ja_utf8");
|
||||
|
||||
for (i = 0; i < NUM_LANGS; i++) {
|
||||
if (langtexts[langorder[i]] != NULL) {
|
||||
|
||||
Reference in New Issue
Block a user