super-tux-commit Mailing List for Super Tux (Page 10)
Brought to you by:
wkendrick
You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
(94) |
Apr
(500) |
May
(531) |
Jun
(196) |
Jul
(224) |
Aug
(193) |
Sep
(117) |
Oct
(115) |
Nov
(319) |
Dec
(97) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
(19) |
Feb
|
Mar
(105) |
Apr
(41) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(6) |
2007 |
Jan
(1) |
Feb
(2) |
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
(2) |
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
(4) |
Jul
|
Aug
|
Sep
(7) |
Oct
(12) |
Nov
(26) |
Dec
(39) |
2009 |
Jan
(6) |
Feb
(15) |
Mar
(10) |
Apr
(25) |
May
(29) |
Jun
(21) |
Jul
(26) |
Aug
(8) |
Sep
(3) |
Oct
|
Nov
|
Dec
(10) |
2010 |
Jan
(5) |
Feb
(5) |
Mar
(2) |
Apr
|
May
(5) |
Jun
|
Jul
(1) |
Aug
(2) |
Sep
(2) |
Oct
(2) |
Nov
|
Dec
|
From: Matze B. <mat...@us...> - 2004-12-19 13:34:26
|
Update of /cvsroot/super-tux/supertux/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22644/src Modified Files: resources.cpp resources.h sector.cpp Log Message: -german translation updates -some cleanups -a first version of grab&carry around code. It doesn't work too good yet but it was lying around too long on my HD... Index: resources.h =================================================================== RCS file: /cvsroot/super-tux/supertux/src/resources.h,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- resources.h 28 Nov 2004 14:56:49 -0000 1.19 +++ resources.h 19 Dec 2004 13:34:11 -0000 1.20 @@ -62,13 +62,6 @@ extern char* soundfilenames[NUM_SOUNDS]; -extern Surface* img_waves[3]; -extern Surface* img_water; -extern Surface* img_pole; -extern Surface* img_poletop; -extern Surface* img_flag[2]; -extern Surface* img_cloud[2][4]; - extern Surface* img_super_bkgd; extern MusicRef herring_song; @@ -96,12 +89,14 @@ extern Font* white_big_text; extern Font* yellow_nums; -// maps a virtual resource path to a real path (ie. levels/bla is mapped to -// $DATADIR/levels/bla or $HOME/.supertux/levels/bla) +/** maps a virtual resource path to a real path (ie. levels/bla is mapped to + * $DATADIR/levels/bla or $HOME/.supertux/levels/bla) + * All paths inside the game should be handled in as virtual paths and then + * expanded with this function just before the call to fopen or std::ifstream. + */ std::string get_resource_filename(const std::string& resource); void loadshared(); void unloadshared(); #endif - Index: sector.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/sector.cpp,v retrieving revision 1.59 retrieving revision 1.60 diff -u -d -r1.59 -r1.60 --- sector.cpp 5 Dec 2004 16:57:13 -0000 1.59 +++ sector.cpp 19 Dec 2004 13:34:11 -0000 1.60 @@ -52,6 +52,7 @@ #include "object/invisible_block.h" #include "object/platform.h" #include "object/bullet.h" +#include "object/rock.h" #include "badguy/jumpy.h" #include "badguy/snowball.h" #include "badguy/bouncing_snowball.h" @@ -149,6 +150,8 @@ return new Spiky(reader); } else if(name == "nolok_01") { return new Nolok_01(reader); + } else if(name == "rock") { + return new Rock(reader); } std::cerr << "Unknown object type '" << name << "'.\n"; Index: resources.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/resources.cpp,v retrieving revision 1.61 retrieving revision 1.62 diff -u -d -r1.61 -r1.62 --- resources.cpp 6 Dec 2004 17:47:40 -0000 1.61 +++ resources.cpp 19 Dec 2004 13:34:11 -0000 1.62 @@ -30,14 +30,6 @@ #include "object/gameobjs.h" #include "object/player.h" -Surface* img_waves[3]; -Surface* img_water; -Surface* img_pole; -Surface* img_poletop; -Surface* img_flag[2]; -Surface* img_cloud[2][4]; -Surface* img_distro[4]; - Menu* main_menu = 0; Menu* game_menu = 0; Menu* options_menu = 0; @@ -91,7 +83,6 @@ /* Load graphics/sounds shared between all levels: */ void loadshared() { - /* Load global images: */ gold_text = new Font(datadir + "/images/fonts/gold.png", Font::TEXT, 16,18); blue_text = new Font(datadir + "/images/fonts/blue.png", Font::TEXT, 16,18,3); @@ -121,10 +112,6 @@ tile_manager = new TileManager("/images/tilesets/supertux.stgt"); /* Tuxes: */ - smalltux_star = sprite_manager->create("smalltux-star"); - bigtux_star = sprite_manager->create("bigtux-star"); - smalltux_gameover = sprite_manager->create("smalltux-gameover"); - char img_name[1024]; for (int i = 0; i < GROWING_FRAMES; i++) { @@ -159,96 +146,17 @@ ice_tux->arms = sprite_manager->create("big-tux-arms"); ice_tux->feet = sprite_manager->create("big-tux-feet"); - /* Water: */ - img_water = new Surface(datadir + "/images/shared/water.png", false); - - img_waves[0] = new Surface(datadir + "/images/shared/waves-0.png", - true); - - img_waves[1] = new Surface(datadir + "/images/shared/waves-1.png", - true); - - - img_waves[2] = new Surface(datadir + "/images/shared/waves-2.png", - true); - - - /* Pole: */ - - img_pole = new Surface(datadir + "/images/shared/pole.png", true); - img_poletop = new Surface(datadir + "/images/shared/poletop.png", - true); - - - /* Flag: */ - - img_flag[0] = new Surface(datadir + "/images/shared/flag-0.png", - true); - img_flag[1] = new Surface(datadir + "/images/shared/flag-1.png", - true); - - - /* Cloud: */ - - img_cloud[0][0] = new Surface(datadir + "/images/shared/cloud-00.png", - true); - - img_cloud[0][1] = new Surface(datadir + "/images/shared/cloud-01.png", - true); - - img_cloud[0][2] = new Surface(datadir + "/images/shared/cloud-02.png", - true); - - img_cloud[0][3] = new Surface(datadir + "/images/shared/cloud-03.png", - true); - - - img_cloud[1][0] = new Surface(datadir + "/images/shared/cloud-10.png", - true); - - img_cloud[1][1] = new Surface(datadir + "/images/shared/cloud-11.png", - true); - - img_cloud[1][2] = new Surface(datadir + "/images/shared/cloud-12.png", - true); - - img_cloud[1][3] = new Surface(datadir + "/images/shared/cloud-13.png", - true); - /* Objects */ load_object_gfx(); - /* Distros: */ - img_distro[0] = new Surface(datadir + "/images/tilesets/coin1.png", - true); - - img_distro[1] = new Surface(datadir + "/images/tilesets/coin2.png", - true); - - img_distro[2] = new Surface(datadir + "/images/tilesets/coin3.png", - true); - - img_distro[3] = new Surface(datadir + "/images/tilesets/coin2.png", - true); - - /* Tux life: */ - tux_life = new Surface(datadir + "/images/shared/tux-life.png", true); /* Sound effects: */ - /* if (use_sound) // this will introduce SERIOUS bugs here ! because "load_sound" - // initialize sounds[i] with the correct pointer's value: - // NULL or something else. And it will be dangerous to - // play with not-initialized pointers. - // This is also true with if (use_music) - Send a mail to me: neo...@us..., if you have another opinion. :) - */ for (i = 0; i < NUM_SOUNDS; i++) - SoundManager::get - ()->add_sound(SoundManager::get + SoundManager::get()->add_sound(SoundManager::get ()->load_sound(datadir + soundfilenames[i]),i); /* Herring song */ @@ -261,10 +169,6 @@ /* Free shared data: */ void unloadshared(void) { - delete smalltux_star; - delete bigtux_star; - delete smalltux_gameover; - /* Free global images: */ delete gold_text; delete white_text; @@ -276,22 +180,6 @@ free_object_gfx(); - delete img_water; - for (int i = 0; i < 3; i++) - delete img_waves[i]; - - delete img_pole; - delete img_poletop; - - for (int i = 0; i < 2; i++) - delete img_flag[i]; - - for (int i = 0; i < 4; i++) { - delete img_distro[i]; - delete img_cloud[0][i]; - delete img_cloud[1][i]; - } - delete tux_life; delete small_tux; |
From: Matze B. <mat...@us...> - 2004-12-19 13:34:23
|
Update of /cvsroot/super-tux/supertux/data/locale In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22644/data/locale Modified Files: .cvsignore de.po Log Message: -german translation updates -some cleanups -a first version of grab&carry around code. It doesn't work too good yet but it was lying around too long on my HD... Index: .cvsignore =================================================================== RCS file: /cvsroot/super-tux/supertux/data/locale/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 5 Dec 2004 17:19:33 -0000 1.1 +++ .cvsignore 19 Dec 2004 13:34:11 -0000 1.2 @@ -1,2 +1,2 @@ -supertux.pot +messages.pot Index: de.po =================================================================== RCS file: /cvsroot/super-tux/supertux/data/locale/de.po,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- de.po 6 Dec 2004 17:47:40 -0000 1.3 +++ de.po 19 Dec 2004 13:34:11 -0000 1.4 @@ -7,7 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux 0.1.1\n" -"POT-Creation-Date: 2004-12-05 18:22+0100\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2004-12-15 17:21+0100\n" "PO-Revision-Date: 2004-12-06 18:26+0100\n" "Last-Translator: Matze Braun <ma...@br...>\n" "Language-Team: German <de...@li...>\n" @@ -15,12 +16,141 @@ "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" +#: lib/app/setup.cpp:798 +#, c-format +msgid "" +"Usage: %s [OPTIONS] FILENAME\n" +"\n" +msgstr "" +"Aufruf: %s [OPTIONS] FILENAME\n" +"\n" + +#: lib/app/setup.cpp:799 +msgid "" +"Display Options:\n" +" -f, --fullscreen Run in fullscreen mode.\n" +" -w, --window Run in window mode.\n" +" --opengl If OpenGL support was compiled in, this will tell\n" +" SuperTux to make use of it.\n" +" --sdl Use the SDL software graphical renderer\n" +"\n" +"Sound Options:\n" +" --disable-sound If sound support was compiled in, this will\n" +" disable sound for this session of the game.\n" +" --disable-music Like above, but this will disable music.\n" +"\n" +"Misc Options:\n" +" -j, --joystick NUM Use joystick NUM (default: 0)\n" +" --joymap XAXIS:YAXIS:A:B:START\n" +" Define how joystick buttons and axis should be mapped\n" +" --leveleditor Opens the leveleditor in a file.\n" +" --worldmap Opens the specified worldmap file.\n" +" --flip-levels Flip levels upside-down.\n" +" -d, --datadir DIR Load Game data from DIR (default: automatic)\n" +" --debug Enables the debug mode, which is useful for " +"developers.\n" +" --help Display a help message summarizing command-line\n" +" options, license and game controls.\n" +" --usage Display a brief message summarizing command-line " +"options.\n" +" --version Display the version of SuperTux you're running.\n" +"\n" +msgstr "" +"Display Options:\n" +" -f, --fullscreen Im Vollbildmodus starten\n" +" -w, --window Im Fenstermodus starten\n" +" --opengl OpenGL benutzen\n" +" --sdl SDL Software renderer benutzen\n" +"\n" +"Sound Options:\n" +" --disable-sound Sound deaktivieren\n" +" --disable-music Musik deaktivieren\n" +"\n" +"Misc Options:\n" +" -j, --joystick NUM Joystick NUM benutzen (default: 0)\n" +" --joymap XAXIS:YAXIS:A:B:START\n" +" Belegung der Joystick Knöpfe und Axen einstellen\n" +" --leveleditor Startet den Level Editor\n" +" --worldmap Startet im Worldmap Modus\n" +" -d, --datadir DIR Verzeichnis mit Spieldaten (standard: automatisch)\n" +" --debug Debug Modus aktivieren\n" +" --help diese Hilfe anzeigen und beenden\n" +" --usage kurzen Hilfstext über Optionen anzeigen\n" +" --version Versionsinformationen anzeigen\n" +"\n" + +#: lib/app/setup.cpp:858 +#, c-format +msgid "" +"Usage: %s [--fullscreen] [--opengl] [--disable-sound] [--disable-music] [--" +"debug] | [--usage | --help | --version] [--leveleditor] [--worldmap] [--flip-" +"levels] FILENAME\n" +msgstr "" +"Aufruf: %s [--fullscreen] [--opengl] [--disable-sound] [--disable-music] [--" +"debug] | [--usage | --help | --version] [--leveleditor] [--worldmap] [--flip-" +"levels] DATEI\n" + +#: lib/gui/menu.cpp:68 +msgid "Yes" +msgstr "Ja" + +#: lib/gui/menu.cpp:69 +msgid "No" +msgstr "Nein" + +#: lib/gui/menu.cpp:237 +msgid "Up cursor" +msgstr "Nach Oben" + +#: lib/gui/menu.cpp:240 +msgid "Down cursor" +msgstr "Nach Unten" + +#: lib/gui/menu.cpp:243 +msgid "Left cursor" +msgstr "Nach Links" + +#: lib/gui/menu.cpp:246 +msgid "Right cursor" +msgstr "Nach Rechts" + +#: lib/gui/menu.cpp:249 +msgid "Return" +msgstr "Return" + +#: lib/gui/menu.cpp:252 +msgid "Space" +msgstr "Space" + +#: lib/gui/menu.cpp:255 +msgid "Right Shift" +msgstr "Shift Rechts" + +#: lib/gui/menu.cpp:258 +msgid "Left Shift" +msgstr "Shift Links" + +#: lib/gui/menu.cpp:261 +msgid "Right Control" +msgstr "Steuerung Rechts" + +#: lib/gui/menu.cpp:264 +msgid "Left Control" +msgstr "Steuerung Links" + +#: lib/gui/menu.cpp:267 +msgid "Right Alt" +msgstr "Alt Rechts" + +#: lib/gui/menu.cpp:270 +msgid "Left Alt" +msgstr "Alt Links" + #: src/worldmap.cpp:802 msgid "GAMEOVER" msgstr "Game Over" -#: src/worldmap.cpp:805 -#: src/gameloop.cpp:922 +#: src/worldmap.cpp:805 src/gameloop.cpp:922 #, c-format msgid "COINS: %d" msgstr "Münzen: %d" @@ -29,53 +159,44 @@ msgid "Total Statistics" msgstr "Gesamt Statistiken" -#: src/worldmap.cpp:963 -#: src/gameloop.cpp:843 +#: src/worldmap.cpp:963 src/gameloop.cpp:843 msgid "SCORE" msgstr "Punkte" -#: src/worldmap.cpp:967 -#: src/gameloop.cpp:865 -#: src/gameloop.cpp:866 +#: src/worldmap.cpp:967 src/gameloop.cpp:865 src/gameloop.cpp:866 msgid "COINS" msgstr "Münzen" -#: src/worldmap.cpp:988 -#: src/worldmap.cpp:989 -#: src/gameloop.cpp:887 +#: src/worldmap.cpp:988 src/worldmap.cpp:989 src/gameloop.cpp:887 #: src/gameloop.cpp:888 msgid "LIVES" msgstr "Leben" -#: src/title.cpp:124 -#: src/misc.cpp:98 +#: src/title.cpp:124 src/misc.cpp:98 msgid "Contrib Levels" msgstr "Zusatzlevel" -#: src/title.cpp:143 -#: src/title.cpp:216 -#: src/misc.cpp:129 -#: src/misc.cpp:140 -#: src/misc.cpp:153 -#: src/misc.cpp:164 -#: src/leveleditor.cpp:67 +#: src/title.cpp:143 src/title.cpp:216 src/misc.cpp:129 src/misc.cpp:140 +#: src/misc.cpp:153 src/misc.cpp:164 src/leveleditor.cpp:67 #: src/leveleditor.cpp:77 msgid "Back" msgstr "Zurück" -#: src/title.cpp:350 +#: src/title.cpp:351 msgid "" "Copyright (c) 2003 SuperTux Devel Team\n" "This game comes with ABSOLUTELY NO WARRANTY. This is free software, and you\n" -"are welcome to redistribute it under certain conditions; see the file COPYING\n" +"are welcome to redistribute it under certain conditions; see the file " +"COPYING\n" "for details.\n" msgstr "" "Copyright (c) 2003 SuperTux Devel Team\n" "Diese Spiel kommt OHNE GEWÄHRLEISTUNG. Dies ist freie Software und sie\n" -"dürfen sie gerne unter bestimmten Bedingungen weiterverteilen; Details finden\n" +"dürfen sie gerne unter bestimmten Bedingungen weiterverteilen; Details " +"finden\n" "Sie in der Datei COPYING.\n" -#: src/title.cpp:404 +#: src/title.cpp:408 msgid "Are you sure you want to delete slot" msgstr "Sind sie sicher, dass sie den Spielstand löschen wollen?" @@ -164,20 +285,15 @@ msgid "Min time needed: %d / %d" msgstr "Min Zeit benötigt: %d / %d" -#: src/misc.cpp:97 -#: src/misc.cpp:156 +#: src/misc.cpp:97 src/misc.cpp:156 msgid "Start Game" msgstr "Spiel Beginnen" -#: src/misc.cpp:99 -#: src/misc.cpp:104 -#: src/misc.cpp:179 -#: src/misc.cpp:186 +#: src/misc.cpp:99 src/misc.cpp:104 src/misc.cpp:179 src/misc.cpp:186 msgid "Options" msgstr "Einstellungen" -#: src/misc.cpp:100 -#: src/leveleditor.cpp:562 +#: src/misc.cpp:100 src/leveleditor.cpp:562 msgid "Level Editor" msgstr "Level Editor" @@ -201,13 +317,11 @@ msgid "Fullscreen" msgstr "Ganzer Bildschirm" -#: src/misc.cpp:114 -#: src/misc.cpp:119 +#: src/misc.cpp:114 src/misc.cpp:119 msgid "Sound " msgstr "Sound" -#: src/misc.cpp:115 -#: src/misc.cpp:120 +#: src/misc.cpp:115 src/misc.cpp:120 msgid "Music " msgstr "Musik" @@ -267,13 +381,11 @@ msgid "Save Game" msgstr "Spiel Speichern" -#: src/misc.cpp:176 -#: src/misc.cpp:183 +#: src/misc.cpp:176 src/misc.cpp:183 msgid "Pause" msgstr "Pause" -#: src/misc.cpp:178 -#: src/misc.cpp:185 +#: src/misc.cpp:178 src/misc.cpp:185 msgid "Continue" msgstr "Fortsetzen" @@ -409,9 +521,7 @@ msgid "Setup level" msgstr "Level-Einstellungen" -#: src/leveleditor.cpp:237 -#: src/leveleditor.cpp:727 -#: src/leveleditor.cpp:752 +#: src/leveleditor.cpp:237 src/leveleditor.cpp:727 src/leveleditor.cpp:752 #: src/leveleditor.cpp:841 msgid "Level not saved. Wanna to?" msgstr "Level wurde noch nicht gespeichert. Jetzt speichern?" @@ -517,4 +627,3 @@ #, c-format msgid "New max combo: %d" msgstr "Neue Max Kombination: %d" - |
From: Matze B. <mat...@us...> - 2004-12-19 13:34:22
|
Update of /cvsroot/super-tux/supertux/data/levels/world1 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22644/data/levels/world1 Modified Files: de.po level19.stl Log Message: -german translation updates -some cleanups -a first version of grab&carry around code. It doesn't work too good yet but it was lying around too long on my HD... Index: level19.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/world1/level19.stl,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- level19.stl 6 Dec 2004 17:47:18 -0000 1.18 +++ level19.stl 19 Dec 2004 13:34:11 -0000 1.19 @@ -8,7 +8,7 @@ (start_pos_x 100) (start_pos_y 170) (background "cave2.jpg") - (music "cave.mod") + (music "cave_remastered.ogg") (bkgd_red_top 150) (bkgd_green_top 150) (bkgd_blue_top 150) Index: de.po =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/world1/de.po,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- de.po 6 Dec 2004 17:47:13 -0000 1.3 +++ de.po 19 Dec 2004 13:34:11 -0000 1.4 @@ -173,7 +173,6 @@ msgstr "Grumbels Schneegespür" #: data/levels/world1/extro.txt:7 -#, fuzzy msgid "" "-Entering Nolok's Throne Room!\n" "\n" @@ -210,13 +209,14 @@ "#up. Penny was counting on him." msgstr "" "-In Noloks Thronsaal\n" -"#Tux betrat Noloks Thronsaal und\n" -"#suchte verzweifelt nach seiner Geliebten,\n" -"#leider konnte er weder Penny noch Nolok\n" -"#dort entdecken, stattdessen fand er eine\n" -"#weitere Nachricht.\n" "\n" -"#\"Gut gemaacht mein leiber Tux, sehr gut.\n" +"#Tux betrat Noloks Thronsaal und suchte\n" +"#verzweifelt nach seiner Geliebten. Leider\n" +"#konnte er weder Penny noch Nolok dort\n" +"#entdecken, stattdessen fand er eine\n" +"#weitere Nachricht:\n" +"\n" +"#\"Gut gemacht mein lieber Tux, sehr gut.\n" "#Wenn du dies hier liest, hast du diese\n" "#eisige Festung von mir befreit. Aber wie\n" "#du siehst ist deine geliebte Penny nicht\n" @@ -230,7 +230,7 @@ "#einer weiteren fliehen. Sei nicht dumm,\n" "#es wäre das beste jetzt aufzugeben.\n" "\n" -"#Tux verliess traurig den Sall, als etwas\n" +"#Tux verliess traurig den Saal, als etwas\n" "#unter seinem Fuss raschelte...\n" "#Ein Briefumschlag mit seinem Namen!\n" "#In dem Umschlag war eine grobe Karte,\n" |
From: Matze B. <mat...@us...> - 2004-12-19 13:34:21
|
Update of /cvsroot/super-tux/supertux/data/levels/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22644/data/levels/test Modified Files: simple.stl Log Message: -german translation updates -some cleanups -a first version of grab&carry around code. It doesn't work too good yet but it was lying around too long on my HD... Index: simple.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/test/simple.stl,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- simple.stl 28 Nov 2004 14:56:47 -0000 1.3 +++ simple.stl 19 Dec 2004 13:34:10 -0000 1.4 @@ -13,6 +13,7 @@ (background (image "arctis.jpg") (speed 0.5)) (spawnpoint (name "main") (x 50) (y 200)) + (rock (x 50) (y 50)) (tilemap (layer "background") (solid #f) |
From: Matze B. <mat...@us...> - 2004-12-15 19:19:41
|
Update of /cvsroot/super-tux/supertux/lib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6698/lib Modified Files: Jamfile Log Message: fix lib files not included in translation Index: Jamfile =================================================================== RCS file: /cvsroot/super-tux/supertux/lib/Jamfile,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- Jamfile 28 Nov 2004 14:56:47 -0000 1.3 +++ Jamfile 15 Dec 2004 19:19:29 -0000 1.4 @@ -10,7 +10,7 @@ [ Wildcard video : *.cpp *.h ] [ Wildcard lisp : *.cpp *.h ] ; -TRANSLATABLE_SOURCE += [ DoSourceGrist $(sources) ] ; +TRANSLATABLE_SOURCES += [ DoSourceGrist $(sources) ] ; Library supertuxlib : $(sources) : noinstall ; ExternalLibs supertuxlib : SDL SDLMIXER SDLIMAGE GL ; |
From: Matze B. <mat...@us...> - 2004-12-14 09:43:48
|
Update of /cvsroot/super-tux/supertux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19530 Modified Files: configure.ac TRANSLATORS Log Message: check in configure if xgettext supports lisp Index: configure.ac =================================================================== RCS file: /cvsroot/super-tux/supertux/configure.ac,v retrieving revision 1.43 retrieving revision 1.44 diff -u -d -r1.43 -r1.44 --- configure.ac 10 Dec 2004 21:52:13 -0000 1.43 +++ configure.ac 14 Dec 2004 09:43:38 -0000 1.44 @@ -28,6 +28,16 @@ AC_PROG_INSTALL AC_CHECK_PROGS(XGETTEXT, xgettext) +if test -n "$XGETTEXT" ; then + AC_MSG_CHECKING([if xgettext supports lisp]) + if echo '(gettext "test")' | xgettext -o - -L Lisp - >& /dev/null; then + AC_MSG_RESULT(yes) + else + AC_MSG_RESULT(no) + AC_MSG_WARN([It seems your gettext installation is too old, try updating it]) + XGETTEXT="" + fi +fi dnl Checks for header files. AC_HEADER_DIRENT Index: TRANSLATORS =================================================================== RCS file: /cvsroot/super-tux/supertux/TRANSLATORS,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- TRANSLATORS 6 Dec 2004 17:59:34 -0000 1.8 +++ TRANSLATORS 14 Dec 2004 09:43:38 -0000 1.9 @@ -4,7 +4,8 @@ * Install gettext * get a cvs snapshot of supertux and do the usual autogen.sh, configure. Make sure configure can find the xgettext application. - (ie. "checking for xgettext... xgettext") + (ie. "checking for xgettext... xgettext" + and "checking if xgettext supports Lisp... yes") * Run 'jam' and let it compile supertux and create all the messages.po files * Go into data/locale and data/levels/*/ and in each dir do: - In case you want to create a new translation do |
From: Matze B. <mat...@us...> - 2004-12-10 23:44:34
|
Update of /cvsroot/super-tux/supertux/data In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12520/data Modified Files: Jamfile Log Message: install po files as well Index: Jamfile =================================================================== RCS file: /cvsroot/super-tux/supertux/data/Jamfile,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- Jamfile 5 Dec 2004 16:57:09 -0000 1.5 +++ Jamfile 10 Dec 2004 23:44:23 -0000 1.6 @@ -35,7 +35,7 @@ ; for p in $(LEVELPATHS) { - InstallData [ Wildcard $(p) : info *.stl *.stwm *.txt ] : $(p) ; + InstallData [ Wildcard $(p) : info *.stl *.stwm *.txt *.po ] : $(p) ; local translatable_lisp = [ Wildcard $(p) : info *.stl *.stwm *.txt ] ; SEARCH on $(translatable_lisp) = $(SEARCH_SOURCE) ; |
From: Matze B. <mat...@us...> - 2004-12-10 21:52:22
|
Update of /cvsroot/super-tux/supertux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20278 Modified Files: configure.ac Log Message: fix for people without libiconv in glibc Index: configure.ac =================================================================== RCS file: /cvsroot/super-tux/supertux/configure.ac,v retrieving revision 1.42 retrieving revision 1.43 diff -u -d -r1.42 -r1.43 --- configure.ac 27 Nov 2004 14:48:10 -0000 1.42 +++ configure.ac 10 Dec 2004 21:52:13 -0000 1.43 @@ -79,9 +79,15 @@ AC_MSG_RESULT([no]) fi -AC_CHECK_LIB([iconv], [iconv_open]) -AC_TRY_LINK([#include <iconv.h>], [iconv_open(0, 0);],, - AC_MSG_ERROR([Couldn't find iconv library])) +iconv_found=no +AC_MSG_CHECKING([for iconv]) +AC_TRY_LINK([#include <iconv.h>], [iconv_open(0, 0);], [iconv_found="yes"]) +AS_IF([test "$iconv_found" = no], + LIBS="$LIBS -liconv" + AC_TRY_LINK([#include <iconv.h>], [iconv_open(0, 0);], [iconv_found="yes"])) +AS_IF([test "$iconv_found" = no], + AC_MSG_ERROR([Couldn't find iconv library]), + AC_MSG_RESULT([found])) dnl =========================================================================== dnl Check for SDL |
From: Matze B. <mat...@us...> - 2004-12-10 20:53:22
|
Update of /cvsroot/super-tux/supertux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6610 Modified Files: autogen.sh Log Message: fix for older sed versions Index: autogen.sh =================================================================== RCS file: /cvsroot/super-tux/supertux/autogen.sh,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- autogen.sh 25 Nov 2004 01:08:59 -0000 1.14 +++ autogen.sh 10 Dec 2004 20:53:08 -0000 1.15 @@ -13,7 +13,8 @@ autoconf --trace=AC_SUBST \ | sed -e 's/configure.ac:[0-9]*:AC_SUBST:\([^:]*\).*/\1 ?= "@\1@" ;/g' \ > Jamconfig.in -sed -e 's/.*BACKSLASH.*//' -i Jamconfig.in +sed -e 's/.*BACKSLASH.*//' -i~ Jamconfig.in +rm Jamconfig.in~ echo 'INSTALL ?= "@INSTALL@" ;' >> Jamconfig.in echo 'JAMCONFIG_READ = yes ;' >> Jamconfig.in |
From: Matze B. <mat...@us...> - 2004-12-10 20:29:24
|
Update of /cvsroot/super-tux/supertux/data/levels/world1 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv805/data/levels/world1 Added Files: nn.po Log Message: New Norwegian Translation --- NEW FILE: nn.po --- # Translation of nn to Norwegian Nynorsk # Norwegian Nynorsk translations for world package. # Copyright (C) 2004 THE world'S COPYRIGHT HOLDER # This file is distributed under the same license as the world package. # Karl Ove Hufthammer <ka...@hu...>, 2004. # msgid "" msgstr "" "Project-Id-Version: nn\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-12-07 18:49+0100\n" "PO-Revision-Date: 2004-12-10 20:07+0100\n" "Last-Translator: Karl Ove Hufthammer <ka...@hu...>\n" "Language-Team: Norwegian Nynorsk <i1...@li...>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: KBabel 1.9\n" #: data/levels/world1/level1.stl:5 msgid "Welcome to Antarctica" msgstr "Velkommen til Antarktika" #: data/levels/world1/level10.stl:5 msgid "23rd Airborne" msgstr "Uro i lufta" #: data/levels/world1/level11.stl:5 msgid "Night Chill" msgstr "Nattefrost" #: data/levels/world1/level12.stl:5 msgid "Into the Stars" msgstr "Under stjernene" #: data/levels/world1/level13.stl:5 msgid "Above the Arctic Skies" msgstr "Over skyene" #: data/levels/world1/level14.stl:5 msgid "Entrance to the Cave" msgstr "Inngangen til hola" #: data/levels/world1/level15.stl:5 msgid "Under the Ice" msgstr "Under isen" #: data/levels/world1/level16.stl:5 msgid "Living in a Fridge" msgstr "Mitt liv som djupfrysar" #: data/levels/world1/level17.stl:5 msgid "'...or is it just me?'" msgstr "Mitt liv som kjøleskap" #: data/levels/world1/level18.stl:5 msgid "Ice in the Hole" msgstr "Inferno i kvitt" #: data/levels/world1/level19.stl:5 msgid "Miyamoto Monument" msgstr "Tux pÃ¥ eventyr under jorda" #: data/levels/world1/level2.stl:5 msgid "The Journey Begins" msgstr "Ei vandring tek til" #: data/levels/world1/level20.stl:5 msgid "End of the Tunnel" msgstr "Pingvinen som kom ut av kjøleskapet" #: data/levels/world1/level21.stl:5 msgid "A Path in the Clouds" msgstr "Med himmelen som tak" #: data/levels/world1/level22.stl:5 msgid "No more Mr Ice Guy" msgstr "Utan isbitar, takk!" #: data/levels/world1/level23.stl:5 msgid "The Escape" msgstr "PÃ¥ flukt" #: data/levels/world1/level24.stl:5 msgid "The Shattered Bridge" msgstr "Den knuste brua" #: data/levels/world1/level25.stl:5 msgid "Arctic Ruins" msgstr "Mørke skyer trugar" #: data/levels/world1/level26.stl:5 msgid "The Castle of Nolok" msgstr "Borga til Nolok" #: data/levels/world1/level3.stl:5 msgid "Via Nostalgica" msgstr "Nostalgi" #: data/levels/world1/level4.stl:5 msgid "Tobgle Road" msgstr "Tobgle-vegen" #: data/levels/world1/level5.stl:5 msgid "The Somewhat Smaller Bath" msgstr "Oppi stampen" #: data/levels/world1/level6.stl:5 msgid "The Frosted Fields" msgstr "Frostlagde stigar" #: data/levels/world1/level7.stl:5 msgid "Oh no! More Snowballs!" msgstr "Og snøballen rullar" #: data/levels/world1/level8.stl:5 msgid "Stone Cold" msgstr "Steinkald" #: data/levels/world1/level9.stl:5 msgid "Grumbel's Sense of Snow" msgstr "Tux si fornemming for snø" #: data/levels/world1/extro.txt:7 msgid "" "-Entering Nolok's Throne Room!\n" "\n" "#Tux ran into Nolok's throne room,\n" "#frantically searching for his beloved.\n" "#Alas, he found neither Penny nor Nolok\n" "#there, but instead, another note.\n" "\n" "#\"Well done, Tux, well done. If you are\n" "#reading this, you have removed my\n" "#control over this icy fortress. But as\n" "#you can see, your beloved Penny is not\n" "#here. What you did not realize is that\n" "#this is just one of my many fortresses,\n" "#spread far across the lands!\n" "\n" "#\"Tux, your ambition is most honorable,\n" "#but futile nonetheless. With every\n" "#fortress you conquer of mine, I will\n" "#escape to another, and take Penny with\n" "#me. Do not be silly... it is best that\n" "#you give up now.\"\n" "\n" "#Tux was sadly leaving the room, when he\n" "#felt something beneath his foot... an\n" "#envelope, addressed to him! Inside was\n" "#a roughly sketched map with fortresses\n" "#drawn in various lands. On the corner\n" "#of the map was Penny's signature, a\n" "#drawing of the ice flower.\n" "\n" "#Tux ran out of the fortress, map in\n" "#hand. No, he decided, he would not give\n" "#up. Penny was counting on him." msgstr "" "-PÃ¥ veg inn tronsalen!\n" "\n" "#Tux sprang inn i tronsalen, pÃ¥ vill jakt\n" "#etter hans kjære Penny. Dessverre fann\n" "#verken Penny eller Nolok der, berre endÃ¥\n" "#eit brev:\n" "\n" "#«Godt gjort, Tux, veldig godt gjort. Om\n" "#du les dette, mÃ¥ det tyda at du har klart\n" "#Ã¥ overmanna voktarane mine og innta\n" "#isborga. Men som du ser, er ikkje Penny\n" "#her. Dette er nemleg berre berre éi av dei\n" "#mange borgene eg har, spreidde over\n" "#heile verda." "\n" "#Eg kan berre gratulera deg med god\n" "#innsats, men dessverre (for deg), er\n" "#han fÃ¥nyttes. For kvar borg du mÃ¥tte\n" "#klara Ã¥ innta, vil eg berre rømma til ei ny,\n" "#og ta Penny med meg. Det er best for\n" "#alle om du gjev opp først som sist.»\n" "\n" "#Tux var svært trist dÃ¥ han forlot tronsalen,\n" "#pÃ¥ veg heim. Men kva var dette? Han\n" "#kjende noko under eine fotsÃ¥len. Det var ân" "#ein konvolutt, adressert til han! Inni konvolutten\n" "#fann han eit kart med oversikt over nokre\n" "#borger. Og nede i hjørnet sto Pennys signatur,\n" "#ei teikning av ei isrose.\n" "\n" "#Tux sprang ut av borga med kartet i neven.\n" "#Nei, han ville aldri gje opp. Penny stolte pÃ¥ han!" #: data/levels/world1/intro.txt:5 msgid "" "-Penny gets captured!\n" "\n" "#Tux and Penny were out having a nice\n" "#picnic on the ice fields of Antarctica.\n" "#Suddenly, a creature jumped from\n" "#behind an ice bush, there was a flash,\n" "#and Tux fell asleep!\n" "\n" "#When Tux wakes up, he finds that Penny\n" "#is missing. Where she lay before now\n" "#lies a letter. \"Tux, my arch enemy!\"\n" "#says the letter. \"I have captured\n" "#your beautiful Penny and have taken her\n" "#to my fortress. The path to my fortress\n" "#is littered with my minions. Give up on\n" "#the thought of trying to reclaim her,\n" "#you haven't a chance! -Nolok\"\n" "\n" "#Tux looks and see Nolok's fortress in\n" "#the distance. Determined to save his\n" "#beloved Penny, he begins his journey." msgstr "" "-Penny vert fanga!\n" "\n" "#Tux og Penny var ute og koste seg pÃ¥ ein\n" "#hyggeleg, liten piknik pÃ¥ eit av isflaka pÃ¥\n" "#sørpolen, dÃ¥ det brÃ¥tt hoppa eit vesen fram\n" "#frÃ¥ ein av isbuskane. Det siste Tux hugsar frÃ¥\n" "#før han sovna, var eit sterkt og noko underleg\n" "#lysglimt!\n" "\n" "#NÃ¥r han endeleg vakna, kunne han ikkje sjÃ¥\n" "#Penny nokon stader. Det einaste han fann var\n" "#eit brev: «Tux, eg har tatt med meg Penny\n" "#til borga mi. Eg har sett ut folk til Ã¥ vokta\n" "#vegen, sÃ¥ du kan allereie gje opp Ã¥ prøva Ã¥\n" "#redda ho tilbake. Du er sjanselaus!\n" "#Uvenleg helsing Nolok!»\n" "\n" "#Tux ser seg rundt, og kan sjÃ¥ borga til Nolok\n" "#lang, langt i det fjerne. Han er fast bestemt\n" "#pÃ¥ Ã¥ redda kjærasten sin, og tek til pÃ¥ vandringa." #: data/levels/world1/worldmap.stwm:4 msgid "Icyisland" msgstr "Isøya" |
From: Matze B. <mat...@us...> - 2004-12-10 20:29:23
|
Update of /cvsroot/super-tux/supertux/data/locale In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv805/data/locale Modified Files: nn.po Log Message: New Norwegian Translation Index: nn.po =================================================================== RCS file: /cvsroot/super-tux/supertux/data/locale/nn.po,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- nn.po 23 Nov 2004 22:21:28 -0000 1.1 +++ nn.po 10 Dec 2004 20:29:13 -0000 1.2 @@ -1,3 +1,4 @@ +# Translation of nn to Norwegian Nynorsk # translation of nn.po to Norwegian Nynorsk # This file is distributed under the same license as the PACKAGE package. # Copyright (C) YEAR SuperTux Development Team. @@ -6,59 +7,56 @@ msgid "" msgstr "" "Project-Id-Version: nn\n" -"Report-Msgid-Bugs-To: sup...@li...\n" -"POT-Creation-Date: 2004-10-20 14:06-0600\n" -"PO-Revision-Date: 2004-07-19 12:55+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2004-12-07 18:49+0100\n" +"PO-Revision-Date: 2004-12-10 17:54+0100\n" "Last-Translator: Karl Ove Hufthammer <ka...@hu...>\n" "Language-Team: Norwegian Nynorsk <i1...@li...>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: KBabel 1.3\n" +"X-Generator: KBabel 1.9\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/gameloop.cpp:205 -msgid "by " -msgstr "av " - -#: src/gameloop.cpp:211 -msgid "Level Vertically Flipped!" -msgstr "Brettet er snudd opp-ned!" +#: src/gameloop.cpp:204 +msgid "contributed by " +msgstr "Laga av " -#: src/gameloop.cpp:215 +#: src/gameloop.cpp:209 msgid "Best Level Statistics" -msgstr "" +msgstr "Brettrekordar" -#: src/gameloop.cpp:670 +#: src/gameloop.cpp:646 msgid "PAUSE - Press 'P' To Play" msgstr "PAUSE â Trykk «P» for Ã¥ halda fram" -#: src/gameloop.cpp:675 +#: src/gameloop.cpp:651 +#, c-format msgid "Playing: " msgstr "Brett: " -#: src/gameloop.cpp:850 src/worldmap.cpp:1111 +#: src/gameloop.cpp:843 src/worldmap.cpp:963 msgid "SCORE" msgstr "POENG" -#: src/gameloop.cpp:855 +#: src/gameloop.cpp:848 msgid "Press ESC To Return" msgstr "Trykk «Escape» for Ã¥ gÃ¥ tilbake" -#: src/gameloop.cpp:860 +#: src/gameloop.cpp:853 msgid "TIME's UP" msgstr "DU HAR BRUKT OPP TIDA" -#: src/gameloop.cpp:864 +#: src/gameloop.cpp:858 msgid "TIME" msgstr "TID" -#: src/gameloop.cpp:871 src/gameloop.cpp:872 src/worldmap.cpp:1115 +#: src/gameloop.cpp:865 src/gameloop.cpp:866 src/worldmap.cpp:967 msgid "COINS" msgstr "MYNTAR" -#: src/gameloop.cpp:893 src/gameloop.cpp:894 src/worldmap.cpp:1136 -#: src/worldmap.cpp:1137 +#: src/gameloop.cpp:887 src/gameloop.cpp:888 src/worldmap.cpp:988 +#: src/worldmap.cpp:989 msgid "LIVES" msgstr "LIV" @@ -71,185 +69,175 @@ msgid "SCORE: %d" msgstr "POENG: %d" -#: src/gameloop.cpp:922 src/worldmap.cpp:955 +#: src/gameloop.cpp:922 src/worldmap.cpp:805 #, c-format msgid "COINS: %d" msgstr "MYNTAR: %d" -#: src/gameloop.cpp:956 +#: src/gameloop.cpp:950 msgid "Slot" -msgstr "" +msgstr "Plass" -#: src/gameloop.cpp:956 +#: src/gameloop.cpp:951 msgid "Free" -msgstr "" +msgstr "Ledig" -#: src/leveleditor.cpp:64 +#: src/leveleditor.cpp:61 msgid "Load Subset" -msgstr "" +msgstr "Hent del" -#: src/leveleditor.cpp:70 src/leveleditor.cpp:80 src/misc.cpp:125 -#: src/misc.cpp:136 src/misc.cpp:149 src/misc.cpp:160 src/title.cpp:142 -#: src/title.cpp:220 +#: src/leveleditor.cpp:67 src/leveleditor.cpp:77 src/misc.cpp:129 +#: src/misc.cpp:140 src/misc.cpp:153 src/misc.cpp:164 src/title.cpp:143 +#: src/title.cpp:216 msgid "Back" msgstr "Tilbake" -#: src/leveleditor.cpp:73 +#: src/leveleditor.cpp:70 msgid "New Level Subset" -msgstr "" +msgstr "Ny brettdel" -#: src/leveleditor.cpp:75 +#: src/leveleditor.cpp:72 msgid "Filename " -msgstr "" +msgstr "Filenamn " -#: src/leveleditor.cpp:76 +#: src/leveleditor.cpp:73 msgid "Title " -msgstr "" +msgstr "Tittel " -#: src/leveleditor.cpp:77 +#: src/leveleditor.cpp:74 msgid "Description" -msgstr "" +msgstr "Skildring" -#: src/leveleditor.cpp:78 -#, fuzzy +#: src/leveleditor.cpp:75 msgid "Create" -msgstr "Rulletekst" +msgstr "Lag" -#: src/leveleditor.cpp:83 -#, fuzzy +#: src/leveleditor.cpp:80 msgid "Level Editor Menu" -msgstr "Lag brett" +msgstr "Brettlagingsmeny" -#: src/leveleditor.cpp:85 -#, fuzzy +#: src/leveleditor.cpp:82 msgid "Return to Level Editor" -msgstr "Lag brett" +msgstr "Tilbake til brettlaging" -#: src/leveleditor.cpp:86 +#: src/leveleditor.cpp:83 msgid "Create Level Subset" -msgstr "" +msgstr "Lag brettdel" -#: src/leveleditor.cpp:87 +#: src/leveleditor.cpp:84 msgid "Load Level Subset" -msgstr "" +msgstr "Opna brettdel" -#: src/leveleditor.cpp:89 -#, fuzzy +#: src/leveleditor.cpp:86 msgid "Quit Level Editor" -msgstr "Lag brett" +msgstr "Avslutt brettlaging" -#: src/leveleditor.cpp:92 +#: src/leveleditor.cpp:89 msgid "Level Settings" -msgstr "" +msgstr "Brettval" -#: src/leveleditor.cpp:94 +#: src/leveleditor.cpp:91 msgid "Name " -msgstr "" +msgstr "Namn " -#: src/leveleditor.cpp:95 +#: src/leveleditor.cpp:92 msgid "Author " -msgstr "" +msgstr "Forfattar" -#: src/leveleditor.cpp:96 +#: src/leveleditor.cpp:93 msgid "Width " -msgstr "" +msgstr "Breidd " -#: src/leveleditor.cpp:97 +#: src/leveleditor.cpp:94 msgid "Height " -msgstr "" +msgstr "Høgd " -#: src/leveleditor.cpp:99 +#: src/leveleditor.cpp:96 msgid "Apply" -msgstr "" +msgstr "Bruk" -#: src/leveleditor.cpp:109 +#: src/leveleditor.cpp:104 msgid "Eraser" -msgstr "" +msgstr "Viskelêr" -#: src/leveleditor.cpp:141 +#: src/leveleditor.cpp:136 msgid "Trampoline" -msgstr "" +msgstr "Trampoline" -#: src/leveleditor.cpp:142 +#: src/leveleditor.cpp:137 msgid "Flying Platform" -msgstr "" - -#: src/leveleditor.cpp:143 -msgid "Door" -msgstr "" +msgstr "Flyande plattform" -#: src/leveleditor.cpp:146 +#: src/leveleditor.cpp:141 msgid "Edtit foreground tiles" -msgstr "" +msgstr "Endra forgrunnsflis" -#: src/leveleditor.cpp:148 +#: src/leveleditor.cpp:143 msgid "Edit interactive tiles" -msgstr "" +msgstr "Endra interaktive fliser" -#: src/leveleditor.cpp:150 +#: src/leveleditor.cpp:145 msgid "Edit background tiles" -msgstr "" +msgstr "Endra bakgrunnsfliser" -#: src/leveleditor.cpp:154 +#: src/leveleditor.cpp:149 msgid "Next sector" -msgstr "" +msgstr "Ny sektor" -#: src/leveleditor.cpp:155 +#: src/leveleditor.cpp:150 msgid "Prevous sector" -msgstr "" +msgstr "Førre sektor" -#: src/leveleditor.cpp:156 +#: src/leveleditor.cpp:151 msgid "Next level" -msgstr "" +msgstr "Neste brett" -#: src/leveleditor.cpp:157 +#: src/leveleditor.cpp:152 msgid "Prevous level" -msgstr "" +msgstr "Førre brett" -#: src/leveleditor.cpp:158 -#, fuzzy +#: src/leveleditor.cpp:153 msgid "Save level" -msgstr "Lagra spel" +msgstr "Lagra brett" -#: src/leveleditor.cpp:159 +#: src/leveleditor.cpp:154 msgid "Test level" -msgstr "" +msgstr "Prøv brett" -#: src/leveleditor.cpp:160 -#, fuzzy +#: src/leveleditor.cpp:155 msgid "Setup level" -msgstr "Speltastar" +msgstr "Set opp brett" -#: src/leveleditor.cpp:242 src/leveleditor.cpp:718 src/leveleditor.cpp:743 -#: src/leveleditor.cpp:834 +#: src/leveleditor.cpp:237 src/leveleditor.cpp:727 src/leveleditor.cpp:752 +#: src/leveleditor.cpp:841 msgid "Level not saved. Wanna to?" -msgstr "" +msgstr "Brettet er ikkje lagra. Ãnskjer du Ã¥ lagra det?" -#: src/leveleditor.cpp:357 +#: src/leveleditor.cpp:363 #, c-format msgid "Level %d doesn't exist. Create it?" -msgstr "" +msgstr "Brettet «%d» finst ikkje? Vil du laga det?" -#: src/leveleditor.cpp:560 src/misc.cpp:96 +#: src/leveleditor.cpp:562 src/misc.cpp:100 msgid "Level Editor" msgstr "Lag brett" -#: src/leveleditor.cpp:583 +#: src/leveleditor.cpp:585 msgid "F1 for help" -msgstr "" +msgstr "«F1» for hjelp" -#: src/leveleditor.cpp:585 +#: src/leveleditor.cpp:587 msgid "Choose a level subset" -msgstr "" +msgstr "Vel brettdel" -#: src/leveleditor.cpp:769 +#: src/leveleditor.cpp:778 msgid "No more sectors exist. Create another?" -msgstr "" +msgstr "Det finst ikkje fleire sektorar. Vil du laga ein ny?" -#: src/leveleditor.cpp:921 +#: src/leveleditor.cpp:936 msgid "" -"This is the built-in level editor. It's aim is to be intuitive\n" -"and simple to use, so it should be pretty straight forward.\n" +"This is the built-in level editor. Its aim is to be intuitive\n" +"and simple to use, so it should be pretty straightforward.\n" "\n" "To open a level, first you'll have to select a level subset from\n" "the menu (or create your own).\n" @@ -258,24 +246,24 @@ "\n" "To access the menu from the level editor, just press Esc.\n" "\n" -"You are currently looking to the level, to scroll it, just\n" +"You are currently looking at the level. To scroll it, just\n" "press the right mouse button and drag the mouse. It will move like\n" "a strategy game.\n" "You can also use the arrow keys and Page Up/Down.\n" "\n" -"'+' and '-' keys can be used to zoom in/out the level.\n" +"'+' and '-' keys can be used to zoom the level in/out.\n" "\n" -"You probably already noticed those floating group of buttons.\n" +"You probably already noticed those floating groups of buttons.\n" "Each one serves a different purpose. To select a certain button\n" "just press the Left mouse button on it. A few buttons have key\n" -"shortcuts, you can know it by pressing the Right mouse button on\n" -"it. That will also show what that button does.\n" -"Group of buttons can also be move around by just dragging them,\n" +"shortcuts. You can find them by pressing the Right mouse button on\n" +"a button. That will also show what that button does.\n" +"Groups of buttons can also be moved around by just dragging them,\n" "while pressing the Left mouse button.\n" "\n" -"Let's learn a bit of what each group of buttons do, shall we?\n" +"Let's learn a bit of what each group of buttons does, shall we?\n" "\n" -"To starting putting tiles and objects around use the bigger gropup\n" +"To starting putting tiles and objects around use the bigger group\n" "of buttons. Each button is a different tile. To put it on the level,\n" "just press it and then left click in the level.\n" "You can also copy tiles from the level by using the middle mouse button.\n" @@ -283,18 +271,18 @@ "enemies and game objects in the bottom.\n" msgstr "" -#: src/leveleditor.cpp:957 +#: src/leveleditor.cpp:972 msgid "" "The Foreground/Interactive/Background buttons may be used to\n" -"see and edit the respective layer. Level's have three tiles layers:\n" -"Foreground - tiles are drawn in top of everything and have no contact\n" +"see and edit the respective layer. Levels have three tiles layers:\n" +"Foreground - tiles are drawn on top of everything and have no contact\n" "with the player.\n" "Interactive - these are the tiles that have contact with the player.\n" -"Background - tiles are drawn in bottom of everything and have no contact\n" +"Background - tiles are drawn underneath everything and have no contact\n" "with the player.\n" "The unselected layers will be drawn semi-transparently.\n" "\n" -"At last, but not least, the group of buttons that's left serves\n" +"Last, but not least, the group of buttons that's left serves\n" "to do related actions with the level.\n" "From left to right:\n" "Mini arrows - can be used to choose other sectors.\n" @@ -302,7 +290,7 @@ "Big arrows - choose other level in the same level subset.\n" "Diskette - save the level\n" "Tux - test the level\n" -"Tools - set a few settings for the level, incluiding resizing it.\n" +"Tools - set a few settings for the level, including resizing it.\n" "\n" "We have reached the end of this Howto.\n" "\n" @@ -311,211 +299,138 @@ "Enjoy,\n" " SuperTux development team\n" "\n" -"ps: If you are looking for something more powerfull, you can give it a\n" -"try to FlexLay. FlexLay is a level editor that supports several games,\n" +"PS: If you are looking for something more powerful, you might like to\n" +"try FlexLay. FlexLay is a level editor that supports several games,\n" "including SuperTux. It is an independent project.\n" "Webpage: http://pingus.seul.org/~grumbel/flexlay/" msgstr "" -#: src/leveleditor.cpp:997 -#, fuzzy +#: src/leveleditor.cpp:1012 msgid "- Level Editor's Help -" -msgstr "Lag brett" +msgstr "â Hjelp for brettlaging â" -#: src/leveleditor.cpp:1001 +#: src/leveleditor.cpp:1016 #, c-format msgid "Press any key to continue - Page %d/%d" -msgstr "" +msgstr "Trykk pÃ¥ ein tast for Ã¥ halda fram â side %d av %d" -#: src/misc.cpp:93 src/misc.cpp:152 +#: src/misc.cpp:97 src/misc.cpp:156 msgid "Start Game" msgstr "Start spelet" -#: src/misc.cpp:94 src/title.cpp:112 +#: src/misc.cpp:98 src/title.cpp:124 msgid "Contrib Levels" msgstr "Andre brett" -#: src/misc.cpp:95 src/misc.cpp:100 src/misc.cpp:175 src/misc.cpp:182 +#: src/misc.cpp:99 src/misc.cpp:104 src/misc.cpp:179 src/misc.cpp:186 msgid "Options" msgstr "Oppsett" -#: src/misc.cpp:97 +#: src/misc.cpp:101 msgid "Credits" msgstr "Rulletekst" -#: src/misc.cpp:98 +#: src/misc.cpp:102 msgid "Quit" msgstr "Avslutt" -#: src/misc.cpp:103 +#: src/misc.cpp:107 msgid "OpenGL " msgstr "OpenGL " -#: src/misc.cpp:105 +#: src/misc.cpp:109 msgid "OpenGL (not supported)" msgstr "OpenGL (ikkje støtta)" -#: src/misc.cpp:107 +#: src/misc.cpp:111 msgid "Fullscreen" msgstr "Fullskjerm " -#: src/misc.cpp:110 src/misc.cpp:115 +#: src/misc.cpp:114 src/misc.cpp:119 msgid "Sound " msgstr "Lyd " -#: src/misc.cpp:111 src/misc.cpp:116 +#: src/misc.cpp:115 src/misc.cpp:120 msgid "Music " msgstr "Musikk " -#: src/misc.cpp:118 +#: src/misc.cpp:122 msgid "Show FPS " msgstr "Vis FPS " -#: src/misc.cpp:119 +#: src/misc.cpp:123 msgid "Setup Keys" msgstr "Speltastar" -#: src/misc.cpp:122 +#: src/misc.cpp:126 msgid "Setup Joystick" msgstr "Styrespak" -#: src/misc.cpp:127 +#: src/misc.cpp:131 msgid "Keyboard Setup" msgstr "Tastaturoppsett" -#: src/misc.cpp:129 +#: src/misc.cpp:133 msgid "Left move" msgstr "Venstre" -#: src/misc.cpp:130 +#: src/misc.cpp:134 msgid "Right move" msgstr "Høgre" -#: src/misc.cpp:131 -#, fuzzy +#: src/misc.cpp:135 msgid "Up/Activate" -msgstr "Bruk" +msgstr "Opp/bruk" -#: src/misc.cpp:132 -#, fuzzy +#: src/misc.cpp:136 msgid "Down/Duck" -msgstr "Dukk" +msgstr "Ned/dukk" -#: src/misc.cpp:133 +#: src/misc.cpp:137 msgid "Jump" msgstr "Hopp" -#: src/misc.cpp:134 +#: src/misc.cpp:138 msgid "Power/Run" msgstr "Kraft/spring" -#: src/misc.cpp:140 +#: src/misc.cpp:144 msgid "Joystick Setup" msgstr "Styrespakoppsett" -#: src/misc.cpp:144 +#: src/misc.cpp:148 msgid "A button" msgstr "Knapp A" -#: src/misc.cpp:145 +#: src/misc.cpp:149 msgid "B button" msgstr "Knapp B" -#: src/misc.cpp:162 +#: src/misc.cpp:166 msgid "Save Game" msgstr "Lagra spel" -#: src/misc.cpp:172 src/misc.cpp:179 +#: src/misc.cpp:176 src/misc.cpp:183 msgid "Pause" msgstr "Pause" -#: src/misc.cpp:174 src/misc.cpp:181 +#: src/misc.cpp:178 src/misc.cpp:185 msgid "Continue" msgstr "Hald fram" -#: src/misc.cpp:177 +#: src/misc.cpp:181 msgid "Abort Level" msgstr "Avbryt brett" -#: src/misc.cpp:184 +#: src/misc.cpp:188 msgid "Quit Game" msgstr "Avslutt spel" -#: src/misc.cpp:186 +#: src/misc.cpp:190 msgid "Enter your name:" msgstr "Skriv inn namnet ditt:" -#: src/player.cpp:1240 -#, c-format -msgid "Good! x%d" -msgstr "" - -#: src/player.cpp:1242 -#, c-format -msgid "Great! x%d" -msgstr "" - -#: src/player.cpp:1244 -#, c-format -msgid "Awesome! x%d" -msgstr "" - -#: src/player.cpp:1246 -#, c-format -msgid "Incredible! x%d" -msgstr "" - -#: src/player.cpp:1248 -#, c-format -msgid "Godlike! ;-) x%d" -msgstr "" - -#: src/player.cpp:1250 -#, c-format -msgid "Unbelievable!! x%d" -msgstr "" - -#: src/statistics.cpp:113 -msgid "- Best Level Statistics -" -msgstr "" - -#: src/statistics.cpp:117 -msgid "Max score:" -msgstr "" - -#: src/statistics.cpp:137 -msgid "Max coins collected:" -msgstr "" - -#: src/statistics.cpp:139 -msgid "Max fragging:" -msgstr "" - -#: src/statistics.cpp:141 -msgid "Min time needed:" -msgstr "" - -#: src/statistics.cpp:170 -#, c-format -msgid "Max score: %d" -msgstr "" - -#: src/statistics.cpp:176 -#, c-format -msgid "Max coins collected: %d / %d" -msgstr "" - -#: src/statistics.cpp:180 -#, c-format -msgid "Max fragging: %d / %d" -msgstr "" - -#: src/statistics.cpp:184 -#, c-format -msgid "Min time needed: %d / %d" -msgstr "" - -#: src/title.cpp:374 +#: src/title.cpp:351 msgid "" "Copyright (c) 2003 SuperTux Devel Team\n" "This game comes with ABSOLUTELY NO WARRANTY. This is free software, and you\n" @@ -528,163 +443,64 @@ "og du kan kopiera det til andre under visse vilkÃ¥r. SjÃ¥ fila «COPYING»\n" "for meir informasjon.\n" -#: src/title.cpp:426 -#, fuzzy +#: src/title.cpp:408 msgid "Are you sure you want to delete slot" -msgstr "Er du sikker pÃ¥ at du vil sletta plass %d?" +msgstr "Er du sikker pÃ¥ at du vil sletta plass" -#: src/worldmap.cpp:952 +#: src/worldmap.cpp:802 msgid "GAMEOVER" msgstr "SPELET ER SLUTT" -#: src/worldmap.cpp:959 +#: src/worldmap.cpp:810 msgid "Total Statistics" -msgstr "" - -#: lib/app/setup.cpp:774 -#, c-format -msgid "" -"Usage: %s [OPTIONS] FILENAME\n" -"\n" -msgstr "" -"Bruk: %s [VAL] FILNAMN\n" -"\n" - -#: lib/app/setup.cpp:775 -#, fuzzy -msgid "" -"Display Options:\n" -" -f, --fullscreen Run in fullscreen mode.\n" -" -w, --window Run in window mode.\n" -" --opengl If OpenGL support was compiled in, this will tell\n" -" SuperTux to make use of it.\n" -" --sdl Use the SDL software graphical renderer\n" -"\n" -"Sound Options:\n" -" --disable-sound If sound support was compiled in, this will\n" -" disable sound for this session of the game.\n" -" --disable-music Like above, but this will disable music.\n" -"\n" -"Misc Options:\n" -" -j, --joystick NUM Use joystick NUM (default: 0)\n" -" --joymap XAXIS:YAXIS:A:B:START\n" -" Define how joystick buttons and axis should be mapped\n" -" --leveleditor Opens the leveleditor in a file.\n" -" --worldmap Opens the specified worldmap file.\n" -" --flip-levels Flip levels upside-down.\n" -" -d, --datadir DIR Load Game data from DIR (default: automatic)\n" -" --debug Enables the debug mode, which is useful for " -"developers.\n" -" --help Display a help message summarizing command-line\n" -" options, license and game controls.\n" -" --usage Display a brief message summarizing command-line " -"options.\n" -" --version Display the version of SuperTux you're running.\n" -"\n" -msgstr "" -"Skjermval:\n" -" --fullscreen Køyr spelet over heile skjermen.\n" -" -w, --window Køyr spelet i eit vindauge.\n" -" --opengl Bruk OpenGL viss dette er kompilert inn.\n" -" --sdl Bruk SDL-basert biletvising.\n" -"\n" -"Lydval:\n" -" --disable-sound SlÃ¥ av lydeffektar.\n" -" --disable-music SlÃ¥ av musikk.\n" -"\n" -"Ymse:\n" -" -j, --joystick NUM Bruk styrespak nummer NUM (standard: 0).\n" -" --joymap XAXIS:YAXIS:A:B:START\n" -" Definer oppsett av knappar og aksar pÃ¥ styrespaken.\n" -" --leveleditor Start brettredigering av ei fil.\n" -" --worldmap Opna valt verdskartfil.\n" -" -d, --datadir MAP Hent speldata frÃ¥ mappa MAP (standard: automatisk).\n" -" --debug Køyr i feilsøkjingsmodus. Nyttig for utviklarar.\n" -" --help Vis ei kort oversikt over kommandolinjeval,\n" -" lisensvilkÃ¥r og spelkontrollar.\n" -" --usage Vis ei kort oversikt over kommandolinjeval.\n" -" --version Vis versjonsnummer.\n" -"\n" - -#: lib/app/setup.cpp:834 -#, fuzzy, c-format -msgid "" -"Usage: %s [--fullscreen] [--opengl] [--disable-sound] [--disable-music] [--" -"debug] | [--usage | --help | --version] [--leveleditor] [--worldmap] [--flip-" -"levels] FILENAME\n" -msgstr "" -"Bruk: %s [--fullscreen] [--opengl] [--disable-sound] [--disable-music] [--" -"debug] | [--usage | --help | --version] [--leveleditor] [--worldmap] " -"FILNAMN\n" - -#: lib/gui/menu.cpp:67 -msgid "Yes" -msgstr "Ja" - -#: lib/gui/menu.cpp:68 -msgid "No" -msgstr "Nei" - -#: lib/gui/menu.cpp:236 -msgid "Up cursor" -msgstr "Pil opp" - -#: lib/gui/menu.cpp:239 -msgid "Down cursor" -msgstr "Pil ned" - -#: lib/gui/menu.cpp:242 -msgid "Left cursor" -msgstr "Pil venstre" - -#: lib/gui/menu.cpp:245 -msgid "Right cursor" -msgstr "Pil høgre" - -#: lib/gui/menu.cpp:248 -msgid "Return" -msgstr "Enter" +msgstr "Totalstatistikk" -#: lib/gui/menu.cpp:251 -msgid "Space" -msgstr "Mellomrom" +#: src/statistics.cpp:111 +msgid "- Best Level Statistics -" +msgstr "â Brettrekordar â" -#: lib/gui/menu.cpp:254 -msgid "Right Shift" -msgstr "Høgre Shift" +#: src/statistics.cpp:115 +#, c-format +msgid "Max score:" +msgstr "Største poengsum:" -#: lib/gui/menu.cpp:257 -msgid "Left Shift" -msgstr "Venstre Shift" +#: src/statistics.cpp:135 +#, c-format +msgid "Max coins collected:" +msgstr "Flest myntar:" -#: lib/gui/menu.cpp:260 -msgid "Right Control" -msgstr "Høgre Ctrl" +#: src/statistics.cpp:137 +#, c-format +msgid "Max fragging:" +msgstr "Mest knusing:" -#: lib/gui/menu.cpp:263 -msgid "Left Control" -msgstr "Venstre Ctrl" +#: src/statistics.cpp:139 +#, c-format +msgid "Min time needed:" +msgstr "Kortast tid brukt:" -#: lib/gui/menu.cpp:266 -msgid "Right Alt" -msgstr "Høgre Alt" +#: src/statistics.cpp:168 +#, c-format +msgid "Max score: %d" +msgstr "Flest poeng: %d" -#: lib/gui/menu.cpp:269 -msgid "Left Alt" -msgstr "Venstre Alt" +#: src/statistics.cpp:174 +#, c-format +msgid "Max coins collected: %d / %d" +msgstr "Flest myntar: %d/%d" -#~ msgid "Slot %d - Savegame" -#~ msgstr "Plass %d â lagra spel" +#: src/statistics.cpp:178 +#, c-format +msgid "Max fragging: %d / %d" +msgstr "Mest knusing: %d/%d" -#~ msgid "Slot %d - Free" -#~ msgstr "Plass %d â ledig" +#: src/statistics.cpp:182 +#, c-format +msgid "Min time needed: %d / %d" +msgstr "Kortast tid brukt: %d/%d" -#~ msgid " SuperTux " -#~ msgstr " SuperTux " +#: src/object/player.cpp:279 +#, c-format +msgid "New max combo: %d" +msgstr "Ny makskombo: %d" -#~ msgid "" -#~ "\n" -#~ " Please see the file \"README.txt\" for more details.\n" -#~ msgstr "" -#~ "\n" -#~ " SjÃ¥ fila «README.TXT» for meir informasjon.\n" |
From: Matze B. <mat...@us...> - 2004-12-10 20:29:22
|
Update of /cvsroot/super-tux/supertux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv805 Modified Files: AUTHORS Log Message: New Norwegian Translation Index: AUTHORS =================================================================== RCS file: /cvsroot/super-tux/supertux/AUTHORS,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- AUTHORS 25 Oct 2004 20:40:23 -0000 1.8 +++ AUTHORS 10 Dec 2004 20:29:12 -0000 1.9 @@ -65,7 +65,7 @@ Level Design ------------ - Marek Moeckel + Marek Möckel wa...@gm... Ingo Ruhnke @@ -87,6 +87,24 @@ Royalty free CDROMs and FTP sites sounds +Translation +----------- + + German - Matthias Braun / Marek Möckel + + Norwegion Nynorsk - Karl Ove Hufthammer + + Italian - Iknos + + French - Frederic Rodrigo + + Espaniol - Javier Beaumont + + Dutch - Frank van der Loo + + Portuguese - Ricardo Cruz + + More information and contacts ============================= |
From: Matze B. <mat...@us...> - 2004-12-07 21:02:47
|
Update of /cvsroot/super-tux/supertux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6727 Modified Files: TODO Log Message: TODO update Index: TODO =================================================================== RCS file: /cvsroot/super-tux/supertux/TODO,v retrieving revision 1.98 retrieving revision 1.99 diff -u -d -r1.98 -r1.99 --- TODO 29 Nov 2004 16:24:09 -0000 1.98 +++ TODO 7 Dec 2004 21:02:37 -0000 1.99 @@ -1,22 +1,25 @@ + TODO -- To do for Milestone2 - -http://super-tux.sf.net/ +Milestone 2 +~~~~~~~~~~~ +Documents and ideas: http://super-tux.sourceforge.net/milestone2 +Wiki: http://netpanzer.berlios.de/supertux + esp. http://netpanzer.berlios.de/supertux/index.php/Forest -High priority: milestone goals that should be implemented for next milestone -Medium priority: would be nice to have for next milestone, but should - be secondary to high priority goals -Low priority: things that should be fixed sometime + +Notes +~~~~~ +High priority [H]: milestone goals that should be implemented for next + milestone +Medium priority [M]: would be nice to have for next milestone, but should + be secondary to high priority goals +Low priority [L]: things that should be fixed sometime ?: Things that need to be discussed to determine whether or not they should be implemented -Todo ----- -H: high priority -M: medium priority -L: low priority -?: bug or feature? - - needs discussion +Programming +~~~~~~~~~~~ --Scons-- * [H] Add an install target - done (however scons is creating stupid .sconsign files at the install location :-/) @@ -81,26 +84,19 @@ without OO support in the scripting language. Other candidates are python, ruby and less likely java, mono/.net, surely no own invention, perl or 1 of these c-like scripting languages) - -[?] Default keyboard setup should change. Up will be needed for other features - like going through doors and looking up, etc. - Up arrow - Look up / activate - Down arrow - Look down / duck - Left arrow - Left move - Right arrow - Right move - Ctrl - Run / Power - Space - Jump - -[H] Worldmap should have a flag to allow to go to another map after finishing - a level from that one. - It might be cool to have a (place group in the worldmap file that would - allow such stuff as: levels, messages, wrapping and worldmap changing - (or even combinations). -[H] Change resolution to 800x600 - - Levels need to be updated to resolution - - half of the levels have been already updated - - some fixed levels still have "glitches". See the menu level where - some of the tiles are "wrong" and don't fit +[H] Create a "sound object" that is an object or area, that can be placed on the + map and constantly plays a .wav file to improve game athmosphere. + Good examples would be a water sound which can be placed at waterfalls, + a kuckoo sound that can be placed into the wood, bubling sound for lava, + ... +[?] Create a falling leaves particle system. (I.e. slowly falling leaves in the + background) along with nice leaves graphics. + - the problem here is that leaves don't fall of the sky and fir trees + don't have leaves :-/ +[H] Add a simple rock object that can be carried around +[H] Add a rope object on which tux is able to climb, also add a ? block that + emits a rope when hit +[H] redo trampolines [H] Buttjump related things - Should kill enemies with a certain range - Done--now needs to be tweaked @@ -117,18 +113,31 @@ - New forest tileset - Badguy sprites - Tux's buttjump animation - [M] Save score on per-level basis to make high-score [M] Save time on per-level basis to make low-time-score [M] Add bonus score for extra time left when finishing a level [M] when bumping a special with 2 blocks at once, it won't change direction [M] tux get killed if he kicks a iceblock while at the same time bouncing on - [L] Allow any object to be inside of a [?] box, ie. trampoline or badguy - Not sure if this would be gameplay wise. +Graphics +~~~~~~~~ + +[H] Graphics+Animations for the Yeti + (see also http://netpanzer.berlios.de/supertux/index.php/Yeti) +[H] Graphics for the 5 keys in the forest world, graphics for the castle door + with 5 key holes +[H] New tiles for the forest worldmap +[H] Create a graphics to visually present reset points. (Maybe a bell that + starts swinging once tux touched it?) +[M] Add graphics for ropes +[L] Create graphics for bubbles and soap (not necessary for milestone2) + +-new enemies need to be designed and added + Beyond Milestone2 ------------------ +~~~~~~~~~~~~~~~~~ - More things than just levels on the worldmap (similar to SMB3) - if we have a logical framerate we could record/play demos by simply storing the pressed keys in each frame... |
From: Matze B. <mat...@us...> - 2004-12-07 18:03:12
|
Update of /cvsroot/super-tux/supertux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27451 Modified Files: Jamfile Log Message: create message.pot not supertux.pot Index: Jamfile =================================================================== RCS file: /cvsroot/super-tux/supertux/Jamfile,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- Jamfile 2 Dec 2004 01:41:54 -0000 1.7 +++ Jamfile 7 Dec 2004 18:03:03 -0000 1.8 @@ -29,5 +29,5 @@ # add some additional files to package Package INSTALL NEWS README COPYING AUTHORS ChangeLog ; -MakePot data/locale/supertux.pot : $(TRANSLATABLE_SOURCES) ; -XGETTEXT_FLAGS on data/locale/supertux.pot += --language=C++ ; +MakePot data/locale/messages.pot : $(TRANSLATABLE_SOURCES) ; +XGETTEXT_FLAGS on data/locale/messages.pot += --language=C++ ; |
From: Matze B. <mat...@us...> - 2004-12-06 19:23:05
|
Update of /cvsroot/super-tux/supertux/data/levels/bonus1 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31842 Modified Files: de.po Log Message: fix Index: de.po =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/bonus1/de.po,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- de.po 6 Dec 2004 17:47:11 -0000 1.2 +++ de.po 6 Dec 2004 19:22:54 -0000 1.3 @@ -18,9 +18,8 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: data/levels/bonus1/bonus-level4.stl:5 -#, fuzzy msgid "Bonus Island Castle" -msgstr "Bonusinsel I" +msgstr "Bonusinsel I Burg" #: data/levels/bonus1/bonus-level5.stl:5 msgid "Area 42" |
From: Matze B. <mat...@us...> - 2004-12-06 17:59:52
|
Update of /cvsroot/super-tux/supertux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10928 Modified Files: TRANSLATORS Log Message: updated TRANSLATORS file Index: TRANSLATORS =================================================================== RCS file: /cvsroot/super-tux/supertux/TRANSLATORS,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- TRANSLATORS 16 Jul 2004 19:14:14 -0000 1.7 +++ TRANSLATORS 6 Dec 2004 17:59:34 -0000 1.8 @@ -1,80 +1,64 @@ +0. How to Translate +~~~~~~~~~~~~~~~~~~~~ -- Translation info - -http://super-tux.sf.net/ - -Last update: June 7, 2004 +* Install gettext +* get a cvs snapshot of supertux and do the usual autogen.sh, configure. + Make sure configure can find the xgettext application. + (ie. "checking for xgettext... xgettext") +* Run 'jam' and let it compile supertux and create all the messages.po files +* Go into data/locale and data/levels/*/ and in each dir do: + - In case you want to create a new translation do + msginit -i messages.pot -o $LANG.po + (where $LANG is the 2character handle of your language) + - In case you want to update an existing translation do + msgmerge -U $LANG.po messages.pot - == TRANSLATORS == +* Edit the .po files with your favourite Editor or with 1 of the GUI tools + below. +* Send the translated .po files to the supertux-devel mailing list. 1. Notes for Translators -~~~~~~~~~~~~~~~~~~~~~~~~ +~~~~~~~~~~~~~~~~~~~~~~~~~ -* If there isn't a good translation for some term (ie. fullscreen), you might consider - to just keep it. It's better than making the user confused. +* If there isn't a good translation for some term (ie. fullscreen), you might + consider to just keep it. It's better than making the user confused. -* In English, there is only one singular second person mode (You). If your language does - have more than one - a personal and impersonal - remember that this is a game, so you - should use the personal one. And if it is possible to ommit it in your language, it might - be a good idea. +* In English, there is only one singular second person mode (You). If your + language does have more than one - a personal and impersonal - remember that + this is a game, so you should use the personal one. And if it is possible to + ommit it in your language, it might be a good idea. * Names like SuperTux, Tux, Penny or Nolok should not be translated. If you - really think one of these to be a too strange word for your people, first inform us at - our mailing list. - Minor characters like Mr. Ice Block can (and should) be translated. + really think one of these to be a too strange word for your people, first + inform us at our mailing list. Minor characters like Mr. Ice Block can (and + should) be translated. A couple of notes: -* If somewhere in the game, after translating a string, it doesn't look well (bad - aligment, overlaps other text...), let us know - will be fixed. - -* Currently, only the game itself is translatable. Data files, like levels, - credits, story... are not yet translatable. - -All in all, translating lots of strings can be boring and time consuming, but it -worths when lookins at the results ;-) +* If somewhere in the game, after translating a string, it doesn't look well + (bad aligment, overlaps other text...), let us know - we will fix it. -2. Programs to Aid Translation -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +2. GUI Tools +~~~~~~~~~~~~~ - KBabel - a long dated KDE program that has been maturing over the years, and it's - really handy by now. + KBabel - a long dated KDE program that has been maturing over the years, + and it's really handy by now. poEdit - a multi-platform po editor (runs under Windows and Unix). URL: http://poedit.sourceforge.net/ - (X)Emacs - a commonly used program for translating with the respective plugin. + (X)Emacs - a commonly used program for translating with the respective + plugin. QTranslator - made by Qt, has the advantage of running in several platforms. - PO files are written in ASCII and are pretty intuitive, so they can be used by any text - editor. But it would be wise to use a program made for that effect. If not possible, - use a text editor with highlighting for PO files. - - - If all of this is new to you, the translation file that you should use is the supertux.pot - that is inside the po/ root folder. Rename it to your language (ie. Spanish - es.po) and - then open it with an appropriate program. - After translating the file, add an entry of your language to the LINGUAS file (ie. Spanish - es) - and run 'make update-po'. Then a binary file will be created. In order to make SuperTux using - it, you will have to install it ('make install'). - - To translate data files, you'll have to use a text editor, since we don't follow any - convention. To translate a level's tile, to French, for instance, just do this: - (name "Hello World!") - (name-fr "Bonjour Monde!") - Other data files, like texts in data/, can be translated the same way: - (text "Hello World! - Bye World!") - (text-fr "Bonjour Monde! - Au revoir Monde!") - - - == DEVELOPERS == + PO files are written in ASCII and are pretty intuitive, so they + can be used by any text editor. But it would be wise to use a + program made for that effect. If not possible, use a text editor + with highlighting for PO files. -1. Translatable Strings +3. Note for developers ~~~~~~~~~~~~~~~~~~~~~~~ Output should not be translated, since their purpose is mainly for debugging. - However, command description (ie. --help) should obviously be translated. Messages - that give the user a solution for a problem, might be translatable, as well. - - Parametars shouldn't also be translatable. It breaks scripting, besides advanced users, - the ones that will make use of this, usually don't like it. - + However, command description (ie. --help) should obviously be translated. + Messages that give the user a solution for a problem, might be translatable, + as well. + Parametars shouldn't be translatable. It breaks scripting. The SuperTux Team |
Update of /cvsroot/super-tux/supertux/data/levels/bonus1 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7813/data/levels/bonus1 Modified Files: abednego-level1.stl abednego-level2.stl abednego-level3.stl abednego-level4.stl bonus-level1.stl bonus-level2.stl bonus-level3.stl bonus-level4.stl bonus-level5.stl de.po extro.txt matr1x-level1.stl matr1x-level2.stl matr1x-level3.stl thompson-level1.stl thompson-level2.stl torfi-level1.stl torfi-level2.stl torfi-level3.stl wansti-level2.stl wansti-level3.stl wansti-level4.stl wansti-level5.stl Log Message: -Fix bugs where resources from source directory weren't always found -Create a complete german translation as example Index: abednego-level2.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/bonus1/abednego-level2.stl,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- abednego-level2.stl 26 Aug 2004 22:59:22 -0000 1.4 +++ abednego-level2.stl 6 Dec 2004 17:47:09 -0000 1.5 @@ -2,7 +2,7 @@ (supertux-level (version 1) (author "Abednego") - (name "Dungeons but no Dragons") + (name (_ "Dungeons but no Dragons")) (width 300) (height 15) (start_pos_x 100) Index: torfi-level1.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/bonus1/torfi-level1.stl,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- torfi-level1.stl 14 Sep 2004 20:50:02 -0000 1.6 +++ torfi-level1.stl 6 Dec 2004 17:47:11 -0000 1.7 @@ -1,7 +1,7 @@ ;SuperTux-Level (supertux-level (version 1) - (name "A good start") + (name (_ "A good start")) (author "Torfi Gunnarsson") (music "Mortimers_chipdisko.mod") (background "arctis.jpg") Index: abednego-level4.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/bonus1/abednego-level4.stl,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- abednego-level4.stl 25 Oct 2004 18:58:23 -0000 1.3 +++ abednego-level4.stl 6 Dec 2004 17:47:09 -0000 1.4 @@ -2,7 +2,7 @@ (supertux-level (version 1) (author "Abednego") - (name "Train Leaves in One Minute") + (name (_ "Train Leaves in One Minute")) (width 500) (height 15) (start_pos_x 100) Index: wansti-level4.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/bonus1/wansti-level4.stl,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- wansti-level4.stl 23 Nov 2004 13:41:15 -0000 1.3 +++ wansti-level4.stl 6 Dec 2004 17:47:12 -0000 1.4 @@ -2,7 +2,7 @@ (supertux-level (version 1) (author "SuperTux Team") - (name "Collapse Imminent!") + (name (_ "Collapse Imminent!")) (width 500) (height 15) (start_pos_x 100) Index: matr1x-level2.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/bonus1/matr1x-level2.stl,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- matr1x-level2.stl 26 Aug 2004 22:59:22 -0000 1.3 +++ matr1x-level2.stl 6 Dec 2004 17:47:11 -0000 1.4 @@ -2,7 +2,7 @@ (supertux-level (version 1) (author "Matr1x") - (name "Something Fishy") + (name (_ "Something Fishy")) (width 505) (height 15) (start_pos_x 100) Index: bonus-level5.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/bonus1/bonus-level5.stl,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- bonus-level5.stl 23 Nov 2004 13:41:14 -0000 1.3 +++ bonus-level5.stl 6 Dec 2004 17:47:10 -0000 1.4 @@ -2,7 +2,7 @@ (supertux-level (version 1) (author "SuperTux Team") - (name "Area 42") + (name (_ "Area 42")) (width 1042) (height 15) (start_pos_x 100) Index: matr1x-level3.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/bonus1/matr1x-level3.stl,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- matr1x-level3.stl 16 Aug 2004 23:52:19 -0000 1.2 +++ matr1x-level3.stl 6 Dec 2004 17:47:11 -0000 1.3 @@ -2,7 +2,7 @@ (supertux-level (version 1) (author "Matr1x") - (name "Fire In The Sky") + (name (_ "Fire In The Sky")) (width 500) (height 15) (start_pos_x 100) Index: matr1x-level1.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/bonus1/matr1x-level1.stl,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- matr1x-level1.stl 16 Aug 2004 23:52:19 -0000 1.2 +++ matr1x-level1.stl 6 Dec 2004 17:47:11 -0000 1.3 @@ -2,7 +2,7 @@ (supertux-level (version 1) (author "matr1x") - (name "Pipe Down Over There") + (name (_ "Pipe Down Over There")) (width 500) (height 15) (start_pos_x 100) Index: bonus-level1.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/bonus1/bonus-level1.stl,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- bonus-level1.stl 23 Nov 2004 13:41:12 -0000 1.4 +++ bonus-level1.stl 6 Dec 2004 17:47:09 -0000 1.5 @@ -2,7 +2,7 @@ (supertux-level (version 1) (author "SuperTux Team") - (name "Bonus Dias!") + (name (_ "Bonus Dias!")) (width 300) (height 15) (start_pos_x 100) Index: thompson-level1.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/bonus1/thompson-level1.stl,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- thompson-level1.stl 26 Aug 2004 22:59:22 -0000 1.3 +++ thompson-level1.stl 6 Dec 2004 17:47:11 -0000 1.4 @@ -2,7 +2,7 @@ (supertux-level (version 1) (author "Jason Thompson") - (name "Have I been here before?") + (name (_ "Have I been here before?")) (width 215) (height 15) (start_pos_x 100) Index: wansti-level2.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/bonus1/wansti-level2.stl,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- wansti-level2.stl 23 Nov 2004 13:41:14 -0000 1.3 +++ wansti-level2.stl 6 Dec 2004 17:47:12 -0000 1.4 @@ -2,7 +2,7 @@ (supertux-level (version 1) (author "SuperTux Team") - (name "Cave Of Mirrors") + (name (_ "Cave Of Mirrors")) (width 500) (height 15) (start_pos_x 170) Index: de.po =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/bonus1/de.po,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- de.po 2 Dec 2004 01:41:54 -0000 1.1 +++ de.po 6 Dec 2004 17:47:11 -0000 1.2 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: bonus 1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-02 02:33+0100\n" +"POT-Creation-Date: 2004-12-06 18:08+0100\n" "PO-Revision-Date: 2004-12-02 02:34+0100\n" "Last-Translator: <ma...@br...>\n" "Language-Team: German <de...@li...>\n" @@ -17,13 +17,66 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: data/levels/bonus1/bonus-level4.stl:5 +#, fuzzy +msgid "Bonus Island Castle" +msgstr "Bonusinsel I" + +#: data/levels/bonus1/bonus-level5.stl:5 +msgid "Area 42" +msgstr "Area 42" + +#: data/levels/bonus1/info:3 data/levels/bonus1/worldmap.stwm:4 +msgid "Bonus Island I" +msgstr "Bonusinsel I" + +#: data/levels/bonus1/matr1x-level1.stl:5 +msgid "Pipe Down Over There" +msgstr "Leg die Rohre mal herüber" + +#: data/levels/bonus1/matr1x-level2.stl:5 +msgid "Something Fishy" +msgstr "Etwas fischiges" + +#: data/levels/bonus1/matr1x-level3.stl:5 +msgid "Fire In The Sky" +msgstr "Feuer im Himmel" + #: data/levels/bonus1/wansti-level1.stl:5 msgid "Semi-Frozen" msgstr "Halb-Gefroren" -#: data/levels/bonus1/worldmap.stwm:4 -msgid "Bonus Island I" -msgstr "Bonusinsel I" +#: data/levels/bonus1/wansti-level2.stl:5 +msgid "Cave Of Mirrors" +msgstr "Spiegelsaal" + +#: data/levels/bonus1/wansti-level3.stl:5 +msgid "A Maze In The Sky" +msgstr "Ein Labyrinth im Himmel" + +#: data/levels/bonus1/wansti-level4.stl:5 +msgid "Collapse Imminent!" +msgstr "Einsturzgefährdet" + +#: data/levels/bonus1/wansti-level5.stl:5 +msgid "Tip Of The Iceberg" +msgstr "Die Spietze des Eisbergs" + +#: data/levels/bonus1/abednego-level1.stl:5 +msgid "Flight Test" +msgstr "Flugprüfung" + +#: data/levels/bonus1/abednego-level2.stl:5 +msgid "Dungeons but no Dragons" +msgstr "Verliese, aber keine Drachen" + +#: data/levels/bonus1/abednego-level3.stl:5 +msgid "Lies!" +msgstr "Lügen!" + +#: data/levels/bonus1/abednego-level4.stl:5 +msgid "Train Leaves in One Minute" +msgstr "Der Zug fährt in einer Minute ab" #: data/levels/bonus1/worldmap.stwm:131 msgid "You found a secret place!" @@ -76,3 +129,85 @@ #: data/levels/bonus1/worldmap.stwm:207 msgid "Warp home" msgstr "Nach Hause beamen" + +#: data/levels/bonus1/thompson-level1.stl:5 +msgid "Have I been here before?" +msgstr "War ich hier schon mal?" + +#: data/levels/bonus1/thompson-level2.stl:5 +msgid "Bad Guys Stink!" +msgstr "Monster sind doof!" + +#: data/levels/bonus1/torfi-level1.stl:4 +msgid "A good start" +msgstr "Ein guter Anfang" + +#: data/levels/bonus1/torfi-level2.stl:5 +msgid "Too easy" +msgstr "Zu einfach" + +#: data/levels/bonus1/torfi-level3.stl:5 +msgid "Still too easy" +msgstr "Immer noch zu einfach" + +#: data/levels/bonus1/extro.txt:3 +msgid "" +"-Congratulations!\n" +"\n" +"#You have successfully finished\n" +"#Bonus Island I\n" +"\n" +"\tfeaturing levels contributed by\n" +"\tJason W. Thompson\n" +"\tTorfi Gunnarsson\n" +"\tAbednego\n" +"\tMatr1x\n" +"\n" +"\t\n" +"#If you didn't clear all levels yet,\n" +"#find your way back home and take \n" +"#another path. There is still more\n" +"#challenge waiting for you!\n" +"\n" +"#And there is a secret level to be\n" +"#found as well...\n" +"\t\n" +"#A big \"Thank you\" goes out to\n" +"#everyone who contributed to this\n" +"#release. We hope you enjoyed it!" +msgstr "" +"-Herzlichen Glückwunsch!\n" +"\n" +"#Du hast die Bonusinsel I\n" +"#erfolgreich abgeschlossen.\n" +"\n" +"\tPräsentiert wurden Levels von\n" +"\tJason W. Thompson\n" +"\tTorfi Gunnarsson\n" +"\tAbednego\n" +"\tMatr1x\n" +"\n" +"\t\n" +"#Wenn du noch nicht alle Levels gespielt\n" +"#hast suche den Weg zurück nach Hause\n" +"#und gehe einen anderen Weg. Es erwarten\n" +"#dich noch mehr Herausforderungen!\n" +"\n" +"#Und man kann auch einen geheimen Level\n" +"#entdecken...\n" +"\n" +"#Ein herzliches \"Dankeschön\" an alle\n" +"#die an diesem Release mitgewirkt haben.\n" +"#Wir hoffen es hat ihnen gefallen!" + +#: data/levels/bonus1/bonus-level1.stl:5 +msgid "Bonus Dias!" +msgstr "Bonus Dias!" + +#: data/levels/bonus1/bonus-level2.stl:5 +msgid "Castle Gate" +msgstr "Burgtor" + +#: data/levels/bonus1/bonus-level3.stl:5 +msgid "A Long Way Home" +msgstr "Ein langer Weg nach Hause" Index: torfi-level3.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/bonus1/torfi-level3.stl,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- torfi-level3.stl 14 Sep 2004 20:50:02 -0000 1.4 +++ torfi-level3.stl 6 Dec 2004 17:47:12 -0000 1.5 @@ -2,7 +2,7 @@ (supertux-level (version 1) (author "Torfi Gunnarsson") - (name "Still too easy") + (name (_ "Still too easy")) (width 200) (height 15) (start_pos_x 100) Index: abednego-level3.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/bonus1/abednego-level3.stl,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- abednego-level3.stl 26 Aug 2004 22:59:22 -0000 1.4 +++ abednego-level3.stl 6 Dec 2004 17:47:09 -0000 1.5 @@ -2,7 +2,7 @@ (supertux-level (version 1) (author "Abednego") - (name "Lies!") + (name (_ "Lies!")) (width 300) (height 15) (start_pos_x 100) Index: torfi-level2.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/bonus1/torfi-level2.stl,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- torfi-level2.stl 14 Sep 2004 20:50:02 -0000 1.5 +++ torfi-level2.stl 6 Dec 2004 17:47:11 -0000 1.6 @@ -2,7 +2,7 @@ (supertux-level (version 1) (author "Torfi Gunnarsson") - (name "Too easy") + (name (_ "Too easy")) (width 240) (height 15) (start_pos_x 100) Index: abednego-level1.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/bonus1/abednego-level1.stl,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- abednego-level1.stl 26 Aug 2004 22:59:22 -0000 1.4 +++ abednego-level1.stl 6 Dec 2004 17:47:09 -0000 1.5 @@ -2,7 +2,7 @@ (supertux-level (version 1) (author "Abednego") - (name "Flight Test") + (name (_ "Flight Test")) (width 550) (height 15) (start_pos_x 100) Index: extro.txt =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/bonus1/extro.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- extro.txt 5 Dec 2004 16:57:11 -0000 1.1 +++ extro.txt 6 Dec 2004 17:47:11 -0000 1.2 @@ -20,8 +20,8 @@ #And there is a secret level to be #found as well... -#A big "Thank you" goes out to +#A big \"Thank you\" goes out to #everyone who contributed to this -#release. We hope you enjoyed it!)) +#release. We hope you enjoyed it!")) ) Index: bonus-level3.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/bonus1/bonus-level3.stl,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- bonus-level3.stl 23 Nov 2004 13:41:13 -0000 1.4 +++ bonus-level3.stl 6 Dec 2004 17:47:09 -0000 1.5 @@ -2,7 +2,7 @@ (supertux-level (version 1) (author "SuperTux Team") - (name "A Long Way Home") + (name (_ "A Long Way Home")) (width 500) (height 15) (start_pos_x 100) Index: thompson-level2.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/bonus1/thompson-level2.stl,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- thompson-level2.stl 26 Aug 2004 22:59:22 -0000 1.4 +++ thompson-level2.stl 6 Dec 2004 17:47:11 -0000 1.5 @@ -2,7 +2,7 @@ (supertux-level (version 1) (author "Jason W. Thompson") - (name "Bad Guys Stink!") + (name (_ "Bad Guys Stink!")) (width 500) (height 15) (start_pos_x 100) Index: wansti-level3.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/bonus1/wansti-level3.stl,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- wansti-level3.stl 23 Nov 2004 13:41:15 -0000 1.5 +++ wansti-level3.stl 6 Dec 2004 17:47:12 -0000 1.6 @@ -2,7 +2,7 @@ (supertux-level (version 1) (author "SuperTux Team") - (name "A Maze In The Sky") + (name (_ "A Maze In The Sky")) (width 515) (height 15) (start_pos_x 100) Index: bonus-level4.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/bonus1/bonus-level4.stl,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- bonus-level4.stl 23 Nov 2004 13:41:14 -0000 1.3 +++ bonus-level4.stl 6 Dec 2004 17:47:10 -0000 1.4 @@ -2,7 +2,7 @@ (supertux-level (version 1) (author "SuperTux Team") - (name "Bonus Island Castle") + (name (_ "Bonus Island Castle")) (width 500) (height 15) (start_pos_x 100) Index: wansti-level5.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/bonus1/wansti-level5.stl,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- wansti-level5.stl 23 Nov 2004 13:41:15 -0000 1.3 +++ wansti-level5.stl 6 Dec 2004 17:47:12 -0000 1.4 @@ -2,7 +2,7 @@ (supertux-level (version 1) (author "SuperTux Team") - (name "Tip Of The Iceberg") + (name (_ "Tip Of The Iceberg")) (width 550) (height 15) (start_pos_x 100) Index: bonus-level2.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/bonus1/bonus-level2.stl,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- bonus-level2.stl 23 Nov 2004 13:41:12 -0000 1.4 +++ bonus-level2.stl 6 Dec 2004 17:47:09 -0000 1.5 @@ -2,7 +2,7 @@ (supertux-level (version 1) (author "SuperTux Team") - (name "Castle Gate") + (name (_ "Castle Gate")) (width 500) (height 15) (start_pos_x 100) |
Update of /cvsroot/super-tux/supertux/data/levels/world1 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7813/data/levels/world1 Modified Files: de.po level1.stl level10.stl level11.stl level12.stl level13.stl level14.stl level15.stl level16.stl level17.stl level18.stl level19.stl level2.stl level20.stl level21.stl level22.stl level23.stl level24.stl level25.stl level26.stl level4.stl level5.stl level6.stl level7.stl level8.stl level9.stl Log Message: -Fix bugs where resources from source directory weren't always found -Create a complete german translation as example Index: level1.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/world1/level1.stl,v retrieving revision 1.22 retrieving revision 1.23 diff -u -d -r1.22 -r1.23 --- level1.stl 2 Dec 2004 01:41:55 -0000 1.22 +++ level1.stl 6 Dec 2004 17:47:13 -0000 1.23 @@ -3,9 +3,6 @@ (version 1) (author "SuperTux Team") (name (_ "Welcome to Antarctica")) - (name-pt_PT "Bem-vindo à Antártida") - (name-de "Willkommen in Antarctica") - (name-es "Bienvenido a la Antártida") (width 310) (height 19) (start_pos_x 100) Index: level21.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/world1/level21.stl,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- level21.stl 23 Nov 2004 13:41:19 -0000 1.15 +++ level21.stl 6 Dec 2004 17:47:18 -0000 1.16 @@ -2,7 +2,7 @@ (supertux-level (version 1) (author "SuperTux Team") - (name "A Path in the Clouds") + (name (_ "A Path in the Clouds")) (width 525) (height 19) (start_pos_x 100) Index: level16.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/world1/level16.stl,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- level16.stl 23 Nov 2004 13:41:18 -0000 1.16 +++ level16.stl 6 Dec 2004 17:47:16 -0000 1.17 @@ -2,10 +2,7 @@ (supertux-level (version 1) (author "SuperTux Team") - (name "Living in a Fridge") - (name-pt_PT "Vivendo numa Frigideira") - (name-de "Leben im Kühlschrank") - (name-es "Viviendo en un frigorÃfico") + (name (_ "Living in a Fridge")) (width 510) (height 19) (start_pos_x 100) Index: level17.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/world1/level17.stl,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- level17.stl 23 Nov 2004 13:41:18 -0000 1.16 +++ level17.stl 6 Dec 2004 17:47:17 -0000 1.17 @@ -2,10 +2,7 @@ (supertux-level (version 1) (author "SuperTux Team") - (name "'...or is it just me?'") - (name-pt_PT "'... ou é apenas de mim?'") - (name-de "'...oder bin ich das?'") - (name-es "'...o, ¿eso es solo mio?'") + (name (_ "'...or is it just me?'")) (width 515) (height 19) (start_pos_x 100) Index: level6.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/world1/level6.stl,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- level6.stl 23 Nov 2004 13:41:21 -0000 1.18 +++ level6.stl 6 Dec 2004 17:47:37 -0000 1.19 @@ -2,10 +2,7 @@ (supertux-level (version 1) (author "SuperTux Team") - (name "The Frosted Fields") - (name-pt_PT "Os Campos Congelados") - (name-de "Vereiste Felder") - (name-es "Los campos helados") + (name (_ "The Frosted Fields")) (width 510) (height 19) (start_pos_x 100) Index: level8.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/world1/level8.stl,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- level8.stl 23 Nov 2004 13:41:21 -0000 1.20 +++ level8.stl 6 Dec 2004 17:47:38 -0000 1.21 @@ -2,10 +2,7 @@ (supertux-level (version 1) (author "SuperTux Team") - (name "Stone Cold") - (name-pt_PT "Pedra Gelada") - (name-de "Kalt wie Stein") - (name-es "Piedra frÃa") + (name (_ "Stone Cold")) (width 520) (height 19) (start_pos_x 100) Index: level14.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/world1/level14.stl,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- level14.stl 23 Nov 2004 13:41:17 -0000 1.20 +++ level14.stl 6 Dec 2004 17:47:15 -0000 1.21 @@ -2,10 +2,7 @@ (supertux-level (version 1) (author "SuperTux Team") - (name "Entrance to the Cave") - (name-pt_PT "Entrada para a Gruta") - (name-de "Eingang der Höhle") - (name-es "Entrada a la cueva") + (name (_ "Entrance to the Cave")) (width 510) (height 19) (start_pos_x 100) Index: level19.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/world1/level19.stl,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- level19.stl 23 Nov 2004 13:41:19 -0000 1.17 +++ level19.stl 6 Dec 2004 17:47:18 -0000 1.18 @@ -2,7 +2,7 @@ (supertux-level (version 1) (author "SuperTux Team") - (name "Miyamoto Monument") + (name (_ "Miyamoto Monument")) (width 505) (height 19) (start_pos_x 100) Index: level2.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/world1/level2.stl,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- level2.stl 2 Dec 2004 01:41:56 -0000 1.20 +++ level2.stl 6 Dec 2004 17:47:18 -0000 1.21 @@ -3,9 +3,6 @@ (version 1) (author "SuperTux Team") (name (_ "The Journey Begins")) - (name-pt_PT "A Aventura Começa") - (name-de "Das Abenteuer beginnt") - (name-es "La aventura comienza") (width 300) (height 19) (start_pos_x 100) Index: level10.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/world1/level10.stl,v retrieving revision 1.22 retrieving revision 1.23 diff -u -d -r1.22 -r1.23 --- level10.stl 23 Nov 2004 13:41:16 -0000 1.22 +++ level10.stl 6 Dec 2004 17:47:13 -0000 1.23 @@ -2,10 +2,7 @@ (supertux-level (version 1) (author "SuperTux Team") - (name "23rd Airborne") - (name-de "23 Mann Luftverteidigung") - (name-es "23º aerotransportado") - (name-pt_PT "23º aerotransportado") + (name (_ "23rd Airborne")) (width 515) (height 19) (start_pos_x 100) Index: level12.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/world1/level12.stl,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- level12.stl 23 Nov 2004 13:41:17 -0000 1.19 +++ level12.stl 6 Dec 2004 17:47:14 -0000 1.20 @@ -2,10 +2,7 @@ (supertux-level (version 1) (author "SuperTux Team") - (name "Into the Stars") - (name-pt_PT "Até à s Estrelas") - (name-de "Griff nach den Sternen") - (name-es "Entre las estrellas") + (name (_ "Into the Stars")) (width 520) (height 19) (start_pos_x 100) Index: level5.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/world1/level5.stl,v retrieving revision 1.24 retrieving revision 1.25 diff -u -d -r1.24 -r1.25 --- level5.stl 16 Sep 2004 18:59:05 -0000 1.24 +++ level5.stl 6 Dec 2004 17:47:36 -0000 1.25 @@ -2,7 +2,7 @@ (supertux-level (version 1) (author "Philippe Saint-Pierre") - (name "The Somewhat Smaller Bath") + (name (_ "The Somewhat Smaller Bath")) (width 355) (height 19) (start_pos_x 100) Index: de.po =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/world1/de.po,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- de.po 5 Dec 2004 16:57:12 -0000 1.2 +++ de.po 6 Dec 2004 17:47:13 -0000 1.3 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: world 1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-12-05 17:38+0100\n" +"POT-Creation-Date: 2004-12-06 10:10+0100\n" "PO-Revision-Date: 2004-12-02 02:25+0100\n" "Last-Translator: <ma...@br...>\n" "Language-Team: German <de...@li...>\n" @@ -66,7 +66,75 @@ #: data/levels/world1/worldmap.stwm:4 msgid "Icyisland" -msgstr "" +msgstr "Eisige Insel" + +#: data/levels/world1/level10.stl:5 +msgid "23rd Airborne" +msgstr "23 Mann Luftverteidigung" + +#: data/levels/world1/level11.stl:5 +msgid "Night Chill" +msgstr "Kalte Nacht" + +#: data/levels/world1/level12.stl:5 +msgid "Into the Stars" +msgstr "Zu den Sternen" + +#: data/levels/world1/level13.stl:5 +msgid "Above the Arctic Skies" +msgstr "Über den Wolken" + +#: data/levels/world1/level14.stl:5 +msgid "Entrance to the Cave" +msgstr "Höhleneingang" + +#: data/levels/world1/level15.stl:5 +msgid "Under the Ice" +msgstr "Unter dem Eis" + +#: data/levels/world1/level16.stl:5 +msgid "Living in a Fridge" +msgstr "Leben im Kühlschrank" + +#: data/levels/world1/level17.stl:5 +msgid "'...or is it just me?'" +msgstr "'... oder bin ich das?'" + +#: data/levels/world1/level18.stl:5 +msgid "Ice in the Hole" +msgstr "Eisloch" + +#: data/levels/world1/level19.stl:5 +msgid "Miyamoto Monument" +msgstr "Miyamoto Monument" + +#: data/levels/world1/level20.stl:5 +msgid "End of the Tunnel" +msgstr "Licht am Ende des Tunnels" + +#: data/levels/world1/level21.stl:5 +msgid "A Path in the Clouds" +msgstr "Ein Pfad durch die Wolken" + +#: data/levels/world1/level22.stl:5 +msgid "No more Mr Ice Guy" +msgstr "Genug Eisjungs" + +#: data/levels/world1/level23.stl:5 +msgid "The Escape" +msgstr "Die Flucht" + +#: data/levels/world1/level24.stl:5 +msgid "The Shattered Bridge" +msgstr "Brückentrümmer" + +#: data/levels/world1/level25.stl:5 +msgid "Arctic Ruins" +msgstr "arktische Ruinen" + +#: data/levels/world1/level26.stl:5 +msgid "The Castle of Nolok" +msgstr "Noloks Festung" #: data/levels/world1/level1.stl:5 msgid "Welcome to Antarctica" @@ -78,7 +146,31 @@ #: data/levels/world1/level3.stl:5 msgid "Via Nostalgica" -msgstr "" +msgstr "Nostalgiestraße" + +#: data/levels/world1/level4.stl:5 +msgid "Tobgle Road" +msgstr "Tobgle Weg" + +#: data/levels/world1/level5.stl:5 +msgid "The Somewhat Smaller Bath" +msgstr "Der etwas schmallere Weg" + +#: data/levels/world1/level6.stl:5 +msgid "The Frosted Fields" +msgstr "Eisige Felder" + +#: data/levels/world1/level7.stl:5 +msgid "Oh no! More Snowballs!" +msgstr "Oh Nein! Noch mehr Schneebälle!" + +#: data/levels/world1/level8.stl:5 +msgid "Stone Cold" +msgstr "Steinkalt" + +#: data/levels/world1/level9.stl:5 +msgid "Grumbel's Sense of Snow" +msgstr "Grumbels Schneegespür" #: data/levels/world1/extro.txt:7 #, fuzzy Index: level23.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/world1/level23.stl,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- level23.stl 23 Nov 2004 13:41:20 -0000 1.15 +++ level23.stl 6 Dec 2004 17:47:18 -0000 1.16 @@ -2,7 +2,7 @@ (supertux-level (version 1) (author "SuperTux Team") - (name "The Escape") + (name (_ "The Escape")) (width 515) (height 19) (start_pos_x 100) Index: level15.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/world1/level15.stl,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- level15.stl 23 Nov 2004 13:41:17 -0000 1.16 +++ level15.stl 6 Dec 2004 17:47:15 -0000 1.17 @@ -2,10 +2,7 @@ (supertux-level (version 1) (author "SuperTux Team") - (name "Under the Ice") - (name-pt_PT "Debaixo do Gelo") - (name-de "Unter dem Eis") - (name-es "Bajo el hielo") + (name (_ "Under the Ice")) (width 510) (height 19) (start_pos_x 100) Index: level7.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/world1/level7.stl,v retrieving revision 1.23 retrieving revision 1.24 diff -u -d -r1.23 -r1.24 --- level7.stl 23 Oct 2004 21:14:39 -0000 1.23 +++ level7.stl 6 Dec 2004 17:47:37 -0000 1.24 @@ -2,10 +2,7 @@ (supertux-level (version 1) (author "Voluptuous Pachyderm") - (name "Oh no! More Snowballs!") - (name-pt_PT "Oh não! Mais Bolas de Neve!") - (name-de "Oh nein! Noch mehr Schneebälle!") - (name-es "¡O no!¡Más bolas de nieve!") + (name (_ "Oh no! More Snowballs!")) (width 525) (height 19) (start_pos_x 100) Index: level25.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/world1/level25.stl,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- level25.stl 23 Nov 2004 13:41:20 -0000 1.11 +++ level25.stl 6 Dec 2004 17:47:36 -0000 1.12 @@ -2,7 +2,7 @@ (supertux-level (version 1) (author "SuperTux Team") - (name "Arctic Ruins") + (name (_ "Arctic Ruins")) (width 500) (height 19) (start_pos_x 100) Index: level26.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/world1/level26.stl,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- level26.stl 23 Nov 2004 13:41:20 -0000 1.15 +++ level26.stl 6 Dec 2004 17:47:36 -0000 1.16 @@ -2,7 +2,7 @@ (supertux-level (version 1) (author "SuperTux Team") - (name "The Castle of Nolok") + (name (_ "The Castle of Nolok")) (width 525) (height 19) (start_pos_x 100) Index: level24.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/world1/level24.stl,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- level24.stl 23 Nov 2004 13:41:20 -0000 1.18 +++ level24.stl 6 Dec 2004 17:47:18 -0000 1.19 @@ -2,7 +2,7 @@ (supertux-level (version 1) (author "SuperTux Team") - (name "The Shattered Bridge") + (name (_ "The Shattered Bridge")) (width 525) (height 19) (start_pos_x 100) Index: level18.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/world1/level18.stl,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- level18.stl 23 Nov 2004 13:41:18 -0000 1.17 +++ level18.stl 6 Dec 2004 17:47:17 -0000 1.18 @@ -2,10 +2,7 @@ (supertux-level (version 1) (author "SuperTux Team") - (name "Ice in the Hole") - (name-pt_PT "Gelo no Buraco") - (name-de "Eisiges Loch") - (name-es "Hielo en el agujero") + (name (_ "Ice in the Hole")) (width 500) (height 19) (start_pos_x 100) Index: level13.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/world1/level13.stl,v retrieving revision 1.21 retrieving revision 1.22 diff -u -d -r1.21 -r1.22 --- level13.stl 23 Nov 2004 13:41:17 -0000 1.21 +++ level13.stl 6 Dec 2004 17:47:15 -0000 1.22 @@ -2,7 +2,7 @@ (supertux-level (version 1) (author "SuperTux Team") - (name "Above the Arctic Skies") + (name (_ "Above the Arctic Skies")) (width 290) (height 19) (start_pos_x 100) Index: level11.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/world1/level11.stl,v retrieving revision 1.21 retrieving revision 1.22 diff -u -d -r1.21 -r1.22 --- level11.stl 23 Nov 2004 13:41:16 -0000 1.21 +++ level11.stl 6 Dec 2004 17:47:14 -0000 1.22 @@ -2,10 +2,7 @@ (supertux-level (version 1) (author "SuperTux Team") - (name "Night Chill") - (name-pt_PT "Noite Fria") - (name-de "Eine kalte Nacht") - (name-es "Noche fria") + (name (_ "Night Chill")) (width 515) (height 19) (start_pos_x 100) Index: level4.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/world1/level4.stl,v retrieving revision 1.24 retrieving revision 1.25 diff -u -d -r1.24 -r1.25 --- level4.stl 23 Nov 2004 13:41:21 -0000 1.24 +++ level4.stl 6 Dec 2004 17:47:36 -0000 1.25 @@ -2,10 +2,7 @@ (supertux-level (version 1) (author "SuperTux Team") - (name "Tobgle Road") - (name-pt_PT "A Estrada Tobgle") - (name-de "Tobgle Passage") - (name-es "Camino de Tobgle") + (name (_ "Tobgle Road")) (width 270) (height 19) (start_pos_x 100) Index: level9.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/world1/level9.stl,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- level9.stl 23 Nov 2004 13:41:22 -0000 1.19 +++ level9.stl 6 Dec 2004 17:47:39 -0000 1.20 @@ -2,10 +2,7 @@ (supertux-level (version 1) (author "SuperTux Team") - (name "Grumbel's Sense of Snow") - (name-pt_PT "Sensação de Neve do Grumbel") - (name-de "Grumbels Gespür für Schnee") - (name-es "Sensación de nieve de Grumbel") + (name (_ "Grumbel's Sense of Snow")) (width 525) (height 19) (start_pos_x 100) Index: level22.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/world1/level22.stl,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- level22.stl 23 Nov 2004 13:41:20 -0000 1.14 +++ level22.stl 6 Dec 2004 17:47:18 -0000 1.15 @@ -2,7 +2,7 @@ (supertux-level (version 1) (author "SuperTux Team") - (name "No more Mr Ice Guy") + (name (_ "No more Mr Ice Guy")) (width 260) (height 19) (start_pos_x 100) Index: level20.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/world1/level20.stl,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- level20.stl 23 Nov 2004 13:41:19 -0000 1.14 +++ level20.stl 6 Dec 2004 17:47:18 -0000 1.15 @@ -2,7 +2,7 @@ (supertux-level (version 1) (author "SuperTux Team") - (name "End of the Tunnel") + (name (_ "End of the Tunnel")) (width 510) (height 19) (start_pos_x 100) |
From: Matze B. <mat...@us...> - 2004-12-06 17:47:56
|
Update of /cvsroot/super-tux/supertux/data/levels/contribs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7813/data/levels/contribs Modified Files: level3.stl Log Message: -Fix bugs where resources from source directory weren't always found -Create a complete german translation as example Index: level3.stl =================================================================== RCS file: /cvsroot/super-tux/supertux/data/levels/contribs/level3.stl,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- level3.stl 22 Sep 2004 20:48:20 -0000 1.1 +++ level3.stl 6 Dec 2004 17:47:12 -0000 1.2 @@ -1,7 +1,7 @@ ;SuperTux-Level (supertux-level (version 1) - (name "Een weg door de wolken") + (name (_ "Een weg door de wolken")) (author "Tobe Deprez") (music "Mortimers_chipdisko.mod") (background "") |
From: Matze B. <mat...@us...> - 2004-12-06 17:47:56
|
Update of /cvsroot/super-tux/supertux/data/locale In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7813/data/locale Modified Files: de.po Log Message: -Fix bugs where resources from source directory weren't always found -Create a complete german translation as example Index: de.po =================================================================== RCS file: /cvsroot/super-tux/supertux/data/locale/de.po,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- de.po 2 Dec 2004 01:56:26 -0000 1.2 +++ de.po 6 Dec 2004 17:47:40 -0000 1.3 @@ -7,248 +7,436 @@ msgid "" msgstr "" "Project-Id-Version: SuperTux 0.1.1\n" -"Report-Msgid-Bugs-To: sup...@li...\n" -"POT-Creation-Date: 2004-10-20 14:06-0600\n" -"PO-Revision-Date: 2004-06-03 00:29+0200\n" -"Last-Translator: <ma...@br...>\n" +"POT-Creation-Date: 2004-12-05 18:22+0100\n" +"PO-Revision-Date: 2004-12-06 18:26+0100\n" +"Last-Translator: Matze Braun <ma...@br...>\n" "Language-Team: German <de...@li...>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/gameloop.cpp:205 -msgid "by " -msgstr "" +#: src/worldmap.cpp:802 +msgid "GAMEOVER" +msgstr "Game Over" -#: src/gameloop.cpp:211 -msgid "Level Vertically Flipped!" +#: src/worldmap.cpp:805 +#: src/gameloop.cpp:922 +#, c-format +msgid "COINS: %d" +msgstr "Münzen: %d" + +#: src/worldmap.cpp:810 +msgid "Total Statistics" +msgstr "Gesamt Statistiken" + +#: src/worldmap.cpp:963 +#: src/gameloop.cpp:843 +msgid "SCORE" +msgstr "Punkte" + +#: src/worldmap.cpp:967 +#: src/gameloop.cpp:865 +#: src/gameloop.cpp:866 +msgid "COINS" +msgstr "Münzen" + +#: src/worldmap.cpp:988 +#: src/worldmap.cpp:989 +#: src/gameloop.cpp:887 +#: src/gameloop.cpp:888 +msgid "LIVES" +msgstr "Leben" + +#: src/title.cpp:124 +#: src/misc.cpp:98 +msgid "Contrib Levels" +msgstr "Zusatzlevel" + +#: src/title.cpp:143 +#: src/title.cpp:216 +#: src/misc.cpp:129 +#: src/misc.cpp:140 +#: src/misc.cpp:153 +#: src/misc.cpp:164 +#: src/leveleditor.cpp:67 +#: src/leveleditor.cpp:77 +msgid "Back" +msgstr "Zurück" + +#: src/title.cpp:350 +msgid "" +"Copyright (c) 2003 SuperTux Devel Team\n" +"This game comes with ABSOLUTELY NO WARRANTY. This is free software, and you\n" +"are welcome to redistribute it under certain conditions; see the file COPYING\n" +"for details.\n" msgstr "" +"Copyright (c) 2003 SuperTux Devel Team\n" +"Diese Spiel kommt OHNE GEWÄHRLEISTUNG. Dies ist freie Software und sie\n" +"dürfen sie gerne unter bestimmten Bedingungen weiterverteilen; Details finden\n" +"Sie in der Datei COPYING.\n" -#: src/gameloop.cpp:215 +#: src/title.cpp:404 +msgid "Are you sure you want to delete slot" +msgstr "Sind sie sicher, dass sie den Spielstand löschen wollen?" + +#: src/gameloop.cpp:204 +msgid "contributed by " +msgstr "von" + +#: src/gameloop.cpp:209 msgid "Best Level Statistics" -msgstr "" +msgstr "Bester Level Statistik" -#: src/gameloop.cpp:670 +#: src/gameloop.cpp:646 msgid "PAUSE - Press 'P' To Play" -msgstr "" +msgstr "PAUSE - Drücke 'P' zum Spielen" -#: src/gameloop.cpp:675 +#: src/gameloop.cpp:651 msgid "Playing: " -msgstr "" - -#: src/gameloop.cpp:850 src/worldmap.cpp:1111 -msgid "SCORE" -msgstr "" +msgstr "Spiele:" -#: src/gameloop.cpp:855 +#: src/gameloop.cpp:848 msgid "Press ESC To Return" -msgstr "" +msgstr "Drücke ESC um zurückzukehren" -#: src/gameloop.cpp:860 +#: src/gameloop.cpp:853 msgid "TIME's UP" -msgstr "" +msgstr "Zeit ist um" -#: src/gameloop.cpp:864 +#: src/gameloop.cpp:858 msgid "TIME" -msgstr "" - -#: src/gameloop.cpp:871 src/gameloop.cpp:872 src/worldmap.cpp:1115 -msgid "COINS" -msgstr "" - -#: src/gameloop.cpp:893 src/gameloop.cpp:894 src/worldmap.cpp:1136 -#: src/worldmap.cpp:1137 -msgid "LIVES" -msgstr "" +msgstr "Zeit" #: src/gameloop.cpp:916 msgid "Result:" -msgstr "" +msgstr "Ergebnis:" #: src/gameloop.cpp:919 #, c-format msgid "SCORE: %d" -msgstr "" - -#: src/gameloop.cpp:922 src/worldmap.cpp:955 -#, c-format -msgid "COINS: %d" -msgstr "" +msgstr "Punkte: %d" -#: src/gameloop.cpp:956 +#: src/gameloop.cpp:950 msgid "Slot" -msgstr "" +msgstr "Speicherplatz" -#: src/gameloop.cpp:956 +#: src/gameloop.cpp:951 msgid "Free" -msgstr "" +msgstr "frei" -#: src/leveleditor.cpp:64 -msgid "Load Subset" -msgstr "" +#: src/statistics.cpp:111 +msgid "- Best Level Statistics -" +msgstr "- Beste level Statistik -" -#: src/leveleditor.cpp:70 src/leveleditor.cpp:80 src/misc.cpp:125 -#: src/misc.cpp:136 src/misc.cpp:149 src/misc.cpp:160 src/title.cpp:142 -#: src/title.cpp:220 -msgid "Back" -msgstr "" +#: src/statistics.cpp:115 +msgid "Max score:" +msgstr "Max Punkte:" -#: src/leveleditor.cpp:73 +#: src/statistics.cpp:135 +msgid "Max coins collected:" +msgstr "Max Münzen gesammelt:" + +#: src/statistics.cpp:137 +msgid "Max fragging:" +msgstr "Max besiegt:" + +#: src/statistics.cpp:139 +msgid "Min time needed:" +msgstr "Min Zeit benötigt:" + +#: src/statistics.cpp:168 +#, c-format +msgid "Max score: %d" +msgstr "Max Punkte: %d" + +#: src/statistics.cpp:174 +#, c-format +msgid "Max coins collected: %d / %d" +msgstr "Max Münzen gesammelt: %d / %d" + +#: src/statistics.cpp:178 +#, c-format +msgid "Max fragging: %d / %d" +msgstr "Max besiegt: %d / %d" + +#: src/statistics.cpp:182 +#, c-format +msgid "Min time needed: %d / %d" +msgstr "Min Zeit benötigt: %d / %d" + +#: src/misc.cpp:97 +#: src/misc.cpp:156 +msgid "Start Game" +msgstr "Spiel Beginnen" + +#: src/misc.cpp:99 +#: src/misc.cpp:104 +#: src/misc.cpp:179 +#: src/misc.cpp:186 +msgid "Options" +msgstr "Einstellungen" + +#: src/misc.cpp:100 +#: src/leveleditor.cpp:562 +msgid "Level Editor" +msgstr "Level Editor" + +#: src/misc.cpp:101 +msgid "Credits" +msgstr "Mitwirkende" + +#: src/misc.cpp:102 +msgid "Quit" +msgstr "Beenden" + +#: src/misc.cpp:107 +msgid "OpenGL " +msgstr "OpenGL" + +#: src/misc.cpp:109 +msgid "OpenGL (not supported)" +msgstr "OpenGL (nicht vorhanden)" + +#: src/misc.cpp:111 +msgid "Fullscreen" +msgstr "Ganzer Bildschirm" + +#: src/misc.cpp:114 +#: src/misc.cpp:119 +msgid "Sound " +msgstr "Sound" + +#: src/misc.cpp:115 +#: src/misc.cpp:120 +msgid "Music " +msgstr "Musik" + +#: src/misc.cpp:122 +msgid "Show FPS " +msgstr "FPS anzeigen" + +#: src/misc.cpp:123 +msgid "Setup Keys" +msgstr "Tasten einstellen" + +#: src/misc.cpp:126 +msgid "Setup Joystick" +msgstr "Joystick einstellen" + +#: src/misc.cpp:131 +msgid "Keyboard Setup" +msgstr "Tastatur einstellen" + +#: src/misc.cpp:133 +msgid "Left move" +msgstr "Nach Links" + +#: src/misc.cpp:134 +msgid "Right move" +msgstr "Nach Rechts" + +#: src/misc.cpp:135 +msgid "Up/Activate" +msgstr "Nach Oben/Aktivieren" + +#: src/misc.cpp:136 +msgid "Down/Duck" +msgstr "Nach Unten/Ducken" + +#: src/misc.cpp:137 +msgid "Jump" +msgstr "Springen" + +#: src/misc.cpp:138 +msgid "Power/Run" +msgstr "Power/Rennen" + +#: src/misc.cpp:144 +msgid "Joystick Setup" +msgstr "Joystick Einstellungen" + +#: src/misc.cpp:148 +msgid "A button" +msgstr "A Knopf" + +#: src/misc.cpp:149 +msgid "B button" +msgstr "B Knopf" + +#: src/misc.cpp:166 +msgid "Save Game" +msgstr "Spiel Speichern" + +#: src/misc.cpp:176 +#: src/misc.cpp:183 +msgid "Pause" +msgstr "Pause" + +#: src/misc.cpp:178 +#: src/misc.cpp:185 +msgid "Continue" +msgstr "Fortsetzen" + +#: src/misc.cpp:181 +msgid "Abort Level" +msgstr "Level Abbrechen" + +#: src/misc.cpp:188 +msgid "Quit Game" +msgstr "Spiel Beenden" + +#: src/misc.cpp:190 +msgid "Enter your name:" +msgstr "Geben Sie ihren Namen ein:" + +#: src/leveleditor.cpp:61 +msgid "Load Subset" +msgstr "Subset laden" + +#: src/leveleditor.cpp:70 msgid "New Level Subset" -msgstr "" +msgstr "Neues Level-subset" -#: src/leveleditor.cpp:75 +#: src/leveleditor.cpp:72 msgid "Filename " -msgstr "" +msgstr "Dateiname" -#: src/leveleditor.cpp:76 +#: src/leveleditor.cpp:73 msgid "Title " -msgstr "" +msgstr "Titel" -#: src/leveleditor.cpp:77 +#: src/leveleditor.cpp:74 msgid "Description" -msgstr "" +msgstr "Beschreibung" -#: src/leveleditor.cpp:78 -#, fuzzy +#: src/leveleditor.cpp:75 msgid "Create" -msgstr "Mitwirkende" +msgstr "Erzeugen" -#: src/leveleditor.cpp:83 -#, fuzzy +#: src/leveleditor.cpp:80 msgid "Level Editor Menu" msgstr "Level Editor" -#: src/leveleditor.cpp:85 -#, fuzzy +#: src/leveleditor.cpp:82 msgid "Return to Level Editor" -msgstr "Level Editor" +msgstr "Zurück zum Level Editor" -#: src/leveleditor.cpp:86 +#: src/leveleditor.cpp:83 msgid "Create Level Subset" -msgstr "" +msgstr "Level-subset erstellen" -#: src/leveleditor.cpp:87 +#: src/leveleditor.cpp:84 msgid "Load Level Subset" -msgstr "" +msgstr "Level-subset laden" -#: src/leveleditor.cpp:89 -#, fuzzy +#: src/leveleditor.cpp:86 msgid "Quit Level Editor" -msgstr "Level Editor" +msgstr "Level Editor Beenden" -#: src/leveleditor.cpp:92 +#: src/leveleditor.cpp:89 msgid "Level Settings" -msgstr "" +msgstr "Level-Einstellungen" -#: src/leveleditor.cpp:94 +#: src/leveleditor.cpp:91 msgid "Name " -msgstr "" +msgstr "Name" -#: src/leveleditor.cpp:95 +#: src/leveleditor.cpp:92 msgid "Author " -msgstr "" +msgstr "Autor" -#: src/leveleditor.cpp:96 +#: src/leveleditor.cpp:93 msgid "Width " -msgstr "" +msgstr "Breite" -#: src/leveleditor.cpp:97 +#: src/leveleditor.cpp:94 msgid "Height " -msgstr "" +msgstr "Höhe" -#: src/leveleditor.cpp:99 +#: src/leveleditor.cpp:96 msgid "Apply" -msgstr "" +msgstr "Anwenden" -#: src/leveleditor.cpp:109 +#: src/leveleditor.cpp:104 msgid "Eraser" -msgstr "" +msgstr "Radiergummie" -#: src/leveleditor.cpp:141 +#: src/leveleditor.cpp:136 msgid "Trampoline" -msgstr "" +msgstr "Trampolin" -#: src/leveleditor.cpp:142 +#: src/leveleditor.cpp:137 msgid "Flying Platform" -msgstr "" - -#: src/leveleditor.cpp:143 -msgid "Door" -msgstr "" +msgstr "Fliegende Platform" -#: src/leveleditor.cpp:146 +#: src/leveleditor.cpp:141 msgid "Edtit foreground tiles" -msgstr "" +msgstr "Vordergrund Bearbeiten" -#: src/leveleditor.cpp:148 +#: src/leveleditor.cpp:143 msgid "Edit interactive tiles" -msgstr "" +msgstr "Interaktive Teile Bearbeiten" -#: src/leveleditor.cpp:150 +#: src/leveleditor.cpp:145 msgid "Edit background tiles" -msgstr "" +msgstr "Hintergrund Bearbeiten" -#: src/leveleditor.cpp:154 +#: src/leveleditor.cpp:149 msgid "Next sector" -msgstr "" +msgstr "Nächster Sektor" -#: src/leveleditor.cpp:155 +#: src/leveleditor.cpp:150 msgid "Prevous sector" -msgstr "" +msgstr "Letzter Sektor" -#: src/leveleditor.cpp:156 +#: src/leveleditor.cpp:151 msgid "Next level" -msgstr "" +msgstr "Nächster Level" -#: src/leveleditor.cpp:157 +#: src/leveleditor.cpp:152 msgid "Prevous level" -msgstr "" +msgstr "Letzter Level" -#: src/leveleditor.cpp:158 -#, fuzzy +#: src/leveleditor.cpp:153 msgid "Save level" -msgstr "Spiel Beginnen" +msgstr "Level speichern" -#: src/leveleditor.cpp:159 +#: src/leveleditor.cpp:154 msgid "Test level" -msgstr "" +msgstr "Test Level" -#: src/leveleditor.cpp:160 +#: src/leveleditor.cpp:155 msgid "Setup level" -msgstr "" +msgstr "Level-Einstellungen" -#: src/leveleditor.cpp:242 src/leveleditor.cpp:718 src/leveleditor.cpp:743 -#: src/leveleditor.cpp:834 +#: src/leveleditor.cpp:237 +#: src/leveleditor.cpp:727 +#: src/leveleditor.cpp:752 +#: src/leveleditor.cpp:841 msgid "Level not saved. Wanna to?" -msgstr "" +msgstr "Level wurde noch nicht gespeichert. Jetzt speichern?" -#: src/leveleditor.cpp:357 +#: src/leveleditor.cpp:363 #, c-format msgid "Level %d doesn't exist. Create it?" -msgstr "" - -#: src/leveleditor.cpp:560 src/misc.cpp:96 -msgid "Level Editor" -msgstr "Level Editor" +msgstr "Level %d exisitiert nicht. Jetzte erstellen?" -#: src/leveleditor.cpp:583 +#: src/leveleditor.cpp:585 msgid "F1 for help" -msgstr "" +msgstr "Für Hilfe F1 drücken" -#: src/leveleditor.cpp:585 +#: src/leveleditor.cpp:587 msgid "Choose a level subset" -msgstr "" +msgstr "Wählen Sie ein Level-Subset aus" -#: src/leveleditor.cpp:769 +#: src/leveleditor.cpp:778 msgid "No more sectors exist. Create another?" -msgstr "" +msgstr "Keine weiteren Sektoren vorhanden. Einen weiteren erzeugen?" -#: src/leveleditor.cpp:921 +#: src/leveleditor.cpp:936 msgid "" -"This is the built-in level editor. It's aim is to be intuitive\n" -"and simple to use, so it should be pretty straight forward.\n" +"This is the built-in level editor. Its aim is to be intuitive\n" +"and simple to use, so it should be pretty straightforward.\n" "\n" "To open a level, first you'll have to select a level subset from\n" "the menu (or create your own).\n" @@ -257,24 +445,24 @@ "\n" "To access the menu from the level editor, just press Esc.\n" "\n" -"You are currently looking to the level, to scroll it, just\n" +"You are currently looking at the level. To scroll it, just\n" "press the right mouse button and drag the mouse. It will move like\n" "a strategy game.\n" "You can also use the arrow keys and Page Up/Down.\n" "\n" -"'+' and '-' keys can be used to zoom in/out the level.\n" +"'+' and '-' keys can be used to zoom the level in/out.\n" "\n" -"You probably already noticed those floating group of buttons.\n" +"You probably already noticed those floating groups of buttons.\n" "Each one serves a different purpose. To select a certain button\n" "just press the Left mouse button on it. A few buttons have key\n" -"shortcuts, you can know it by pressing the Right mouse button on\n" -"it. That will also show what that button does.\n" -"Group of buttons can also be move around by just dragging them,\n" +"shortcuts. You can find them by pressing the Right mouse button on\n" +"a button. That will also show what that button does.\n" +"Groups of buttons can also be moved around by just dragging them,\n" "while pressing the Left mouse button.\n" "\n" -"Let's learn a bit of what each group of buttons do, shall we?\n" +"Let's learn a bit of what each group of buttons does, shall we?\n" "\n" -"To starting putting tiles and objects around use the bigger gropup\n" +"To starting putting tiles and objects around use the bigger group\n" "of buttons. Each button is a different tile. To put it on the level,\n" "just press it and then left click in the level.\n" "You can also copy tiles from the level by using the middle mouse button.\n" @@ -282,18 +470,18 @@ "enemies and game objects in the bottom.\n" msgstr "" -#: src/leveleditor.cpp:957 +#: src/leveleditor.cpp:972 msgid "" "The Foreground/Interactive/Background buttons may be used to\n" -"see and edit the respective layer. Level's have three tiles layers:\n" -"Foreground - tiles are drawn in top of everything and have no contact\n" +"see and edit the respective layer. Levels have three tiles layers:\n" +"Foreground - tiles are drawn on top of everything and have no contact\n" "with the player.\n" "Interactive - these are the tiles that have contact with the player.\n" -"Background - tiles are drawn in bottom of everything and have no contact\n" +"Background - tiles are drawn underneath everything and have no contact\n" "with the player.\n" "The unselected layers will be drawn semi-transparently.\n" "\n" -"At last, but not least, the group of buttons that's left serves\n" +"Last, but not least, the group of buttons that's left serves\n" "to do related actions with the level.\n" "From left to right:\n" "Mini arrows - can be used to choose other sectors.\n" @@ -301,7 +489,7 @@ "Big arrows - choose other level in the same level subset.\n" "Diskette - save the level\n" "Tux - test the level\n" -"Tools - set a few settings for the level, incluiding resizing it.\n" +"Tools - set a few settings for the level, including resizing it.\n" "\n" "We have reached the end of this Howto.\n" "\n" @@ -310,328 +498,23 @@ "Enjoy,\n" " SuperTux development team\n" "\n" -"ps: If you are looking for something more powerfull, you can give it a\n" -"try to FlexLay. FlexLay is a level editor that supports several games,\n" +"PS: If you are looking for something more powerful, you might like to\n" +"try FlexLay. FlexLay is a level editor that supports several games,\n" "including SuperTux. It is an independent project.\n" "Webpage: http://pingus.seul.org/~grumbel/flexlay/" msgstr "" -#: src/leveleditor.cpp:997 -#, fuzzy +#: src/leveleditor.cpp:1012 msgid "- Level Editor's Help -" -msgstr "Level Editor" +msgstr "- Level Editor Hilfe -" -#: src/leveleditor.cpp:1001 +#: src/leveleditor.cpp:1016 #, c-format msgid "Press any key to continue - Page %d/%d" -msgstr "" - -#: src/misc.cpp:93 src/misc.cpp:152 -msgid "Start Game" -msgstr "Spiel Beginnen" - -#: src/misc.cpp:94 src/title.cpp:112 -msgid "Contrib Levels" -msgstr "Zusatzlevel" - -#: src/misc.cpp:95 src/misc.cpp:100 src/misc.cpp:175 src/misc.cpp:182 -msgid "Options" -msgstr "Einstellungen" - -#: src/misc.cpp:97 -msgid "Credits" -msgstr "Mitwirkende" - -#: src/misc.cpp:98 -msgid "Quit" -msgstr "Beenden" - -#: src/misc.cpp:103 -msgid "OpenGL " -msgstr "" - -#: src/misc.cpp:105 -msgid "OpenGL (not supported)" -msgstr "" - -#: src/misc.cpp:107 -msgid "Fullscreen" -msgstr "" - -#: src/misc.cpp:110 src/misc.cpp:115 -msgid "Sound " -msgstr "" - -#: src/misc.cpp:111 src/misc.cpp:116 -msgid "Music " -msgstr "" - -#: src/misc.cpp:118 -msgid "Show FPS " -msgstr "" - -#: src/misc.cpp:119 -msgid "Setup Keys" -msgstr "" - -#: src/misc.cpp:122 -msgid "Setup Joystick" -msgstr "" - -#: src/misc.cpp:127 -msgid "Keyboard Setup" -msgstr "" - -#: src/misc.cpp:129 -msgid "Left move" -msgstr "" - -#: src/misc.cpp:130 -msgid "Right move" -msgstr "" - -#: src/misc.cpp:131 -msgid "Up/Activate" -msgstr "" - -#: src/misc.cpp:132 -msgid "Down/Duck" -msgstr "" - -#: src/misc.cpp:133 -msgid "Jump" -msgstr "" - -#: src/misc.cpp:134 -msgid "Power/Run" -msgstr "" - -#: src/misc.cpp:140 -msgid "Joystick Setup" -msgstr "" - -#: src/misc.cpp:144 -msgid "A button" -msgstr "" - -#: src/misc.cpp:145 -msgid "B button" -msgstr "" - -#: src/misc.cpp:162 -msgid "Save Game" -msgstr "Spiel Speichern" - -#: src/misc.cpp:172 src/misc.cpp:179 -msgid "Pause" -msgstr "" - -#: src/misc.cpp:174 src/misc.cpp:181 -msgid "Continue" -msgstr "" - -#: src/misc.cpp:177 -msgid "Abort Level" -msgstr "Level Abbrechen" - -#: src/misc.cpp:184 -msgid "Quit Game" -msgstr "Spiel Beenden" - -#: src/misc.cpp:186 -msgid "Enter your name:" -msgstr "" - -#: src/player.cpp:1240 -#, c-format -msgid "Good! x%d" -msgstr "" - -#: src/player.cpp:1242 -#, c-format -msgid "Great! x%d" -msgstr "" - -#: src/player.cpp:1244 -#, c-format -msgid "Awesome! x%d" -msgstr "" - -#: src/player.cpp:1246 -#, c-format -msgid "Incredible! x%d" -msgstr "" - -#: src/player.cpp:1248 -#, c-format -msgid "Godlike! ;-) x%d" -msgstr "" - -#: src/player.cpp:1250 -#, c-format -msgid "Unbelievable!! x%d" -msgstr "" - -#: src/statistics.cpp:113 -msgid "- Best Level Statistics -" -msgstr "" - -#: src/statistics.cpp:117 -msgid "Max score:" -msgstr "" - -#: src/statistics.cpp:137 -msgid "Max coins collected:" -msgstr "" - -#: src/statistics.cpp:139 -msgid "Max fragging:" -msgstr "" - -#: src/statistics.cpp:141 -msgid "Min time needed:" -msgstr "" - -#: src/statistics.cpp:170 -#, c-format -msgid "Max score: %d" -msgstr "" - -#: src/statistics.cpp:176 -#, c-format -msgid "Max coins collected: %d / %d" -msgstr "" - -#: src/statistics.cpp:180 -#, c-format -msgid "Max fragging: %d / %d" -msgstr "" - -#: src/statistics.cpp:184 -#, c-format -msgid "Min time needed: %d / %d" -msgstr "" - -#: src/title.cpp:374 -msgid "" -"Copyright (c) 2003 SuperTux Devel Team\n" -"This game comes with ABSOLUTELY NO WARRANTY. This is free software, and you\n" -"are welcome to redistribute it under certain conditions; see the file " -"COPYING\n" -"for details.\n" -msgstr "" - -#: src/title.cpp:426 -msgid "Are you sure you want to delete slot" -msgstr "" - -#: src/worldmap.cpp:952 -msgid "GAMEOVER" -msgstr "" - -#: src/worldmap.cpp:959 -msgid "Total Statistics" -msgstr "" - -#: lib/app/setup.cpp:774 -#, c-format -msgid "" -"Usage: %s [OPTIONS] FILENAME\n" -"\n" -msgstr "" - -#: lib/app/setup.cpp:775 -msgid "" -"Display Options:\n" -" -f, --fullscreen Run in fullscreen mode.\n" -" -w, --window Run in window mode.\n" -" --opengl If OpenGL support was compiled in, this will tell\n" -" SuperTux to make use of it.\n" -" --sdl Use the SDL software graphical renderer\n" -"\n" -"Sound Options:\n" -" --disable-sound If sound support was compiled in, this will\n" -" disable sound for this session of the game.\n" -" --disable-music Like above, but this will disable music.\n" -"\n" -"Misc Options:\n" -" -j, --joystick NUM Use joystick NUM (default: 0)\n" -" --joymap XAXIS:YAXIS:A:B:START\n" -" Define how joystick buttons and axis should be mapped\n" -" --leveleditor Opens the leveleditor in a file.\n" -" --worldmap Opens the specified worldmap file.\n" -" --flip-levels Flip levels upside-down.\n" -" -d, --datadir DIR Load Game data from DIR (default: automatic)\n" -" --debug Enables the debug mode, which is useful for " -"developers.\n" -" --help Display a help message summarizing command-line\n" -" options, license and game controls.\n" -" --usage Display a brief message summarizing command-line " -"options.\n" -" --version Display the version of SuperTux you're running.\n" -"\n" -msgstr "" +msgstr "Um fortzufahren beliebige Taste drücken - Seite %d/%d" -#: lib/app/setup.cpp:834 +#: src/object/player.cpp:279 #, c-format -msgid "" -"Usage: %s [--fullscreen] [--opengl] [--disable-sound] [--disable-music] [--" -"debug] | [--usage | --help | --version] [--leveleditor] [--worldmap] [--flip-" -"levels] FILENAME\n" -msgstr "" - -#: lib/gui/menu.cpp:67 -msgid "Yes" -msgstr "" - -#: lib/gui/menu.cpp:68 -msgid "No" -msgstr "" - -#: lib/gui/menu.cpp:236 -msgid "Up cursor" -msgstr "" - -#: lib/gui/menu.cpp:239 -msgid "Down cursor" -msgstr "" - -#: lib/gui/menu.cpp:242 -msgid "Left cursor" -msgstr "" - -#: lib/gui/menu.cpp:245 -msgid "Right cursor" -msgstr "" - -#: lib/gui/menu.cpp:248 -msgid "Return" -msgstr "" - -#: lib/gui/menu.cpp:251 -msgid "Space" -msgstr "" - -#: lib/gui/menu.cpp:254 -msgid "Right Shift" -msgstr "" - -#: lib/gui/menu.cpp:257 -msgid "Left Shift" -msgstr "" - -#: lib/gui/menu.cpp:260 -msgid "Right Control" -msgstr "" - -#: lib/gui/menu.cpp:263 -msgid "Left Control" -msgstr "" - -#: lib/gui/menu.cpp:266 -msgid "Right Alt" -msgstr "" +msgid "New max combo: %d" +msgstr "Neue Max Kombination: %d" -#: lib/gui/menu.cpp:269 -msgid "Left Alt" -msgstr "" |
From: Matze B. <mat...@us...> - 2004-12-06 17:47:55
|
Update of /cvsroot/super-tux/supertux/lib/app In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7813/lib/app Modified Files: setup.cpp Log Message: -Fix bugs where resources from source directory weren't always found -Create a complete german translation as example Index: setup.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/lib/app/setup.cpp,v retrieving revision 1.23 retrieving revision 1.24 diff -u -d -r1.23 -r1.24 --- setup.cpp 2 Dec 2004 01:41:57 -0000 1.23 +++ setup.cpp 6 Dec 2004 17:47:40 -0000 1.24 @@ -322,7 +322,7 @@ { std::string exedir = std::string(dirname(exe_file)) + "/"; - datadir = exedir + "../data/"; // SuperTux run from source dir + datadir = exedir + "./data/"; // SuperTux run from source dir if (access(datadir.c_str(), F_OK) != 0) { datadir = exedir + "../../data/"; //SuperTux run from source dir (with libtool script) |
From: Matze B. <mat...@us...> - 2004-12-06 17:47:52
|
Update of /cvsroot/super-tux/supertux/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7813/src Modified Files: resources.cpp title.cpp Log Message: -Fix bugs where resources from source directory weren't always found -Create a complete german translation as example Index: title.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/title.cpp,v retrieving revision 1.136 retrieving revision 1.137 diff -u -d -r1.136 -r1.137 --- title.cpp 2 Dec 2004 00:25:27 -0000 1.136 +++ title.cpp 6 Dec 2004 17:47:40 -0000 1.137 @@ -347,10 +347,14 @@ context.draw_text(white_small_text, " SuperTux " PACKAGE_VERSION "\n", Vector(0, screen->h - 70), LEFT_ALLIGN, LAYER_FOREGROUND1); context.draw_text(white_small_text, - _("Copyright (c) 2003 SuperTux Devel Team\n" - "This game comes with ABSOLUTELY NO WARRANTY. This is free software, and you\n" - "are welcome to redistribute it under certain conditions; see the file COPYING\n" - "for details.\n"), Vector(0, screen->h - 70 + white_small_text->get_height()), LEFT_ALLIGN, LAYER_FOREGROUND1); + _( +"Copyright (c) 2003 SuperTux Devel Team\n" +"This game comes with ABSOLUTELY NO WARRANTY. This is free software, and you\n" +"are welcome to redistribute it under certain conditions; see the file COPYING\n" +"for details.\n" + ), + Vector(0, screen->h - 70 + white_small_text->get_height()), + LEFT_ALLIGN, LAYER_FOREGROUND1); /* Don't draw menu, if quit is true */ Menu* menu = Menu::current(); Index: resources.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/resources.cpp,v retrieving revision 1.60 retrieving revision 1.61 diff -u -d -r1.60 -r1.61 --- resources.cpp 28 Nov 2004 14:56:49 -0000 1.60 +++ resources.cpp 6 Dec 2004 17:47:40 -0000 1.61 @@ -313,11 +313,11 @@ std::string get_resource_filename(const std::string& resource) { std::string filepath = st_dir + resource; - if(access(filepath.c_str(), R_OK) == 0) + if(FileSystem::faccessible(filepath)) return filepath; filepath = datadir + resource; - if(access(filepath.c_str(), R_OK) == 0) + if(FileSystem::faccessible(filepath)) return filepath; std::cerr << "Couldn't find resource: '" << resource << "'." << std::endl; |
From: Matze B. <mat...@us...> - 2004-12-06 17:47:52
|
Update of /cvsroot/super-tux/supertux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7813 Modified Files: .cvsignore Log Message: -Fix bugs where resources from source directory weren't always found -Create a complete german translation as example Index: .cvsignore =================================================================== RCS file: /cvsroot/super-tux/supertux/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- .cvsignore 25 Nov 2004 00:52:15 -0000 1.9 +++ .cvsignore 6 Dec 2004 17:47:08 -0000 1.10 @@ -26,4 +26,4 @@ *.exe config.h.in .sconf_temp - +.emacs |
From: Marek M. <wa...@us...> - 2004-12-06 16:53:51
|
Update of /cvsroot/super-tux/supertux/data/music In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26905/data/music Removed Files: scary-fast.mod scary.mod Log Message: removed unused music from the repository --- scary-fast.mod DELETED --- --- scary.mod DELETED --- |
From: Matze B. <mat...@us...> - 2004-12-05 17:20:18
|
Update of /cvsroot/super-tux/supertux/lib/lisp In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22444/lib/lisp Modified Files: writer.cpp writer.h Added Files: .cvsignore Log Message: added/updated some .cvsignores --- NEW FILE: .cvsignore --- .sconsign Index: writer.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/lib/lisp/writer.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- writer.cpp 28 Nov 2004 14:57:45 -0000 1.1 +++ writer.cpp 5 Dec 2004 17:19:35 -0000 1.2 @@ -89,10 +89,16 @@ } void -Writer::write_string(const std::string& name, const std::string& value) +Writer::write_string(const std::string& name, const std::string& value, + bool translatable) { indent(); - out << '(' << name << " \"" << value << "\")\n"; + out << '(' << name; + if(translatable) { + out << " (_ \"" << value << "\"))\n"; + } else { + out << " \"" << value << "\")\n"; + } } void Index: writer.h =================================================================== RCS file: /cvsroot/super-tux/supertux/lib/lisp/writer.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- writer.h 28 Nov 2004 14:57:45 -0000 1.1 +++ writer.h 5 Dec 2004 17:19:35 -0000 1.2 @@ -39,7 +39,8 @@ void write_int(const std::string& name, int value); void write_float(const std::string& name, float value); - void write_string(const std::string& name, const std::string& value); + void write_string(const std::string& name, const std::string& value, + bool translatable = false); void write_bool(const std::string& name, bool value); void write_int_vector(const std::string& name, const std::vector<int>& value); void write_int_vector(const std::string& name, const std::vector<unsigned int>& value); |