# HG changeset patch
# User sheepluva
# Date 1316040425 -7200
# Node ID 64ccc6be0ec536965cf40f39319c462ae27a2f2a
# Parent ed9676dc8cb48ff4067c59dd418f3b19a8f4c43f
team edit: restore default hedgehog name if name is empty- since empty names are not supported and will lead to errors; also lupdate
diff -r ed9676dc8cb4 -r 64ccc6be0ec5 QTfrontend/hwform.cpp
--- a/QTfrontend/hwform.cpp Wed Sep 14 22:39:39 2011 +0200
+++ b/QTfrontend/hwform.cpp Thu Sep 15 00:47:05 2011 +0200
@@ -169,7 +169,7 @@
connect(ui.pageEditTeam->BtnTeamSave, SIGNAL(clicked()), this, SLOT(TeamSave()));
connect(ui.pageEditTeam->BtnTeamDiscard, SIGNAL(clicked()), this, SLOT(TeamDiscard()));
- connect(ui.pageEditTeam->signalMapper, SIGNAL(mapped(const int &)), this, SLOT(RandomName(const int &)));
+ connect(ui.pageEditTeam->signalMapper2, SIGNAL(mapped(const int &)), this, SLOT(RandomName(const int &)));
connect(ui.pageEditTeam->randTeamButton, SIGNAL(clicked()), this, SLOT(RandomNames()));
connect(ui.pageMultiplayer->BtnBack, SIGNAL(clicked()), this, SLOT(GoBack()));
@@ -639,7 +639,7 @@
void HWForm::NewTeam()
{
- editedTeam = new HWTeam("unnamed");
+ editedTeam = new HWTeam(QLineEdit::tr("unnamed"));
editedTeam->SetToPage(this);
GoToPage(ID_PAGE_SETUP_TEAM);
}
diff -r ed9676dc8cb4 -r 64ccc6be0ec5 QTfrontend/pagedrawmap.cpp
--- a/QTfrontend/pagedrawmap.cpp Wed Sep 14 22:39:39 2011 +0200
+++ b/QTfrontend/pagedrawmap.cpp Thu Sep 15 00:47:05 2011 +0200
@@ -45,7 +45,7 @@
void PageDrawMap::load()
{
- QString fileName = QFileDialog::getOpenFileName(NULL, tr("Load drawn map"), ".", tr("Drawn Maps (*.hwmap);;All files (*)"));
+ QString fileName = QFileDialog::getOpenFileName(NULL, tr("Load drawn map"), ".", tr("Drawn Maps") + " (*.hwmap);;" + tr("All files") + " (*)");
if(!fileName.isEmpty())
drawMapWidget->load(fileName);
@@ -53,7 +53,7 @@
void PageDrawMap::save()
{
- QString fileName = QFileDialog::getSaveFileName(NULL, tr("Save drawn map"), ".", tr("Drawn Maps (*.hwmap);;All files (*)"));
+ QString fileName = QFileDialog::getSaveFileName(NULL, tr("Save drawn map"), ".", tr("Drawn Maps") + " (*.hwmap);;" + tr("All files") + " (*)");
if(!fileName.isEmpty())
drawMapWidget->save(fileName);
diff -r ed9676dc8cb4 -r 64ccc6be0ec5 QTfrontend/pageeditteam.cpp
--- a/QTfrontend/pageeditteam.cpp Wed Sep 14 22:39:39 2011 +0200
+++ b/QTfrontend/pageeditteam.cpp Thu Sep 15 00:47:05 2011 +0200
@@ -64,7 +64,10 @@
GBoxHedgehogs->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
QGridLayout * GBHLayout = new QGridLayout(GBoxHedgehogs);
- signalMapper = new QSignalMapper(this);
+ signalMapper1 = new QSignalMapper(this);
+ signalMapper2 = new QSignalMapper(this);
+
+ connect(signalMapper1, SIGNAL(mapped(int)), this, SLOT(fixHHname(int)));
HatsModel * hatsModel = new HatsModel(GBoxHedgehogs);
for(int i = 0; i < 8; i++)
@@ -82,11 +85,13 @@
HHNameEdit[i]->setMinimumWidth(120);
GBHLayout->addWidget(HHNameEdit[i], i, 1);
+ connect(HHNameEdit[i], SIGNAL(editingFinished()), signalMapper1, SLOT(map()));
+ signalMapper1->setMapping(HHNameEdit[i], i);
+
randButton[i] = addButton(":/res/dice.png", GBHLayout, i, 3, true);
- connect(randButton[i], SIGNAL(clicked()), signalMapper, SLOT(map()));
- signalMapper->setMapping(randButton[i], i);
-
+ connect(randButton[i], SIGNAL(clicked()), signalMapper2, SLOT(map()));
+ signalMapper2->setMapping(randButton[i], i);
}
randTeamButton = addButton(QPushButton::tr("Random Team"), GBHLayout, 9, false);
@@ -342,6 +347,14 @@
}
}
+void PageEditTeam::fixHHname(int idx)
+{
+ HHNameEdit[idx]->setText(HHNameEdit[idx]->text().trimmed());
+
+ if (HHNameEdit[idx]->text().isEmpty())
+ HHNameEdit[idx]->setText(QLineEdit::tr("hedgehog %1").arg(idx+1));
+}
+
void PageEditTeam::CBFort_activated(const QString & fortname)
{
QFile tmp;
diff -r ed9676dc8cb4 -r 64ccc6be0ec5 QTfrontend/pageeditteam.h
--- a/QTfrontend/pageeditteam.h Wed Sep 14 22:39:39 2011 +0200
+++ b/QTfrontend/pageeditteam.h Thu Sep 15 00:47:05 2011 +0200
@@ -31,7 +31,8 @@
public:
PageEditTeam(QWidget* parent, SDLInteraction * sdli);
- QSignalMapper* signalMapper;
+ QSignalMapper* signalMapper1;
+ QSignalMapper* signalMapper2;
QGroupBox *GBoxHedgehogs;
QGroupBox *GBoxTeam;
QGroupBox *GBoxFort;
@@ -61,6 +62,7 @@
private slots:
void testSound();
+ void fixHHname(int idx);
};
#endif
diff -r ed9676dc8cb4 -r 64ccc6be0ec5 QTfrontend/team.cpp
--- a/QTfrontend/team.cpp Wed Sep 14 22:39:39 2011 +0200
+++ b/QTfrontend/team.cpp Thu Sep 15 00:47:05 2011 +0200
@@ -38,7 +38,7 @@
OldTeamName = TeamName;
for (int i = 0; i < 8; i++)
{
- Hedgehogs[i].Name.sprintf("hedgehog %d", i);
+ Hedgehogs[i].Name = (QLineEdit::tr("hedgehog %1").arg(i+1));
Hedgehogs[i].Hat = "NoHat";
}
Grave = "Statue";
@@ -125,7 +125,7 @@
for(int i = 0; i < 8; i++)
{
QString hh = QString("Hedgehog%1/").arg(i);
- Hedgehogs[i].Name = teamfile.value(hh + "Name", QString("hedgehog %1").arg(i)).toString();
+ Hedgehogs[i].Name = teamfile.value(hh + "Name", QString("hedgehog %1").arg(i+1)).toString();
Hedgehogs[i].Hat = teamfile.value(hh + "Hat", "NoHat").toString();
Hedgehogs[i].Rounds = teamfile.value(hh + "Rounds", 0).toInt();
Hedgehogs[i].Kills = teamfile.value(hh + "Kills", 0).toInt();
diff -r ed9676dc8cb4 -r 64ccc6be0ec5 share/hedgewars/Data/Locale/hedgewars_ar.ts
--- a/share/hedgewars/Data/Locale/hedgewars_ar.ts Wed Sep 14 22:39:39 2011 +0200
+++ b/share/hedgewars/Data/Locale/hedgewars_ar.ts Thu Sep 15 00:47:05 2011 +0200
@@ -124,6 +124,14 @@
File Types
+
+ Demo name
+
+
+
+ Demo name:
+
+ HWGame
@@ -377,11 +385,15 @@
- Drawn Maps (*.hwmap);;All files (*.*)
+ Save drawn map
- Save drawn map
+ Drawn Maps
+
+
+
+ All files
@@ -726,6 +738,10 @@
Tips
+
+ Downloadable Content
+
+ PageMultiplayer
@@ -1005,7 +1021,7 @@
Add an indestructable border around the terrain
- اضف اطار لا يمكن تدميره
+ اضف اطار لا يمكن تدميرهLower gravity
@@ -1111,6 +1127,14 @@
Teams in each clan take successive turns sharing their turn time.
+
+ Add an indestructible border around the terrain
+
+
+
+ Add an indestructible border along the bottom
+
+ PageSelectWeapon
@@ -1635,6 +1659,10 @@
unnamedغير مسمى
+
+ hedgehog %1
+
+ QMainWindow
@@ -1991,6 +2019,10 @@
Tag Team
+
+ Add Bottom Border
+
+ binds
diff -r ed9676dc8cb4 -r 64ccc6be0ec5 share/hedgewars/Data/Locale/hedgewars_bg.ts
--- a/share/hedgewars/Data/Locale/hedgewars_bg.ts Wed Sep 14 22:39:39 2011 +0200
+++ b/share/hedgewars/Data/Locale/hedgewars_bg.ts Thu Sep 15 00:47:05 2011 +0200
@@ -123,6 +123,14 @@
File TypesФайл със запазена игра на Hedgewars
+
+ Demo name
+
+
+
+ Demo name:
+
+ HWGame
@@ -362,12 +370,20 @@
Drawn Maps (*.hwmap);;All files (*.*)
- Начертани карти (*.hwmap);;Всички файлове (*.*)
+ Начертани карти (*.hwmap);;Всички файлове (*.*)Save drawn mapЗапазване на начертана карта
+
+ Drawn Maps
+
+
+
+ All files
+
+ PageEditTeam
@@ -700,6 +716,10 @@
Tips
+
+ Downloadable Content
+
+ PageMultiplayer
@@ -964,10 +984,6 @@
- Add an indestructable border around the terrain
-
-
- Lower gravity
@@ -1067,6 +1083,14 @@
Teams in each clan take successive turns sharing their turn time.
+
+ Add an indestructible border around the terrain
+
+
+
+ Add an indestructible border along the bottom
+
+ PageSelectWeapon
@@ -1591,6 +1615,10 @@
unnamedБезименен
+
+ hedgehog %1
+
+ QMainWindow
@@ -1943,6 +1971,10 @@
Tag Team
+
+ Add Bottom Border
+
+ binds
diff -r ed9676dc8cb4 -r 64ccc6be0ec5 share/hedgewars/Data/Locale/hedgewars_cs.ts
--- a/share/hedgewars/Data/Locale/hedgewars_cs.ts Wed Sep 14 22:39:39 2011 +0200
+++ b/share/hedgewars/Data/Locale/hedgewars_cs.ts Thu Sep 15 00:47:05 2011 +0200
@@ -124,6 +124,14 @@
File TypesHedgewars Save Soubor
+
+ Demo name
+
+
+
+ Demo name:
+
+ HWGame
@@ -363,12 +371,20 @@
Drawn Maps (*.hwmap);;All files (*.*)
- Nakreslené mapy (*.hwmap);;Všechny soubory (*.*)
+ Nakreslené mapy (*.hwmap);;Všechny soubory (*.*)Save drawn mapUložit nakreslenou mapu
+
+ Drawn Maps
+
+
+
+ All files
+
+ PageEditTeam
@@ -712,6 +728,10 @@
Tips
+
+ Downloadable Content
+
+ PageMultiplayer
@@ -988,7 +1008,7 @@
Add an indestructable border around the terrain
- Přidá nezničitelnou hranici okolo terénu
+ Přidá nezničitelnou hranici okolo terénuLower gravity
@@ -1082,6 +1102,14 @@
Teams in each clan take successive turns sharing their turn time.
+
+ Add an indestructible border around the terrain
+
+
+
+ Add an indestructible border along the bottom
+
+ PageSelectWeapon
@@ -1606,6 +1634,10 @@
unnamednepojmenovaný
+
+ hedgehog %1
+
+ QMainWindow
@@ -1958,6 +1990,10 @@
Tag Team
+
+ Add Bottom Border
+
+ binds
diff -r ed9676dc8cb4 -r 64ccc6be0ec5 share/hedgewars/Data/Locale/hedgewars_de.ts
--- a/share/hedgewars/Data/Locale/hedgewars_de.ts Wed Sep 14 22:39:39 2011 +0200
+++ b/share/hedgewars/Data/Locale/hedgewars_de.ts Thu Sep 15 00:47:05 2011 +0200
@@ -123,6 +123,14 @@
File TypesHedgewars gespeichertes Spiel
+
+ Demo name
+
+
+
+ Demo name:
+
+ HWGame
@@ -385,13 +393,17 @@
Gezeichnete Karte laden
- Drawn Maps (*.hwmap);;All files (*.*)
-
-
- Save drawn mapGezeichnete Karte sichern
+
+ Drawn Maps
+
+
+
+ All files
+
+ PageEditTeam
@@ -767,6 +779,10 @@
Tips
+
+ Downloadable Content
+
+ PageMultiplayer
@@ -1076,7 +1092,7 @@
Add an indestructable border around the terrain
- Einfügen eines unzerstörbaren Kartenrand
+ Einfügen eines unzerstörbaren KartenrandLower gravity
@@ -1150,6 +1166,14 @@
Teams in each clan take successive turns sharing their turn time.
+
+ Add an indestructible border around the terrain
+
+
+
+ Add an indestructible border along the bottom
+
+ PageSelectWeapon
@@ -1680,6 +1704,10 @@
unnamedunbenannt
+
+ hedgehog %1
+ Igel %1
+ QMainWindow
@@ -2036,6 +2064,10 @@
Tag Team
+
+ Add Bottom Border
+
+ binds
diff -r ed9676dc8cb4 -r 64ccc6be0ec5 share/hedgewars/Data/Locale/hedgewars_en.ts
--- a/share/hedgewars/Data/Locale/hedgewars_en.ts Wed Sep 14 22:39:39 2011 +0200
+++ b/share/hedgewars/Data/Locale/hedgewars_en.ts Thu Sep 15 00:47:05 2011 +0200
@@ -123,6 +123,14 @@
File TypesHedgewars Save File
+
+ Demo name
+
+
+
+ Demo name:
+
+ HWGame
@@ -379,11 +387,15 @@
- Drawn Maps (*.hwmap);;All files (*.*)
+ Save drawn map
- Save drawn map
+ Drawn Maps
+
+
+
+ All files
@@ -732,6 +744,10 @@
Tips
+
+ Downloadable Content
+
+ PageMultiplayer
@@ -1009,7 +1025,7 @@
Add an indestructable border around the terrain
- Add an indestructable border around the terrain
+ Add an indestructable border around the terrainLower gravity
@@ -1115,6 +1131,14 @@
Teams in each clan take successive turns sharing their turn time.
+
+ Add an indestructible border around the terrain
+
+
+
+ Add an indestructible border along the bottom
+
+ PageSelectWeapon
@@ -1639,6 +1663,10 @@
unnamedunnamed
+
+ hedgehog %1
+
+ QMainWindow
@@ -1995,6 +2023,10 @@
Tag Team
+
+ Add Bottom Border
+
+ binds
diff -r ed9676dc8cb4 -r 64ccc6be0ec5 share/hedgewars/Data/Locale/hedgewars_es.ts
--- a/share/hedgewars/Data/Locale/hedgewars_es.ts Wed Sep 14 22:39:39 2011 +0200
+++ b/share/hedgewars/Data/Locale/hedgewars_es.ts Thu Sep 15 00:47:05 2011 +0200
@@ -127,6 +127,14 @@
File TypesPartida guardada de Hedgewars
+
+ Demo name
+
+
+
+ Demo name:
+
+ HWGame
@@ -388,12 +396,20 @@
Drawn Maps (*.hwmap);;All files (*.*)
- Mapas dibujados a mano (*.hwmap);;Todos los ficheros (*.*)
+ Mapas dibujados a mano (*.hwmap);;Todos los ficheros (*.*)Save drawn mapGuardar mapa
+
+ Drawn Maps
+
+
+
+ All files
+
+ PageEditTeam
@@ -769,6 +785,10 @@
Tips
+
+ Downloadable Content
+
+ PageMultiplayer
@@ -1078,7 +1098,7 @@
Add an indestructable border around the terrain
- Añade un borde indestructible alrededor del campo de juego
+ Añade un borde indestructible alrededor del campo de juegoLower gravity
@@ -1152,6 +1172,14 @@
Teams in each clan take successive turns sharing their turn time.
+
+ Add an indestructible border around the terrain
+
+
+
+ Add an indestructible border along the bottom
+
+ PageSelectWeapon
@@ -1725,6 +1753,10 @@
unnamedsin nombre
+
+ hedgehog %1
+
+ QMainWindow
@@ -2085,6 +2117,10 @@
Tag Team
+
+ Add Bottom Border
+
+ binds
diff -r ed9676dc8cb4 -r 64ccc6be0ec5 share/hedgewars/Data/Locale/hedgewars_fi.ts
--- a/share/hedgewars/Data/Locale/hedgewars_fi.ts Wed Sep 14 22:39:39 2011 +0200
+++ b/share/hedgewars/Data/Locale/hedgewars_fi.ts Thu Sep 15 00:47:05 2011 +0200
@@ -123,6 +123,14 @@
File Types
+
+ Demo name
+
+
+
+ Demo name:
+
+ HWGame
@@ -379,11 +387,15 @@
- Drawn Maps (*.hwmap);;All files (*.*)
+ Save drawn map
- Save drawn map
+ Drawn Maps
+
+
+
+ All files
@@ -761,6 +773,10 @@
Tips
+
+ Downloadable Content
+
+ PageMultiplayer
@@ -1038,7 +1054,7 @@
Add an indestructable border around the terrain
- Lisää tuhoutumattomat reunat kartan ympärille
+ Lisää tuhoutumattomat reunat kartan ympärilleLower gravity
@@ -1144,6 +1160,14 @@
Teams in each clan take successive turns sharing their turn time.
+
+ Add an indestructible border around the terrain
+
+
+
+ Add an indestructible border along the bottom
+
+ PageSelectWeapon
@@ -1696,6 +1720,10 @@
unnamednimetön
+
+ hedgehog %1
+
+ QMainWindow
@@ -2052,6 +2080,10 @@
Tag Team
+
+ Add Bottom Border
+
+ binds
diff -r ed9676dc8cb4 -r 64ccc6be0ec5 share/hedgewars/Data/Locale/hedgewars_fr.ts
--- a/share/hedgewars/Data/Locale/hedgewars_fr.ts Wed Sep 14 22:39:39 2011 +0200
+++ b/share/hedgewars/Data/Locale/hedgewars_fr.ts Thu Sep 15 00:47:05 2011 +0200
@@ -123,6 +123,14 @@
File TypesFichier de sauvegarde d'Hedgewars
+
+ Demo name
+
+
+
+ Demo name:
+
+ HWGame
@@ -380,12 +388,20 @@
Drawn Maps (*.hwmap);;All files (*.*)
- Cartes dessinées (*.hwmap);;Tous les fichiers (*.*)
+ Cartes dessinées (*.hwmap);;Tous les fichiers (*.*)Save drawn mapEnregistrer une carte dessinée
+
+ Drawn Maps
+
+
+
+ All files
+
+ PageEditTeam
@@ -752,6 +768,10 @@
Tips
+
+ Downloadable Content
+
+ PageMultiplayer
@@ -1048,7 +1068,7 @@
Add an indestructable border around the terrain
- Ajouter une bordure indestructible autour du terrain
+ Ajouter une bordure indestructible autour du terrainLower gravity
@@ -1122,6 +1142,14 @@
Teams in each clan take successive turns sharing their turn time.
+
+ Add an indestructible border around the terrain
+
+
+
+ Add an indestructible border along the bottom
+
+ PageSelectWeapon
@@ -1650,6 +1678,10 @@
unnamedsans nom
+
+ hedgehog %1
+
+ QMainWindow
@@ -2006,6 +2038,10 @@
Tag Team
+
+ Add Bottom Border
+
+ binds
diff -r ed9676dc8cb4 -r 64ccc6be0ec5 share/hedgewars/Data/Locale/hedgewars_hu.ts
--- a/share/hedgewars/Data/Locale/hedgewars_hu.ts Wed Sep 14 22:39:39 2011 +0200
+++ b/share/hedgewars/Data/Locale/hedgewars_hu.ts Thu Sep 15 00:47:05 2011 +0200
@@ -122,6 +122,14 @@
File Types
+
+ Demo name
+
+
+
+ Demo name:
+
+ HWGame
@@ -375,11 +383,15 @@
- Drawn Maps (*.hwmap);;All files (*.*)
+ Save drawn map
- Save drawn map
+ Drawn Maps
+
+
+
+ All files
@@ -720,6 +732,10 @@
Tips
+
+ Downloadable Content
+
+ PageMultiplayer
@@ -993,7 +1009,7 @@
Add an indestructable border around the terrain
- A pálya köré egy elpusztíthatatlan keret felhúzása
+ A pálya köré egy elpusztíthatatlan keret felhúzásaLower gravity
@@ -1099,6 +1115,14 @@
Teams in each clan take successive turns sharing their turn time.
+
+ Add an indestructible border around the terrain
+
+
+
+ Add an indestructible border along the bottom
+
+ PageSelectWeapon
@@ -1629,6 +1653,10 @@
unnamednévtelen
+
+ hedgehog %1
+
+ QMainWindow
@@ -1985,6 +2013,10 @@
Tag Team
+
+ Add Bottom Border
+
+ binds
diff -r ed9676dc8cb4 -r 64ccc6be0ec5 share/hedgewars/Data/Locale/hedgewars_it.ts
--- a/share/hedgewars/Data/Locale/hedgewars_it.ts Wed Sep 14 22:39:39 2011 +0200
+++ b/share/hedgewars/Data/Locale/hedgewars_it.ts Thu Sep 15 00:47:05 2011 +0200
@@ -123,6 +123,14 @@
File TypesSalvataggio di Hedgewars
+
+ Demo name
+
+
+
+ Demo name:
+
+ HWGame
@@ -384,12 +392,20 @@
Drawn Maps (*.hwmap);;All files (*.*)
- Mappe Disegnate (*.hwmap);;Tutti i file (*.*)
+ Mappe Disegnate (*.hwmap);;Tutti i file (*.*)Save drawn mapSalva mappa disegnata
+
+ Drawn Maps
+
+
+
+ All files
+
+ PageEditTeam
@@ -741,6 +757,10 @@
Tips
+
+ Downloadable Content
+
+ PageMultiplayer
@@ -1050,7 +1070,7 @@
Add an indestructable border around the terrain
- Aggiungi un bordo indistruttibile intorno al terreno
+ Aggiungi un bordo indistruttibile intorno al terrenoLower gravity
@@ -1124,6 +1144,14 @@
Teams in each clan take successive turns sharing their turn time.
+
+ Add an indestructible border around the terrain
+
+
+
+ Add an indestructible border along the bottom
+
+ PageSelectWeapon
@@ -1658,6 +1686,10 @@
unnamedsenza nome
+
+ hedgehog %1
+
+ QMainWindow
@@ -2014,6 +2046,10 @@
Tag Team
+
+ Add Bottom Border
+
+ binds
diff -r ed9676dc8cb4 -r 64ccc6be0ec5 share/hedgewars/Data/Locale/hedgewars_ja.ts
--- a/share/hedgewars/Data/Locale/hedgewars_ja.ts Wed Sep 14 22:39:39 2011 +0200
+++ b/share/hedgewars/Data/Locale/hedgewars_ja.ts Thu Sep 15 00:47:05 2011 +0200
@@ -122,6 +122,14 @@
File Types
+
+ Demo name
+
+
+
+ Demo name:
+
+ HWGame
@@ -361,11 +369,15 @@
- Drawn Maps (*.hwmap);;All files (*.*)
+ Save drawn map
- Save drawn map
+ Drawn Maps
+
+
+
+ All files
@@ -694,6 +706,10 @@
Tips
+
+ Downloadable Content
+
+ PageMultiplayer
@@ -952,10 +968,6 @@
- Add an indestructable border around the terrain
-
-
- Lower gravity
@@ -1055,6 +1067,14 @@
Teams in each clan take successive turns sharing their turn time.
+
+ Add an indestructible border around the terrain
+
+
+
+ Add an indestructible border along the bottom
+
+ PageSelectWeapon
@@ -1575,6 +1595,10 @@
unnamed無名
+
+ hedgehog %1
+
+ QMainWindow
@@ -1927,6 +1951,10 @@
Tag Team
+
+ Add Bottom Border
+
+ binds
diff -r ed9676dc8cb4 -r 64ccc6be0ec5 share/hedgewars/Data/Locale/hedgewars_ko.ts
--- a/share/hedgewars/Data/Locale/hedgewars_ko.ts Wed Sep 14 22:39:39 2011 +0200
+++ b/share/hedgewars/Data/Locale/hedgewars_ko.ts Thu Sep 15 00:47:05 2011 +0200
@@ -118,6 +118,14 @@
File Types
+
+ Demo name
+
+
+
+ Demo name:
+
+ HWGame
@@ -353,13 +361,17 @@
- Drawn Maps (*.hwmap);;All files (*.*)
-
-
- Save drawn map
+
+ Drawn Maps
+
+
+
+ All files
+
+ PageEditTeam
@@ -682,6 +694,10 @@
Tips
+
+ Downloadable Content
+
+ PageMultiplayer
@@ -940,10 +956,6 @@
- Add an indestructable border around the terrain
-
-
- Lower gravity
@@ -1043,6 +1055,14 @@
Teams in each clan take successive turns sharing their turn time.
+
+ Add an indestructible border around the terrain
+
+
+
+ Add an indestructible border along the bottom
+
+ PageSelectWeapon
@@ -1555,6 +1575,10 @@
unnamed
+
+ hedgehog %1
+
+ QMainWindow
@@ -1897,6 +1921,10 @@
Tag Team
+
+ Add Bottom Border
+
+ binds
diff -r ed9676dc8cb4 -r 64ccc6be0ec5 share/hedgewars/Data/Locale/hedgewars_lt.ts
--- a/share/hedgewars/Data/Locale/hedgewars_lt.ts Wed Sep 14 22:39:39 2011 +0200
+++ b/share/hedgewars/Data/Locale/hedgewars_lt.ts Thu Sep 15 00:47:05 2011 +0200
@@ -4,12 +4,12 @@
AmmoSchemeModel
-
+ new
-
+ copy of
@@ -68,12 +68,12 @@
-
+ Error
-
+ Illegal ammo scheme
@@ -81,22 +81,22 @@
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
@@ -104,59 +104,70 @@
HWForm
-
-
+
+ DefaultTeam
-
-
+
+ Error
-
+ Please select record from the list above
-
+ OK
-
+ Unable to start the server
-
+
+ Cannot save record to file %1
-
+ Hedgewars Demo FileFile Types
-
+ Hedgewars Save FileFile Types
+
+
+ Demo name
+
+
+
+
+ Demo name:
+
+ HWGame
-
+ en.txtlt.txt
-
+ Cannot open demofile %1
@@ -164,87 +175,87 @@
HWMapContainer
-
+ Map
-
+ Filter
+
+ All
+
+
+
+
+ Small
+
+
+
- All
+ Medium
- Small
+ Large
- Medium
+ Cavern
- Large
-
-
-
-
- Cavern
-
-
-
- Wacky
-
+ Type
+
+ Small tunnels
+
+
+
+
+ Medium tunnels
+
+
+
- Small tunnels
+ Large tunnels
- Medium tunnels
+ Small floating islands
- Large tunnels
+ Medium floating islands
- Small floating islands
-
-
-
-
- Medium floating islands
-
-
-
- Large floating islands
-
+ Themes
-
+ Seed
@@ -317,12 +328,12 @@
-
+ Password
-
+ Your nickname %1 is
registered on Hedgewars.org
Please provide your password below
@@ -330,17 +341,17 @@
-
+ Quit reason:
-
+ Nickname
-
+ Some one already uses
your nickname %1
on the server.
@@ -437,7 +448,13 @@
- Drawn Maps (*.hwmap);;All files (*.*)
+ Drawn Maps
+
+
+
+
+
+ All files
@@ -462,27 +479,27 @@
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.
@@ -491,7 +508,7 @@
-
+ A total of <b>%1</b> hedgehog(s) were killed during this round.
@@ -500,7 +517,7 @@
-
+ (%1 kill)
@@ -509,7 +526,7 @@
-
+ <b>%1</b> thought it's good to shoot his own hedgehogs with <b>%2</b> pts.
@@ -518,7 +535,7 @@
-
+ <b>%1</b> killed <b>%2</b> of his own hedgehogs.
@@ -527,7 +544,7 @@
-
+ <b>%1</b> was scared and skipped turn <b>%2</b> times.
@@ -539,305 +556,310 @@
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
-
-
-
-
- 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
+
+ Downloadable Content
- If you'd like to keep others from using your preferred nickname on the official server, register an account at http://www.hedgewars.org/.
+ 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
- You're bored of default gameplay? Try one of the missions - they'll offer different gameplay depending on the one you picked.
+ 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
- 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.
+ 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
- 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!
+ 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
- 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!
+ 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
- Hedgewars is Open Source and Freeware we create in our spare time. Share it with your family and friends as you like!
+ You're bored of default gameplay? Try one of the missions - they'll offer different gameplay depending on the one you picked.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!
+ 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
- From time to time there will be official tournaments. Upcoming events will be announced at http://www.hedgewars.org/ some days in advance.
+ 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 available in many languages. If the translation in your language seems to be missing or outdated, feel free to contact us!
+ 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 can be run on lots of different operating systems including Microsoft Windows, Mac OS X and Linux.
+ Hedgewars is Open Source and Freeware we create in our spare time. Share it with your family and friends as you like!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.
+ 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.
+ From time to time there will be official tournaments. Upcoming events will be announced at http://www.hedgewars.org/ some days in advance.Tips
- Create an account on %1 to keep others from using your most favourite nickname while playing on the official server.
+ Hedgewars is available in many languages. If the translation in your language seems to be missing or outdated, feel free to contact us!Tips
- While playing you should give yourself a short break at least once an hour.
+ Hedgewars can be run on lots of different operating systems including Microsoft Windows, Mac OS X and Linux.Tips
- If your graphics card isn't able to provide hardware accelerated OpenGL, try to enable the low quality mode to improve performance.
+ 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
- If your graphics card isn't able to provide hardware accelerated OpenGL, try to update the associated drivers.
+ Connect one or more gamepads before starting the game to be able to assign their controls to your teams.Tips
- We're open to suggestions and constructive feedback. If you don't like something or got a great idea, let us know!
+ Create an account on %1 to keep others from using your most favourite nickname while playing on the official server.Tips
- Especially while playing online be polite and always remember there might be some minors playing with or against you as well!
+ While playing you should give yourself a short break at least once an hour.Tips
- Special game modes such as 'Vampirism' or 'Karma' allow you to develop completely new tactics. Try them in a custom game!
+ If your graphics card isn't able to provide hardware accelerated OpenGL, try to enable the low quality mode to improve performance.Tips
- The Windows version of Hedgewars supports Xfire. Make sure to add Hedgewars to its game list so your friends can see you playing.
+ If your graphics card isn't able to provide hardware accelerated OpenGL, try to update the associated drivers.Tips
- You should never install Hedgewars on computers you don't own (school, university, work, etc.). Please ask the responsible person instead!
+ We're open to suggestions and constructive feedback. If you don't like something or got a great idea, let us know!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.
+ Especially while playing online be polite and always remember there might be some minors playing with or against you as well!Tips
- No hedgehogs were harmed in making this game.
+ Special game modes such as 'Vampirism' or 'Karma' allow you to develop completely new tactics. Try them in a custom game!Tips
- There are three different jumps available. Tap [high jump] twice to do a very high/backwards jump.
+ The Windows version of Hedgewars supports Xfire. Make sure to add Hedgewars to its game list so your friends can see you playing.Tips
- Afraid of falling off a cliff? Hold down [precise] to turn [left] or [right] without actually moving.
+ You should never install Hedgewars on computers you don't own (school, university, work, etc.). Please ask the responsible person instead!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.
+ 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
- Most weapons won't work once they touch the water. The Homing Bee as well as the Cake are exceptions to this.
+ No hedgehogs were harmed in making this game.Tips
- The Old Limbuger only causes a small explosion. However the wind affected smelly cloud can poison lots of hogs at once.
+ There are three different jumps available. Tap [high jump] twice to do a very high/backwards jump.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.
+ Afraid of falling off a cliff? Hold down [precise] to turn [left] or [right] without actually moving.Tips
- The Homing Bee can be tricky to use. Its turn radius depends on its velocity, so try to not use full power.
+ 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
- Sticky Mines are a perfect tool to create small chain reactions knocking enemy hedgehogs into dire situations ... or water.
+ Most weapons won't work once they touch the water. The Homing Bee as well as the Cake are exceptions to this.Tips
- The Hammer is most effective when used on bridges or girders. Hit hogs will just break through the ground.
+ The Old Limbuger only causes a small explosion. However the wind affected smelly cloud can poison lots of hogs at once.Tips
- If you're stuck behind an enemy hedgehog, use the Hammer to free yourself without getting damaged by an explosion.
+ 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 Cake's maximum walking distance depends on the ground it has to pass. Use [attack] to detonate it early.
+ The Homing Bee can be tricky to use. Its turn radius depends on its velocity, so try to not use full power.Tips
- The Flame Thrower is a weapon but it can be used for tunnel digging as well.
+ Sticky Mines are a perfect tool to create small chain reactions knocking enemy hedgehogs into dire situations ... or water.Tips
- Use the Molotov or Flame Thrower to temporary keep hedgehogs from passing terrain such as tunnels or platforms.
+ The Hammer is most effective when used on bridges or girders. Hit hogs will just break through the ground.Tips
- Want to know who's behind the game? Click on the Hedgewars logo in the main menu to see the credits.
+ If you're stuck behind an enemy hedgehog, use the Hammer to free yourself without getting damaged by an explosion.Tips
- Like Hedgewars? Become a fan on %1 or follow us on %2!
+ The Cake's maximum walking distance depends on the ground it has to pass. Use [attack] to detonate it early.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.
+ The Flame Thrower is a weapon but it can be used for tunnel digging as well.Tips
- Really want to wear a specific hat? Donate to us and receive an exclusive hat of your choice!
+ Use the Molotov or Flame Thrower 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
- Keep your video card drivers up to date to avoid issues playing the game.
+ 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
-
- 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.
+
+ 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.
+ 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
- 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.
+ You can find your Hedgewars configuration files under "My Documents\Hedgewars". Create backups or take the files with you, but don't edit them by hand.Tips
+ You can find your Hedgewars configuration files under "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
@@ -1170,7 +1192,7 @@
- Add an indestructable border around the terrain
+ Add an indestructible border around the terrain
@@ -1274,27 +1296,32 @@
-
+
+ Add an indestructible border along the bottom
+
+
+
+ Random
-
+ Seconds
-
+ Copy
-
+ New
-
+ Delete
@@ -1379,23 +1406,23 @@
-
+ Ignore
-
+ Add friend
-
+ Unignore
-
+ Remove friend
@@ -1463,22 +1490,22 @@
-
+ Fullscreen
-
+ Enable sound
-
+ Enable music
-
+ Show FPS
@@ -1486,40 +1513,40 @@
QComboBox
-
-
-
+
+
+ Mission
-
+ generated map...
+
+ generated maze...
+
+
+
- generated maze...
-
-
-
- hand drawn map...
-
+ Human
-
+ Level
-
-
+
+ Community
@@ -1529,82 +1556,82 @@
-
+ Disabled
-
- Red/Cyan
-
-
-
-
- Cyan/Red
-
-
-
-
- Red/Blue
-
-
-
- Blue/Red
+ Red/Cyan
- Red/Green
+ Cyan/Red
- Green/Red
+ Red/Blue
- Side-by-side
+ Blue/Red
- Top-Bottom
+ Red/Green
- Wiggle
+ Green/Red
- Red/Cyan grayscale
+ Side-by-side
- Cyan/Red grayscale
+ Top-Bottom
- Red/Blue grayscale
+ Wiggle
- Blue/Red grayscale
+ Red/Cyan grayscale
- Red/Green grayscale
+ Cyan/Red grayscale
+ Red/Blue grayscale
+
+
+
+
+ Blue/Red grayscale
+
+
+
+
+ Red/Green grayscale
+
+
+
+ Green/Red grayscale
@@ -1634,17 +1661,17 @@
-
+ Team Settings
-
+ Fort
-
+ Key binds
@@ -1692,37 +1719,37 @@
QLabel
-
+ Version
-
+ This program is distributed under the GNU General Public License
-
+ Developers:
-
+ Art:
-
+ Sounds:
-
+ Translations:
-
+ Special thanks:
@@ -1758,37 +1785,37 @@
-
+ Name
-
+ Type
-
+ Grave
-
+ Flag
-
+ Voice
-
+ 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!
@@ -1828,107 +1855,107 @@
-
+ Quality
-
+ Stereo rendering
-
+ Initial sound volume
-
+ FPS limit
-
+ Restart game to apply
-
+ Damage Modifier
-
+ Turn Time
-
+ Initial Health
-
+ Sudden Death Timeout
-
+ Sudden Death Water Rise
-
+ Sudden Death Health Decrease
-
+ % Rope Length
-
+ Crate Drops
-
+ % Health Crates
-
+ Health in Crates
-
+ Mines Time
-
+ Mines
-
+ % Dud Mines
-
+ Explosives
-
+ % Get Away Time
-
+ Scheme Name:
@@ -1936,10 +1963,17 @@
QLineEdit
+ unnamed
+
+
+
+ hedgehog %1
+
+ QMainWindow
@@ -1952,60 +1986,60 @@
QMessageBox
-
+ Teams
-
+ Really delete this team?
-
-
+
+ Schemes
-
+ Can not delete default scheme '%1'!
-
+ Network
-
+ Connection to server is lost
-
+ All file associations have been set.
-
+ File association failed.
+
+ Error
+
+
+
- Error
-
-
-
- Failed to open data directory:
%1
Please check your installation
-
+ Really delete this game scheme?
@@ -2079,7 +2113,7 @@
-
+ more
@@ -2090,7 +2124,7 @@
-
+ Random Team
@@ -2371,6 +2405,11 @@
Tag Team
+
+
+ Add Bottom Border
+
+ binds
@@ -2564,17 +2603,17 @@
-
+ change mode
-
+ capture
-
+ hedgehogs
info
@@ -2671,17 +2710,17 @@
-
+ Toggle fullscreen mode:
-
+ Take a screenshot:
-
+ Toggle labels above hedgehogs:
@@ -2726,7 +2765,7 @@
-
+ Keyboard
diff -r ed9676dc8cb4 -r 64ccc6be0ec5 share/hedgewars/Data/Locale/hedgewars_nl.ts
--- a/share/hedgewars/Data/Locale/hedgewars_nl.ts Wed Sep 14 22:39:39 2011 +0200
+++ b/share/hedgewars/Data/Locale/hedgewars_nl.ts Thu Sep 15 00:47:05 2011 +0200
@@ -119,6 +119,14 @@
File Types
+
+ Demo name
+
+
+
+ Demo name:
+
+ HWGame
@@ -364,13 +372,17 @@
- Drawn Maps (*.hwmap);;All files (*.*)
-
-
- Save drawn map
+
+ Drawn Maps
+
+
+
+ All files
+
+ PageEditTeam
@@ -699,6 +711,10 @@
Tips
+
+ Downloadable Content
+
+ PageMultiplayer
@@ -960,10 +976,6 @@
- Add an indestructable border around the terrain
-
-
- Lower gravity
@@ -1063,6 +1075,14 @@
Teams in each clan take successive turns sharing their turn time.
+
+ Add an indestructible border around the terrain
+
+
+
+ Add an indestructible border along the bottom
+
+ PageSelectWeapon
@@ -1575,6 +1595,10 @@
unnamed
+
+ hedgehog %1
+
+ QMainWindow
@@ -1917,6 +1941,10 @@
Tag Team
+
+ Add Bottom Border
+
+ binds
diff -r ed9676dc8cb4 -r 64ccc6be0ec5 share/hedgewars/Data/Locale/hedgewars_pl.ts
--- a/share/hedgewars/Data/Locale/hedgewars_pl.ts Wed Sep 14 22:39:39 2011 +0200
+++ b/share/hedgewars/Data/Locale/hedgewars_pl.ts Thu Sep 15 00:47:05 2011 +0200
@@ -400,12 +400,20 @@
Drawn Maps (*.hwmap);;All files (*.*)
- Narysowane mapy (*.hwmap);;Wszystkie pliki (*.*)
+ Narysowane mapy (*.hwmap);;Wszystkie pliki (*.*)Save drawn mapZapisz mapę
+
+ Drawn Maps
+
+
+
+ All files
+
+ PageEditTeam
@@ -1778,6 +1786,10 @@
unnamednienazwany
+
+ hedgehog %1
+
+ QMainWindow
diff -r ed9676dc8cb4 -r 64ccc6be0ec5 share/hedgewars/Data/Locale/hedgewars_pt_BR.ts
--- a/share/hedgewars/Data/Locale/hedgewars_pt_BR.ts Wed Sep 14 22:39:39 2011 +0200
+++ b/share/hedgewars/Data/Locale/hedgewars_pt_BR.ts Thu Sep 15 00:47:05 2011 +0200
@@ -123,6 +123,14 @@
File TypesArquivo do Jogo Hedgewars
+
+ Demo name
+
+
+
+ Demo name:
+
+ HWGame
@@ -373,12 +381,20 @@
Drawn Maps (*.hwmap);;All files (*.*)
- Mapas Desenhados (*.hwmaps);; Todos os arquivos (*.*)
+ Mapas Desenhados (*.hwmaps);; Todos os arquivos (*.*)Save drawn mapSalvar Mapa
+
+ Drawn Maps
+
+
+
+ All files
+
+ PageEditTeam
@@ -820,6 +836,10 @@
Tips
+
+ Downloadable Content
+
+ PageMultiplayer
@@ -1129,7 +1149,7 @@
Add an indestructable border around the terrain
- Adicione uma borda indestrutível em volta do terreno
+ Adicione uma borda indestrutível em volta do terrenoLower gravity
@@ -1203,6 +1223,14 @@
Teams in each clan take successive turns sharing their turn time.
+
+ Add an indestructible border around the terrain
+
+
+
+ Add an indestructible border along the bottom
+
+ PageSelectWeapon
@@ -1773,6 +1801,10 @@
unnamedsem nome
+
+ hedgehog %1
+
+ QMainWindow
@@ -2138,6 +2170,10 @@
Tag Team
+
+ Add Bottom Border
+
+ binds
diff -r ed9676dc8cb4 -r 64ccc6be0ec5 share/hedgewars/Data/Locale/hedgewars_pt_PT.ts
--- a/share/hedgewars/Data/Locale/hedgewars_pt_PT.ts Wed Sep 14 22:39:39 2011 +0200
+++ b/share/hedgewars/Data/Locale/hedgewars_pt_PT.ts Thu Sep 15 00:47:05 2011 +0200
@@ -123,6 +123,14 @@
File TypesFicheiro de jogo Hedgewars
+
+ Demo name
+
+
+
+ Demo name:
+
+ HWGame
@@ -382,12 +390,20 @@
Drawn Maps (*.hwmap);;All files (*.*)
- Mapas Desenhados (*.hwmap);;Todos os ficheiros (*.*)
+ Mapas Desenhados (*.hwmap);;Todos os ficheiros (*.*)Save drawn mapGravar mapa desenhado
+
+ Drawn Maps
+
+
+
+ All files
+
+ PageEditTeam
@@ -734,6 +750,10 @@
TipsA Abelha Teleguiada pode-se demonstrar complicada de utilizar. O grau a que consegue virar depende da sua velocidade, por isso experimenta lança-la com diferentes níveis de força.
+
+ Downloadable Content
+
+ PageMultiplayer
@@ -1011,7 +1031,7 @@
Add an indestructable border around the terrain
- Adiciona uma borda indestrutível à volta do terreno
+ Adiciona uma borda indestrutível à volta do terrenoLower gravity
@@ -1117,6 +1137,14 @@
Teams in each clan take successive turns sharing their turn time.As equipas do mesmo clã jogam de forma sucessiva partilhando o seu tempo para jogar.
+
+ Add an indestructible border around the terrain
+
+
+
+ Add an indestructible border along the bottom
+
+ PageSelectWeapon
@@ -1358,7 +1386,7 @@
Wiggle
- "Wiggle"
+ "Wiggle"Red/Cyan grayscale
@@ -1641,6 +1669,10 @@
unnamedsem nome
+
+ hedgehog %1
+
+ QMainWindow
@@ -1997,6 +2029,10 @@
Tag TeamTag Team
+
+ Add Bottom Border
+
+ binds
diff -r ed9676dc8cb4 -r 64ccc6be0ec5 share/hedgewars/Data/Locale/hedgewars_ru.ts
--- a/share/hedgewars/Data/Locale/hedgewars_ru.ts Wed Sep 14 22:39:39 2011 +0200
+++ b/share/hedgewars/Data/Locale/hedgewars_ru.ts Thu Sep 15 00:47:05 2011 +0200
@@ -128,6 +128,14 @@
File TypesФайл сохранения игры hedgewars
+
+ Demo name
+
+
+
+ Demo name:
+
+ HWGame
@@ -388,12 +396,20 @@
Drawn Maps (*.hwmap);;All files (*.*)
- Рисованные карты (*.hwmap);;Все файлы (*.*)
+ Рисованные карты (*.hwmap);;Все файлы (*.*)Save drawn mapСохранить рисованную карту
+
+ Drawn Maps
+
+
+
+ All files
+
+ PageEditTeam
@@ -748,6 +764,10 @@
TipsПчёлку можеть быть сложно использовать. Её радиус поворота зависит от скорости, поэтому попробуйте не использовать полную силу броска.
+
+ Downloadable Content
+
+ PageMultiplayer
@@ -1060,7 +1080,7 @@
Add an indestructable border around the terrain
- Добавить неразрушимую границу вокруг карты
+ Добавить неразрушимую границу вокруг картыLower gravity
@@ -1134,6 +1154,14 @@
Teams in each clan take successive turns sharing their turn time.Команды в каждом клане будут последовательно получать право хода, имея общее время на ход.
+
+ Add an indestructible border around the terrain
+
+
+
+ Add an indestructible border along the bottom
+
+ PageSelectWeapon
@@ -1668,6 +1696,10 @@
unnamedбезымянный
+
+ hedgehog %1
+
+ QMainWindow
@@ -2024,6 +2056,10 @@
Tag TeamЭстафета команд
+
+ Add Bottom Border
+
+ binds
diff -r ed9676dc8cb4 -r 64ccc6be0ec5 share/hedgewars/Data/Locale/hedgewars_sk.ts
--- a/share/hedgewars/Data/Locale/hedgewars_sk.ts Wed Sep 14 22:39:39 2011 +0200
+++ b/share/hedgewars/Data/Locale/hedgewars_sk.ts Thu Sep 15 00:47:05 2011 +0200
@@ -128,6 +128,14 @@
File TypesSúbor s uloženou hrou Hedgewars
+
+ Demo name
+
+
+
+ Demo name:
+
+ HWGame
@@ -390,12 +398,20 @@
Drawn Maps (*.hwmap);;All files (*.*)
- Nakreslené mapy (*.hwmap);;Všetky súbory (*.*)
+ Nakreslené mapy (*.hwmap);;Všetky súbory (*.*)Save drawn mapUložiť nakreslenú mapu
+
+ Drawn Maps
+
+
+
+ All files
+
+ PageEditTeam
@@ -789,6 +805,10 @@
TipsNavádzaná včela je trošku zložitejšia na použitie. Jej polomer otočenia závisí na jej rýchlosti, takže ju radšej nepoužívajte pri plnej sile.
+
+ Downloadable Content
+
+ PageMultiplayer
@@ -1101,7 +1121,7 @@
Add an indestructable border around the terrain
- Pridať nezničiteľný okraj okolo terénu
+ Pridať nezničiteľný okraj okolo terénuLower gravity
@@ -1175,6 +1195,14 @@
Teams in each clan take successive turns sharing their turn time.Tímy každého klanu sa striedajú v ťahaní a zdieľajú svoj čas na ťah.
+
+ Add an indestructible border around the terrain
+
+
+
+ Add an indestructible border along the bottom
+
+ PageSelectWeapon
@@ -1746,6 +1774,10 @@
unnamedbeznázvu
+
+ hedgehog %1
+
+ QMainWindow
@@ -2106,6 +2138,10 @@
Tag TeamOznačit tím
+
+ Add Bottom Border
+
+ binds
diff -r ed9676dc8cb4 -r 64ccc6be0ec5 share/hedgewars/Data/Locale/hedgewars_sv.ts
--- a/share/hedgewars/Data/Locale/hedgewars_sv.ts Wed Sep 14 22:39:39 2011 +0200
+++ b/share/hedgewars/Data/Locale/hedgewars_sv.ts Thu Sep 15 00:47:05 2011 +0200
@@ -123,6 +123,14 @@
File TypesSparfil för Hedgewars
+
+ Demo name
+
+
+
+ Demo name:
+
+ HWGame
@@ -380,12 +388,20 @@
Drawn Maps (*.hwmap);;All files (*.*)
- Ritade kartor (*.hwmap);;Alla filer (*.*)
+ Ritade kartor (*.hwmap);;Alla filer (*.*)Save drawn mapSpara ritad karta
+
+ Drawn Maps
+
+
+
+ All files
+
+ PageEditTeam
@@ -761,6 +777,10 @@
Tips
+
+ Downloadable Content
+
+ PageMultiplayer
@@ -1070,7 +1090,7 @@
Add an indestructable border around the terrain
- Lägger till en oförstörbar kant runt terrängen
+ Lägger till en oförstörbar kant runt terrängenLower gravity
@@ -1144,6 +1164,14 @@
Teams in each clan take successive turns sharing their turn time.
+
+ Add an indestructible border around the terrain
+
+
+
+ Add an indestructible border along the bottom
+
+ PageSelectWeapon
@@ -1710,6 +1738,10 @@
unnamedonämnd
+
+ hedgehog %1
+
+ QMainWindow
@@ -2070,6 +2102,10 @@
Tag Team
+
+ Add Bottom Border
+
+ binds
diff -r ed9676dc8cb4 -r 64ccc6be0ec5 share/hedgewars/Data/Locale/hedgewars_tr_TR.ts
--- a/share/hedgewars/Data/Locale/hedgewars_tr_TR.ts Wed Sep 14 22:39:39 2011 +0200
+++ b/share/hedgewars/Data/Locale/hedgewars_tr_TR.ts Thu Sep 15 00:47:05 2011 +0200
@@ -122,6 +122,14 @@
File Types
+
+ Demo name
+
+
+
+ Demo name:
+
+ HWGame
@@ -365,11 +373,15 @@
- Drawn Maps (*.hwmap);;All files (*.*)
+ Save drawn map
- Save drawn map
+ Drawn Maps
+
+
+
+ All files
@@ -698,6 +710,10 @@
Tips
+
+ Downloadable Content
+
+ PageMultiplayer
@@ -957,7 +973,7 @@
Add an indestructable border around the terrain
- Bölgenin etrafına yok edilemez bir sınır ekle
+ Bölgenin etrafına yok edilemez bir sınır ekleLower gravity
@@ -1063,6 +1079,14 @@
Teams in each clan take successive turns sharing their turn time.
+
+ Add an indestructible border around the terrain
+
+
+
+ Add an indestructible border along the bottom
+
+ PageSelectWeapon
@@ -1583,6 +1607,10 @@
unnamedisimsiz
+
+ hedgehog %1
+
+ QMainWindow
@@ -1939,6 +1967,10 @@
Tag Team
+
+ Add Bottom Border
+
+ binds
diff -r ed9676dc8cb4 -r 64ccc6be0ec5 share/hedgewars/Data/Locale/hedgewars_uk.ts
--- a/share/hedgewars/Data/Locale/hedgewars_uk.ts Wed Sep 14 22:39:39 2011 +0200
+++ b/share/hedgewars/Data/Locale/hedgewars_uk.ts Thu Sep 15 00:47:05 2011 +0200
@@ -124,6 +124,14 @@
File TypesФайл Збереження Hedgewars
+
+ Demo name
+
+
+
+ Demo name:
+
+ HWGame
@@ -384,12 +392,20 @@
Drawn Maps (*.hwmap);;All files (*.*)
- Намальовані мапи (*.hwmap);;Всі файли (*.*)
+ Намальовані мапи (*.hwmap);;Всі файли (*.*)Save drawn mapЗберегти намальовану мапу
+
+ Drawn Maps
+
+
+
+ All files
+
+ PageEditTeam
@@ -744,6 +760,10 @@
TipsНавідна Бджілка може бути складною у керуванні. Радіус повороту залежить від її швидкості, тому постарайтеся не стріляти на повну силу.
+
+ Downloadable Content
+
+ PageMultiplayer
@@ -1024,7 +1044,7 @@
Add an indestructable border around the terrain
- Додати невразливу рамку навколо місцевості
+ Додати невразливу рамку навколо місцевостіLower gravity
@@ -1130,6 +1150,14 @@
Teams in each clan take successive turns sharing their turn time.Команди в кожному клані здійснюють послідовні ходи, поділяючи час ходу.
+
+ Add an indestructible border around the terrain
+
+
+
+ Add an indestructible border along the bottom
+
+ PageSelectWeapon
@@ -1654,6 +1682,10 @@
unnamedбез_назви
+
+ hedgehog %1
+
+ QMainWindow
@@ -2010,6 +2042,10 @@
Tag TeamЗбірна Команда
+
+ Add Bottom Border
+
+ binds
diff -r ed9676dc8cb4 -r 64ccc6be0ec5 share/hedgewars/Data/Locale/hedgewars_zh_CN.ts
--- a/share/hedgewars/Data/Locale/hedgewars_zh_CN.ts Wed Sep 14 22:39:39 2011 +0200
+++ b/share/hedgewars/Data/Locale/hedgewars_zh_CN.ts Thu Sep 15 00:47:05 2011 +0200
@@ -122,6 +122,14 @@
File Types刺猬大作战存档文件
+
+ Demo name
+
+
+
+ Demo name:
+
+ HWGame
@@ -379,12 +387,20 @@
Drawn Maps (*.hwmap);;All files (*.*)
- 绘制的地图 (*.hwmap);;全部文件 (*.*)
+ 绘制的地图 (*.hwmap);;全部文件 (*.*)Save drawn map保存绘制的地图
+
+ Drawn Maps
+
+
+
+ All files
+
+ PageEditTeam
@@ -772,6 +788,10 @@
Tips
+
+ Downloadable Content
+
+ PageMultiplayer
@@ -1054,7 +1074,7 @@
Add an indestructable border around the terrain
- 添加不可毁坏地边界
+ 添加不可毁坏地边界Lower gravity
@@ -1152,6 +1172,14 @@
Teams in each clan take successive turns sharing their turn time.
+
+ Add an indestructible border around the terrain
+
+
+
+ Add an indestructible border along the bottom
+
+ PageSelectWeapon
@@ -1708,6 +1736,10 @@
unnamed无名
+
+ hedgehog %1
+
+ QMainWindow
@@ -2064,6 +2096,10 @@
Tag Team
+
+ Add Bottom Border
+
+ binds
diff -r ed9676dc8cb4 -r 64ccc6be0ec5 share/hedgewars/Data/Locale/hedgewars_zh_TW.ts
--- a/share/hedgewars/Data/Locale/hedgewars_zh_TW.ts Wed Sep 14 22:39:39 2011 +0200
+++ b/share/hedgewars/Data/Locale/hedgewars_zh_TW.ts Thu Sep 15 00:47:05 2011 +0200
@@ -122,6 +122,14 @@
File Types
+
+ Demo name
+
+
+
+ Demo name:
+
+ HWGame
@@ -375,11 +383,15 @@
- Drawn Maps (*.hwmap);;All files (*.*)
+ Save drawn map
- Save drawn map
+ Drawn Maps
+
+
+
+ All files
@@ -720,6 +732,10 @@
Tips
+
+ Downloadable Content
+
+ PageMultiplayer
@@ -1013,7 +1029,7 @@
Add an indestructable border around the terrain
- 添加不可毀壞地邊界
+ 添加不可毀壞地邊界Lower gravity
@@ -1087,6 +1103,14 @@
Teams in each clan take successive turns sharing their turn time.
+
+ Add an indestructible border around the terrain
+
+
+
+ Add an indestructible border along the bottom
+
+ PageSelectWeapon
@@ -1611,6 +1635,10 @@
unnamed無名
+
+ hedgehog %1
+
+ QMainWindow
@@ -1967,6 +1995,10 @@
Tag Team
+
+ Add Bottom Border
+
+ binds