Aragones translation.
This commit is contained in:
parent
97d5871537
commit
05f33a2a08
10 changed files with 1550 additions and 20 deletions
|
|
@ -4,7 +4,7 @@
|
|||
For Tux Paint
|
||||
Language-related functions
|
||||
|
||||
Copyright (c) 2002-2011 by Bill Kendrick and others
|
||||
Copyright (c) 2002-2012 by Bill Kendrick and others
|
||||
bill@newbreedsoftware.com
|
||||
http://www.tuxpaint.org/
|
||||
|
||||
|
|
@ -25,7 +25,7 @@
|
|||
|
||||
$Id$
|
||||
|
||||
June 14, 2002 - April 15, 2011
|
||||
June 14, 2002 - March 2, 2012
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
|
|
@ -57,6 +57,7 @@ const char *lang_prefixes[NUM_LANGS] = {
|
|||
"af",
|
||||
"ak",
|
||||
"am",
|
||||
"an",
|
||||
"ar",
|
||||
"ast",
|
||||
"az",
|
||||
|
|
@ -204,6 +205,7 @@ static const language_to_locale_struct language_to_locale_array[] = {
|
|||
{"twi-fante", "ak_GH.UTF-8"},
|
||||
{"amharic", "am_ET.UTF-8"},
|
||||
{"arabic", "ar_SA.UTF-8"},
|
||||
{"aragones", "an_ES.UTF-8"},
|
||||
{"asturian", "ast_ES.UTF-8"},
|
||||
{"azerbaijani", "az_AZ.UTF-8"},
|
||||
{"croatian", "hr_HR.UTF-8"},
|
||||
|
|
@ -362,6 +364,7 @@ static void show_lang_usage(int exitcode)
|
|||
/* sq */ " albanian\n"
|
||||
/* am */ " amharic\n"
|
||||
/* ar */ " arabic\n"
|
||||
/* an */ " aragones\n"
|
||||
/* ast */ " asturian\n"
|
||||
/* en_AU */ " australian-english\n"
|
||||
/* az */ " azerbaijani\n"
|
||||
|
|
@ -471,6 +474,7 @@ static void show_locale_usage(FILE * f, const char *const prg)
|
|||
" ak_GH (Akan Twi-Fante)\n"
|
||||
" am_ET (Amharic)\n"
|
||||
" ar_SA (Arabic)\n"
|
||||
" an_ES (Aragones)\n"
|
||||
" ast_ES (Asturian)\n"
|
||||
" az_AZ (Azerbaijani)\n"
|
||||
" eu_ES (Basque Euskara)\n"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
For Tux Paint
|
||||
Language-related functions
|
||||
|
||||
Copyright (c) 2002-2011 by Bill Kendrick and others
|
||||
Copyright (c) 2002-2012 by Bill Kendrick and others
|
||||
bill@newbreedsoftware.com
|
||||
http://www.tuxpaint.org/
|
||||
|
||||
|
|
@ -25,7 +25,7 @@
|
|||
|
||||
$Id$
|
||||
|
||||
June 14, 2002 - April 15, 2011
|
||||
June 14, 2002 - March 2, 2012
|
||||
*/
|
||||
|
||||
|
||||
|
|
@ -43,6 +43,7 @@ enum
|
|||
LANG_AF, /* Afrikaans */
|
||||
LANG_AK, /* Akan */
|
||||
LANG_AM, /* Amharic */
|
||||
LANG_AN, /* Aragones */
|
||||
LANG_AR, /* Arabic */
|
||||
LANG_AST, /* Asturian */
|
||||
LANG_AZ, /* Azerbaijani */
|
||||
|
|
|
|||
1391
src/po/an.po
Normal file
1391
src/po/an.po
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
Tux Paint - A simple drawing program for children.
|
||||
|
||||
Copyright (c) 2002-2011 by Bill Kendrick and others; see AUTHORS.txt
|
||||
Copyright (c) 2002-2012 by Bill Kendrick and others; see AUTHORS.txt
|
||||
bill@newbreedsoftware.com
|
||||
http://www.tuxpaint.org/
|
||||
|
||||
|
|
@ -22,7 +22,7 @@
|
|||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
(See COPYING.txt)
|
||||
|
||||
June 14, 2002 - September 23, 2011
|
||||
June 14, 2002 - March 2, 2012
|
||||
*/
|
||||
|
||||
|
||||
|
|
@ -22473,7 +22473,7 @@ static void setup(void)
|
|||
printf("%s\n", tmp_str);
|
||||
#endif
|
||||
|
||||
snprintf(tmp_str, sizeof(tmp_str), "© 2002–2011 Bill Kendrick et al.");
|
||||
snprintf(tmp_str, sizeof(tmp_str), "© 2002–2012 Bill Kendrick et al.");
|
||||
tmp_surf = render_text(medium_font, tmp_str, black);
|
||||
dest.x = 10;
|
||||
dest.y = WINDOW_HEIGHT - img_progress->h - (tmp_surf->h * 2);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue