From 13f81551d950838c1188c81ae15943da568268ea Mon Sep 17 00:00:00 2001
From: William Kendrick
Date: Fri, 22 Sep 2006 18:14:47 +0000
Subject: [PATCH] Added Venda translation.
---
Makefile | 15 +++++++++++++--
docs/AUTHORS.txt | 7 +++++--
docs/CHANGES.txt | 5 ++++-
docs/OPTIONS.txt | 6 +++++-
docs/html/OPTIONS.html | 12 +++++++++++-
src/i18n.c | 6 +++++-
src/i18n.h | 3 ++-
src/manpage/tuxpaint.1 | 8 ++++++--
8 files changed, 51 insertions(+), 11 deletions(-)
diff --git a/Makefile b/Makefile
index dc7d14052..5bc4e094e 100644
--- a/Makefile
+++ b/Makefile
@@ -7,12 +7,12 @@
# bill@newbreedsoftware.com
# http://www.newbreedsoftware.com/tuxpaint/
-# June 14, 2002 - September 10, 2006
+# June 14, 2002 - September 22, 2006
# The version number, for release:
-VER_VERSION=0.9.16rc1
+VER_VERSION=0.9.16rc2
VER_DATE=`date +"%Y-%m-%d"`
@@ -456,6 +456,7 @@ uninstall:
-rm $(LOCALE_PREFIX)/th/LC_MESSAGES/tuxpaint.mo
-rm $(LOCALE_PREFIX)/tr/LC_MESSAGES/tuxpaint.mo
-rm $(LOCALE_PREFIX)/uk/LC_MESSAGES/tuxpaint.mo
+ -rm $(LOCALE_PREFIX)/ve/LC_MESSAGES/tuxpaint.mo
-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
@@ -949,6 +950,11 @@ install-gettext:
@cp trans/uk.mo $(LOCALE_PREFIX)/uk/LC_MESSAGES/tuxpaint.mo
@chmod 644 $(LOCALE_PREFIX)/uk/LC_MESSAGES/tuxpaint.mo
@#
+ @echo " ve_ZA ...Venda..."
+ @install -d $(LOCALE_PREFIX)/ve/LC_MESSAGES
+ @cp trans/ve.mo $(LOCALE_PREFIX)/ve/LC_MESSAGES/tuxpaint.mo
+ @chmod 644 $(LOCALE_PREFIX)/ve/LC_MESSAGES/tuxpaint.mo
+ @#
@echo " vi_VN ...Vietnamese..."
@install -d $(LOCALE_PREFIX)/vi/LC_MESSAGES
@cp trans/vi.mo $(LOCALE_PREFIX)/vi/LC_MESSAGES/tuxpaint.mo
@@ -1195,6 +1201,7 @@ translations: trans \
trans/tlh.mo \
trans/tr.mo \
trans/uk.mo \
+ trans/ve.mo \
trans/vi.mo \
trans/wa.mo \
trans/zh_cn.mo \
@@ -1441,6 +1448,10 @@ trans/uk.mo: src/po/uk.po
@echo " uk_UA ...Ukrainian..."
@msgfmt -o trans/uk.mo src/po/uk.po
+trans/ve.mo: src/po/ve.po
+ @echo " ve_ZA ...Venda..."
+ @msgfmt -o trans/ve.mo src/po/ve.po
+
trans/vi.mo: src/po/vi.po
@echo " vi_VN ...Vietnamese..."
@msgfmt -o trans/vi.mo src/po/vi.po
diff --git a/docs/AUTHORS.txt b/docs/AUTHORS.txt
index 36c1f627d..25a5636d1 100644
--- a/docs/AUTHORS.txt
+++ b/docs/AUTHORS.txt
@@ -4,10 +4,10 @@ Tux Paint - A simple drawing program for children.
Copyright (c) 2002-2006 by Bill Kendrick and others
bill@newbreedsoftware.com
-http://www.newbreedsoftware.com/tuxpaint/
+http://www.tuxpaint.org/
-June 17, 2002 - September 5, 2006
+June 17, 2002 - September 22, 2006
$Id$
@@ -338,6 +338,9 @@ $Id$
* Turkish
Doruk Fisek
+ * Venda
+ Shumani Mercy Nehulaudzi >
+
* Vietnamese
Le Quang Phan
Clytie Siddall
diff --git a/docs/CHANGES.txt b/docs/CHANGES.txt
index 192cde548..3af9bdb0f 100644
--- a/docs/CHANGES.txt
+++ b/docs/CHANGES.txt
@@ -9,7 +9,7 @@ http://www.newbreedsoftware.com/tuxpaint/
$Id$
-2006.September.19 (0.9.16)
+2006.September.22 (0.9.16)
* Interface improvements:
-----------------------
@@ -140,6 +140,9 @@ $Id$
Dawa Dolma
Technical assistance by Ed Montgomery
+ * Venda
+ Shumani Mercy Nehulaudzi
+
* Translation Updates:
--------------------
* Brazilian Portuguese
diff --git a/docs/OPTIONS.txt b/docs/OPTIONS.txt
index fc1d597fe..344138af8 100644
--- a/docs/OPTIONS.txt
+++ b/docs/OPTIONS.txt
@@ -9,7 +9,7 @@
bill@newbreedsoftware.com
http://www.newbreedsoftware.com/tuxpaint/
- September 10, 2006
+ September 22, 2006
--------------------------------------------------------------------------
@@ -467,6 +467,8 @@ Windows Users
|--------------------+---------------------+---------------|
|ukrainian | | |
|--------------------+---------------------+---------------|
+ |venda | | |
+ |--------------------+---------------------+---------------|
|vietnamese | | |
|--------------------+---------------------+---------------|
|walloon |walon | |
@@ -761,6 +763,8 @@ Available Languages
|---------------+---------------------+---------------------|
|uk_UA | |Ukrainian |
|---------------+---------------------+---------------------|
+ |ve_ZA | |Venda |
+ |---------------+---------------------+---------------------|
|vi_VN | |Vietnamese |
|---------------+---------------------+---------------------|
|wa_BE | |Walloon |
diff --git a/docs/html/OPTIONS.html b/docs/html/OPTIONS.html
index 192db8cb2..14e44a23e 100644
--- a/docs/html/OPTIONS.html
+++ b/docs/html/OPTIONS.html
@@ -22,7 +22,7 @@ New Breed Software
bill@newbreedsoftware.com
http://www.newbreedsoftware.com/tuxpaint/
-September 10, 2006
+September 22, 2006
@@ -726,6 +726,11 @@ New Breed Software
|
|
+
+ venda |
+ |
+ |
+
vietnamese |
|
@@ -1258,6 +1263,11 @@ New Breed Software
|
Ukrainian |
+
+ ve_ZA |
+ |
+ Venda |
+
vi_VN |
|
diff --git a/src/i18n.c b/src/i18n.c
index a63e53663..e9cd47965 100644
--- a/src/i18n.c
+++ b/src/i18n.c
@@ -25,7 +25,7 @@
$Id$
- June 14, 2002 - July 11, 2006
+ June 14, 2002 - September 22, 2006
*/
#include
@@ -102,6 +102,7 @@ const char *lang_prefixes[NUM_LANGS] = {
"tl",
"tr",
"uk",
+ "ve",
"vi",
"wa",
"zh_cn",
@@ -189,6 +190,7 @@ const language_to_locale_struct language_to_locale_array[] = {
{"italian", "it_IT.UTF-8"},
{"italiano", "it_IT.UTF-8"},
{"japanese", "ja_JP.UTF-8"},
+ {"venda", "ve_ZA.UTF-8"},
{"vietnamese", "vi_VN.UTF-8"},
{"afrikaans", "af_ZA.UTF-8"},
{"albanian", "sq_AL.UTF-8"},
@@ -411,6 +413,7 @@ void show_lang_usage(FILE * f, const char *const prg)
/* th */ " thai\n"
/* tr */ " turkish\n"
/* uk */ " ukrainian\n"
+/* ve */ " venda\n"
/* vi */ " vietnamese\n"
/* wa */ " walloon walon\n"
/* cy */ " welsh cymraeg\n"
@@ -487,6 +490,7 @@ void show_locale_usage(FILE * f, const char *const prg)
" th_TH (Thai)\n"
" tr_TR (Turkish)\n"
" uk_UA (Ukrainian)\n"
+ " ve_ZA (Venda)\n"
" vi_VN (Vietnamese)\n"
" wa_BE (Walloon)\n"
" cy_GB (Welsh Cymraeg)\n" "\n", prg);
diff --git a/src/i18n.h b/src/i18n.h
index 15723c04b..fe9ed39d3 100644
--- a/src/i18n.h
+++ b/src/i18n.h
@@ -10,7 +10,7 @@
$Id$
- June 14, 2002 - July 11, 2006
+ June 14, 2002 - September 22, 2006
*/
@@ -80,6 +80,7 @@ enum
LANG_TL, /* Tagalog */
LANG_TR, /* Turkish */
LANG_UK, /* Ukrainian */
+ LANG_VE, /* Venda */
LANG_VI, /* Vietnamese */
LANG_WA, /* Walloon */
LANG_ZH_CN, /* Chinese (Simplified) */
diff --git a/src/manpage/tuxpaint.1 b/src/manpage/tuxpaint.1
index dfd7299c1..48b1f4ccf 100644
--- a/src/manpage/tuxpaint.1
+++ b/src/manpage/tuxpaint.1
@@ -1,5 +1,5 @@
-.\" tuxpaint.1 - 2006.09.09
-.TH TUXPAINT 1 "9 Sept 2006" "0.9.16" "Tux Paint"
+.\" tuxpaint.1 - 2006.09.22
+.TH TUXPAINT 1 "22 Sept 2006" "0.9.16" "Tux Paint"
.SH NAME
tuxpaint -- A drawing program for young children.
@@ -467,6 +467,9 @@ turkish
ukranian
.TP 2
-
+venda
+.TP 2
+-
vietnamese
.TP 2
-
@@ -641,6 +644,7 @@ Marco Milanesi,
Kartik Mistry,
Mugunth,
Steve Murphy,
+Shumani Mercy Nehulaudzi,
Daniel Nylander,
Gareth Owen,
Flavio Pastor,