Odia (aka Oriya) translation.
Also misc updates/tweaks to some other locale stuff.
This commit is contained in:
parent
29d166dc32
commit
db456e4b5b
8 changed files with 1357 additions and 12 deletions
|
|
@ -785,6 +785,9 @@ $Id$
|
|||
Yannig MARCHEGAY (Kokoyaya), Canonical Ltd, and Rosetta Contributors
|
||||
via Caroline Ford <caroline.ford.work@googlemail.com>
|
||||
|
||||
* Odia translation
|
||||
Kaniska Padhi <kaniska2008@gmail.com>
|
||||
|
||||
* Ojibwe
|
||||
Ed Montgomery <edm@rocketmail.com>
|
||||
|
||||
|
|
|
|||
|
|
@ -424,6 +424,9 @@ $Id$
|
|||
* Northern Sotho translation
|
||||
Pheledi Mathibela <pheledi@mosekolatranslation.co.za>
|
||||
|
||||
* Odia translation
|
||||
Kaniska Padhi <kaniska2008@gmail.com>
|
||||
|
||||
* Punjabi translation
|
||||
Arshpreet Singh <arsh840@gmail.com>
|
||||
|
||||
|
|
|
|||
|
|
@ -807,6 +807,8 @@ Windows Users
|
|||
|--------------------+---------------------+---------------|
|
||||
|occitan | | |
|
||||
|--------------------+---------------------+---------------|
|
||||
|odia |oriya | |
|
||||
|--------------------+---------------------+---------------|
|
||||
|ojibwe |ojibway | |
|
||||
|--------------------+---------------------+---------------|
|
||||
|persian | | |
|
||||
|
|
@ -1244,6 +1246,8 @@ Available Languages
|
|||
|-----------+-------------------+-----------------+----------------|
|
||||
|pa_IN | |Punjabi | |
|
||||
|-----------+-------------------+-----------------+----------------|
|
||||
|or_IN | |Odia |Oriya |
|
||||
|-----------+-------------------+-----------------+----------------|
|
||||
|pl_PL |Polski |Polish | |
|
||||
|-----------+-------------------+-----------------+----------------|
|
||||
|pt_BR |Portuges Brazileiro|Brazilian | |
|
||||
|
|
|
|||
|
|
@ -1164,6 +1164,11 @@ New Breed Software</p>
|
|||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>odia</code></td>
|
||||
<td><code>oriya</code></td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>ojibwe</code></td>
|
||||
<td><code>ojibway</code></td>
|
||||
|
|
@ -2049,6 +2054,12 @@ New Breed Software</p>
|
|||
<td>Punjabi</td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>or_IN</code></td>
|
||||
<td> </td>
|
||||
<td>Odia</td>
|
||||
<td>Oriya</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>pl_PL</code></td>
|
||||
<td>Polski</td>
|
||||
|
|
|
|||
|
|
@ -124,6 +124,7 @@ const char *lang_prefixes[NUM_LANGS] = {
|
|||
"nso",
|
||||
"oc",
|
||||
"oj",
|
||||
"or",
|
||||
"pa",
|
||||
"pl",
|
||||
"pt_BR",
|
||||
|
|
@ -321,6 +322,8 @@ static const language_to_locale_struct language_to_locale_array[] = {
|
|||
{"northern-sotho", "nso_ZA.UTF-8"},
|
||||
{"sesotho-sa-leboa", "nso_ZA.UTF-8"},
|
||||
{"occitan", "oc_FR.UTF-8"},
|
||||
{"odia", "or_IN.UTF-8"}, // Proper spelling
|
||||
{"oriya", "or_IN.UTF-8"}, // Alternative
|
||||
{"ojibwe", "oj_CA.UTF-8"}, // Proper spelling
|
||||
{"ojibway", "oj_CA.UTF-8"}, // For compatibility
|
||||
{"punjabi", "pa_IN.UTF-8"},
|
||||
|
|
@ -394,8 +397,7 @@ static void show_lang_usage(int exitcode)
|
|||
/* eu */ " basque euskara\n"
|
||||
/* be */ " belarusian bielaruskaja\n"
|
||||
/* nb */ " bokmal\n"
|
||||
/* pt_BR */
|
||||
" brazilian brazilian-portuguese portugues-brazilian\n"
|
||||
/* pt_BR */ " brazilian brazilian-portuguese portugues-brazilian\n"
|
||||
/* br */ " breton brezhoneg\n"
|
||||
/* en_GB */ " british british-english\n"
|
||||
/* bg_BG */ " bulgarian\n"
|
||||
|
|
@ -448,6 +450,7 @@ static void show_lang_usage(int exitcode)
|
|||
/* nso */" northern-sotho sesotho-sa-leboa\n"
|
||||
/* nn */ " norwegian nynorsk norsk\n"
|
||||
/* oc */ " occitan\n"
|
||||
/* or */ " odia oriya\n"
|
||||
/* oj */ " ojibwe ojibway\n"
|
||||
/* fa */ " persian\n"
|
||||
/* pl */ " polish polski\n"
|
||||
|
|
@ -570,6 +573,7 @@ static void show_locale_usage(FILE * f, const char *const prg)
|
|||
" nn_NO (Norwegian Nynorsk Norsk)\n"
|
||||
" oc_FR (Occitan)\n"
|
||||
" oj_CA (Ojibway)\n"
|
||||
" or_IN (Odia Oriya)\n"
|
||||
" pa_IN (Punjabi Panjabi)\n"
|
||||
" pl_PL (Polish Polski)\n"
|
||||
" pt_PT (Portuguese Portugues)\n"
|
||||
|
|
|
|||
|
|
@ -110,6 +110,7 @@ enum
|
|||
LANG_NSO, /* Northern Sotho */
|
||||
LANG_OC, /* Occitan */
|
||||
LANG_OJ, /* Ojibway */
|
||||
LANG_OR, /* Odia */
|
||||
LANG_PA, /* Punjabi */
|
||||
LANG_PL, /* Polish */
|
||||
LANG_PT_BR, /* Portuguese (Brazilian) */
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
.\" tuxpaint.1 - 2014.04.11
|
||||
.TH TUXPAINT 1 "11 April 2014" "0.9.22" "Tux Paint"
|
||||
.\" tuxpaint.1 - 2014.04.16
|
||||
.TH TUXPAINT 1 "16 April 2014" "0.9.22" "Tux Paint"
|
||||
.SH NAME
|
||||
tuxpaint -- "Tux Paint", a drawing program for young children.
|
||||
|
||||
|
|
@ -731,6 +731,9 @@ norwegian | nynorsk | norsk
|
|||
occitan
|
||||
.TP 2
|
||||
-
|
||||
odia | oriya
|
||||
.TP 2
|
||||
-
|
||||
ojibway | ojibwe
|
||||
.TP 2
|
||||
-
|
||||
|
|
@ -752,6 +755,9 @@ romanian
|
|||
russian | russkiy
|
||||
.TP 2
|
||||
-
|
||||
sanskrit
|
||||
.TP 2
|
||||
-
|
||||
santali
|
||||
.TP 2
|
||||
-
|
||||
|
|
|
|||
1313
src/po/or.po
Normal file
1313
src/po/or.po
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue