# HG changeset patch # User nemo # Date 1293472071 18000 # Node ID 5e50d8162a961257ca36d193f61b86fbac660b9f # Parent e8fd20b2d66be5f5a68645ec6670a65700820a7d# Parent a9f9c96db60c995fa69166e5d2863fbd7775bdde Merge trunk into 0.9.15, excluding CMakeLists.txt and ChangeLog.txt - this should fix snowball again, pick up some more translation changes, hide the seed button by default and fix a couple of frontend desyncs diff -r e8fd20b2d66b -r 5e50d8162a96 CMakeLists.txt diff -r e8fd20b2d66b -r 5e50d8162a96 ChangeLog.txt diff -r e8fd20b2d66b -r 5e50d8162a96 QTfrontend/about.cpp --- a/QTfrontend/about.cpp Sun Dec 26 12:42:22 2010 -0500 +++ b/QTfrontend/about.cpp Mon Dec 27 12:47:51 2010 -0500 @@ -119,6 +119,7 @@ "German: Peter Hüwe <PeterHuewe@gmx.de>, Mario Liebisch <mario.liebisch@gmail.com>
" "Italian: Luca Bonora <bonora.luca@gmail.com>
" "Japanese: ADAM Etienne <etienne.adam@gmail.com>
" + "Korean: Anthony Bellew <webmaster@anthonybellew.com>
" "Polish: Maciej Mroziński <mynick2@o2.pl>, Wojciech Latkowski <magik17l@gmail.com>, Piotr Mitana, Maciej Górny
" "Portuguese: Fábio Canário <inufabie@gmail.com>
" "Russian: Andrey Korotaev <unC0Rr@gmail.com>
" diff -r e8fd20b2d66b -r 5e50d8162a96 QTfrontend/gamecfgwidget.cpp --- a/QTfrontend/gamecfgwidget.cpp Sun Dec 26 12:42:22 2010 -0500 +++ b/QTfrontend/gamecfgwidget.cpp Mon Dec 27 12:47:51 2010 -0500 @@ -52,7 +52,7 @@ Scripts = new QComboBox(GBoxOptions); GBoxOptionsLayout->addWidget(Scripts, 0, 1); - Scripts->addItem(QComboBox::tr("Normal")); + Scripts->addItem("Normal"); Scripts->insertSeparator(1); for (int i = 0; i < scriptList->size(); ++i) { @@ -332,6 +332,9 @@ } if (param == "SEED") { pMapContainer->setSeed(value); + if (!QRegExp("\\{[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}\\}").exactMatch(value)) { + pMapContainer->seedEdit->setVisible(true); + } return; } if (param == "THEME") { @@ -383,7 +386,7 @@ void GameCFGWidget::mapChanged(const QString & value) { - if(pMapContainer->getCurrentIsMission()) + if(isEnabled() && pMapContainer->getCurrentIsMission()) { Scripts->setEnabled(false); Scripts->setCurrentIndex(0); @@ -458,7 +461,7 @@ emit paramChanged("SCHEME", sl); - if (bindEntries->isEnabled() && bindEntries->isChecked()) { + if (isEnabled() && bindEntries->isEnabled() && bindEntries->isChecked()) { QString schemeName = GameSchemes->itemText(index); for (int i = 0; i < WeaponsName->count(); i++) { QString weapName = WeaponsName->itemText(i); @@ -474,7 +477,7 @@ void GameCFGWidget::scriptChanged(int index) { - if(index > 0) + if(isEnabled() && index > 0) { QString scheme = Scripts->itemData(Scripts->currentIndex()).toList()[1].toString(); QString weapons = Scripts->itemData(Scripts->currentIndex()).toList()[2].toString(); diff -r e8fd20b2d66b -r 5e50d8162a96 QTfrontend/mapContainer.cpp --- a/QTfrontend/mapContainer.cpp Sun Dec 26 12:42:22 2010 -0500 +++ b/QTfrontend/mapContainer.cpp Mon Dec 27 12:47:51 2010 -0500 @@ -177,8 +177,8 @@ connect(maze_size_selection, SIGNAL(currentIndexChanged(int)), this, SLOT(setMaze_size(int))); gbThemes = new IconedGroupBox(mapWidget); - gbThemes->setTitleTextPadding(60); - gbThemes->setContentTopPadding(6); + gbThemes->setTitleTextPadding(80); + gbThemes->setContentTopPadding(15); gbThemes->setTitle(tr("Themes")); //gbThemes->setStyleSheet("padding: 0px"); // doesn't work - stylesheet is set with icon @@ -224,7 +224,7 @@ QGridLayout* seedLayout = new QGridLayout(seedWidget); seedLayout->setMargin(0); - QLabel* seedLabel = new QLabel(tr("Seed"), seedWidget); + seedLabel = new QLabel(tr("Seed"), seedWidget); seedLayout->addWidget(seedLabel, 3, 0); seedEdit = new QLineEdit(seedWidget); seedEdit->setMaxLength(54); @@ -232,11 +232,14 @@ seedLayout->addWidget(seedEdit, 3, 1); seedLayout->setColumnStretch(1, 5); seedSet = new QPushButton(seedWidget); - seedSet->setText(QPushButton::tr("Set")); + seedSet->setText(QPushButton::tr("more")); connect(seedSet, SIGNAL(clicked()), this, SLOT(seedEdited())); seedLayout->setColumnStretch(2, 1); seedLayout->addWidget(seedSet, 3, 2); + seedLabel->setVisible(false); + seedEdit->setVisible(false); + setRandomSeed(); setRandomTheme(); } @@ -370,7 +373,7 @@ chooseMap->setItemData(1, mapInfo); mapInfo[0] = QString("+drawn+"); chooseMap->setItemData(2, mapInfo); - gbThemes->setIcon(QIcon(QString("%1/Themes/%2/icon.png").arg(datadir->absolutePath()).arg(theme))); + gbThemes->setIcon(QIcon(QString("%1/Themes/%2/icon@2x.png").arg(datadir->absolutePath()).arg(theme))); emit themeChanged(theme); } @@ -561,6 +564,14 @@ void HWMapContainer::seedEdited() { + if (seedLabel->isVisible() == false ) + { + seedLabel->setVisible(true); + seedEdit->setVisible(true); + seedSet->setText(tr("Set")); + return; + } + if (seedEdit->text().isEmpty()) seedEdit->setText(m_seed); else diff -r e8fd20b2d66b -r 5e50d8162a96 QTfrontend/mapContainer.h --- a/QTfrontend/mapContainer.h Sun Dec 26 12:42:22 2010 -0500 +++ b/QTfrontend/mapContainer.h Mon Dec 27 12:47:51 2010 -0500 @@ -56,6 +56,7 @@ QByteArray getDrawnMapData(); DrawMapScene * getDrawMapScene(); void mapDrawingFinished(); + QLineEdit* seedEdit; public slots: void askForGeneratedPreview(); @@ -102,8 +103,8 @@ QListWidget* lwThemes; HWMap* pMap; QString m_seed; - QLineEdit* seedEdit; QPushButton* seedSet; + QLabel* seedLabel; int hhLimit; int templateFilter; QPixmap hhSmall; diff -r e8fd20b2d66b -r 5e50d8162a96 hedgewars/GSHandlers.inc --- a/hedgewars/GSHandlers.inc Sun Dec 26 12:42:22 2010 -0500 +++ b/hedgewars/GSHandlers.inc Mon Dec 27 12:47:51 2010 -0500 @@ -912,6 +912,9 @@ procedure doStepDEagleShot(Gear: PGear); begin PlaySound(sndGun); + // add an initial step to avoid problem with ammoshove related to calculation of radius + 1 radius as gear widths + Gear^.X := Gear^.X + Gear^.dX; + Gear^.Y := Gear^.Y + Gear^.dY; Gear^.doStep := @doStepBulletWork end; @@ -945,6 +948,9 @@ Gear^.dX := SignAs(AngleSin(HHGear^.Angle), HHGear^.dX) * _0_5; Gear^.dY := -AngleCos(HHGear^.Angle) * _0_5; PlaySound(sndGun); + // add an initial step to avoid problem with ammoshove related to calculation of radius + 1 radius as gear widths + Gear^.X := Gear^.X + Gear^.dX; + Gear^.Y := Gear^.Y + Gear^.dY; Gear^.doStep := @doStepBulletWork; end else diff -r e8fd20b2d66b -r 5e50d8162a96 hedgewars/uCollisions.pas --- a/hedgewars/uCollisions.pas Sun Dec 26 12:42:22 2010 -0500 +++ b/hedgewars/uCollisions.pas Mon Dec 27 12:47:51 2010 -0500 @@ -103,7 +103,7 @@ mx:= hwRound(Gear^.X); my:= hwRound(Gear^.Y); -tr:= Gear^.Radius; +tr:= Gear^.Radius + 2; for i:= 0 to Pred(Count) do with cinfos[i] do diff -r e8fd20b2d66b -r 5e50d8162a96 hedgewars/uGears.pas --- a/hedgewars/uGears.pas Sun Dec 26 12:42:22 2010 -0500 +++ b/hedgewars/uGears.pas Mon Dec 27 12:47:51 2010 -0500 @@ -1854,7 +1854,7 @@ Gear^.Text:= text; Gear^.FrameTicks:= x end - else ParseCommand('say ' + text, true) + //else ParseCommand('say ' + text, true) end else if (x >= 4) then begin diff -r e8fd20b2d66b -r 5e50d8162a96 project_files/HedgewarsMobile/Resources/Settings/settings.plist --- a/project_files/HedgewarsMobile/Resources/Settings/settings.plist Sun Dec 26 12:42:22 2010 -0500 +++ b/project_files/HedgewarsMobile/Resources/Settings/settings.plist Mon Dec 27 12:47:51 2010 -0500 @@ -17,7 +17,7 @@ password_length 0 enhanced - + multitasking diff -r e8fd20b2d66b -r 5e50d8162a96 project_files/hedgewars.pro --- a/project_files/hedgewars.pro Sun Dec 26 12:42:22 2010 -0500 +++ b/project_files/hedgewars.pro Mon Dec 27 12:47:51 2010 -0500 @@ -73,6 +73,7 @@ TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_hu.ts TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_it.ts TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_ja.ts +TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_ko.ts TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_nl.ts TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_pl.ts TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_pt_BR.ts diff -r e8fd20b2d66b -r 5e50d8162a96 share/hedgewars/Data/Graphics/Hedgehog/amSnowball.png Binary file share/hedgewars/Data/Graphics/Hedgehog/amSnowball.png has changed diff -r e8fd20b2d66b -r 5e50d8162a96 share/hedgewars/Data/Locale/de.lua --- a/share/hedgewars/Data/Locale/de.lua Sun Dec 26 12:42:22 2010 -0500 +++ b/share/hedgewars/Data/Locale/de.lua Mon Dec 27 12:47:51 2010 -0500 @@ -8,6 +8,7 @@ ["Bazooka Training"] = "Bazooka-Training", -- ["Best laps per team: "] = "", -- ["Bloody Rookies"] = "", -- 01#Boot_Camp, User_Mission_-_Dangerous_Ducklings, User_Mission_-_Diver, User_Mission_-_Spooky_Tree +-- ["Boom!"] = "", -- ["by mikade"] = "", -- Control, User_Mission_-_Dangerous_Ducklings, User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork, Capture_the_Flag -- ["CAPTURE THE FLAG"] = "", -- ["Codename: Teamwork"] = "", @@ -16,6 +17,7 @@ -- ["CONTROL"] = "", -- ["Control pillars to score points."] = "", -- ["CONTROL v0.3"] = "", +-- ["CTF_BLIZZARD"] = "", -- ["CUSTOM BUILD 0.2"] = "", -- ["Cybernetic Empire"] = "", -- ["DAMMIT, ROOKIE!"] = "", @@ -36,6 +38,7 @@ -- ["GAME OVER!"] = "", -- ["Game Started!"] = "", -- ["Get on over there and take him out!"] = "", +-- ["Goal:"] = "", -- ["GO! GO! GO!"] = "", -- ["Good birdy......"] = "", -- ["Good luck out there!"] = "", @@ -47,22 +50,24 @@ -- ["Instructor"] = "", -- 01#Boot_Camp, User_Mission_-_Dangerous_Ducklings -- ["- Jumping is disabled"] = "", -- ["Listen up, maggot!!"] = "", +-- ["|- Mines Time:"] = "", -- User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork -- ["MISSION FAILED"] = "", -- User_Mission_-_Dangerous_Ducklings, User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork -- ["MISSION SUCCESSFUL"] = "", -- User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork -- ["MISSION SUCCESS"] = "", -- User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork --- ["NEW fastest lap:"] = "", -- ["NEW fastest lap: "] = "", -- ["NO JUMPING"] = "", ["Not So Friendly Match"] = "Kein-so-Freundschaftsspiel", -- Basketball, Knockball -- ["Oh no! Just try again!"] = "", -- User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork ["Oh no! Time's up! Just try again."] = "Oh nein! Die Zeit ist um! Versuche es nochmal.", --Bazooka, Shotgun, SniperRifle -- ["Operation Diver"] = "", --- ["Opposing Team:"] = "", +-- ["Opposing Team: "] = "", -- ["Pathetic Hog #%d"] = "", -- ["Poison"] = "", -- ["Random Weapons"] = "", -- [" - Return the enemy flag to your base to score | - First team to 3 captures wins | - You may only score when your flag is in your base | - Hogs will drop the flag if killed, or drowned | - Dropped flags may be returned or recaptured | - Hogs respawn when killed"] = "", -- ["RULES OF THE GAME [Press ESC to view]"] = "", +-- ["RULES OF THE GAME [Press ESC to view]"] = "", +-- ["sec"] = "", -- CTF_Blizzard, TrophyRace, Basic_Training_-_Bazooka, Basic_Training_-_Shotgun, Basic_Training_-_Sniper_Rifle, User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork, Capture_the_Flag -- ["See ya!"] = "", ["Shotgun Team"] = "Entrenamiento con escopeta", ["Shotgun Training"] = "Schrotflinten-Training", @@ -73,7 +78,9 @@ -- ["Spooky Tree"] = "", -- ["Team %d: "] = "", -- ["Team Scores:"] = "", +-- ["That was pointless."] = "", -- ["The enemy is hiding out on yonder ducky!"] = "", +-- ["The flag will respawn next round."] = "", -- ["There has been a mix-up with your gear and now you|have to utilize whatever is coming your way!"] = "", -- ["Toxic Team"] = "", -- User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork -- ["TrophyRace"] = "", diff -r e8fd20b2d66b -r 5e50d8162a96 share/hedgewars/Data/Locale/es.lua --- a/share/hedgewars/Data/Locale/es.lua Sun Dec 26 12:42:22 2010 -0500 +++ b/share/hedgewars/Data/Locale/es.lua Mon Dec 27 12:47:51 2010 -0500 @@ -8,6 +8,7 @@ ["Bazooka Training"] = "Entrenamiento con bazuca", ["Best laps per team: "] = "Mejores tiempos por equipo: ", ["Bloody Rookies"] = "Reclutas", -- 01#Boot_Camp, User_Mission_-_Dangerous_Ducklings, User_Mission_-_Diver, User_Mission_-_Spooky_Tree +-- ["Boom!"] = "", ["by mikade"] = "por mikade", -- Control, User_Mission_-_Dangerous_Ducklings, User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork, Capture_the_Flag ["CAPTURE THE FLAG"] = "Capturar la bandera", ["Codename: Teamwork"] = "Nombre en clave: Trabajo en equipo", @@ -16,10 +17,11 @@ ["CONTROL"] = "DOMINACIÓN", ["Control pillars to score points."] = "Controla los pilares para anotar puntos.", ["CONTROL v0.3"] = "DOMINACIÓN v0.3", +-- ["CTF_BLIZZARD"] = "", ["CUSTOM BUILD 0.2"] = "COMPILACIÓN 0.2", ["Cybernetic Empire"] = "Imperio cibernético", + ["DAMMIT, ROOKIE! GET OFF MY HEAD!"] = "¡MALDITA SEA, RECLUTA! ¡FUERA DE MI CABEZA!", ["DAMMIT, ROOKIE!"] = "¡MALDITA SEA, RECLUTA!", - ["DAMMIT, ROOKIE! GET OFF MY HEAD!"] = "¡MALDITA SEA, RECLUTA! ¡FUERA DE MI CABEZA!", ["Dangerous Ducklings"] = "Patitos peligrosos", ["Eliminate all enemies"] = "Elimina a todos los enemigos", ["Eliminate all targets before your time runs out.|You have unlimited ammo for this mission."] = "Destruye todos los objetivos antes de que se agote el tiempo.|La munición en esta misión es ilimitada.", --Bazooka, Shotgun, SniperRifle @@ -36,6 +38,7 @@ ["GAME OVER!"] = "¡FIN DEL JUEGO!", ["Game Started!"] = "¡El juego ha empezado!", ["Get on over there and take him out!"] = "¡Ves allí y elimínalo!", +-- ["Goal:"] = "", ["GO! GO! GO!"] = "¡VAMOS! ¡VAMOS! ¡VAMOS!", ["Good birdy......"] = "Buen pajarito......", ["Good luck out there!"] = "¡Buena suerte!", @@ -47,23 +50,24 @@ ["Instructor"] = "Instructor", -- 01#Boot_Camp, User_Mission_-_Dangerous_Ducklings ["- Jumping is disabled"] = "- No se puede saltar", ["Listen up, maggot!!"] = "¡Atento, escoria!", +-- ["|- Mines Time:"] = "", -- User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork ["MISSION FAILED"] = "MISIÓN FALLIDA", -- User_Mission_-_Dangerous_Ducklings, User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork ["MISSION SUCCESSFUL"] = "MISIÓN COMPLETADA", -- User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork ["MISSION SUCCESS"] = "MISIÓN COMPLETADA", -- User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork - ["NEW fastest lap:"] = "NUEVA vuelta rápida:", ["NEW fastest lap: "] = "NUEVA vuelta rápida: ", ["NO JUMPING"] = "PROHIBIDO SALTAR", ["Not So Friendly Match"] = "Partido no-tan-amistoso", -- Basketball, Knockball ["Oh no! Just try again!"] = "¡Oh, no! ¿Por qué no lo intentas de nuevo?", -- User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork ["Oh no! Time's up! Just try again."] = "¡Oh, no, se te acabó el tiempo! ¿Por qué no lo intentas de nuevo?", --Bazooka, Shotgun, SniperRifle ["Operation Diver"] = "Buzo", - ["Opposing Team:"] = "Equipo enemigo:", ["Opposing Team: "] = "Equipo enemigo: ", ["Pathetic Hog #%d"] = "Erizo patético #%d", ["Poison"] = "Veneno", ["Random Weapons"] = "Armas aleatorias", [" - Return the enemy flag to your base to score | - First team to 3 captures wins | - You may only score when your flag is in your base | - Hogs will drop the flag if killed, or drowned | - Dropped flags may be returned or recaptured | - Hogs respawn when killed"] = "- Vuelve a tu base con la bandera enemiga para anotar un punto | - El equipo que anote 3 puntos gana | - Sólo se puede anotar si tu propia bandera está en tu base | - Los erizos resucitan cuando mueren", +-- ["RULES OF THE GAME [Press ESC to view]"] = "", ["RULES OF THE GAME [Press ESC to view]"] = "REGLAS DEL JUEGO (Presiona ESC para leerlas)", +-- ["sec"] = "", -- CTF_Blizzard, TrophyRace, Basic_Training_-_Bazooka, Basic_Training_-_Shotgun, Basic_Training_-_Sniper_Rifle, User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork, Capture_the_Flag ["See ya!"] = "¡Hasta otra!", ["Shotgun Team"] = "Escopeteros", ["Shotgun Training"] = "Entrenamiento con escopeta", @@ -74,7 +78,9 @@ ["Spooky Tree"] = "Árbol tenebroso", ["Team %d: "] = "Equipo %d", ["Team Scores:"] = "Puntuaciones:", +-- ["That was pointless."] = "", ["The enemy is hiding out on yonder ducky!"] = "¡El enemigo está escondido detrás del patito del fondo!", +-- ["The flag will respawn next round."] = "", ["There has been a mix-up with your gear and now you|have to utilize whatever is coming your way!"] = "¡Alguien ha saboteado tu arsenal, tendrás|que apañarte con la primera arma que encuentres!", ["Toxic Team"] = "Tóxicos", -- User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork ["TrophyRace"] = "TrophyRace", @@ -84,7 +90,7 @@ ["Victory for the"] = "La victoria es para", ["You have SCORED!!"] = "¡Has anotado!", ["You've failed. Try again."] = "Has fracasado. Inténtalo de nuevo.", + ["You've reached the goal!| |Time: "] = "¡Has llegado a la meta!| |Tiempo: ", ["You've reached the goal!| |Time:"] = "¡Has llegado a la meta!| |Tiempo:", - ["You've reached the goal!| |Time: "] = "¡Has llegado a la meta!| |Tiempo: ", ["'Zooka Team"] = "Bazuqueros", } diff -r e8fd20b2d66b -r 5e50d8162a96 share/hedgewars/Data/Locale/hedgewars_ar.ts --- a/share/hedgewars/Data/Locale/hedgewars_ar.ts Sun Dec 26 12:42:22 2010 -0500 +++ b/share/hedgewars/Data/Locale/hedgewars_ar.ts Mon Dec 27 12:47:51 2010 -0500 @@ -191,6 +191,10 @@ Seed + + Set + + HWNetServersModel @@ -1250,10 +1254,6 @@ التلقائي - Normal - - - hand drawn map... @@ -1671,7 +1671,7 @@ - Set + more diff -r e8fd20b2d66b -r 5e50d8162a96 share/hedgewars/Data/Locale/hedgewars_bg.ts --- a/share/hedgewars/Data/Locale/hedgewars_bg.ts Sun Dec 26 12:42:22 2010 -0500 +++ b/share/hedgewars/Data/Locale/hedgewars_bg.ts Mon Dec 27 12:47:51 2010 -0500 @@ -190,6 +190,10 @@ Seed + + Set + + HWNetServersModel @@ -1196,10 +1200,6 @@ По подразбиране - Normal - - - hand drawn map... @@ -1617,7 +1617,7 @@ - Set + more diff -r e8fd20b2d66b -r 5e50d8162a96 share/hedgewars/Data/Locale/hedgewars_cs.ts --- a/share/hedgewars/Data/Locale/hedgewars_cs.ts Sun Dec 26 12:42:22 2010 -0500 +++ b/share/hedgewars/Data/Locale/hedgewars_cs.ts Mon Dec 27 12:47:51 2010 -0500 @@ -191,6 +191,10 @@ Seed + + Set + + HWNetServersModel @@ -1205,10 +1209,6 @@ Základní - Normal - - - hand drawn map... @@ -1626,7 +1626,7 @@ - Set + more diff -r e8fd20b2d66b -r 5e50d8162a96 share/hedgewars/Data/Locale/hedgewars_de.ts --- a/share/hedgewars/Data/Locale/hedgewars_de.ts Sun Dec 26 12:42:22 2010 -0500 +++ b/share/hedgewars/Data/Locale/hedgewars_de.ts Mon Dec 27 12:47:51 2010 -0500 @@ -194,6 +194,10 @@ Seed + + Set + + HWNetServersModel @@ -1274,10 +1278,6 @@ Standard - Normal - - - hand drawn map... @@ -1701,7 +1701,7 @@ Ordne Dateitypen zu - Set + more diff -r e8fd20b2d66b -r 5e50d8162a96 share/hedgewars/Data/Locale/hedgewars_en.ts --- a/share/hedgewars/Data/Locale/hedgewars_en.ts Sun Dec 26 12:42:22 2010 -0500 +++ b/share/hedgewars/Data/Locale/hedgewars_en.ts Mon Dec 27 12:47:51 2010 -0500 @@ -45,10 +45,6 @@ Edit schemes - When this option is enabled selecting a game scheme will auto-select a weapon (and viceversa) - When this option is enabled selecting a game scheme will auto-select a weapon (and vice versa) - - When this option is enabled selecting a game scheme will auto-select a weapon @@ -194,6 +190,10 @@ Seed + + Set + + HWNetServersModel @@ -1258,10 +1258,6 @@ Default - Normal - - - hand drawn map... @@ -1679,7 +1675,7 @@ Associate file extensions - Set + more diff -r e8fd20b2d66b -r 5e50d8162a96 share/hedgewars/Data/Locale/hedgewars_es.ts --- a/share/hedgewars/Data/Locale/hedgewars_es.ts Sun Dec 26 12:42:22 2010 -0500 +++ b/share/hedgewars/Data/Locale/hedgewars_es.ts Mon Dec 27 12:47:51 2010 -0500 @@ -198,6 +198,10 @@ Seed Semilla + + Set + Establecer + HWNetServersModel @@ -1305,7 +1309,7 @@ Normal - Normal + Normal hand drawn map... @@ -1739,7 +1743,11 @@ Set - Establecer + Establecer + + + more + diff -r e8fd20b2d66b -r 5e50d8162a96 share/hedgewars/Data/Locale/hedgewars_fi.ts --- a/share/hedgewars/Data/Locale/hedgewars_fi.ts Sun Dec 26 12:42:22 2010 -0500 +++ b/share/hedgewars/Data/Locale/hedgewars_fi.ts Mon Dec 27 12:47:51 2010 -0500 @@ -190,6 +190,10 @@ Seed + + Set + + HWNetServersModel @@ -1296,10 +1300,6 @@ Sekopäinen - Normal - - - hand drawn map... @@ -1717,7 +1717,7 @@ - Set + more diff -r e8fd20b2d66b -r 5e50d8162a96 share/hedgewars/Data/Locale/hedgewars_fr.ts --- a/share/hedgewars/Data/Locale/hedgewars_fr.ts Sun Dec 26 12:42:22 2010 -0500 +++ b/share/hedgewars/Data/Locale/hedgewars_fr.ts Mon Dec 27 12:47:51 2010 -0500 @@ -190,6 +190,10 @@ Seed + + Set + + HWNetServersModel @@ -1238,10 +1242,6 @@ Défaut - Normal - - - hand drawn map... @@ -1659,7 +1659,7 @@ - Set + more diff -r e8fd20b2d66b -r 5e50d8162a96 share/hedgewars/Data/Locale/hedgewars_hu.ts --- a/share/hedgewars/Data/Locale/hedgewars_hu.ts Sun Dec 26 12:42:22 2010 -0500 +++ b/share/hedgewars/Data/Locale/hedgewars_hu.ts Mon Dec 27 12:47:51 2010 -0500 @@ -189,6 +189,10 @@ Seed + + Set + + HWNetServersModel @@ -1239,10 +1243,6 @@ Default - Normal - - - hand drawn map... @@ -1666,7 +1666,7 @@ - Set + more diff -r e8fd20b2d66b -r 5e50d8162a96 share/hedgewars/Data/Locale/hedgewars_it.ts --- a/share/hedgewars/Data/Locale/hedgewars_it.ts Sun Dec 26 12:42:22 2010 -0500 +++ b/share/hedgewars/Data/Locale/hedgewars_it.ts Mon Dec 27 12:47:51 2010 -0500 @@ -194,6 +194,10 @@ Seed + + Set + + HWNetServersModel @@ -1254,10 +1258,6 @@ Default - Normal - - - hand drawn map... @@ -1681,7 +1681,7 @@ - Set + more diff -r e8fd20b2d66b -r 5e50d8162a96 share/hedgewars/Data/Locale/hedgewars_ja.ts --- a/share/hedgewars/Data/Locale/hedgewars_ja.ts Sun Dec 26 12:42:22 2010 -0500 +++ b/share/hedgewars/Data/Locale/hedgewars_ja.ts Mon Dec 27 12:47:51 2010 -0500 @@ -189,6 +189,10 @@ Seed + + Set + + HWNetServersModel @@ -1187,10 +1191,6 @@ デフォールト - Normal - - - hand drawn map... @@ -1608,7 +1608,7 @@ - Set + more diff -r e8fd20b2d66b -r 5e50d8162a96 share/hedgewars/Data/Locale/hedgewars_ko.ts --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/share/hedgewars/Data/Locale/hedgewars_ko.ts Mon Dec 27 12:47:51 2010 -0500 @@ -0,0 +1,2326 @@ + + + + + AmmoSchemeModel + + new + + + + copy of + + + + + FreqSpinBox + + Never + + + + Every %1 turn + + + + + + + GameCFGWidget + + Edit weapons + + + + Error + + + + Illegal ammo scheme + + + + Edit schemes + + + + When this option is enabled selecting a game scheme will auto-select a weapon + + + + + HWChatWidget + + %1 *** %2 has been removed from your ignore list + + + + %1 *** %2 has been added to your ignore list + + + + %1 *** %2 has been removed from your friends list + + + + %1 *** %2 has been added to your friends list + + + + + HWForm + + Error + + + + OK + + + + Unable to start the server + + + + Cannot save record to file %1 + + + + Please select record from the list above + + + + DefaultTeam + + + + Hedgewars Demo File + File Types + + + + Hedgewars Save File + File Types + + + + + HWGame + + en.txt + + + + Cannot open demofile %1 + + + + + HWMapContainer + + Map + + + + Themes + + + + Filter + + + + All + + + + Small + + + + Medium + + + + Large + + + + Cavern + + + + Wacky + + + + Type + + + + Small tunnels + + + + Medium tunnels + + + + Large tunnels + + + + Small floating islands + + + + Medium floating islands + + + + Large floating islands + + + + Seed + + + + Set + + + + + HWNetServersModel + + Title + + + + IP + + + + Port + + + + + HWNewNet + + The host was not found. Please check the host name and port settings. + + + + Connection refused + + + + Room destroyed + + + + Quit reason: + + + + You got kicked + + + + Password + + + + %1 *** %2 has joined the room + + + + %1 *** %2 has joined + + + + %1 *** %2 has left (%3) + + + + %1 *** %2 has left + + + + Your nickname %1 is +registered on Hedgewars.org +Please provide your password below +or pick another nickname in game config: + + + + + KB + + SDL_ttf returned error while rendering text, most propably it is related to the bug in freetype2. It's recommended to update your freetype lib. + + + + + PageAdmin + + Clear Accounts Cache + + + + Fetch data + + + + Server message for latest version: + + + + Server message for previous versions: + + + + Latest version protocol number: + + + + MOTD preview: + + + + Set data + + + + + PageConnecting + + Connecting... + + + + + PageDrawMap + + Undo + + + + Clear + + + + Load + + + + Save + + + + Load drawn map + + + + Drawn Maps (*.hwmap);;All files (*.*) + + + + Save drawn map + + + + + PageEditTeam + + General + + + + Advanced + + + + + PageGameStats + + Details + + + + Health graph + + + + Ranking + + + + The best shot award was won by <b>%1</b> with <b>%2</b> pts. + + + + The best killer is <b>%1</b> with <b>%2</b> kills in a turn. + + + + + + A total of <b>%1</b> hedgehog(s) were killed during this round. + + + + + + (%1 kill) + + + + + + <b>%1</b> thought it's good to shoot his own hedgehogs with <b>%2</b> pts. + + + + + + <b>%1</b> killed <b>%2</b> of his own hedgehogs. + + + + + + <b>%1</b> was scared and skipped turn <b>%2</b> times. + + + + + + + PageMain + + Local Game (Play a game on a single computer) + + + + Network Game (Play a game across a network) + + + + Simply pick the same color as a friend to play together as a team. Each of you will still control his or her own hedgehogs but they'll win or lose together. + Tips + + + + Some weapons might do only low damage but they can be a lot more devastating in the right situation. Try to use the Desert Eagle to knock multiple hedgehogs into the water. + Tips + + + + 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 + + + + If you'd like to keep others from using your preferred nickname on the official server, register an account at http://www.hedgewars.org/. + Tips + + + + You're bored of default gameplay? Try one of the missions - they'll offer different gameplay depending on the one you picked. + Tips + + + + By default the game will always record the last game played as a demo. Select 'Local Game' and pick the 'Demos' button on the lower right corner to play or manage them. + Tips + + + + Hedgewars is Open Source and Freeware we create in our spare time. If you've got problems, ask on our forums but please don't expect 24/7 support! + Tips + + + + Hedgewars is Open Source and Freeware we create in our spare time. If you like it, help us with a small donation or contribute your own work! + Tips + + + + Hedgewars is Open Source and Freeware we create in our spare time. Share it with your family and friends as you like! + Tips + + + + From time to time there will be official tournaments. Upcoming events will be announced at http://www.hedgewars.org/ some days in advance. + Tips + + + + Hedgewars is available in many languages. If the translation in your language seems to be missing or outdated, feel free to contact us! + Tips + + + + Hedgewars can be run on lots of different operating systems including Microsoft Windows, Mac OS X and Linux. + Tips + + + + Always remember you're able to set up your own games in local and network/online play. You're not restricted to the 'Simple Game' option. + Tips + + + + While playing you should give yourself a short break at least once an hour. + Tips + + + + If your graphics card isn't able to provide hardware accelerated OpenGL, try to enable the low quality mode to improve performance. + Tips + + + + We're open to suggestions and constructive feedback. If you don't like something or got a great idea, let us know! + Tips + + + + Especially while playing online be polite and always remember there might be some minors playing with or against you as well! + Tips + + + + Special game modes such as 'Vampirism' or 'Karma' allow you to develop completely new tactics. Try them in a custom game! + Tips + + + + The Windows version of Hedgewars supports Xfire. Make sure to add Hedgwars to its game list so your friends can see you playing. + Tips + + + + You should never install Hedgewars on computers you don't own (school, university, work, etc.). Please ask the responsible person instead! + Tips + + + + Hedgewars can be perfect for short games during breaks. Just ensure you don't add too many hedgehogs or use an huge map. Reducing time and health might help as well. + Tips + + + + No hedgehogs were harmed in making this game. + Tips + + + + Hedgewars is Open Source and Freeware we create in our spare time. If someone sold you the game, you should try get a refund! + Tips + + + + Connect one or more gamepads before starting the game to be able to assign their controls to your teams. + Tips + + + + Create an account on %1 to keep others from using your most favourite nickname while playing on the official server. + Tips + + + + If your graphics card isn't able to provide hardware accelerated OpenGL, try to update the associated drivers. + Tips + + + + There are three different jumps available. Tap [high jump] twice to do a very high/backwards jump. + Tips + + + + Afraid of falling off a cliff? Hold down [precise] to turn [left] or [right] without actually moving. + Tips + + + + Some weapons require special strategies or just lots of training, so don't give up on a particular tool if you miss an enemy once. + Tips + + + + Most weapons won't work once they touch the water. The Homing Bee as well as the Cake are exceptions to this. + Tips + + + + The Old Limbuger only causes a small explosion. However the wind affected smelly cloud can poison lots of hogs at once. + Tips + + + + The Piano Strike is the most damaging air strike. You'll lose the hedgehog performing it, so there's a huge downside as well. + Tips + + + + The Homing Bee can be tricky to use. It's turn radius depends on it's velocity, so try to not use full power. + Tips + + + + Sticky Mines are a perfect tool to create small chain reactions knocking enemy hedgehogs into dire situations ... or water. + Tips + + + + The Hammer is most effective when used on bridges or girders. Hit hogs will just break through the ground. + Tips + + + + If you're stuck behind an enemy hedgehog, use the Hammer to free yourself without getting damaged by an explosion. + Tips + + + + The Cake's maximum walking distance depends on the ground it has to pass. Use [attack] to detonate it early. + Tips + + + + The Flame Thrower is a weapon but it can be used for tunnel digging as well. + Tips + + + + Use the Incinerating Grenade to temporary keep hedgehogs from passing terrain such as tunnels or platforms. + Tips + + + + Want to know who's behind the game? Click on the Hedgewars logo in the main menu to see the credits. + Tips + + + + Like Hedgewars? Become a fan on %1 or follow us on %2! + Tips + + + + Feel free to draw your own graves, hats, flags or even maps and themes! But note that you'll have to share them somewhere to use them online. + Tips + + + + Really want to wear a specific hat? Donate to us and receive an exclusive hat of your choice! + Tips + + + + Keep your video card drivers up to date to avoid issues playing the game. + Tips + + + + 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'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 + + + + 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 + + + + 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 + + Start + + + + + PageNet + + Error + + + + Please select server from the list above + + + + + PageNetGame + + Control + + + + + PageNetType + + LAN game + + + + Official server + + + + + PageOptions + + New team + + + + Edit team + + + + Delete team + + + + You can't edit teams from team selection. Go back to main menu to add, edit or delete teams. + + + + New scheme + + + + Edit scheme + + + + Delete scheme + + + + New weapon set + + + + Edit weapon set + + + + Delete weapon set + + + + + PagePlayDemo + + Error + + + + OK + + + + Rename dialog + + + + Enter new file name: + + + + Cannot rename to + + + + Cannot delete file + + + + Please select record from the list + + + + + PageRoomsList + + Create + + + + Join + + + + Refresh + + + + Error + + + + OK + + + + Admin features + + + + Room Name: + + + + This game is in lobby. +You may join and start playing once the game starts. + + + + This game is in progress. +You may join and spectate now but you'll have to wait for the game to end to start playing. + + + + %1 is the host. He may adjust settings and start the game. + + + + Random Map + + + + Games may be played on precreated or randomized maps. + + + + The Game Scheme defines general options and preferences like Round Time, Sudden Death or Vampirism. + + + + The Weapon Scheme defines available weapons and their ammunition count. + + + + There are %1 clients connected to this room. + + + + + + There are %1 teams participating in this room. + + + + + + Please enter room name + + + + Please select room from the list + + + + Random Maze + + + + State: + + + + Rules: + + + + Weapons: + + + + Search: + + + + Clear + + + + Warning + + + + The game you are trying to join has started. +Do you still want to join the room? + + + + + PageScheme + + Defend your fort and destroy the opponents, two team colours max! + + + + Teams will start on opposite sides of the terrain, two team colours max! + + + + Land can not be destroyed! + + + + Add an indestructable border around the terrain + + + + Lower gravity + + + + Assisted aiming with laser sight + + + + All hogs have a personal forcefield + + + + Gain 80% of the damage you do back in health + + + + Share your opponents pain, share their damage + + + + Your hogs are unable to move, put your artillery skills to the test + + + + Random + + + + Seconds + + + + New + + + + Delete + + + + Order of play is random instead of in room order. + + + + Play with a King. If he dies, your side dies. + + + + Take turns placing your hedgehogs before the start of play. + + + + Ammo is shared between all teams that share a colour. + + + + Disable girders when generating random maps. + + + + Disable land objects when generating random maps. + + + + AI respawns on death. + + + + All (living) hedgehogs are fully restored at the end of turn + + + + Attacking does not end your turn. + + + + Weapons are reset to starting values each turn. + + + + Each hedgehog has its own ammo. It does not share with the team. + + + + You will not have to worry about wind anymore. + + + + Wind will affect almost everything. + + + + Copy + + + + + PageSelectWeapon + + Default + + + + Delete + + + + New + + + + Copy + + + + + PageSinglePlayer + + Simple Game (a quick game against the computer, settings are chosen for you) + + + + Multiplayer (play a hotseat game against your friends, or AI teams) + + + + Training Mode (Practice your skills in a range of training missions). IN DEVELOPMENT + + + + Demos (Watch recorded demos) + + + + Load (Load a previously saved game) + + + + Campaign Mode (...). IN DEVELOPMENT + + + + + QAction + + Kick + + + + Info + + + + Start + + + + Restrict Joins + + + + Restrict Team Additions + + + + Ban + + + + Follow + + + + Ignore + + + + Add friend + + + + Unignore + + + + Remove friend + + + + + QCheckBox + + Check for updates at startup + + + + Fullscreen + + + + Frontend fullscreen + + + + Enable sound + + + + Enable music + + + + Show FPS + + + + Alternative damage show + + + + Append date and time to record file name + + + + Show ammo menu tooltips + + + + Enable frontend sounds + + + + Enable frontend music + + + + Frontend effects + + + + + QComboBox + + generated map... + + + + Human + + + + Level + + + + (System default) + + + + Mission + + + + generated maze... + + + + Community + + + + Any + + + + In lobby + + + + In progress + + + + hand drawn map... + + + + + QGroupBox + + Team Members + + + + Fort + + + + Key binds + + + + Teams + + + + Audio/Graphic options + + + + Net game + + + + Playing teams + + + + Game Modifiers + + + + Basic Settings + + + + Team Settings + + + + Misc + + + + Schemes and Weapons + + + + + QLabel + + Mines Time + + + + Mines + + + + Version + + + + This program is distributed under the GNU General Public License + + + + Developers: + + + + Art: + + + + Sounds: + + + + Translations: + + + + Special thanks: + + + + Weapons + + + + Host: + + + + Port: + + + + Net nick + + + + Resolution + + + + FPS limit + + + + Server name: + + + + Server port: + + + + Initial sound volume + + + + Damage Modifier + + + + Turn Time + + + + Initial Health + + + + Sudden Death Timeout + + + + Scheme Name: + + + + Crate Drops + + + + Game scheme + + + + % Dud Mines + + + + Name + + + + Type + + + + Grave + + + + Flag + + + + Voice + + + + Locale + + + + Restart game to apply + + + + Explosives + + + + Tip: + + + + This development build is 'work in progress' and may not be compatible with other versions of the game. Some features might be broken or incomplete. Use at your own risk! + + + + Quality + + + + % Health Crates + + + + Health in Crates + + + + Sudden Death Water Rise + + + + Sudden Death Health Decrease + + + + % Rope Length + + + + Gameplay + + + + + QLineEdit + + unnamed + + + + + QMainWindow + + Hedgewars %1 + + + + + QMessageBox + + Network + + + + Connection to server is lost + + + + Error + + + + Failed to open data directory: +%1 +Please check your installation + + + + Weapons + + + + Really delete this weapon set? + + + + Can not overwrite default weapon set '%1'! + + + + All file associations have been set. + + + + File association failed. + + + + Teams + + + + Really delete this team? + + + + Schemes + + + + Can not delete default scheme '%1'! + + + + Really delete this game scheme? + + + + Can not delete default weapon set '%1'! + + + + + QObject + + Error + + + + Cannot create directory %1 + + + + OK + + + + Nickname + + + + Please enter your nickname + + + + + QPushButton + + default + + + + OK + + + + Cancel + + + + Start server + + + + Connect + + + + Update + + + + Specify + + + + Start + + + + Go! + + + + Play demo + + + + Rename + + + + Delete + + + + Load + + + + Setup + + + + Ready + + + + Random Team + + + + Associate file extensions + + + + more + + + + + QTableWidget + + Room Name + + + + C + + + + T + + + + Owner + + + + Map + + + + Rules + + + + Weapons + + + + + SelWeaponWidget + + Weapon set + + + + Probabilities + + + + Ammo in boxes + + + + Delays + + + + new + + + + copy of + + + + + TCPBase + + Error + + + + Unable to start the server: %1. + + + + Unable to run engine: %1 ( + + + + + ToggleButtonWidget + + Vampirism + + + + Karma + + + + Artillery + + + + Fort Mode + + + + Divide Teams + + + + Solid Land + + + + Add Border + + + + Low Gravity + + + + Laser Sight + + + + Invulnerable + + + + Random Order + + + + King + + + + Place Hedgehogs + + + + Clan Shares Ammo + + + + Disable Girders + + + + Disable Land Objects + + + + AI Survival Mode + + + + Reset Health + + + + Unlimited Attacks + + + + Reset Weapons + + + + Per Hedgehog Ammo + + + + Disable Wind + + + + More Wind + + + + + binds + + up + + + + left + + + + right + + + + down + + + + attack + + + + precise aim + + + + put + + + + switch + + + + find hedgehog + + + + ammo menu + + + + slot 1 + + + + slot 2 + + + + slot 3 + + + + slot 4 + + + + slot 5 + + + + slot 6 + + + + slot 7 + + + + slot 8 + + + + slot 9 + + + + timer 1 sec + + + + timer 2 sec + + + + timer 3 sec + + + + timer 4 sec + + + + timer 5 sec + + + + chat + + + + chat history + + + + pause + + + + confirmation + + + + volume down + + + + volume up + + + + change mode + + + + capture + + + + hedgehogs +info + + + + quit + + + + zoom in + + + + zoom out + + + + reset zoom + + + + long jump + + + + high jump + + + + slot 10 + + + + + binds (categories) + + Basic controls + + + + Weapon controls + + + + Camera and cursor controls + + + + Other + + + + + binds (descriptions) + + Move your hogs and aim: + + + + Traverse gaps and obstacles by jumping: + + + + Fire your selected weapon or trigger an utility item: + + + + Pick a weapon or a target location under the cursor: + + + + Switch your currently active hog (if possible): + + + + Pick a weapon or utility item: + + + + Set the timer on bombs and timed weapons: + + + + Move the camera to the active hog: + + + + Move the cursor or camera without using the mouse: + + + + Modify the camera's zoom level: + + + + Talk to your team or all participants: + + + + Pause, continue or leave your game: + + + + Modify the game's volume while playing: + + + + Toggle fullscreen mode: + + + + Take a screenshot: + + + + Toggle labels above hedgehogs: + + + + + binds (keys) + + Axis + + + + (Up) + + + + (Down) + + + + Hat + + + + (Left) + + + + (Right) + + + + Button + + + + Keyboard + + + + Delete + + + + Mouse: Left button + + + + Mouse: Middle button + + + + Mouse: Right button + + + + Mouse: Wheel up + + + + Mouse: Wheel down + + + + Backspace + + + + Tab + + + + Clear + + + + Return + + + + Pause + + + + Escape + + + + Space + + + + Numpad 0 + + + + Numpad 1 + + + + Numpad 2 + + + + Numpad 3 + + + + Numpad 4 + + + + Numpad 5 + + + + Numpad 6 + + + + Numpad 7 + + + + Numpad 8 + + + + Numpad 9 + + + + Numpad . + + + + Numpad / + + + + Numpad * + + + + Numpad - + + + + Numpad + + + + + Enter + + + + Equals + + + + Up + + + + Down + + + + Right + + + + Left + + + + Insert + + + + Home + + + + End + + + + Page up + + + + Page down + + + + Num lock + + + + Caps lock + + + + Scroll lock + + + + Right shift + + + + Left shift + + + + Right ctrl + + + + Left ctrl + + + + Right alt + + + + Left alt + + + + Right meta + + + + Left meta + + + + A button + + + + B button + + + + X button + + + + Y button + + + + LB button + + + + RB button + + + + Back button + + + + Start button + + + + Left stick + + + + Right stick + + + + Left stick (Right) + + + + Left stick (Left) + + + + Left stick (Down) + + + + Left stick (Up) + + + + Left trigger + + + + Right trigger + + + + Right stick (Down) + + + + Right stick (Up) + + + + Right stick (Right) + + + + Right stick (Left) + + + + DPad + + + + diff -r e8fd20b2d66b -r 5e50d8162a96 share/hedgewars/Data/Locale/hedgewars_nl.ts --- a/share/hedgewars/Data/Locale/hedgewars_nl.ts Sun Dec 26 12:42:22 2010 -0500 +++ b/share/hedgewars/Data/Locale/hedgewars_nl.ts Mon Dec 27 12:47:51 2010 -0500 @@ -186,6 +186,10 @@ Seed + + Set + + HWNetServersModel @@ -1194,10 +1198,6 @@ - Normal - - - hand drawn map... @@ -1601,7 +1601,7 @@ - Set + more diff -r e8fd20b2d66b -r 5e50d8162a96 share/hedgewars/Data/Locale/hedgewars_pl.ts --- a/share/hedgewars/Data/Locale/hedgewars_pl.ts Sun Dec 26 12:42:22 2010 -0500 +++ b/share/hedgewars/Data/Locale/hedgewars_pl.ts Mon Dec 27 12:47:51 2010 -0500 @@ -214,6 +214,10 @@ Seed Ziarno + + Set + Ustaw + HWNetServersModel @@ -1346,7 +1350,7 @@ Normal - Normalna + Normalna hand drawn map... @@ -1783,7 +1787,11 @@ Set - Ustaw + Ustaw + + + more + Więcej diff -r e8fd20b2d66b -r 5e50d8162a96 share/hedgewars/Data/Locale/hedgewars_pt_BR.ts --- a/share/hedgewars/Data/Locale/hedgewars_pt_BR.ts Sun Dec 26 12:42:22 2010 -0500 +++ b/share/hedgewars/Data/Locale/hedgewars_pt_BR.ts Mon Dec 27 12:47:51 2010 -0500 @@ -191,6 +191,10 @@ checar Semeie + + Set + Esquema + HWNetServersModel @@ -1356,7 +1360,7 @@ Normal - Normal + Normal hand drawn map... @@ -1790,7 +1794,11 @@ Set Esquema esta muito genérico - Esquema + Esquema + + + more + diff -r e8fd20b2d66b -r 5e50d8162a96 share/hedgewars/Data/Locale/hedgewars_pt_PT.ts --- a/share/hedgewars/Data/Locale/hedgewars_pt_PT.ts Sun Dec 26 12:42:22 2010 -0500 +++ b/share/hedgewars/Data/Locale/hedgewars_pt_PT.ts Mon Dec 27 12:47:51 2010 -0500 @@ -9,7 +9,7 @@ copy of - + copia de @@ -46,7 +46,7 @@ When this option is enabled selecting a game scheme will auto-select a weapon - + Com esta opção activada o esquema de jogo irá automaticamente seleccionar uma arma @@ -188,7 +188,11 @@ Seed - + Semente + + + Set + Definir @@ -326,31 +330,31 @@ PageDrawMap Undo - + Anular Clear - + Limpar Load - Carregar + Carregar Save - + Gravar Load drawn map - + Carregar mapa desenhado Drawn Maps (*.hwmap);;All files (*.*) - + Mapas Desenhados (*.hwmap);;Todos os ficheiros (*.*) Save drawn map - + Gravar mapa desenhado @@ -421,10 +425,6 @@ (%1 mortos) - - (%1 kills) - (%1 mortos) - <b>%1</b> thought it's good to shoot his own hedgehogs with <b>%2</b> pts. @@ -568,11 +568,6 @@ Nenhum ouriço foi mal tratado durante a produção deste jogo. - Want to save ropse? 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 - Precisas de poupar as cordas? Solta a corda enquanto no ar e dispara-a novamente. Enquanto não tocares no solo podes usar a mesma corda novamente sem desperdiar outras! - - Hedgewars is Open Source and Freeware we create in our spare time. If someone sold you the game, you should try get a refund! Tips O Hedgewars é Open Source e Freeware desenvolvido durante o tempo livre. Se alguem te vendeu o jogo, tente obter o reembolso! @@ -665,7 +660,7 @@ Like Hedgewars? Become a fan on %1 or follow us on %2! Tips - Gostas do Hedgewars? Torna-te fã no %1 ou segue-nos pelo %! + Gostas do Hedgewars? Torna-te fã no %1 ou segue-nos pelo %2! Feel free to draw your own graves, hats, flags or even maps and themes! But note that you'll have to share them somewhere to use them online. @@ -688,11 +683,6 @@ Podes encontrar os ficheiros de configuração do Hedgewars em "Documentos\Hedgewars". Cria cópias de segurança ou leva os ficheiros contigo, apenas não os edites. - 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. - - 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 É possivel associar os ficheiros relacionados com o Hedgewars (partidas e demonstrações) directamente com o jogo para que seja possivel lançalos directamente do teu explorador de ficheiros ou internet favorito. @@ -705,12 +695,12 @@ 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 - + Podes encontrar os ficheiros de configuração do Hedgewars em "Library/Application Support/Hedgewars" dentro da tua "Pasta Pessoal". Cria cópias de segurança ou leva os ficheiros contigo, mas não os edites manualmente. 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 em ".hedgewars" dentro da tua "Pasta Pessoal". Cria cópias de segurança ou leva os ficheiros contigo, mas não os edites manualmente. @@ -781,27 +771,27 @@ New scheme - + Novo esquema Edit scheme - + Editar esquema Delete scheme - + Apagar esquema New weapon set - + Novo esquema de armas Edit weapon set - + Editar esquema de armas Delete weapon set - + Apagar esquema de armas @@ -1062,15 +1052,15 @@ You will not have to worry about wind anymore. - + Não vais ter de te preocupar mais com o vento. Wind will affect almost everything. - + O vento afecta quase tudo. Copy - + Copiar @@ -1085,11 +1075,11 @@ New - Novo + Novo Copy - + Copiar @@ -1268,12 +1258,8 @@ Predefinido - Normal - - - hand drawn map... - + mapa desenhado à mão... @@ -1328,7 +1314,7 @@ Schemes and Weapons - + Esquemas e Armamento @@ -1499,11 +1485,11 @@ % Rope Length - + % Comprimento da Corda Gameplay - + Jogabilidade @@ -1572,27 +1558,27 @@ Teams - Equipas + Equipas Really delete this team? - + Deseja mesmo apagar esta equipa? Schemes - + Esquemas Can not delete default scheme '%1'! - + Não é possível eliminar o esquema por omisão '%1'! Really delete this game scheme? - + Deseja mesmo apagar este esquema de jogo? Can not delete default weapon set '%1'! - + Não é possível eliminar o esquema de armas por omisão '%1'! @@ -1689,8 +1675,8 @@ Associar com as extensões dos ficheiros - Set - + more + mais @@ -1744,11 +1730,11 @@ new - novo + novo copy of - + copia de @@ -1858,11 +1844,11 @@ Disable Wind - + Desactivar Vento More Wind - + Mais Vento diff -r e8fd20b2d66b -r 5e50d8162a96 share/hedgewars/Data/Locale/hedgewars_ru.ts --- a/share/hedgewars/Data/Locale/hedgewars_ru.ts Sun Dec 26 12:42:22 2010 -0500 +++ b/share/hedgewars/Data/Locale/hedgewars_ru.ts Mon Dec 27 12:47:51 2010 -0500 @@ -195,6 +195,10 @@ Seed + + Set + + HWNetServersModel @@ -1269,10 +1273,6 @@ По умолчанию - Normal - - - hand drawn map... @@ -1700,7 +1700,7 @@ Сопоставить расширения файлов - Set + more diff -r e8fd20b2d66b -r 5e50d8162a96 share/hedgewars/Data/Locale/hedgewars_sk.ts --- a/share/hedgewars/Data/Locale/hedgewars_sk.ts Sun Dec 26 12:42:22 2010 -0500 +++ b/share/hedgewars/Data/Locale/hedgewars_sk.ts Mon Dec 27 12:47:51 2010 -0500 @@ -195,6 +195,10 @@ Seed Zrno + + Set + Nastaviť + HWNetServersModel @@ -1319,7 +1323,7 @@ Normal - Normálna + Normálna hand drawn map... @@ -1751,7 +1755,11 @@ Set - Nastaviť + Nastaviť + + + more + diff -r e8fd20b2d66b -r 5e50d8162a96 share/hedgewars/Data/Locale/hedgewars_sv.ts --- a/share/hedgewars/Data/Locale/hedgewars_sv.ts Sun Dec 26 12:42:22 2010 -0500 +++ b/share/hedgewars/Data/Locale/hedgewars_sv.ts Mon Dec 27 12:47:51 2010 -0500 @@ -190,6 +190,10 @@ Seed Frö + + Set + Ange + HWNetServersModel @@ -1297,7 +1301,7 @@ Normal - Vanligt + Vanligt hand drawn map... @@ -1724,7 +1728,11 @@ Set - Ange + Ange + + + more + diff -r e8fd20b2d66b -r 5e50d8162a96 share/hedgewars/Data/Locale/hedgewars_tr_TR.ts --- a/share/hedgewars/Data/Locale/hedgewars_tr_TR.ts Sun Dec 26 12:42:22 2010 -0500 +++ b/share/hedgewars/Data/Locale/hedgewars_tr_TR.ts Mon Dec 27 12:47:51 2010 -0500 @@ -189,6 +189,10 @@ Seed + + Set + + HWNetServersModel @@ -1199,10 +1203,6 @@ Öntanımlı - Normal - - - hand drawn map... @@ -1620,7 +1620,7 @@ - Set + more diff -r e8fd20b2d66b -r 5e50d8162a96 share/hedgewars/Data/Locale/hedgewars_uk.ts --- a/share/hedgewars/Data/Locale/hedgewars_uk.ts Sun Dec 26 12:42:22 2010 -0500 +++ b/share/hedgewars/Data/Locale/hedgewars_uk.ts Mon Dec 27 12:47:51 2010 -0500 @@ -195,6 +195,10 @@ Seed + + Set + + HWNetServersModel @@ -1269,10 +1273,6 @@ За замовчуванням - Normal - - - hand drawn map... @@ -1690,7 +1690,7 @@ Асоціювати файлові розширення - Set + more diff -r e8fd20b2d66b -r 5e50d8162a96 share/hedgewars/Data/Locale/hedgewars_zh_CN.ts --- a/share/hedgewars/Data/Locale/hedgewars_zh_CN.ts Sun Dec 26 12:42:22 2010 -0500 +++ b/share/hedgewars/Data/Locale/hedgewars_zh_CN.ts Mon Dec 27 12:47:51 2010 -0500 @@ -189,6 +189,10 @@ Seed + + Set + + HWNetServersModel @@ -1305,10 +1309,6 @@ 疯狂刺猬 - Normal - - - hand drawn map... @@ -1726,7 +1726,7 @@ 相关文件扩展 - Set + more diff -r e8fd20b2d66b -r 5e50d8162a96 share/hedgewars/Data/Locale/hedgewars_zh_TW.ts --- a/share/hedgewars/Data/Locale/hedgewars_zh_TW.ts Sun Dec 26 12:42:22 2010 -0500 +++ b/share/hedgewars/Data/Locale/hedgewars_zh_TW.ts Mon Dec 27 12:47:51 2010 -0500 @@ -189,6 +189,10 @@ Seed + + Set + + HWNetServersModel @@ -1227,10 +1231,6 @@ 默認 - Normal - - - hand drawn map... @@ -1648,7 +1648,7 @@ - Set + more diff -r e8fd20b2d66b -r 5e50d8162a96 share/hedgewars/Data/Locale/ko.lua --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/share/hedgewars/Data/Locale/ko.lua Mon Dec 27 12:47:51 2010 -0500 @@ -0,0 +1,97 @@ +locale = { +-- [":("] = "", +-- ["!!!"] = "", +-- ["A game of luck"] = "", +-- ["Aiming Practice"] = "", --Bazooka, Shotgun, SniperRifle +-- ["Bat balls at your enemies and|push them into the sea!"] = "", +-- ["Bat your opponents through the|baskets and out of the map!"] = "", +-- ["Bazooka Training"] = "", +-- ["Best laps per team: "] = "", +-- ["Bloody Rookies"] = "", -- 01#Boot_Camp, User_Mission_-_Dangerous_Ducklings, User_Mission_-_Diver, User_Mission_-_Spooky_Tree +-- ["Boom!"] = "", +-- ["by mikade"] = "", -- Control, User_Mission_-_Dangerous_Ducklings, User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork, Capture_the_Flag +-- ["CAPTURE THE FLAG"] = "", +-- ["Codename: Teamwork"] = "", +-- ["Congratulations!"] = "", +-- ["Congratulations! You've eliminated all targets|within the allowed time frame."] = "", --Bazooka, Shotgun, SniperRifle +-- ["CONTROL"] = "", +-- ["Control pillars to score points."] = "", +-- ["CONTROL v0.3"] = "", +-- ["CTF_BLIZZARD"] = "", +-- ["CUSTOM BUILD 0.2"] = "", +-- ["Cybernetic Empire"] = "", +-- ["DAMMIT, ROOKIE!"] = "", +-- ["DAMMIT, ROOKIE! GET OFF MY HEAD!"] = "", +-- ["Dangerous Ducklings"] = "", +-- ["Eliminate all enemies"] = "", +-- ["Eliminate all targets before your time runs out.|You have unlimited ammo for this mission."] = "", --Bazooka, Shotgun, SniperRifle +-- ["Eliminate Poison before the time runs out"] = "", +-- ["Eliminate the Blue Team"] = "", +-- ["- Eliminate Unit 3378 |- Feeble Resistance must survive"] = "", +-- ["- Eliminate Unit 3378 |- Feeble Resistance must survive"] = "", +-- ["Enjoy the swim..."] = "", +-- ["Fastest lap: "] = "", +-- ["Feeble Resistance"] = "", +-- ["Flag captured!"] = "", +-- ["Flag respawned!"] = "", +-- ["Flag returned!"] = "", +-- ["Flags will be placed where each team ends their turn."] = "", +-- ["GAME OVER!"] = "", +-- ["Game Started!"] = "", +-- ["Get on over there and take him out!"] = "", +-- ["Goal:"] = "", +-- ["GO! GO! GO!"] = "", +-- ["Good birdy......"] = "", +-- ["Good luck out there!"] = "", +-- ["Hedgewars-Basketball"] = "", +-- ["Hedgewars-Knockball"] = "", +-- ["Hmmm..."] = "", +-- ["Hooray!"] = "", +-- ["Hunter"] = "", --Bazooka, Shotgun, SniperRifle +-- ["Instructor"] = "", -- 01#Boot_Camp, User_Mission_-_Dangerous_Ducklings +-- ["- Jumping is disabled"] = "", +-- ["Listen up, maggot!!"] = "", +-- ["|- Mines Time:"] = "", -- User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork +-- ["MISSION FAILED"] = "", -- User_Mission_-_Dangerous_Ducklings, User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork +-- ["MISSION SUCCESSFUL"] = "", -- User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork +-- ["MISSION SUCCESS"] = "", -- User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork +-- ["NEW fastest lap: "] = "", +-- ["NO JUMPING"] = "", +-- ["Not So Friendly Match"] = "", -- Basketball, Knockball +-- ["Oh no! Just try again!"] = "", -- User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork +-- ["Oh no! Time's up! Just try again."] = "", --Bazooka, Shotgun, SniperRifle +-- ["Operation Diver"] = "", +-- ["Opposing Team: "] = "", +-- ["Pathetic Hog #%d"] = "", +-- ["Poison"] = "", +-- ["Random Weapons"] = "", +-- [" - Return the enemy flag to your base to score | - First team to 3 captures wins | - You may only score when your flag is in your base | - Hogs will drop the flag if killed, or drowned | - Dropped flags may be returned or recaptured | - Hogs respawn when killed"] = "", +-- [" - Return the enemy flag to your base to score | - First team to 3 captures wins | - You may only score when your flag is in your base | - Hogs will drop the flag if killed, or drowned | - Dropped flags may be returned or recaptured | - Hogs respawn when killed"] = "", +-- ["RULES OF THE GAME [Press ESC to view]"] = "", +-- ["RULES OF THE GAME [Press ESC to view]"] = "", +-- ["sec"] = "", -- CTF_Blizzard, TrophyRace, Basic_Training_-_Bazooka, Basic_Training_-_Shotgun, Basic_Training_-_Sniper_Rifle, User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork, Capture_the_Flag +-- ["See ya!"] = "", +-- ["Shotgun Team"] = "", +-- ["Shotgun Training"] = "", +-- ["%s is out and Team %d|scored a penalty!| |Score:"] = "", -- Basketball, Knockball +-- ["%s is out and Team %d|scored a point!| |Score:"] = "", -- Basketball, Knockball +-- ["Sniper Training"] = "", +-- ["Sniperz"] = "", +-- ["Spooky Tree"] = "", +-- ["Team %d: "] = "", +-- ["Team Scores:"] = "", +-- ["That was pointless."] = "", +-- ["The enemy is hiding out on yonder ducky!"] = "", +-- ["The flag will respawn next round."] = "", +-- ["There has been a mix-up with your gear and now you|have to utilize whatever is coming your way!"] = "", +-- ["Toxic Team"] = "", -- User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork +-- ["TrophyRace"] = "", +-- ["T_T"] = "", +-- ["Unit 3378"] = "", +-- ["Use your rope to get from start to finish as fast as you can!"] = "", +-- ["Victory for the"] = "", +-- ["You have SCORED!!"] = "", +-- ["You've failed. Try again."] = "", +-- ["You've reached the goal!| |Time: "] = "", +-- ["'Zooka Team"] = "", + } diff -r e8fd20b2d66b -r 5e50d8162a96 share/hedgewars/Data/Locale/ko.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/share/hedgewars/Data/Locale/ko.txt Mon Dec 27 12:47:51 2010 -0500 @@ -0,0 +1,233 @@ +; Korean locale + +00:00=수류탄 +00:01=산탄식 폭탄 +00:02=로켓탄 발사기 +00:03=살인벌 +00:04=엽총 +00:05=잭 해머 +00:06=통과 +00:07=밧줄 +00:08=지뢰 +00:09=권총 +00:10=다이너마이트 +00:11=야구 방망이 +00:12=올려치기 +00:13=초 +00:14=낙하산 +00:15=폭탄 공습 +00:16=지뢰 공습 +00:17=발염 장치 +00:18=벽건설 +00:19=텔레포트 +00:20=고슴도치 바꾸기 +00:21=박격포 +00:22=채찍 +00:23=가미가제 공격 +00:24=케이크 +00:25=유혹 +00:26=소박폭탄 +00:27=불지옥 수류탄 +00:28=드릴 발사기 +00:29=구체의 폭탄 발사기 +00:30=네이팜 공습 +00:31=원격조종비행기 +00:32=저중력 +00:33=손상 증가 +00:34=정복 불능 +00:35=시간연장 +00:36=레이저 조준기 +00:37=흡혈귀 +00:38=저격용 소총 +00:39=비행접시 +00:40=화염병 +00:41=못생긴 앵무새 +00:42=포털 건 +00:43=피아노 +00:44=악취가 나는 치즈 +00:45=사인 건 +00:46=화염 방사기 +00:47=접착지뢰 +00:48=망치 +00:49=소생시키기 + +01:00=시~작! +01:01=무승부 +01:02=%1 승리! +01:03=음량 %1% +01:04=정지 +01:05=그만둘까요? (Y/Esc)? +01:06=단판 결승! +01:07=%1 발 남는다 +01:08=연료 +01:09=동시에 발생하고 있다... +01:10=사용하면 회전 계속할 수 있다 +01:11=아직 사용할 수가 없다 +01:12=1 회전 후에 단판 결승 시작하겠다! +01:13=%1 회전 후에 단판 결승 시작하겠다! +01:14=%1 준비됐나요? + +; Event messages +; Hog (%1) died +02:00=%1 죽었다! + +; Hog (%1) drowned +02:01=%1 ! + +; Round starts +02:02=시~작! + +; Round ends (win; unused atm) +02:03=... + +; Round ends (draw; unused atm) +02:04=... + +; New health crate +02:05=구급상자! + +; New ammo crate +02:06=무기상자! + +; New utility crate +02:07=장치상자! + +; Hog (%1) skips his turn +02:08=%1 통과했다. + +; Hog (%1) hurts himself only +02:09=%1 피학대 성애자인 것 캍아... + +; Hog shot an home run (using the bat and another hog) +02:10=홈런! + +; Hog (%1) has to leave (team is gone) +02:11=%1 포기했다! + +; Weapon Categories +03:00=Timed Grenade +03:01=Timed Grenade +03:02=Ballistic Weapon +03:03=Guided Weapon +03:04=Gun (multiple shots) +03:05=Digging Tool +03:06=Action +03:07=Transport Utility +03:08=Proximity Bomb +03:09=Gun (multiple shots) +03:10=BOOM! +03:11=Bonk! +03:12=Martial Arts +03:13=UNUSED +03:14=Transport Utility +03:15=Airborne Attack +03:16=Airborne Attack +03:17=Digging Tool +03:18=Utility +03:19=Transport Utility +03:20=Action +03:21=Ballistic Weapon +03:22=Call me Indiana! +03:23=(Really) Martial Arts +03:24=The cake is NOT a lie! +03:25=Costume Kit +03:26=Juicy Grenade +03:27=Fiery Grenade +03:28=Ballistic Weapon +03:29=Ballistic Weapon +03:30=Airborne Attack +03:31=Remote Controlled Bomb +03:32=Temporary Effect +03:33=Temporary Effect +03:34=Temporary Effect +03:35=Temporary Effect +03:36=Temporary Effect +03:37=Temporary Effect +03:38=Gun (multiple shots) +03:39=Transport Utility +03:40=Incinerating Grenade +03:41=Huge fan of Squawks +03:42=I'm making a note here... +; the misspelled "Beethoven" is intentional (-> to beat) +03:43=Performing Beathoven's deadly sonata +03:44=Best before: 1923 +03:45=The power of science +03:46=Hot Hot Hot! +03:47=Stick these somewhere useful! +03:48=It's Hammer time! +03:49=Does what you guess + +; Weapon Descriptions (use | as line breaks) +04:00=Attack your enemies using a simple grenade.|It will explode once its timer reaches zero.|1-5: Set grenade's timer|Attack: Hold to throw with more power +04:01=Attack your enemies using a cluster bomb.|It will split into smaller bombs once its timer|reaches zero.|1-5: Set grenade's timer|Attack: Hold to throw with more power +04:02=Attack your enemies using a ballistic projectile|that might be influenced by wind.|Attack: Hold to shoot with more power +04:03=Launch an explosive bee that will lock on|the selected target. Don't shoot with full power|to improve its precision.|Cursor: Pick target|Attack: Hold to shoot with more power +04:04=Attack your enemy using a shotgun with two shots.|Thanks to its spread you don't need direct hits|to harm your opponents.|Attack: Shoot (multiple times) +04:05=Move underground! Use the pickhammer to drill|a hole into the ground and reach other areas.|Attack: Start or stop digging +04:06=Bored? No way to attack? Save your ammo?|No problem! Just skip your turn, coward!|Attack: Skip your turn without fighting +04:07=Bridge huge distances using timed shots with the|rope. Use your momentum to slide into other hogs|or drop grenades and other weapons on them.|Attack: Shoot or release the rope|Long Jump: Drop grenades or similar weapons +04:08=Keep your enemies away by dropping a mine in|narrow passages or right below their feet. Be|sure to retreat before you trigger it yourself!|Attack: Drop mine next to your feet +04:09=Not sure about your aiming? Use the Desert|Eagle to attack using up to four shots.|Attack: Shoot (multiple times) +04:10=Brute force is always an option. Drop this classic|explosive next to your enemies and retreat.|Attack: Drop dynamite next to your feet +04:11=Get rid of enemy hogs by batting them over|the map borders or into water. Or how about|knocking some mines to your friends?|Attack: Bat everything in front of you +04:12=Get close and personal to unleash the power of|this almost deadly martial arts technique.|Attack: Perform the Fire Punch +04:13=UNUSED +04:14=Fear of heights? Better grab a parachute.|It will unfold once|you fall too far and|save your hog from taking fall damage.|Attack: Unfold the parachute|Long Jump: Drop grenades or similar weapons +04:15=Call in an airplane to attack your enemies|using a bombing run.|Left/Right: Determine attack direction|Cursor: Select target region +04:16=Call in an airplane to drop several mines|in the target area.|Left/Right: Determine attack direction|Cursor: Select target region +04:17=Need shelter? Use the blow torch to dig|a tunnel into solid ground granting you|cover.|Attack: Start or stop digging +04:18=Need additional protection or want to pass|unpassable ground? Place some girders as you|like.|Left/Right: Select girder to place|Cursor: Place girder in a valid position +04:19=Used at the right moment teleportation can|be more powerful than almost all weapons as|it allows you to save hogs from dangerous|situations within seconds.|Cursor: Select target region +04:20=Allows you to play the current turn with|a different hog.|Attack: Enable switching hogs +04:21=Shoot a grenade-like projectile that will|release multiple bombs upon impact.|Attack: Shoot at full power +04:22=Not just for Indiana Jones! The whip is a|useful weapon in many situations. Especially|when you'd like to shove someone off a cliff.|Attack: Strike everything in front of you +04:23=If you have nothing to lose, this might be|quite handy. Sacrifice your hog by launching|him into a specific direction hurting everything|on his way and exploding at the end.|Attack: Launch the devastating and deadly attack +04:24=Happy Birthday! Launch this cake, let it walk right|next to your enemies and let them have an explosive|party. The cake is able to pass almost all terrain|but he might detonate earlier this way.|Attack: Start the cake or let it stop and explode +04:25=Use this disguise kit to get your enemies to jump|towards your hog (and into some gap or hole).|Attack: Use the kit and try to seduce another hog +04:26=Throw this juicy watermelon at your enemies. Once|the timer expires, it will split into several|explosive pieces.|1-5: Set watermelon's timer|Attack: Hold to shoot with more power +04:27=Let hellfire rain onto your opponents by using|this fiendish explosive. Don't get too close to|the explosion as smaller fires might last longer.|Attack: Hold to shoot with more power +04:28=Short time after launching this rocket, it will|start drilling through solid ground and explode|once its fuse is triggered or it resurfaces again.|Attack: Hold to shoot with more power +04:29=This is nothing for small kids! The ball gun fires|tons of small colored balls filled with explosives.|Attack: Shoot at full power|Up/Down: Continue aiming +04:30=Call in an airplane to launch a powerful napalm|strike. With proper aiming this attack can eradicate|huge parts of landscape including unlucky hogs|sitting there.|Left/Right: Determine attack direction|Cursor: Select target region +04:31=The RC plane is the ideal weapon to collect crates or|attack far away hogs. Either steer it into enemies or|drop some bombs first.|Attack: Launch the plane or drop bombs|Long Jump: Let the valkyries ride into battle|Up/Down: Steer the plane +04:32=Low gravity is more effective than any diet! Jump|higher and over greater distances or let your enemies|fly even further.|Attack: Activate +04:33=Sometimes you just need that little extra boost to|deal some more damage.|Attack: Activate +04:34=Can't touch me!|Attack: Activate +04:35=Sometimes time's running too fast. Grab some extra|seconds to finish your attack.|Attack: Activate +04:36=Well, sometimes you're just too bad in aiming. Get|some assistance using modern day technology.|Attack: Activate +04:37=Don't fear the daylight. It will just last one turn|but will enable you to absorb the damage you do to|other hogs.|Attack: Activate +04:38=The sniper rifle can be the most devastating weapon|in your whole arsenal, however it's very ineffective|at close quarters. The damage dealt increases with|the distance to its target.|Attack: Shoot (twice) +04:39=Fly to other parts of the map using the flying|saucer. This hard to master utility is able to|take you to almost any position on the battlefield.|Attack: Activate|Up/Left/Right: Apply force in one direction|Long Jump: Drop grenades or similar weapons +04:40=Set some ground on fire using this bottle filled|with (soon to be) burning liquid.|Attack: Hold to shoot with more power +04:41=The evidence nature might even top the flying|saucer. Birdy can carry your hog around and|drop eggs on your enemies!|Attack: Activate and drop eggs|Up/Left/Right: Flap in one direction +04:42=This portable portal device is capable|of instantly transporting you, your enemies,|or your weaponry between two points on the|terrain.|Use it wisely and your campaign will be a...|HUGE SUCCESS!|Attack: Shoot a portal|Switch: Cycle portal colours +04:43=Make your musical debut an explosive success!|Drop a piano from the heavens, but beware...|someone needs to play it, and that may cost you|your life!|Cursor: Select target region|F1-F9: Play the piano +04:44=This isn't just cheese, it's biological warfare!|It won't cause an huge amount of damage once|the timer reaches zero but it will definitely|poison anyone unlucky to touch the smell!|1-5: Set grenade's timer|Attack: Hold to throw with more power +04:45=All those physics classes have finally|paid off, launch a devastating Sine|wave at your foes.|Watch out, this weapon packs quite a kick. (This weapon is incomplete)|Attack: Shoot +04:46=Cover your foes with sizzling liquid flame.|Heartwarming!|Attack: Activate|Up/Down: Continue aiming|Left/Right: Modify spitting power +04:47=Double the fun with two spiky, sneaky, sticky mines.|Set up a chain reaction or defend yourself (or both!)|Attack: Hold to shoot with more power (twice) +04:48=Why should the moles get all the abuse?|Wacking a hog can be just as fun! A good|blow from this hammer will shave off one|third of a hog's health and plunge them|underground.|Attack: Activate +04:49=Resurrect your friends!|But beware that this also resurrects your foes.|Attack: Keep attack pressed to resurrect slowly|Up: Accelerate resurrection + +; Game goal strings +05:00=게임 수정 모드 +05:01=이 규칙은 제정할 것입니다. +05:02=성 공격 모드 +05:03=저중력 +05:04=정복 불능 +05:05=흡혈귀: Hogs will be healed for the damage dealt +05:06=카르마: Hogs will be damaged for the damage dealt +05:07=킹 모드: Don't let your king die!|킹을 배치함: Pick a protected starting point for your King +05:08=고슴도치를 배치하기 +05:09=움직이지 못함 +05:10=굳은 지반: Most weapons won't destroy terrain +05:11=공용탄약: All teams of the same color share their ammunition +05:12=지뢰 타임스위치: %1 초 +05:13=지뢰 타임스위치: 즉각적이다 +05:14=지뢰 타임스위치: 0 - 5 초 +05:15=손상 수정: %1% 손상 +05:16=회전 후에 건강을 재건함 +05:17=컴퓨터 고슴도치들이 자동 소새시킴 +05:18=무한한 탄약 +05:19=회전 후에 탄약을 재건함 +05:20=탄약 종목별기준 diff -r e8fd20b2d66b -r 5e50d8162a96 share/hedgewars/Data/Locale/pl.lua --- a/share/hedgewars/Data/Locale/pl.lua Sun Dec 26 12:42:22 2010 -0500 +++ b/share/hedgewars/Data/Locale/pl.lua Mon Dec 27 12:47:51 2010 -0500 @@ -8,18 +8,20 @@ ["Bazooka Training"] = "Trening bazooki", ["Best laps per team: "] = "Najszybsze okrążenie drużyny: ", ["Bloody Rookies"] = "Żółtodzioby", + ["Boom!"] = "BUM!", ["by mikade"] = "Napisane przez mikade", ["CAPTURE THE FLAG"] = "PRZECHWYĆ FLAGĘ", ["Codename: Teamwork"] = "Kryptonim: Praca zespołowa", --- ["Congratulations!"] = "", + ["Congratulations!"] = "Gratulacje", ["Congratulations! You've eliminated all targets|within the allowed time frame."] = "Gratulacje! Zniszczyłeś wszystkie cele przed upłynięciem czasu.", ["CONTROL"] = "KONTROLA", ["Control pillars to score points."] = "Kontroluj filary by zdobyć punkty", ["CONTROL v0.3"] = "KONTROLA v0.3", --- ["CUSTOM BUILD 0.2"] = "", + ["CTF_BLIZZARD"] = "Śnieżyca", + ["CUSTOM BUILD 0.2"] = "Wersja 0.2", ["Cybernetic Empire"] = "Cybernetyczne Imperium", --- ["DAMMIT, ROOKIE!"] = "", --- ["DAMMIT, ROOKIE! GET OFF MY HEAD!"] = "", + ["DAMMIT, ROOKIE!"] = "Żółtodziobie!", + ["DAMMIT, ROOKIE! GET OFF MY HEAD!"] = "Młody!!! Złaź z mojej głowy!!!", ["Dangerous Ducklings"] = "Niebezpieczne Kaczory", ["Eliminate all enemies"] = "Wyeliminuj wszystkich przeciwników", ["Eliminate all targets before your time runs out.|You have unlimited ammo for this mission."] = "Zniszcz wszystkie cele zanim upłynie czas.|W tej misji masz nieskończoną ilość amunicji.", @@ -28,7 +30,7 @@ ["- Eliminate Unit 3378 |- Feeble Resistance must survive"] = "Rozwal Jednostkę 3378 | Twoja drużyna musi przetrwać", ["Enjoy the swim..."] = "Popływaj trochę...", ["Fastest lap: "] = "Najszybsze okrążenie: ", --- ["Feeble Resistance"] = "", + ["Feeble Resistance"] = "Ruch Oporu", ["Flag captured!"] = "Flaga przechwycona!", ["Flag respawned!"] = "Flaga przywrócona!", ["Flag returned!"] = "Flaga odzyskana!", @@ -36,6 +38,7 @@ ["GAME OVER!"] = "KONIEC GRY!", ["Game Started!"] = "Gra Rozpoczęta", ["Get on over there and take him out!"] = "Dostań się tam i go wykończ!", + ["Goal:"] = "Cel:", ["GO! GO! GO!"] = "RUCHY! RUCHY! RUCHY!", ["Good birdy......"] = "Dooobry ptaszek...", ["Good luck out there!"] = "Powodzenia!", @@ -47,22 +50,23 @@ ["Instructor"] = "Instruktor", ["- Jumping is disabled"] = "- Skakanie jest niemożliwe", ["Listen up, maggot!!"] = "Słuchaj mnie, gnido!", + ["|- Mines Time:"] = "|- Czas detonacji min:", ["MISSION FAILED"] = "MISJA ZAKOŃCZONA NIEPOWODZENIEM", ["MISSION SUCCESSFUL"] = "MISJA POWIODŁA SIĘ", ["MISSION SUCCESS"] = "MISJA POWIODŁA SIĘ", --- ["NEW fastest lap:"] = "", ["NEW fastest lap: "] = "NOWE najszybsze okrążenie: ", ["NO JUMPING"] = "BEZ SKAKANIA", ["Not So Friendly Match"] = "Mecz Nie-Do-Końca Towarzyski", ["Oh no! Just try again!"] = "Ojojoj! Spróbuj jeszcze raz!", ["Oh no! Time's up! Just try again."] = "Ajajaj! Koniec czasu! Spróbuj jeszcze raz.", ["Operation Diver"] = "Operacja Nurek", - ["Opposing Team:"] = "Przeciwna drużyna", + ["Opposing Team: "] = "Przeciwna drużyna", ["Pathetic Hog #%d"] = "Załosny Jeż #%d", --- ["Poison"] = "", + ["Poison"] = "Truciciel", ["Random Weapons"] = "Losowe uzbrojenie", [" - Return the enemy flag to your base to score | - First team to 3 captures wins | - You may only score when your flag is in your base | - Hogs will drop the flag if killed, or drowned | - Dropped flags may be returned or recaptured | - Hogs respawn when killed"] = " - Przynieś flagę wroga do swojej bazy by zdobyć punkt | - Pierwszy kto zrobi to 3 razy, wygrywa | - Punkt zdobywasz tylko gdy twoja flaga znajduje się w bazie | - Jeże upuszczą flagę gdy zostaną zabite bądź utopione | - Upuszczona flaga może być przywrócona lub przechwycona ponownie | - Jeże odradzają się po śmierci", ["RULES OF THE GAME [Press ESC to view]"] = "ZASADY GRY [Naciśnij ESC by zobaczyć]", + ["sec"] = "sek", ["See ya!"] = "Do zobaczenia!", ["Shotgun Team"] = "Strzelcy", ["Shotgun Training"] = "Trening strzelecki", @@ -71,20 +75,20 @@ ["Sniper Training"] = "Trening Snajperski", ["Sniperz"] = "Snajperzy", ["Spooky Tree"] = "Straszne drzewo", --- ["Team %d:"] = "", ["Team %d: "] = "Drużyna %d: ", ["Team Scores:"] = "Punktacja", --- ["The enemy is hiding out on yonder ducky!"] = "", + ["That was pointless."] = "To było bezcelowe", + ["The enemy is hiding out on yonder ducky!"] = "Na tamtej kaczce ukrywa się nasz przeciwnik!", + ["The flag will respawn next round."] = "Flaga pojawi się ponownie przy następnej rundzie.", ["There has been a mix-up with your gear and now you|have to utilize whatever is coming your way!"] = "Ktoś grzebał Ci w plecaku |Musisz sobie poradzić z tym co masz pod ręką", ["Toxic Team"] = "Toksyczny zespół", ["TrophyRace"] = "TrophyRace", ["T_T"] = "T_T", --- ["Unit 3378"] = "", + ["Unit 3378"] = "Jednostka 3378", ["Use your rope to get from start to finish as fast as you can!"] = "Użyj liny by jak najszybciej dotrzec od startu do mety", ["Victory for the"] = "Zwycięstwo przypadło", ["You have SCORED!!"] = "Zdobyłeś PUNKT", ["You've failed. Try again."] = "Przegrałeś. Spróbuj jeszcze raz", --- ["You've reached the goal!| |Time:"] = "", ["You've reached the goal!| |Time: "] = "Dotarłeś do celu!| |Czas: ", ["'Zooka Team"] = "Bazookinierzy", } diff -r e8fd20b2d66b -r 5e50d8162a96 share/hedgewars/Data/Locale/pt_BR.lua --- a/share/hedgewars/Data/Locale/pt_BR.lua Sun Dec 26 12:42:22 2010 -0500 +++ b/share/hedgewars/Data/Locale/pt_BR.lua Mon Dec 27 12:47:51 2010 -0500 @@ -8,6 +8,7 @@ ["Bazooka Training"] = "Treino com a Bazuca", ["Best laps per team: "] = "Melhor volta por equipe: ", -- ["Bloody Rookies"] = "", -- 01#Boot_Camp, User_Mission_-_Dangerous_Ducklings, User_Mission_-_Diver, User_Mission_-_Spooky_Tree +-- ["Boom!"] = "", -- ["by mikade"] = "", -- Control, User_Mission_-_Dangerous_Ducklings, User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork, Capture_the_Flag -- ["CAPTURE THE FLAG"] = "", -- ["Codename: Teamwork"] = "", @@ -16,6 +17,7 @@ -- ["CONTROL"] = "", -- ["Control pillars to score points."] = "", -- ["CONTROL v0.3"] = "", +-- ["CTF_BLIZZARD"] = "", -- ["CUSTOM BUILD 0.2"] = "", -- ["Cybernetic Empire"] = "", -- ["DAMMIT, ROOKIE!"] = "", @@ -36,6 +38,7 @@ -- ["GAME OVER!"] = "", -- ["Game Started!"] = "", -- ["Get on over there and take him out!"] = "", +-- ["Goal:"] = "", -- ["GO! GO! GO!"] = "", -- ["Good birdy......"] = "", -- ["Good luck out there!"] = "", @@ -47,22 +50,24 @@ -- ["Instructor"] = "", -- 01#Boot_Camp, User_Mission_-_Dangerous_Ducklings -- ["- Jumping is disabled"] = "", -- ["Listen up, maggot!!"] = "", +-- ["|- Mines Time:"] = "", -- User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork -- ["MISSION FAILED"] = "", -- User_Mission_-_Dangerous_Ducklings, User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork -- ["MISSION SUCCESSFUL"] = "", -- User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork -- ["MISSION SUCCESS"] = "", -- User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork --- ["NEW fastest lap:"] = "", ["NEW fastest lap: "] = "NOVA volta mais rápida: ", -- ["NO JUMPING"] = "", ["Not So Friendly Match"] = "Partida não muito amigável", -- Basketball, Knockball -- ["Oh no! Just try again!"] = "", -- User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork ["Oh no! Time's up! Just try again."] = "Oh não! O tempo acabou! Tente novamente.", --Bazooka, Shotgun, SniperRifle -- ["Operation Diver"] = "", --- ["Opposing Team:"] = "", +-- ["Opposing Team: "] = "", -- ["Pathetic Hog #%d"] = "", -- ["Poison"] = "", -- ["Random Weapons"] = "", -- [" - Return the enemy flag to your base to score | - First team to 3 captures wins | - You may only score when your flag is in your base | - Hogs will drop the flag if killed, or drowned | - Dropped flags may be returned or recaptured | - Hogs respawn when killed"] = "", -- ["RULES OF THE GAME [Press ESC to view]"] = "", +-- ["RULES OF THE GAME [Press ESC to view]"] = "", +-- ["sec"] = "", -- CTF_Blizzard, TrophyRace, Basic_Training_-_Bazooka, Basic_Training_-_Shotgun, Basic_Training_-_Sniper_Rifle, User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork, Capture_the_Flag -- ["See ya!"] = "", ["Shotgun Team"] = "Carabineiros", ["Shotgun Training"] = "Treino com a Escopeta", @@ -73,7 +78,9 @@ -- ["Spooky Tree"] = "", ["Team %d: "] = "Equipe %d: ", -- ["Team Scores:"] = "", +-- ["That was pointless."] = "", -- ["The enemy is hiding out on yonder ducky!"] = "", +-- ["The flag will respawn next round."] = "", -- ["There has been a mix-up with your gear and now you|have to utilize whatever is coming your way!"] = "", -- ["Toxic Team"] = "", -- User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork ["TrophyRace"] = "TrophyRace", diff -r e8fd20b2d66b -r 5e50d8162a96 share/hedgewars/Data/Locale/pt_PT.lua --- a/share/hedgewars/Data/Locale/pt_PT.lua Sun Dec 26 12:42:22 2010 -0500 +++ b/share/hedgewars/Data/Locale/pt_PT.lua Mon Dec 27 12:47:51 2010 -0500 @@ -8,6 +8,7 @@ ["Bazooka Training"] = "Treino com Bazuca", ["Best laps per team: "] = "Melhores voltas por equipa: ", -- ["Bloody Rookies"] = "", -- 01#Boot_Camp, User_Mission_-_Dangerous_Ducklings, User_Mission_-_Diver, User_Mission_-_Spooky_Tree +-- ["Boom!"] = "", -- ["by mikade"] = "", -- Control, User_Mission_-_Dangerous_Ducklings, User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork, Capture_the_Flag -- ["CAPTURE THE FLAG"] = "", -- ["Codename: Teamwork"] = "", @@ -16,6 +17,7 @@ -- ["CONTROL"] = "", -- ["Control pillars to score points."] = "", -- ["CONTROL v0.3"] = "", +-- ["CTF_BLIZZARD"] = "", -- ["CUSTOM BUILD 0.2"] = "", -- ["Cybernetic Empire"] = "", -- ["DAMMIT, ROOKIE!"] = "", @@ -36,6 +38,7 @@ -- ["GAME OVER!"] = "", -- ["Game Started!"] = "", -- ["Get on over there and take him out!"] = "", +-- ["Goal:"] = "", -- ["GO! GO! GO!"] = "", -- ["Good birdy......"] = "", -- ["Good luck out there!"] = "", @@ -47,22 +50,24 @@ -- ["Instructor"] = "", -- 01#Boot_Camp, User_Mission_-_Dangerous_Ducklings -- ["- Jumping is disabled"] = "", -- ["Listen up, maggot!!"] = "", +-- ["|- Mines Time:"] = "", -- User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork -- ["MISSION FAILED"] = "", -- User_Mission_-_Dangerous_Ducklings, User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork -- ["MISSION SUCCESSFUL"] = "", -- User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork -- ["MISSION SUCCESS"] = "", -- User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork --- ["NEW fastest lap:"] = "", ["NEW fastest lap: "] = "NOVA volta recorde: ", -- ["NO JUMPING"] = "", ["Not So Friendly Match"] = "Partida não muito amigável", -- Basketball, Knockball -- ["Oh no! Just try again!"] = "", -- User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork ["Oh no! Time's up! Just try again."] = "Oh não! Acabou o tempo! Tenta novamente.", --Bazooka, Shotgun, SniperRifle -- ["Operation Diver"] = "", --- ["Opposing Team:"] = "", +-- ["Opposing Team: "] = "", -- ["Pathetic Hog #%d"] = "", -- ["Poison"] = "", -- ["Random Weapons"] = "", -- [" - Return the enemy flag to your base to score | - First team to 3 captures wins | - You may only score when your flag is in your base | - Hogs will drop the flag if killed, or drowned | - Dropped flags may be returned or recaptured | - Hogs respawn when killed"] = "", -- ["RULES OF THE GAME [Press ESC to view]"] = "", +-- ["RULES OF THE GAME [Press ESC to view]"] = "", +-- ["sec"] = "", -- CTF_Blizzard, TrophyRace, Basic_Training_-_Bazooka, Basic_Training_-_Shotgun, Basic_Training_-_Sniper_Rifle, User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork, Capture_the_Flag -- ["See ya!"] = "", ["Shotgun Team"] = "Caçadores", ["Shotgun Training"] = "Treino com Caçadeira", @@ -73,7 +78,9 @@ -- ["Spooky Tree"] = "", ["Team %d: "] = "Equipa %d: ", -- ["Team Scores:"] = "", +-- ["That was pointless."] = "", -- ["The enemy is hiding out on yonder ducky!"] = "", +-- ["The flag will respawn next round."] = "", -- ["There has been a mix-up with your gear and now you|have to utilize whatever is coming your way!"] = "", -- ["Toxic Team"] = "", -- User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork ["TrophyRace"] = "TrophyRace", diff -r e8fd20b2d66b -r 5e50d8162a96 share/hedgewars/Data/Locale/pt_PT.txt --- a/share/hedgewars/Data/Locale/pt_PT.txt Sun Dec 26 12:42:22 2010 -0500 +++ b/share/hedgewars/Data/Locale/pt_PT.txt Mon Dec 27 12:47:51 2010 -0500 @@ -50,6 +50,8 @@ 00:47=Mina Pegajosa 00:48=Martelo 00:49=Ressuscitador +00:50=Ataque Perfurador +00:51=Bola de Lama 01:00=Vamos lutar! 01:01=Ronda empatada @@ -431,6 +433,7 @@ 03:47=Cola-as onde achares mais útil! 03:48=Garantia vitalícia! 03:49=Funciona tal como anunciado +03:50=Coleccionador de toupeiras ; Weapon Descriptions (use | as line breaks) 04:00=Ataca os teus inimigos usando uma simples granada.|Explodirá quando o tempo chegar a zero.|1-5: Define o temporizador da granada|Ataque: Deixa premido para lançar com mais força diff -r e8fd20b2d66b -r 5e50d8162a96 share/hedgewars/Data/Locale/sk.lua --- a/share/hedgewars/Data/Locale/sk.lua Sun Dec 26 12:42:22 2010 -0500 +++ b/share/hedgewars/Data/Locale/sk.lua Mon Dec 27 12:47:51 2010 -0500 @@ -8,6 +8,7 @@ ["Bazooka Training"] = "Tréning s bazukou", ["Best laps per team: "] = "Najrýchlejšie kolá podľa tímov: ", -- ["Bloody Rookies"] = "", -- 01#Boot_Camp, User_Mission_-_Dangerous_Ducklings, User_Mission_-_Diver, User_Mission_-_Spooky_Tree +-- ["Boom!"] = "", -- ["by mikade"] = "", -- Control, User_Mission_-_Dangerous_Ducklings, User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork, Capture_the_Flag -- ["CAPTURE THE FLAG"] = "", -- ["Codename: Teamwork"] = "", @@ -16,6 +17,7 @@ -- ["CONTROL"] = "", -- ["Control pillars to score points."] = "", -- ["CONTROL v0.3"] = "", +-- ["CTF_BLIZZARD"] = "", -- ["CUSTOM BUILD 0.2"] = "", -- ["Cybernetic Empire"] = "", -- ["DAMMIT, ROOKIE!"] = "", @@ -36,6 +38,7 @@ -- ["GAME OVER!"] = "", -- ["Game Started!"] = "", -- ["Get on over there and take him out!"] = "", +-- ["Goal:"] = "", -- ["GO! GO! GO!"] = "", -- ["Good birdy......"] = "", -- ["Good luck out there!"] = "", @@ -47,22 +50,24 @@ -- ["Instructor"] = "", -- 01#Boot_Camp, User_Mission_-_Dangerous_Ducklings -- ["- Jumping is disabled"] = "", -- ["Listen up, maggot!!"] = "", +-- ["|- Mines Time:"] = "", -- User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork -- ["MISSION FAILED"] = "", -- User_Mission_-_Dangerous_Ducklings, User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork -- ["MISSION SUCCESSFUL"] = "", -- User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork -- ["MISSION SUCCESS"] = "", -- User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork --- ["NEW fastest lap:"] = "", ["NEW fastest lap: "] = "NOVÉ najrýchlejšie kolo: ", -- ["NO JUMPING"] = "", ["Not So Friendly Match"] = "Nie tak celkom priateľský zápas", -- Basketball, Knockball -- ["Oh no! Just try again!"] = "", -- User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork ["Oh no! Time's up! Just try again."] = "Ale nie! Čas vypršal! Tak to skúste znovu.", --Bazooka, Shotgun, SniperRifle -- ["Operation Diver"] = "", --- ["Opposing Team:"] = "", +-- ["Opposing Team: "] = "", -- ["Pathetic Hog #%d"] = "", -- ["Poison"] = "", -- ["Random Weapons"] = "", -- [" - Return the enemy flag to your base to score | - First team to 3 captures wins | - You may only score when your flag is in your base | - Hogs will drop the flag if killed, or drowned | - Dropped flags may be returned or recaptured | - Hogs respawn when killed"] = "", -- ["RULES OF THE GAME [Press ESC to view]"] = "", +-- ["RULES OF THE GAME [Press ESC to view]"] = "", +-- ["sec"] = "", -- CTF_Blizzard, TrophyRace, Basic_Training_-_Bazooka, Basic_Training_-_Shotgun, Basic_Training_-_Sniper_Rifle, User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork, Capture_the_Flag -- ["See ya!"] = "", ["Shotgun Team"] = "Shotgun tím", ["Shotgun Training"] = "Tréning s brokovnicou", @@ -73,7 +78,9 @@ -- ["Spooky Tree"] = "", ["Team %d: "] = "Tím %d: ", -- ["Team Scores:"] = "", +-- ["That was pointless."] = "", -- ["The enemy is hiding out on yonder ducky!"] = "", +-- ["The flag will respawn next round."] = "", -- ["There has been a mix-up with your gear and now you|have to utilize whatever is coming your way!"] = "", -- ["Toxic Team"] = "", -- User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork ["TrophyRace"] = "Preteky o trofej", diff -r e8fd20b2d66b -r 5e50d8162a96 share/hedgewars/Data/Locale/stub.lua --- a/share/hedgewars/Data/Locale/stub.lua Sun Dec 26 12:42:22 2010 -0500 +++ b/share/hedgewars/Data/Locale/stub.lua Mon Dec 27 12:47:51 2010 -0500 @@ -8,6 +8,7 @@ -- ["Bazooka Training"] = "", -- ["Best laps per team: "] = "", -- ["Bloody Rookies"] = "", -- 01#Boot_Camp, User_Mission_-_Dangerous_Ducklings, User_Mission_-_Diver, User_Mission_-_Spooky_Tree +-- ["Boom!"] = "", -- ["by mikade"] = "", -- Control, User_Mission_-_Dangerous_Ducklings, User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork, Capture_the_Flag -- ["CAPTURE THE FLAG"] = "", -- ["Codename: Teamwork"] = "", @@ -16,6 +17,7 @@ -- ["CONTROL"] = "", -- ["Control pillars to score points."] = "", -- ["CONTROL v0.3"] = "", +-- ["CTF_BLIZZARD"] = "", -- ["CUSTOM BUILD 0.2"] = "", -- ["Cybernetic Empire"] = "", -- ["DAMMIT, ROOKIE!"] = "", @@ -37,6 +39,7 @@ -- ["GAME OVER!"] = "", -- ["Game Started!"] = "", -- ["Get on over there and take him out!"] = "", +-- ["Goal:"] = "", -- ["GO! GO! GO!"] = "", -- ["Good birdy......"] = "", -- ["Good luck out there!"] = "", @@ -48,6 +51,7 @@ -- ["Instructor"] = "", -- 01#Boot_Camp, User_Mission_-_Dangerous_Ducklings -- ["- Jumping is disabled"] = "", -- ["Listen up, maggot!!"] = "", +-- ["|- Mines Time:"] = "", -- User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork -- ["MISSION FAILED"] = "", -- User_Mission_-_Dangerous_Ducklings, User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork -- ["MISSION SUCCESSFUL"] = "", -- User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork -- ["MISSION SUCCESS"] = "", -- User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork @@ -57,13 +61,15 @@ -- ["Oh no! Just try again!"] = "", -- User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork -- ["Oh no! Time's up! Just try again."] = "", --Bazooka, Shotgun, SniperRifle -- ["Operation Diver"] = "", --- ["Opposing Team:"] = "", +-- ["Opposing Team: "] = "", -- ["Pathetic Hog #%d"] = "", -- ["Poison"] = "", -- ["Random Weapons"] = "", -- [" - Return the enemy flag to your base to score | - First team to 3 captures wins | - You may only score when your flag is in your base | - Hogs will drop the flag if killed, or drowned | - Dropped flags may be returned or recaptured | - Hogs respawn when killed"] = "", -- [" - Return the enemy flag to your base to score | - First team to 3 captures wins | - You may only score when your flag is in your base | - Hogs will drop the flag if killed, or drowned | - Dropped flags may be returned or recaptured | - Hogs respawn when killed"] = "", -- ["RULES OF THE GAME [Press ESC to view]"] = "", +-- ["RULES OF THE GAME [Press ESC to view]"] = "", +-- ["sec"] = "", -- CTF_Blizzard, TrophyRace, Basic_Training_-_Bazooka, Basic_Training_-_Shotgun, Basic_Training_-_Sniper_Rifle, User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork, Capture_the_Flag -- ["See ya!"] = "", -- ["Shotgun Team"] = "", -- ["Shotgun Training"] = "", @@ -74,7 +80,9 @@ -- ["Spooky Tree"] = "", -- ["Team %d: "] = "", -- ["Team Scores:"] = "", +-- ["That was pointless."] = "", -- ["The enemy is hiding out on yonder ducky!"] = "", +-- ["The flag will respawn next round."] = "", -- ["There has been a mix-up with your gear and now you|have to utilize whatever is coming your way!"] = "", -- ["Toxic Team"] = "", -- User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork -- ["TrophyRace"] = "", diff -r e8fd20b2d66b -r 5e50d8162a96 share/hedgewars/Data/Locale/sv.lua --- a/share/hedgewars/Data/Locale/sv.lua Sun Dec 26 12:42:22 2010 -0500 +++ b/share/hedgewars/Data/Locale/sv.lua Mon Dec 27 12:47:51 2010 -0500 @@ -1,89 +1,95 @@ locale = { - [":("] = ":(", - ["!!!"] = "!!!", + [":("] = ":(", + ["!!!"] = "!!!", ["A game of luck"] = "Ett lyckospel", ["Aiming Practice"] = "Siktesövning", --Bazooka, Shotgun, SniperRifle ["Bat balls at your enemies and|push them into the sea!"] = "Slå bollar mot dina fiender|och slå ner dem i havet", ["Bat your opponents through the|baskets and out of the map!"] = "Slå ner dina motståndare i|korgarna och ut ur kartan!", ["Bazooka Training"] = "Bazookaträning", ["Best laps per team: "] = "Bästa varv per lag: ", - ["Bloody Rookies"] = "Blodiga gröngölingar", -- 01#Boot_Camp, User_Mission_-_Dangerous_Ducklings, User_Mission_-_Diver, User_Mission_-_Spooky_Tree - ["by mikade"] = "av mikade", -- Control, User_Mission_-_Dangerous_Ducklings, User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork, Capture_the_Flag - ["CAPTURE THE FLAG"] = "CAPTURE THE FLAG", - ["Codename: Teamwork"] = "Kodnamn: Lagarbete", - ["Congratulations!"] = "Grattis!", + ["Bloody Rookies"] = "Blodiga gröngölingar", -- 01#Boot_Camp, User_Mission_-_Dangerous_Ducklings, User_Mission_-_Diver, User_Mission_-_Spooky_Tree +-- ["Boom!"] = "", + ["by mikade"] = "av mikade", -- Control, User_Mission_-_Dangerous_Ducklings, User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork, Capture_the_Flag + ["CAPTURE THE FLAG"] = "CAPTURE THE FLAG", + ["Codename: Teamwork"] = "Kodnamn: Lagarbete", + ["Congratulations!"] = "Grattis!", ["Congratulations! You've eliminated all targets|within the allowed time frame."] = "Grattis! Du har förstört alla målen inom den|tillåtna tidsramen.", --Bazooka, Shotgun, SniperRifle - ["CONTROL"] = "KONTROLL", - ["Control pillars to score points."] = "Kontrollera pelare för att ta poäng", - ["CONTROL v0.3"] = "KONTROLL v0.3", - ["CUSTOM BUILD 0.2"] = "SPECIALVERSION 0.2", - ["Cybernetic Empire"] = "Robotriket", - ["DAMMIT, ROOKIE!"] = "SATAN, GRÖNGÖLING!", - ["DAMMIT, ROOKIE! GET OFF MY HEAD!"] = "SATAN, GRÖNGÖLING! SLUTA TJATA!", - ["Dangerous Ducklings"] = "Farliga ankungar", - ["Eliminate all enemies"] = "Förgör alla fiender", + ["CONTROL"] = "KONTROLL", + ["Control pillars to score points."] = "Kontrollera pelare för att ta poäng", + ["CONTROL v0.3"] = "KONTROLL v0.3", +-- ["CTF_BLIZZARD"] = "", + ["CUSTOM BUILD 0.2"] = "SPECIALVERSION 0.2", + ["Cybernetic Empire"] = "Robotriket", + ["DAMMIT, ROOKIE! GET OFF MY HEAD!"] = "SATAN, GRÖNGÖLING! SLUTA TJATA!", + ["DAMMIT, ROOKIE!"] = "SATAN, GRÖNGÖLING!", + ["Dangerous Ducklings"] = "Farliga ankungar", + ["Eliminate all enemies"] = "Förgör alla fiender", ["Eliminate all targets before your time runs out.|You have unlimited ammo for this mission."] = "Förstör alla målen innan din tid tar slut.|Du har obegränsad ammunition för deta uppdrag", --Bazooka, Shotgun, SniperRifle - ["Eliminate Poison before the time runs out"] = "Förgör Gift innan tiden tar slut", - ["Eliminate the Blue Team"] = "Förgör det Blå laget", - ["- Eliminate Unit 3378 |- Feeble Resistance must survive"] = "- Förgör Enhet 3378 |- Klent motstånd måste överleva", - ["Enjoy the swim..."] = "Ha en trevlig simtur...", + ["Eliminate Poison before the time runs out"] = "Förgör Gift innan tiden tar slut", + ["Eliminate the Blue Team"] = "Förgör det Blå laget", + ["- Eliminate Unit 3378 |- Feeble Resistance must survive"] = "- Förgör Enhet 3378 |- Klent motstånd måste överleva", + ["Enjoy the swim..."] = "Ha en trevlig simtur...", ["Fastest lap: "] = "Snabbast varv: ", - ["Feeble Resistance"] = "Klent motstånd", - ["Flag captured!"] = "Flagga tagen!", - ["Flag respawned!"] = "Flagga återställd!", - ["Flag returned!"] = "Flagga återvänd!", - ["Flags will be placed where each team ends their turn."] = "Flaggor kommer att placeras där varje lag avslutar sin tur.", - ["GAME OVER!"] = "SPELET ÄR SLUT!", - ["Game Started!"] = "Spel startat!", - ["Get on over there and take him out!"] = "Ta dig bort där och gör dig av med honom!", - ["GO! GO! GO!"] = "Kör! Kör! Kör!", - ["Good birdy......"] = "Fin fågel......", - ["Good luck out there!"] = "Lycka till där ute!", + ["Feeble Resistance"] = "Klent motstånd", + ["Flag captured!"] = "Flagga tagen!", + ["Flag respawned!"] = "Flagga återställd!", + ["Flag returned!"] = "Flagga återvänd!", + ["Flags will be placed where each team ends their turn."] = "Flaggor kommer att placeras där varje lag avslutar sin tur.", + ["GAME OVER!"] = "SPELET ÄR SLUT!", + ["Game Started!"] = "Spel startat!", + ["Get on over there and take him out!"] = "Ta dig bort där och gör dig av med honom!", +-- ["Goal:"] = "", + ["GO! GO! GO!"] = "Kör! Kör! Kör!", + ["Good birdy......"] = "Fin fågel......", + ["Good luck out there!"] = "Lycka till där ute!", ["Hedgewars-Basketball"] = "Hedgewars-Basket", ["Hedgewars-Knockball"] = "Hedgewars-Knockball", - ["Hmmm..."] = "Hmmm...", - ["Hooray!"] = "Hurra!", + ["Hmmm..."] = "Hmmm...", + ["Hooray!"] = "Hurra!", ["Hunter"] = "Jägare", --Bazooka, Shotgun, SniperRifle - ["Instructor"] = "Instruktör", -- 01#Boot_Camp, User_Mission_-_Dangerous_Ducklings - ["- Jumping is disabled"] = "- Hoppande är avaktiverat", - ["Listen up, maggot!!"] = "Hör här, ynkrygg!!", - ["MISSION FAILED"] = "UPPDRAG MISSLYCKADES", -- User_Mission_-_Dangerous_Ducklings, User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork - ["MISSION SUCCESSFUL"] = "UPPDRAG SLUTFÖRT", -- User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork - ["MISSION SUCCESS"] = "UPPDRAG LYCKADES", -- User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork - ["NEW fastest lap:"] = "NYTT snabbaste varv:", + ["Instructor"] = "Instruktör", -- 01#Boot_Camp, User_Mission_-_Dangerous_Ducklings + ["- Jumping is disabled"] = "- Hoppande är avaktiverat", + ["Listen up, maggot!!"] = "Hör här, ynkrygg!!", +-- ["|- Mines Time:"] = "", -- User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork + ["MISSION FAILED"] = "UPPDRAG MISSLYCKADES", -- User_Mission_-_Dangerous_Ducklings, User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork + ["MISSION SUCCESSFUL"] = "UPPDRAG SLUTFÖRT", -- User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork + ["MISSION SUCCESS"] = "UPPDRAG LYCKADES", -- User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork ["NEW fastest lap: "] = "NYTT snabbast varv: ", - ["NO JUMPING"] = "INGET HOPPANDE", + ["NO JUMPING"] = "INGET HOPPANDE", ["Not So Friendly Match"] = "En inte så vänlig match", -- Basketball, Knockball - ["Oh no! Just try again!"] = "Å nej! Bara att försöka igen!", -- User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork + ["Oh no! Just try again!"] = "Å nej! Bara att försöka igen!", -- User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork ["Oh no! Time's up! Just try again."] = "Åh nej! Tiden är ute! Pröva igen.", --Bazooka, Shotgun, SniperRifle - ["Operation Diver"] = "Operationsledare", - ["Opposing Team:"] = "Motståndarlag", - ["Pathetic Hog #%d"] = "Patetisk kott #%d", - ["Poison"] = "Gift", + ["Operation Diver"] = "Operationens dykare", + ["Opposing Team: "] = "Motståndarlag: ", + ["Pathetic Hog #%d"] = "Patetisk kott #%d", + ["Poison"] = "Gift", ["Random Weapons"] = "Slumpade vapen", - [" - Return the enemy flag to your base to score | - First team to 3 captures wins | - You may only score when your flag is in your base | - Hogs will drop the flag if killed, or drowned | - Dropped flags may be returned or recaptured | - Hogs respawn when killed"] = " - Återvänd med fiendens flagga till din bas för att ta poäng | - Första laget till tre vinner | - Du kan bara ta poäng när din egen flagga är i basen | - Kottar tappar flaggan när de dödas eller drunknar | - Tappade flaggor kan tas tillbaka eller fångas | - Kottar kommer tillbaka när de dör", - ["RULES OF THE GAME [Press ESC to view]"] = "SPELREGLER [Tryck ESC för att se", - ["See ya!"] = "Ses!", + [" - Return the enemy flag to your base to score | - First team to 3 captures wins | - You may only score when your flag is in your base | - Hogs will drop the flag if killed, or drowned | - Dropped flags may be returned or recaptured | - Hogs respawn when killed"] = " - Återvänd med fiendens flagga till din bas för att ta poäng | - Första laget till tre vinner | - Du kan bara ta poäng när din egen flagga är i basen | - Kottar tappar flaggan när de dödas eller drunknar | - Tappade flaggor kan tas tillbaka eller fångas | - Kottar kommer tillbaka när de dör", +-- ["RULES OF THE GAME [Press ESC to view]"] = "", + ["RULES OF THE GAME [Press ESC to view]"] = "SPELREGLER [Tryck ESC för att se", +-- ["sec"] = "", -- CTF_Blizzard, TrophyRace, Basic_Training_-_Bazooka, Basic_Training_-_Shotgun, Basic_Training_-_Sniper_Rifle, User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork, Capture_the_Flag + ["See ya!"] = "Ses!", ["Shotgun Team"] = "Hagelgevärslaget", ["Shotgun Training"] = "Hagelgevärsträning", ["%s is out and Team %d|scored a penalty!| |Score:"] = "%s är ute och lag %d|fick ett straff!| |Poängställning:", -- Basketball, Knockball ["%s is out and Team %d|scored a point!| |Score:"] = "%s är ute och lag %d|fick ett poäng!| |Poängställning:", -- Basketball, Knockball ["Sniper Training"] = "Prickskyttesträning", ["Sniperz"] = "Prickskyttarna", - ["Spooky Tree"] = "Kusligt träd", + ["Spooky Tree"] = "Kusligt träd", ["Team %d: "] = "Lag %d: ", - ["Team Scores:"] = "Lagresultat:", - ["The enemy is hiding out on yonder ducky!"] = "Fienden gömmer sig på andra ankan!", + ["Team Scores:"] = "Lagresultat:", +-- ["That was pointless."] = "", + ["The enemy is hiding out on yonder ducky!"] = "Fienden gömmer sig på andra ankan!", +-- ["The flag will respawn next round."] = "", ["There has been a mix-up with your gear and now you|have to utilize whatever is coming your way!"] = "Det har uppstått ett missförstånd om din utrustning|och nu måste du använda vad du kan hitta!", - ["Toxic Team"] = "Förgiftade laget", -- User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork + ["Toxic Team"] = "Förgiftade laget", -- User_Mission_-_Diver, User_Mission_-_Spooky_Tree, User_Mission_-_Teamwork ["TrophyRace"] = "TrophyRace", - ["T_T"] = "T_T", - ["Unit 3378"] = "Enhet 3378", + ["T_T"] = "T_T", + ["Unit 3378"] = "Enhet 3378", ["Use your rope to get from start to finish as fast as you can!"] = "Använd ditt rep för att ta dig från start till mål så fort som möjligt!", - ["Victory for the"] = "Vinst för", - ["You have SCORED!!"] = "Du har tagit poäng!", - ["You've failed. Try again."] = "Du har misslyckats. Försök igen.", - ["You've reached the goal!| |Time:"] = "Du har nått målet!| |Tid:", + ["Victory for the"] = "Vinst för", + ["You have SCORED!!"] = "Du har tagit poäng!", + ["You've failed. Try again."] = "Du har misslyckats. Försök igen.", ["You've reached the goal!| |Time: "] = "Du har nått målet!| |Tid: ", ["'Zooka Team"] = "Bazookalaget", } diff -r e8fd20b2d66b -r 5e50d8162a96 share/hedgewars/Data/Themes/Christmas/amSnowball.png Binary file share/hedgewars/Data/Themes/Christmas/amSnowball.png has changed diff -r e8fd20b2d66b -r 5e50d8162a96 share/hedgewars/Data/Themes/Compost/amSnowball.png Binary file share/hedgewars/Data/Themes/Compost/amSnowball.png has changed diff -r e8fd20b2d66b -r 5e50d8162a96 share/hedgewars/Data/Themes/Snow/amSnowball.png Binary file share/hedgewars/Data/Themes/Snow/amSnowball.png has changed diff -r e8fd20b2d66b -r 5e50d8162a96 share/hedgewars/Data/Themes/Underwater/amSnowball.png Binary file share/hedgewars/Data/Themes/Underwater/amSnowball.png has changed