Added Chinese (Traditional) support!
This commit is contained in:
parent
158e56b8c8
commit
dfb0604f84
8 changed files with 565 additions and 20 deletions
15
Makefile
15
Makefile
|
|
@ -6,7 +6,7 @@
|
|||
# bill@newbreedsoftware.com
|
||||
# http://www.newbreedsoftware.com/tuxpaint/
|
||||
|
||||
# June 14, 2002 - June 1, 2004
|
||||
# June 14, 2002 - June 5, 2004
|
||||
|
||||
|
||||
# Where to install things:
|
||||
|
|
@ -262,6 +262,7 @@ uninstall:
|
|||
-rm $(LOCALE_PREFIX)vi/LC_MESSAGES/tuxpaint.mo
|
||||
-rm $(LOCALE_PREFIX)wa/LC_MESSAGES/tuxpaint.mo
|
||||
-rm $(LOCALE_PREFIX)zh_CN/LC_MESSAGES/tuxpaint.mo
|
||||
-rm $(LOCALE_PREFIX)zh_TW/LC_MESSAGES/tuxpaint.mo
|
||||
-rm -f -r $(CONFDIR)
|
||||
|
||||
|
||||
|
|
@ -446,6 +447,11 @@ install-gettext:
|
|||
@cp trans/zh_cn.mo $(LOCALE_PREFIX)zh_CN/LC_MESSAGES/tuxpaint.mo
|
||||
@chmod 644 $(LOCALE_PREFIX)zh_CN/LC_MESSAGES/tuxpaint.mo
|
||||
@#
|
||||
@echo " zh_TW ...Chinese (Traditional)..."
|
||||
@install -d $(LOCALE_PREFIX)zh_TW/LC_MESSAGES
|
||||
@cp trans/zh_tw.mo $(LOCALE_PREFIX)zh_TW/LC_MESSAGES/tuxpaint.mo
|
||||
@chmod 644 $(LOCALE_PREFIX)zh_TW/LC_MESSAGES/tuxpaint.mo
|
||||
@#
|
||||
@echo " hr_HR ...Croatian..."
|
||||
@install -d $(LOCALE_PREFIX)hr/LC_MESSAGES
|
||||
@cp trans/hr.mo $(LOCALE_PREFIX)hr/LC_MESSAGES/tuxpaint.mo
|
||||
|
|
@ -745,7 +751,8 @@ translations: trans \
|
|||
trans/tr.mo \
|
||||
trans/vi.mo \
|
||||
trans/wa.mo \
|
||||
trans/zh_cn.mo
|
||||
trans/zh_cn.mo \
|
||||
trans/zh_tw.mo
|
||||
|
||||
trans:
|
||||
@echo
|
||||
|
|
@ -916,6 +923,10 @@ trans/zh_cn.mo: src/messages/zh_cn.po
|
|||
@echo " zh_CN ...Chinese..."
|
||||
@msgfmt src/messages/zh_cn.po -o trans/zh_cn.mo
|
||||
|
||||
trans/zh_tw.mo: src/messages/zh_tw.po
|
||||
@echo " zh_TW ...Chinese..."
|
||||
@msgfmt src/messages/zh_tw.po -o trans/zh_tw.mo
|
||||
|
||||
|
||||
|
||||
# Make the "obj" directory to throw the object(s) into:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue