# 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
+
+
+
+
+
+
+
+
HWGame
@@ -377,11 +385,15 @@
-
+
-
+
+
+
+
+
@@ -726,6 +738,10 @@
Tips
+
+
+
+
PageMultiplayer
@@ -1005,7 +1021,7 @@
- اضف اطار لا يمكن تدميره
+ اضف اطار لا يمكن تدميره
@@ -1111,6 +1127,14 @@
+
+
+
+
+
+
+
+
PageSelectWeapon
@@ -1635,6 +1659,10 @@
غير مسمى
+
+
+
+
QMainWindow
@@ -1991,6 +2019,10 @@
+
+
+
+
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
+
+
+
+
+
+
+
+
HWGame
@@ -362,12 +370,20 @@
- Начертани карти (*.hwmap);;Всички файлове (*.*)
+ Начертани карти (*.hwmap);;Всички файлове (*.*)
Запазване на начертана карта
+
+
+
+
+
+
+
+
PageEditTeam
@@ -700,6 +716,10 @@
Tips
+
+
+
+
PageMultiplayer
@@ -964,10 +984,6 @@
-
-
-
-
@@ -1067,6 +1083,14 @@
+
+
+
+
+
+
+
+
PageSelectWeapon
@@ -1591,6 +1615,10 @@
Безименен
+
+
+
+
QMainWindow
@@ -1943,6 +1971,10 @@
+
+
+
+
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 Types
Hedgewars Save Soubor
+
+
+
+
+
+
+
+
HWGame
@@ -363,12 +371,20 @@
- Nakreslené mapy (*.hwmap);;Všechny soubory (*.*)
+ Nakreslené mapy (*.hwmap);;Všechny soubory (*.*)
Uložit nakreslenou mapu
+
+
+
+
+
+
+
+
PageEditTeam
@@ -712,6 +728,10 @@
Tips
+
+
+
+
PageMultiplayer
@@ -988,7 +1008,7 @@
- Přidá nezničitelnou hranici okolo terénu
+ Přidá nezničitelnou hranici okolo terénu
@@ -1082,6 +1102,14 @@
+
+
+
+
+
+
+
+
PageSelectWeapon
@@ -1606,6 +1634,10 @@
nepojmenovaný
+
+
+
+
QMainWindow
@@ -1958,6 +1990,10 @@
+
+
+
+
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 Types
Hedgewars gespeichertes Spiel
+
+
+
+
+
+
+
+
HWGame
@@ -385,13 +393,17 @@
Gezeichnete Karte laden
-
-
-
-
Gezeichnete Karte sichern
+
+
+
+
+
+
+
+
PageEditTeam
@@ -767,6 +779,10 @@
Tips
+
+
+
+
PageMultiplayer
@@ -1076,7 +1092,7 @@
- Einfügen eines unzerstörbaren Kartenrand
+ Einfügen eines unzerstörbaren Kartenrand
@@ -1150,6 +1166,14 @@
+
+
+
+
+
+
+
+
PageSelectWeapon
@@ -1680,6 +1704,10 @@
unbenannt
+
+
+ Igel %1
+
QMainWindow
@@ -2036,6 +2064,10 @@
+
+
+
+
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 Types
Hedgewars Save File
+
+
+
+
+
+
+
+
HWGame
@@ -379,11 +387,15 @@
-
+
-
+
+
+
+
+
@@ -732,6 +744,10 @@
Tips
+
+
+
+
PageMultiplayer
@@ -1009,7 +1025,7 @@
- Add an indestructable border around the terrain
+ Add an indestructable border around the terrain
@@ -1115,6 +1131,14 @@
+
+
+
+
+
+
+
+
PageSelectWeapon
@@ -1639,6 +1663,10 @@
unnamed
+
+
+
+
QMainWindow
@@ -1995,6 +2023,10 @@
+
+
+
+
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 Types
Partida guardada de Hedgewars
+
+
+
+
+
+
+
+
HWGame
@@ -388,12 +396,20 @@
- Mapas dibujados a mano (*.hwmap);;Todos los ficheros (*.*)
+ Mapas dibujados a mano (*.hwmap);;Todos los ficheros (*.*)
Guardar mapa
+
+
+
+
+
+
+
+
PageEditTeam
@@ -769,6 +785,10 @@
Tips
+
+
+
+
PageMultiplayer
@@ -1078,7 +1098,7 @@
- Añade un borde indestructible alrededor del campo de juego
+ Añade un borde indestructible alrededor del campo de juego
@@ -1152,6 +1172,14 @@
+
+
+
+
+
+
+
+
PageSelectWeapon
@@ -1725,6 +1753,10 @@
sin nombre
+
+
+
+
QMainWindow
@@ -2085,6 +2117,10 @@
+
+
+
+
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
+
+
+
+
+
+
+
+
HWGame
@@ -379,11 +387,15 @@
-
+
-
+
+
+
+
+
@@ -761,6 +773,10 @@
Tips
+
+
+
+
PageMultiplayer
@@ -1038,7 +1054,7 @@
- Lisää tuhoutumattomat reunat kartan ympärille
+ Lisää tuhoutumattomat reunat kartan ympärille
@@ -1144,6 +1160,14 @@
+
+
+
+
+
+
+
+
PageSelectWeapon
@@ -1696,6 +1720,10 @@
nimetön
+
+
+
+
QMainWindow
@@ -2052,6 +2080,10 @@
+
+
+
+
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 Types
Fichier de sauvegarde d'Hedgewars
+
+
+
+
+
+
+
+
HWGame
@@ -380,12 +388,20 @@
- Cartes dessinées (*.hwmap);;Tous les fichiers (*.*)
+ Cartes dessinées (*.hwmap);;Tous les fichiers (*.*)
Enregistrer une carte dessinée
+
+
+
+
+
+
+
+
PageEditTeam
@@ -752,6 +768,10 @@
Tips
+
+
+
+
PageMultiplayer
@@ -1048,7 +1068,7 @@
- Ajouter une bordure indestructible autour du terrain
+ Ajouter une bordure indestructible autour du terrain
@@ -1122,6 +1142,14 @@
+
+
+
+
+
+
+
+
PageSelectWeapon
@@ -1650,6 +1678,10 @@
sans nom
+
+
+
+
QMainWindow
@@ -2006,6 +2038,10 @@
+
+
+
+
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
+
+
+
+
+
+
+
+
HWGame
@@ -375,11 +383,15 @@
-
+
-
+
+
+
+
+
@@ -720,6 +732,10 @@
Tips
+
+
+
+
PageMultiplayer
@@ -993,7 +1009,7 @@
- A pálya köré egy elpusztíthatatlan keret felhúzása
+ A pálya köré egy elpusztíthatatlan keret felhúzása
@@ -1099,6 +1115,14 @@
+
+
+
+
+
+
+
+
PageSelectWeapon
@@ -1629,6 +1653,10 @@
névtelen
+
+
+
+
QMainWindow
@@ -1985,6 +2013,10 @@
+
+
+
+
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 Types
Salvataggio di Hedgewars
+
+
+
+
+
+
+
+
HWGame
@@ -384,12 +392,20 @@
- Mappe Disegnate (*.hwmap);;Tutti i file (*.*)
+ Mappe Disegnate (*.hwmap);;Tutti i file (*.*)
Salva mappa disegnata
+
+
+
+
+
+
+
+
PageEditTeam
@@ -741,6 +757,10 @@
Tips
+
+
+
+
PageMultiplayer
@@ -1050,7 +1070,7 @@
- Aggiungi un bordo indistruttibile intorno al terreno
+ Aggiungi un bordo indistruttibile intorno al terreno
@@ -1124,6 +1144,14 @@
+
+
+
+
+
+
+
+
PageSelectWeapon
@@ -1658,6 +1686,10 @@
senza nome
+
+
+
+
QMainWindow
@@ -2014,6 +2046,10 @@
+
+
+
+
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
+
+
+
+
+
+
+
+
HWGame
@@ -361,11 +369,15 @@
-
+
-
+
+
+
+
+
@@ -694,6 +706,10 @@
Tips
+
+
+
+
PageMultiplayer
@@ -952,10 +968,6 @@
-
-
-
-
@@ -1055,6 +1067,14 @@
+
+
+
+
+
+
+
+
PageSelectWeapon
@@ -1575,6 +1595,10 @@
無名
+
+
+
+
QMainWindow
@@ -1927,6 +1951,10 @@
+
+
+
+
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
+
+
+
+
+
+
+
+
HWGame
@@ -353,13 +361,17 @@
-
-
-
-
+
+
+
+
+
+
+
+
PageEditTeam
@@ -682,6 +694,10 @@
Tips
+
+
+
+
PageMultiplayer
@@ -940,10 +956,6 @@
-
-
-
-
@@ -1043,6 +1055,14 @@
+
+
+
+
+
+
+
+
PageSelectWeapon
@@ -1555,6 +1575,10 @@
+
+
+
+
QMainWindow
@@ -1897,6 +1921,10 @@
+
+
+
+
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
-
+
-
+
@@ -68,12 +68,12 @@
-
+
-
+
@@ -81,22 +81,22 @@
HWChatWidget
-
+
-
+
-
+
-
+
@@ -104,59 +104,70 @@
HWForm
-
-
+
+
-
-
+
+
-
+
-
+
-
+
-
+
+
-
+
File Types
-
+
File Types
+
+
+
+
+
+
+
+
+
+
HWGame
-
+
lt.txt
-
+
@@ -164,87 +175,87 @@
HWMapContainer
-
+
-
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
-
+
-
-
-
-
-
-
-
-
-
-
-
+
-
+
@@ -317,12 +328,12 @@
-
+
-
+
-
+
-
+
-
+
-
+
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 map
Zapisz mapę
+
+ Drawn Maps
+
+
+
+ All files
+
+
PageEditTeam
@@ -1778,6 +1786,10 @@
unnamed
nienazwany
+
+ 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 Types
Arquivo 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 map
Salvar 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 terreno
Lower 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 @@
unnamed
sem 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 Types
Ficheiro 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 map
Gravar mapa desenhado
+
+ Drawn Maps
+
+
+
+ All files
+
+
PageEditTeam
@@ -734,6 +750,10 @@
Tips
A 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 terreno
Lower 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 @@
unnamed
sem nome
+
+ hedgehog %1
+
+
QMainWindow
@@ -1997,6 +2029,10 @@
Tag Team
Tag 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 Types
Sú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 map
Uložiť nakreslenú mapu
+
+ Drawn Maps
+
+
+
+ All files
+
+
PageEditTeam
@@ -789,6 +805,10 @@
Tips
Navá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énu
Lower 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 @@
unnamed
beznázvu
+
+ hedgehog %1
+
+
QMainWindow
@@ -2106,6 +2138,10 @@
Tag Team
Označ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 Types
Sparfil 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 map
Spara 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ängen
Lower 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 @@
unnamed
onä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 ekle
Lower 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 @@
unnamed
isimsiz
+
+ 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