# HG changeset patch # User koda # Date 1289615174 -3600 # Node ID 88714b6f36768fac31b45b94c1bc94c8c9210590 # Parent 82f1f1d819c07517cfd116eb339aad4d89e09dad# Parent 1f5604cd99bedfe1a47b76a25f59c49cc1a5a9b8 merge diff -r 82f1f1d819c0 -r 88714b6f3676 QTfrontend/pages.cpp --- a/QTfrontend/pages.cpp Sat Nov 13 03:25:40 2010 +0100 +++ b/QTfrontend/pages.cpp Sat Nov 13 03:26:14 2010 +0100 @@ -145,11 +145,15 @@ //Tips << tr("Want to play Hedgewars any time? Grab the Mobile version for %1 and %2.", "Tips").arg("").arg(""); Tips << tr("Keep your video card drivers up to date to avoid issues playing the game.", "Tips"); //Tips << tr("", "Tips"); +#ifndef __APPLE__ + Tips << tr("You're able to associate Hedgewars related files (savegames and demo recordings) with the game to launch them right from your favorite file or internet browser.", "Tips"); +#endif #ifdef _WIN32 Tips << tr("You can find your Hedgewars configuration files under \"My Documents\\Hedgewars\". Create backups or take the files with you, but don't edit them by hand.", "Tips"); - Tips << tr("You're able to associate Hedgewars related files (savegames and demo recordings) with the game to launch them right from your favorite file or internet browser.", "Tips"); -#else - Tips << tr("You can find your Hedgewars configuration files under \"Hedgewars\" in your home directory. Create backups or take the files with you, but don't edit them by hand.", "Tips"); +#elif defined __APPLE__ + Tips << tr("You can find your Hedgewars configuration files under \"Library/Application Support/Hedgewars\" in your home directory. Create backups or take the files with you, but don't edit them by hand.", "Tips"); +#else + Tips << tr("You can find your Hedgewars configuration files under \".hedgewars\" in your home directory. Create backups or take the files with you, but don't edit them by hand.", "Tips"); #endif mainNote->setText(QLabel::tr("Tip: ") + Tips[QTime(0, 0, 0).secsTo(QTime::currentTime()) % Tips.length()]); } diff -r 82f1f1d819c0 -r 88714b6f3676 gameServer/Actions.hs diff -r 82f1f1d819c0 -r 88714b6f3676 gameServer/CMakeLists.txt diff -r 82f1f1d819c0 -r 88714b6f3676 gameServer/ClientIO.hs diff -r 82f1f1d819c0 -r 88714b6f3676 gameServer/CoreTypes.hs diff -r 82f1f1d819c0 -r 88714b6f3676 gameServer/HWProtoCore.hs diff -r 82f1f1d819c0 -r 88714b6f3676 gameServer/HWProtoInRoomState.hs diff -r 82f1f1d819c0 -r 88714b6f3676 gameServer/HWProtoLobbyState.hs diff -r 82f1f1d819c0 -r 88714b6f3676 gameServer/HWProtoNEState.hs diff -r 82f1f1d819c0 -r 88714b6f3676 gameServer/NetRoutines.hs diff -r 82f1f1d819c0 -r 88714b6f3676 gameServer/OfficialServer/DBInteraction.hs diff -r 82f1f1d819c0 -r 88714b6f3676 gameServer/OfficialServer/extdbinterface.hs diff -r 82f1f1d819c0 -r 88714b6f3676 gameServer/Opts.hs diff -r 82f1f1d819c0 -r 88714b6f3676 gameServer/ServerCore.hs diff -r 82f1f1d819c0 -r 88714b6f3676 gameServer/Utils.hs diff -r 82f1f1d819c0 -r 88714b6f3676 gameServer/hedgewars-server.hs diff -r 82f1f1d819c0 -r 88714b6f3676 gameServer/stresstest.hs diff -r 82f1f1d819c0 -r 88714b6f3676 gameServer/stresstest2.hs diff -r 82f1f1d819c0 -r 88714b6f3676 hedgewars/GSHandlers.inc --- a/hedgewars/GSHandlers.inc Sat Nov 13 03:25:40 2010 +0100 +++ b/hedgewars/GSHandlers.inc Sat Nov 13 03:26:14 2010 +0100 @@ -2085,7 +2085,7 @@ 2: for i:= -19 to 19 do FollowGear := AddGear(hwRound(Gear^.X) + i div 3, hwRound(Gear^.Y), gtFlame, 0, _0_001 * i, _0, 0); - 3: FollowGear := AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtDrill, 0, cBombsSpeed * + 3: FollowGear := AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtDrill, gsttmpFlag, cBombsSpeed * Gear^.Tag, _0, 0); //4: FollowGear := AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtWaterMelon, 0, cBombsSpeed * // Gear^.Tag, _0, 5000); @@ -2730,6 +2730,8 @@ Gear^.X := Gear^.X + Gear^.dX; Gear^.Y := Gear^.Y + Gear^.dY; DrawTunnel(oX, oY, Gear^.dX, Gear^.dY, 2, 6); + if (Gear^.Timer mod 30) = 0 then + AddVisualGear(hwRound(Gear^.X + _20 * Gear^.dX), hwRound(Gear^.Y + _20 * Gear^.dY), vgtDust); if (CheckGearDrowning(Gear)) then begin StopSound(Gear^.SoundChannel); @@ -2748,7 +2750,10 @@ begin //out of time or exited ground StopSound(Gear^.SoundChannel); - doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 50, EXPLAutoSound); + if (Gear^.State and gsttmpFlag) <> 0 then + doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 30, EXPLAutoSound) + else + doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 50, EXPLAutoSound); DeleteGear(Gear); exit end; @@ -2764,7 +2769,9 @@ begin AllInactive := false; - Gear^.dX := Gear^.dX + cWindSpeed; + if (Gear^.State and gsttmpFlag) = 0 then + Gear^.dX := Gear^.dX + cWindSpeed; + oldDx := Gear^.dX; oldDy := Gear^.dY; @@ -2790,7 +2797,10 @@ else begin //explode right on contact with HH - doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 50, EXPLAutoSound); + if (Gear^.State and gsttmpFlag) <> 0 then + doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 30, EXPLAutoSound) + else + doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 50, EXPLAutoSound); DeleteGear(Gear); exit; end; @@ -4229,7 +4239,7 @@ Gear^.doStep := @doStepHammerHitWork end; - +//////////////////////////////////////////////////////////////////////////////// procedure doStepResurrectorWork(Gear: PGear); var graves: TPGearArray; @@ -4344,3 +4354,5 @@ end end; +//////////////////////////////////////////////////////////////////////////////// + diff -r 82f1f1d819c0 -r 88714b6f3676 hedgewars/uConsts.pas --- a/hedgewars/uConsts.pas Sat Nov 13 03:25:40 2010 +0100 +++ b/hedgewars/uConsts.pas Sat Nov 13 03:26:14 2010 +0100 @@ -89,7 +89,7 @@ gtHellishBomb, gtWaterUp, gtDrill, gtBallGun, gtBall, gtRCPlane, // 40 gtSniperRifleShot, gtJetpack, gtMolotov, gtExplosives, gtBirdy, // 45 gtEgg, gtPortal, gtPiano, gtGasBomb, gtSineGunShot, gtFlamethrower, // 51 - gtSMine, gtPoisonCloud, gtHammer, gtHammerHit, gtResurrector); + gtSMine, gtPoisonCloud, gtHammer, gtHammerHit, gtResurrector); // 56 // Gears that are _only_ of visual nature (e.g. background stuff, visual effects, speechbubbles, etc.) TVisualGearType = (vgtFlake, vgtCloud, vgtExplPart, vgtExplPart2, vgtFire, diff -r 82f1f1d819c0 -r 88714b6f3676 hedgewars/uGears.pas diff -r 82f1f1d819c0 -r 88714b6f3676 share/hedgewars/Data/Locale/hedgewars_ar.ts --- a/share/hedgewars/Data/Locale/hedgewars_ar.ts Sat Nov 13 03:25:40 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_ar.ts Sat Nov 13 03:26:14 2010 +0100 @@ -41,6 +41,10 @@ Edit schemes Edit schemes + + When this option is enabled selecting a game scheme will auto-select a weapon (and viceversa) + + HWChatWidget @@ -635,12 +639,17 @@ - You can find your Hedgewars configuration files under "Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Want to save ropes? Release the rope in mid air and then shoot again. As long as you don't touch the ground you'll reuse your rope without wasting ammo! Tips - Want to save ropes? Release the rope in mid air and then shoot again. As long as you don't touch the ground you'll reuse your rope without wasting ammo! + You can find your Hedgewars configuration files under "Library/Application Support/Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Tips + + + + You can find your Hedgewars configuration files under ".hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. Tips @@ -1375,6 +1384,10 @@ Sudden Death Health Decrease + + Bind schemes and weapons + + QLineEdit diff -r 82f1f1d819c0 -r 88714b6f3676 share/hedgewars/Data/Locale/hedgewars_bg.ts --- a/share/hedgewars/Data/Locale/hedgewars_bg.ts Sat Nov 13 03:25:40 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_bg.ts Sat Nov 13 03:26:14 2010 +0100 @@ -40,6 +40,10 @@ Illegal ammo scheme Невалидна оръжейна схема + + When this option is enabled selecting a game scheme will auto-select a weapon (and viceversa) + + HWChatWidget @@ -601,11 +605,6 @@ - You can find your Hedgewars configuration files under "Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. - Tips - - - You're able to associate Hedgewars related files (savegames and demo recordings) with the game to launch them right from your favorite file or internet browser. Tips @@ -615,6 +614,16 @@ Tips + + You can find your Hedgewars configuration files under "Library/Application Support/Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Tips + + + + You can find your Hedgewars configuration files under ".hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Tips + + PageMultiplayer @@ -1333,6 +1342,10 @@ Sudden Death Health Decrease + + Bind schemes and weapons + + QLineEdit diff -r 82f1f1d819c0 -r 88714b6f3676 share/hedgewars/Data/Locale/hedgewars_cs.ts --- a/share/hedgewars/Data/Locale/hedgewars_cs.ts Sat Nov 13 03:25:40 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_cs.ts Sat Nov 13 03:26:14 2010 +0100 @@ -41,6 +41,10 @@ Edit schemes + + When this option is enabled selecting a game scheme will auto-select a weapon (and viceversa) + + HWChatWidget @@ -608,11 +612,6 @@ - You can find your Hedgewars configuration files under "Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. - Tips - - - You're able to associate Hedgewars related files (savegames and demo recordings) with the game to launch them right from your favorite file or internet browser. Tips @@ -622,6 +621,16 @@ Tips + + You can find your Hedgewars configuration files under "Library/Application Support/Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Tips + + + + You can find your Hedgewars configuration files under ".hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Tips + + PageMultiplayer @@ -1342,6 +1351,10 @@ Sudden Death Health Decrease + + Bind schemes and weapons + + QLineEdit diff -r 82f1f1d819c0 -r 88714b6f3676 share/hedgewars/Data/Locale/hedgewars_de.ts --- a/share/hedgewars/Data/Locale/hedgewars_de.ts Sat Nov 13 03:25:40 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_de.ts Sat Nov 13 03:26:14 2010 +0100 @@ -40,6 +40,10 @@ Edit schemes Spielprofile bearbeiten + + When this option is enabled selecting a game scheme will auto-select a weapon (and viceversa) + + HWChatWidget @@ -653,7 +657,7 @@ You can find your Hedgewars configuration files under "Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. Tips - Du findest die Hedgewars Konfigurationsdateien in deinem Home-Verzeichnis. Erstelle Backups oder kopiere deine Dateien, aber editiere sie besser nicht selbst. + Du findest die Hedgewars Konfigurationsdateien in deinem Home-Verzeichnis. Erstelle Backups oder kopiere deine Dateien, aber editiere sie besser nicht selbst. You're able to associate Hedgewars related files (savegames and demo recordings) with the game to launch them right from your favorite file or internet browser. @@ -665,6 +669,16 @@ Tips Du willst Seile sparen? Lass das Seil in der Luft los und schieß nochmal. Solange du nicht den Boden berührst kannst du es wiederverwenden ohne Munition zu verschwenden! + + You can find your Hedgewars configuration files under "Library/Application Support/Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Tips + + + + You can find your Hedgewars configuration files under ".hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Tips + + PageMultiplayer @@ -1400,6 +1414,10 @@ Sudden Death Health Decrease Schaden bei Sudden Death + + Bind schemes and weapons + + QLineEdit diff -r 82f1f1d819c0 -r 88714b6f3676 share/hedgewars/Data/Locale/hedgewars_en.ts --- a/share/hedgewars/Data/Locale/hedgewars_en.ts Sat Nov 13 03:25:40 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_en.ts Sat Nov 13 03:26:14 2010 +0100 @@ -40,6 +40,10 @@ Edit schemes Edit schemes + + When this option is enabled selecting a game scheme will auto-select a weapon (and viceversa) + + HWChatWidget @@ -636,11 +640,6 @@ - You can find your Hedgewars configuration files under "Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. - Tips - - - You're able to associate Hedgewars related files (savegames and demo recordings) with the game to launch them right from your favorite file or internet browser. Tips @@ -650,6 +649,16 @@ Tips + + You can find your Hedgewars configuration files under "Library/Application Support/Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Tips + + + + You can find your Hedgewars configuration files under ".hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Tips + + PageMultiplayer @@ -1379,6 +1388,10 @@ Sudden Death Health Decrease + + Bind schemes and weapons + + QLineEdit diff -r 82f1f1d819c0 -r 88714b6f3676 share/hedgewars/Data/Locale/hedgewars_es.ts --- a/share/hedgewars/Data/Locale/hedgewars_es.ts Sat Nov 13 03:25:40 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_es.ts Sat Nov 13 03:26:14 2010 +0100 @@ -40,6 +40,10 @@ Edit schemes Editar modos de juego + + When this option is enabled selecting a game scheme will auto-select a weapon (and viceversa) + + HWChatWidget @@ -651,7 +655,7 @@ You can find your Hedgewars configuration files under "Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. Tips - Puedes encontrar los archivos de configuración del juego en la carpeta ~/.hedgewars. Haz copias de seguridad de los mismos o cópialos a otro ordenador si lo deseas, pero no intentes editarlos a mano para evitar posibles pérdidas de datos. + Puedes encontrar los archivos de configuración del juego en la carpeta ~/.hedgewars. Haz copias de seguridad de los mismos o cópialos a otro ordenador si lo deseas, pero no intentes editarlos a mano para evitar posibles pérdidas de datos. You're able to associate Hedgewars related files (savegames and demo recordings) with the game to launch them right from your favorite file or internet browser. @@ -663,6 +667,16 @@ Tips ¿Necesitas conservar cuerdas? Cuando estés usando una cuerda puedes desengancharla y volver a lanzarla de nuevo. ¡Mientras no toques el suelo seguirás usando la misma cuerda continuamente sin desperdiciar munición adicional! + + You can find your Hedgewars configuration files under "Library/Application Support/Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Tips + + + + You can find your Hedgewars configuration files under ".hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Tips + + PageMultiplayer @@ -1429,6 +1443,10 @@ Sudden Death Health Decrease Decremento de vida en muerte súbita + + Bind schemes and weapons + + QLineEdit diff -r 82f1f1d819c0 -r 88714b6f3676 share/hedgewars/Data/Locale/hedgewars_fi.ts --- a/share/hedgewars/Data/Locale/hedgewars_fi.ts Sat Nov 13 03:25:40 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_fi.ts Sat Nov 13 03:26:14 2010 +0100 @@ -40,6 +40,10 @@ Edit schemes Muokkaa kaavaa + + When this option is enabled selecting a game scheme will auto-select a weapon (and viceversa) + + HWChatWidget @@ -647,7 +651,7 @@ You can find your Hedgewars configuration files under "Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. Tips - Löydät Hedgewars-asetustiedostot "Hedgewars"-hakemistosta kotihakemistossasi. Ota varmuuskopio tai ota ne mukaasi, mutta älä muokkaa niitä käsin. + Löydät Hedgewars-asetustiedostot "Hedgewars"-hakemistosta kotihakemistossasi. Ota varmuuskopio tai ota ne mukaasi, mutta älä muokkaa niitä käsin. You're able to associate Hedgewars related files (savegames and demo recordings) with the game to launch them right from your favorite file or internet browser. @@ -659,6 +663,16 @@ Tips + + You can find your Hedgewars configuration files under "Library/Application Support/Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Tips + + + + You can find your Hedgewars configuration files under ".hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Tips + + PageMultiplayer @@ -1416,6 +1430,10 @@ Sudden Death Health Decrease + + Bind schemes and weapons + + QLineEdit diff -r 82f1f1d819c0 -r 88714b6f3676 share/hedgewars/Data/Locale/hedgewars_fr.ts --- a/share/hedgewars/Data/Locale/hedgewars_fr.ts Sat Nov 13 03:25:40 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_fr.ts Sat Nov 13 03:26:14 2010 +0100 @@ -40,6 +40,10 @@ Edit schemes Éditer les paramètres + + When this option is enabled selecting a game scheme will auto-select a weapon (and viceversa) + + HWChatWidget @@ -628,11 +632,6 @@ - You can find your Hedgewars configuration files under "Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. - Tips - - - You're able to associate Hedgewars related files (savegames and demo recordings) with the game to launch them right from your favorite file or internet browser. Tips @@ -647,6 +646,16 @@ Tips + + You can find your Hedgewars configuration files under "Library/Application Support/Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Tips + + + + You can find your Hedgewars configuration files under ".hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Tips + + PageMultiplayer @@ -1375,6 +1384,10 @@ Sudden Death Health Decrease + + Bind schemes and weapons + + QLineEdit diff -r 82f1f1d819c0 -r 88714b6f3676 share/hedgewars/Data/Locale/hedgewars_hu.ts --- a/share/hedgewars/Data/Locale/hedgewars_hu.ts Sat Nov 13 03:25:40 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_hu.ts Sat Nov 13 03:26:14 2010 +0100 @@ -39,6 +39,10 @@ Edit schemes Sémák szerkesztése + + When this option is enabled selecting a game scheme will auto-select a weapon (and viceversa) + + HWChatWidget @@ -629,12 +633,17 @@ - You can find your Hedgewars configuration files under "Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Want to save ropes? Release the rope in mid air and then shoot again. As long as you don't touch the ground you'll reuse your rope without wasting ammo! Tips - Want to save ropes? Release the rope in mid air and then shoot again. As long as you don't touch the ground you'll reuse your rope without wasting ammo! + You can find your Hedgewars configuration files under "Library/Application Support/Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Tips + + + + You can find your Hedgewars configuration files under ".hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. Tips @@ -1370,6 +1379,10 @@ Sudden Death Health Decrease + + Bind schemes and weapons + + QLineEdit diff -r 82f1f1d819c0 -r 88714b6f3676 share/hedgewars/Data/Locale/hedgewars_it.ts --- a/share/hedgewars/Data/Locale/hedgewars_it.ts Sat Nov 13 03:25:40 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_it.ts Sat Nov 13 03:26:14 2010 +0100 @@ -40,6 +40,10 @@ Edit schemes Modifica schemi + + When this option is enabled selecting a game scheme will auto-select a weapon (and viceversa) + + HWChatWidget @@ -637,11 +641,6 @@ - You can find your Hedgewars configuration files under "Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. - Tips - - - You're able to associate Hedgewars related files (savegames and demo recordings) with the game to launch them right from your favorite file or internet browser. Tips @@ -651,6 +650,16 @@ Tips + + You can find your Hedgewars configuration files under "Library/Application Support/Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Tips + + + + You can find your Hedgewars configuration files under ".hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Tips + + PageMultiplayer @@ -1385,6 +1394,10 @@ Sudden Death Health Decrease + + Bind schemes and weapons + + QLineEdit diff -r 82f1f1d819c0 -r 88714b6f3676 share/hedgewars/Data/Locale/hedgewars_ja.ts --- a/share/hedgewars/Data/Locale/hedgewars_ja.ts Sat Nov 13 03:25:40 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_ja.ts Sat Nov 13 03:26:14 2010 +0100 @@ -39,6 +39,10 @@ Edit schemes + + When this option is enabled selecting a game scheme will auto-select a weapon (and viceversa) + + HWChatWidget @@ -594,11 +598,6 @@ - You can find your Hedgewars configuration files under "Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. - Tips - - - You're able to associate Hedgewars related files (savegames and demo recordings) with the game to launch them right from your favorite file or internet browser. Tips @@ -608,6 +607,16 @@ Tips + + You can find your Hedgewars configuration files under "Library/Application Support/Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Tips + + + + You can find your Hedgewars configuration files under ".hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Tips + + PageMultiplayer @@ -1324,6 +1333,10 @@ Sudden Death Health Decrease + + Bind schemes and weapons + + QLineEdit diff -r 82f1f1d819c0 -r 88714b6f3676 share/hedgewars/Data/Locale/hedgewars_pl.ts --- a/share/hedgewars/Data/Locale/hedgewars_pl.ts Sat Nov 13 03:25:40 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_pl.ts Sat Nov 13 03:26:14 2010 +0100 @@ -41,6 +41,10 @@ Edit weapons Edytuj uzbrojenie + + When this option is enabled selecting a game scheme will auto-select a weapon (and viceversa) + + HWChatWidget @@ -675,7 +679,7 @@ You can find your Hedgewars configuration files under "Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. Tips - Swoje zespoły i konfigurację gry znajdzie4sz w folderze ".hedgewars" w twoim katalogu domowym. Twórz regularnie kopie zapasowe ale nie edytuj tych plików własnoręcznie. + Swoje zespoły i konfigurację gry znajdzie4sz w folderze ".hedgewars" w twoim katalogu domowym. Twórz regularnie kopie zapasowe ale nie edytuj tych plików własnoręcznie. You're able to associate Hedgewars related files (savegames and demo recordings) with the game to launch them right from your favorite file or internet browser. @@ -687,6 +691,16 @@ Tips Chcesz zaoszczędzić liny? Odłącz ją będąc w powietrzu, a potem wypuść ją ponownie. Tak długo jak nie dotkniesz ziemi, będziesz używał pojedynczego naboju! + + You can find your Hedgewars configuration files under "Library/Application Support/Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Tips + + + + You can find your Hedgewars configuration files under ".hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Tips + + PageMultiplayer @@ -1458,6 +1472,10 @@ Sudden Death Health Decrease Tracone HP podczas NŚ + + Bind schemes and weapons + + QLineEdit diff -r 82f1f1d819c0 -r 88714b6f3676 share/hedgewars/Data/Locale/hedgewars_pt_BR.ts --- a/share/hedgewars/Data/Locale/hedgewars_pt_BR.ts Sat Nov 13 03:25:40 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_pt_BR.ts Sat Nov 13 03:26:14 2010 +0100 @@ -40,6 +40,10 @@ Edit schemes Editar esquemas + + When this option is enabled selecting a game scheme will auto-select a weapon (and viceversa) + + HWChatWidget @@ -705,7 +709,7 @@ You can find your Hedgewars configuration files under "Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. Tips - Você pode encontrar os arquivos de configuração em ".hedgewars". Crie cópias ou leve os arquivos com você, mas não edite eles manualmente. + Você pode encontrar os arquivos de configuração em ".hedgewars". Crie cópias ou leve os arquivos com você, mas não edite eles manualmente. You're able to associate Hedgewars related files (savegames and demo recordings) with the game to launch them right from your favorite file or internet browser. @@ -717,6 +721,16 @@ Tips Quer economizar corda? Solte-a quando estiver no meio do ar e então atire de novo. Se você não tocar o solo, você reutilizará a corda e não desperdiçará o seu arsenal! + + You can find your Hedgewars configuration files under "Library/Application Support/Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Tips + + + + You can find your Hedgewars configuration files under ".hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Tips + + PageMultiplayer @@ -1484,6 +1498,10 @@ Sudden Death Health Decrease Morte Subita: redução de vida + + Bind schemes and weapons + + QLineEdit diff -r 82f1f1d819c0 -r 88714b6f3676 share/hedgewars/Data/Locale/hedgewars_pt_PT.ts --- a/share/hedgewars/Data/Locale/hedgewars_pt_PT.ts Sat Nov 13 03:25:40 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_pt_PT.ts Sat Nov 13 03:26:14 2010 +0100 @@ -40,6 +40,10 @@ Edit weapons Editar armas + + When this option is enabled selecting a game scheme will auto-select a weapon (and viceversa) + + HWChatWidget @@ -647,7 +651,7 @@ You can find your Hedgewars configuration files under "Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. Tips - Podes encontrar os ficheiros de configuração do Hedgewars na pasta "Hedgewars" dentro da tua "Pasta Pessoal". Cria cópias de segurança ou leva os ficheiros contigo, apenas não os edites. + Podes encontrar os ficheiros de configuração do Hedgewars na pasta "Hedgewars" dentro da tua "Pasta Pessoal". Cria cópias de segurança ou leva os ficheiros contigo, apenas não os edites. You're able to associate Hedgewars related files (savegames and demo recordings) with the game to launch them right from your favorite file or internet browser. @@ -659,6 +663,16 @@ Tips Gostavas de poupar algumas cordas? Solta a corda enquanto no ar e dispara-a novamente. Desde que não toques no solo podes reutilizar a usar a mesma corda quantas vezes quiseres! + + You can find your Hedgewars configuration files under "Library/Application Support/Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Tips + + + + You can find your Hedgewars configuration files under ".hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Tips + + PageMultiplayer @@ -1388,6 +1402,10 @@ Sudden Death Health Decrease Vida perdida durante Morte Súbita + + Bind schemes and weapons + + QLineEdit diff -r 82f1f1d819c0 -r 88714b6f3676 share/hedgewars/Data/Locale/hedgewars_ru.ts --- a/share/hedgewars/Data/Locale/hedgewars_ru.ts Sat Nov 13 03:25:40 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_ru.ts Sat Nov 13 03:26:14 2010 +0100 @@ -41,6 +41,10 @@ Edit schemes Редактировать схемы + + When this option is enabled selecting a game scheme will auto-select a weapon (and viceversa) + + HWChatWidget @@ -645,11 +649,6 @@ - You can find your Hedgewars configuration files under "Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. - Tips - - - You're able to associate Hedgewars related files (savegames and demo recordings) with the game to launch them right from your favorite file or internet browser. Tips @@ -659,6 +658,16 @@ Tips + + You can find your Hedgewars configuration files under "Library/Application Support/Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Tips + + + + You can find your Hedgewars configuration files under ".hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Tips + + PageMultiplayer @@ -1396,6 +1405,10 @@ Sudden Death Health Decrease Скорость уменьшения здоровья + + Bind schemes and weapons + + QLineEdit diff -r 82f1f1d819c0 -r 88714b6f3676 share/hedgewars/Data/Locale/hedgewars_sk.ts --- a/share/hedgewars/Data/Locale/hedgewars_sk.ts Sat Nov 13 03:25:40 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_sk.ts Sat Nov 13 03:26:14 2010 +0100 @@ -41,6 +41,10 @@ Edit schemes Upraviť schémy + + When this option is enabled selecting a game scheme will auto-select a weapon (and viceversa) + + HWChatWidget @@ -89,7 +93,7 @@ DefaultTeam - + VýchodzíTím Hedgewars Demo File @@ -199,7 +203,7 @@ HWNewNet The host was not found. Please check the host name and port settings. - Stanica nebola nájdená. Prosím, skontrolujte názov stanice a nastavenia portu. + Hostiteľ nebol nájdený. Prosím, skontrolujte názov hostiteľa a nastavenia portu. Connection refused @@ -376,15 +380,15 @@ (%1 kill) - - + (%1 zabitie) + (%1 zabití) <b>%1</b> thought it's good to shoot his own hedgehogs with <b>%2</b> pts. - + <b>%1</b> sa nazdával, že je vhodné strieľať po svojich a získal tak <b>%2</b> bodov. @@ -392,7 +396,7 @@ <b>%1</b> killed <b>%2</b> of his own hedgehogs. - + <b>%1</b> zabil <b>%2</b> svojich druhov. @@ -400,7 +404,7 @@ <b>%1</b> was scared and skipped turn <b>%2</b> times. - + <b>%1</b> sa zľakol a preskočil ťah <b>%2</b>krát. @@ -429,7 +433,7 @@ If you're unsure what to do and don't want to waste ammo, skip one round. But don't let too much time pass as there will be Sudden Death! Tips - + Ak neviete, čo robiť a nechcete mrhať muníciou, preskočte ťah. Ale nerobte tak príliš často, pretože príde Náhla smrť! If you'd like to keep others from using your preferred nickname on the official server, register an account at http://www.hedgewars.org/. @@ -639,12 +643,12 @@ You can find your Hedgewars configuration files under "My Documents\Hedgewars". Create backups or take the files with you, but don't edit them by hand. Tips - - - - You can find your Hedgewars configuration files under "Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Konfiguračné súbory Hedgewars nájdete v "Moje Dokumenty\Hedgewars". Vytvárajte si zálohy alebo prenášajte si tieto súbory medzi počítačmi, ale needitujte ich ručne. + + + You can find your Hedgewars configuration files under ".hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. Tips - + Konfiguračné súbory Hedgewars nájdete v ".hedgewars" vo vašom domovskom adresári. Vytvárajte si zálohy alebo prenášajte si tieto súbory medzi počítačmi, ale needitujte ich ručne. You're able to associate Hedgewars related files (savegames and demo recordings) with the game to launch them right from your favorite file or internet browser. @@ -654,6 +658,11 @@ Want to save ropes? Release the rope in mid air and then shoot again. As long as you don't touch the ground you'll reuse your rope without wasting ammo! Tips + Chcete ušetriť lano? Kým ste vo vzduchu, uvoľnite ho a opäť vystreľte. Kým sa nedotknete zeme, môžete to isté lano znovu použiť bez toho, aby sa vám míňali jeho zásoby! + + + You can find your Hedgewars configuration files under "Library/Application Support/Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Tips @@ -963,7 +972,7 @@ AI respawns on death. - + Počítač po smrti ožije. All (living) hedgehogs are fully restored at the end of turn @@ -1374,7 +1383,7 @@ Quality - + Kvalita % Health Crates @@ -1392,6 +1401,10 @@ Sudden Death Health Decrease + + Bind schemes and weapons + + QLineEdit @@ -1447,7 +1460,7 @@ Can not overwrite default weapon set '%1'! - + Nie je možné prepísať východziu sadu zbraní '%1'! All file associations have been set. diff -r 82f1f1d819c0 -r 88714b6f3676 share/hedgewars/Data/Locale/hedgewars_sv.ts --- a/share/hedgewars/Data/Locale/hedgewars_sv.ts Sat Nov 13 03:25:40 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_sv.ts Sat Nov 13 03:26:14 2010 +0100 @@ -40,6 +40,10 @@ Edit schemes Redigera spelscheman + + When this option is enabled selecting a game scheme will auto-select a weapon (and viceversa) + + HWChatWidget @@ -647,7 +651,7 @@ You can find your Hedgewars configuration files under "Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. Tips - Du kan hitta dina konfigurationsfiler under "Hedgewars" i din hem-mapp. Gör en säkerhetskopia eller ta med dig filerna, men redigera dem inte för hand. + Du kan hitta dina konfigurationsfiler under "Hedgewars" i din hem-mapp. Gör en säkerhetskopia eller ta med dig filerna, men redigera dem inte för hand. You're able to associate Hedgewars related files (savegames and demo recordings) with the game to launch them right from your favorite file or internet browser. @@ -659,6 +663,16 @@ Tips Vill du spara rep? Släpp repet i luften och sedan sjut igen. Så länge du inte nuddar marken använder du samma rep utan att slösa på ammunition! + + You can find your Hedgewars configuration files under "Library/Application Support/Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Tips + + + + You can find your Hedgewars configuration files under ".hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Tips + + PageMultiplayer @@ -1422,6 +1436,10 @@ Sudden Death Health Decrease Sudden Death livminskning + + Bind schemes and weapons + + QLineEdit diff -r 82f1f1d819c0 -r 88714b6f3676 share/hedgewars/Data/Locale/hedgewars_tr_TR.ts --- a/share/hedgewars/Data/Locale/hedgewars_tr_TR.ts Sat Nov 13 03:25:40 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_tr_TR.ts Sat Nov 13 03:26:14 2010 +0100 @@ -39,6 +39,10 @@ Edit schemes Düzeni değiştir + + When this option is enabled selecting a game scheme will auto-select a weapon (and viceversa) + + HWChatWidget @@ -602,11 +606,6 @@ - You can find your Hedgewars configuration files under "Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. - Tips - - - You're able to associate Hedgewars related files (savegames and demo recordings) with the game to launch them right from your favorite file or internet browser. Tips @@ -616,6 +615,16 @@ Tips + + You can find your Hedgewars configuration files under "Library/Application Support/Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Tips + + + + You can find your Hedgewars configuration files under ".hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Tips + + PageMultiplayer @@ -1336,6 +1345,10 @@ Sudden Death Health Decrease + + Bind schemes and weapons + + QLineEdit diff -r 82f1f1d819c0 -r 88714b6f3676 share/hedgewars/Data/Locale/hedgewars_uk.ts --- a/share/hedgewars/Data/Locale/hedgewars_uk.ts Sat Nov 13 03:25:40 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_uk.ts Sat Nov 13 03:26:14 2010 +0100 @@ -41,6 +41,10 @@ Edit schemes Редагувати схеми + + When this option is enabled selecting a game scheme will auto-select a weapon (and viceversa) + + HWChatWidget @@ -642,11 +646,6 @@ - You can find your Hedgewars configuration files under "Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. - Tips - - - You're able to associate Hedgewars related files (savegames and demo recordings) with the game to launch them right from your favorite file or internet browser. Tips @@ -656,6 +655,16 @@ Tips + + You can find your Hedgewars configuration files under "Library/Application Support/Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Tips + + + + You can find your Hedgewars configuration files under ".hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Tips + + PageMultiplayer @@ -1392,6 +1401,10 @@ Sudden Death Health Decrease + + Bind schemes and weapons + + QLineEdit diff -r 82f1f1d819c0 -r 88714b6f3676 share/hedgewars/Data/Locale/hedgewars_zh_CN.ts --- a/share/hedgewars/Data/Locale/hedgewars_zh_CN.ts Sat Nov 13 03:25:40 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_zh_CN.ts Sat Nov 13 03:26:14 2010 +0100 @@ -39,6 +39,10 @@ Edit weapons 修改武器 + + When this option is enabled selecting a game scheme will auto-select a weapon (and viceversa) + + HWChatWidget @@ -648,7 +652,7 @@ You can find your Hedgewars configuration files under "Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. Tips - 你可以在你的主文件夹下下找到“Hedgewars”文件夹,里面又配置文件,你可以新建和备份这个文件,但请不要随便编辑它. + 你可以在你的主文件夹下下找到“Hedgewars”文件夹,里面又配置文件,你可以新建和备份这个文件,但请不要随便编辑它. You're able to associate Hedgewars related files (savegames and demo recordings) with the game to launch them right from your favorite file or internet browser. @@ -660,6 +664,16 @@ Tips + + You can find your Hedgewars configuration files under "Library/Application Support/Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Tips + + + + You can find your Hedgewars configuration files under ".hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Tips + + PageMultiplayer @@ -1415,6 +1429,10 @@ Sudden Death Health Decrease + + Bind schemes and weapons + + QLineEdit diff -r 82f1f1d819c0 -r 88714b6f3676 share/hedgewars/Data/Locale/hedgewars_zh_TW.ts --- a/share/hedgewars/Data/Locale/hedgewars_zh_TW.ts Sat Nov 13 03:25:40 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_zh_TW.ts Sat Nov 13 03:26:14 2010 +0100 @@ -39,6 +39,10 @@ Edit schemes 修改遊戲設置 + + When this option is enabled selecting a game scheme will auto-select a weapon (and viceversa) + + HWChatWidget @@ -624,11 +628,6 @@ - You can find your Hedgewars configuration files under "Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. - Tips - - - You're able to associate Hedgewars related files (savegames and demo recordings) with the game to launch them right from your favorite file or internet browser. Tips @@ -638,6 +637,16 @@ Tips + + You can find your Hedgewars configuration files under "Library/Application Support/Hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Tips + + + + You can find your Hedgewars configuration files under ".hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. + Tips + + PageMultiplayer @@ -1364,6 +1373,10 @@ Sudden Death Health Decrease + + Bind schemes and weapons + + QLineEdit diff -r 82f1f1d819c0 -r 88714b6f3676 share/hedgewars/Data/Locale/sk.txt --- a/share/hedgewars/Data/Locale/sk.txt Sat Nov 13 03:25:40 2010 +0100 +++ b/share/hedgewars/Data/Locale/sk.txt Sat Nov 13 03:26:14 2010 +0100 @@ -315,3 +315,8 @@ 05:13=Časovače mín: Míny detonujú okamžite 05:14=Časovače mín: Míny detonujú po 0-3 sekundách 05:15=Modifikátor škody: Všetky zbrane spôsobia škodu %1% +05:16=Na konci každého ťahu je zdravie všetkých ježkov resetované +05:17=Počítačoví ježkovia po smrti ožijú +05:18=Neobmedzené útoky +05:19=Zbrane sú na konci ťahu resetované +05:20=Zbrane nie sú zdieľané ježkami