Added Afrikaans translation!
This commit is contained in:
parent
415006b6df
commit
d66e7b21f2
8 changed files with 552 additions and 9 deletions
13
Makefile
13
Makefile
|
|
@ -6,7 +6,7 @@
|
|||
# bill@newbreedsoftware.com
|
||||
# http://www.newbreedsoftware.com/tuxpaint/
|
||||
|
||||
# June 14, 2002 - January 21, 2004
|
||||
# June 14, 2002 - March 3, 2004
|
||||
|
||||
|
||||
# Where to install things:
|
||||
|
|
@ -207,6 +207,7 @@ uninstall:
|
|||
-rm -r $(DATA_PREFIX)
|
||||
-rm -r $(DOC_PREFIX)
|
||||
-rm $(MAN_PREFIX)/man1/tuxpaint.1.gz
|
||||
-rm $(LOCALE_PREFIX)af/LC_MESSAGES/tuxpaint.mo
|
||||
-rm $(LOCALE_PREFIX)ca/LC_MESSAGES/tuxpaint.mo
|
||||
-rm $(LOCALE_PREFIX)cs/LC_MESSAGES/tuxpaint.mo
|
||||
-rm $(LOCALE_PREFIX)da/LC_MESSAGES/tuxpaint.mo
|
||||
|
|
@ -353,6 +354,11 @@ install-gettext:
|
|||
@echo
|
||||
@echo "...Installing translation files..."
|
||||
@#
|
||||
@echo " af_ZA ...Afrikaans..."
|
||||
@install -d $(LOCALE_PREFIX)af/LC_MESSAGES
|
||||
@cp trans/af.mo $(LOCALE_PREFIX)af/LC_MESSAGES/tuxpaint.mo
|
||||
@chmod 644 $(LOCALE_PREFIX)af/LC_MESSAGES/tuxpaint.mo
|
||||
@#
|
||||
@echo " pt_BR ...Brazilian Portuguese..."
|
||||
@install -d $(LOCALE_PREFIX)pt_BR/LC_MESSAGES
|
||||
@cp trans/pt_br.mo $(LOCALE_PREFIX)pt_BR/LC_MESSAGES/tuxpaint.mo
|
||||
|
|
@ -612,6 +618,7 @@ obj/hqxx.o: src/hqxx.c src/hqxx.h
|
|||
# Build the translation files for gettext
|
||||
|
||||
translations: trans \
|
||||
trans/af.mo \
|
||||
trans/ca.mo \
|
||||
trans/cs.mo \
|
||||
trans/da.mo \
|
||||
|
|
@ -651,6 +658,10 @@ trans:
|
|||
@echo "...Preparing translation files..."
|
||||
@mkdir trans
|
||||
|
||||
trans/af.mo: src/messages/af.po
|
||||
@echo " af_ZA ...Afrikaans..."
|
||||
@msgfmt src/messages/af.po -o trans/af.mo
|
||||
|
||||
trans/ca.mo: src/messages/ca.po
|
||||
@echo " ca_ES ...Catalan..."
|
||||
@msgfmt src/messages/ca.po -o trans/ca.mo
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue