diff options
author | Adam <Adam@anope.org> | 2013-03-02 06:58:11 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-03-03 00:55:11 -0500 |
commit | ae071cef7510ea7b6a46edfab605be69169f2aae (patch) | |
tree | e5fede7251e24a506633f3e9c5e5e6992ac5ad4f /lang | |
parent | 57b31d43eb0cac6a09ff34c21c86a1b45814a0ac (diff) |
Update language instructions in README to use git instead of svn. Add
japanese language file to Windows makefile and installer.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/Makefile.win32 | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lang/Makefile.win32 b/lang/Makefile.win32 index 4791287e0..b197e05c7 100644 --- a/lang/Makefile.win32 +++ b/lang/Makefile.win32 @@ -3,8 +3,8 @@ include ../Makefile.inc.win32 -LANGOBJS = cat de en_us es fr hun gr nl pl pt tr it ru -LANGSRCS = cat de en_us.l es fr.l hun.l gr.l nl.l pl.l pt.l tr.l it.l ru.l +LANGOBJS = cat de en_us es fr hun gr nl pl pt tr it ja_utf8 ru +LANGSRCS = cat de en_us.l es fr.l hun.l gr.l nl.l pl.l pt.l tr.l it.l ja_utf8.l ru.l LANGCOMP = ./langcomp #LANGCOMP = ./langcomp -w @@ -26,6 +26,7 @@ install: all -copy pt ..\$(DATDEST)\languages -copy tr ..\$(DATDEST)\languages -copy it ..\$(DATDEST)\languages + -copy ja_utf8 ..\$(DATDEST)\languages -copy ru ..\$(DATDEST)\languages clean: @@ -59,6 +60,8 @@ tr: tr.l langtool.exe langcomp.exe index langcomp $@.l it: it.l langtool.exe langcomp.exe index langcomp $@.l +ja_utf8: ja_utf8.l langtool.exe langcomp.exe index + langcomp $@.l ru: ru.l langtool.exe langcomp.exe index langcomp $@.l |