diff --git a/docs/AUTHORS.txt b/docs/AUTHORS.txt
index 1c83bffce..d80afe0f4 100644
--- a/docs/AUTHORS.txt
+++ b/docs/AUTHORS.txt
@@ -2,12 +2,12 @@ AUTHORS.txt for Tux Paint
Tux Paint - A simple drawing program for children.
-Copyright (c) 2002-2012 by Bill Kendrick and others
+Copyright (c) 2002-2013 by Bill Kendrick and others
bill@newbreedsoftware.com
http://www.tuxpaint.org/
-June 17, 2002 - April 10, 2012
+June 17, 2002 - March 28, 2013
$Id$
@@ -728,6 +728,9 @@ $Id$
Sonith Kumar
Haris Ibrahim K. V.
+ * Marathi
+ Santosh Jankiram Kshetre
+
* Ndebele
Vincent Mahlangu
diff --git a/docs/CHANGES.txt b/docs/CHANGES.txt
index f75992e54..274ecf7c8 100644
--- a/docs/CHANGES.txt
+++ b/docs/CHANGES.txt
@@ -8,7 +8,7 @@ http://www.tuxpaint.org/
$Id$
-2013.February.17 (0.9.22)
+2013.March.28 (0.9.22)
* New Tools:
----------
@@ -85,7 +85,6 @@ $Id$
Special thanks to Richard Verhoeven
Public domain.
-
FIXME:
* When refreshing a draw full of labels flickers a lot.
* "Caps" label perhaps should show an up-arrow (a la
@@ -147,7 +146,7 @@ $Id$
Allowed values from 1 to 7, defaults to 7.
* Magic Tool Improvememnts:
- --------------------------
+ -------------------------
* Magic tools can register themselves as paint with one click
(versus click/drag/release): MODE_ONECLICK. (e.g., "Ripples")
Utilized by mouse-accessibility feature.
@@ -385,6 +384,9 @@ $Id$
Updated by Sonith Kumar
Reviewed by Haris Ibrahim K. V.
+ * Marathi translation
+ Santosh Jankiram Kshetre
+
* Northern Sotho translation
Pheledi Mathibela
diff --git a/docs/OPTIONS.txt b/docs/OPTIONS.txt
index 17bb12617..ea37517eb 100644
--- a/docs/OPTIONS.txt
+++ b/docs/OPTIONS.txt
@@ -9,7 +9,7 @@ Options Documentation
bill@newbreedsoftware.com
http://www.tuxpaint.org/
- March 2, 2012
+ March 28, 2013
----------------------------------------------------------------------
@@ -749,6 +749,8 @@ Windows Users
|--------------------+---------------------+---------------|
|malayalam | | |
|--------------------+---------------------+---------------|
+ |marathi | | |
+ |--------------------+---------------------+---------------|
|mexican-spanish |espanol-mejicano |mexican |
|--------------------+---------------------+---------------|
|ndebele | | |
@@ -1151,6 +1153,8 @@ Available Languages
|-----------+-------------------+-----------------+----------------|
|ml_IN | |Malayalam | |
|-----------+-------------------+-----------------+----------------|
+ |mr_IN | |Marathi | |
+ |-----------+-------------------+-----------------+----------------|
|ms_MY | |Malay | |
|-----------+-------------------+-----------------+----------------|
|nb_NO |Norsk (bokmaal) |Norwegian Bokmaal| |
diff --git a/docs/html/OPTIONS.html b/docs/html/OPTIONS.html
index 2722b6d15..589a49f7b 100644
--- a/docs/html/OPTIONS.html
+++ b/docs/html/OPTIONS.html
@@ -23,7 +23,7 @@ New Breed Software
http://www.tuxpaint.org/
-March 2, 2012
+March 28, 2013
@@ -1071,6 +1071,11 @@ New Breed Software
|
|
+
+ marathi |
+ |
+ |
+
mexican-spanish |
espanol-mejicano |
@@ -1860,6 +1865,12 @@ New Breed Software
Malayalam |
|
+
+ mr_IN |
+ |
+ Marathi |
+ |
+
ms_MY |
|
diff --git a/src/i18n.c b/src/i18n.c
index 281925347..66244356f 100644
--- a/src/i18n.c
+++ b/src/i18n.c
@@ -25,7 +25,7 @@
$Id$
- June 14, 2002 - March 8, 2012
+ June 14, 2002 - March 28, 2013
*/
#include
@@ -112,6 +112,7 @@ const char *lang_prefixes[NUM_LANGS] = {
"lv",
"ml",
"mk",
+ "mr",
"ms",
"nb",
"nl",
@@ -299,6 +300,7 @@ static const language_to_locale_struct language_to_locale_array[] = {
{"luxembourgish", "lb_LU.UTF-8"},
{"letzebuergesch", "lb_LU.UTF-8"},
{"macedonian", "mk_MK.UTF-8"},
+ {"marathi", "mr_IN.UTF-8"},
{"malay", "ms_MY.UTF-8"},
{"dutch", "nl_NL.UTF-8"},
{"nederlands", "nl_NL.UTF-8"},
@@ -422,6 +424,7 @@ static void show_lang_usage(int exitcode)
/* mk */ " macedonian\n"
/* ms */ " malay\n"
/* ml */ " malayalam\n"
+/* nr */ " marathi\n"
/* es_MX */ " mexican mexican-spanish espanol-mejicano\n"
/* nr */ " ndebele\n"
/* nso */ " northern-sotho sesotho-sa-leboa\n"
@@ -535,6 +538,7 @@ static void show_locale_usage(FILE * f, const char *const prg)
" lv_LV (Latvian)\n"
" lt_LT (Lithuanian Lietuviu)\n"
" mk_MK (Macedonian)\n"
+ " mr_IN (Marathi)\n"
" nr_ZA (Ndebele)\n"
" nso_ZA (Northern Sotho Sotho sa Leboa)\n"
" nn_NO (Norwegian Nynorsk Norsk)\n"
diff --git a/src/i18n.h b/src/i18n.h
index 32c6802c5..ec9f5af9c 100644
--- a/src/i18n.h
+++ b/src/i18n.h
@@ -25,7 +25,7 @@
$Id$
- June 14, 2002 - March 8, 2012
+ June 14, 2002 - March 28, 2013
*/
@@ -98,6 +98,7 @@ enum
LANG_LV, /* Latvian */
LANG_MK, /* Macedonian */
LANG_ML, /* Malayalam */
+ LANG_MR, /* Marath */
LANG_MS, /* Malay */
LANG_NB, /* Norwegian Bokmal */
LANG_NL, /* Dutch */