# HG changeset patch # User Henek # Date 1292970173 -3600 # Node ID 5a3b1dbdd4c9a9c216c9c2e207171b135c389a3c # Parent 7cb8c9db6e8d5000061bbc24c1e2f6a3acb05054 added copying also to schemes and updated some translations diff -r 7cb8c9db6e8d -r 5a3b1dbdd4c9 QTfrontend/ammoSchemeModel.cpp --- a/QTfrontend/ammoSchemeModel.cpp Tue Dec 21 21:56:34 2010 +0100 +++ b/QTfrontend/ammoSchemeModel.cpp Tue Dec 21 23:22:53 2010 +0100 @@ -628,12 +628,20 @@ { Q_UNUSED(count); - beginInsertRows(parent, row, row); + beginInsertRows(parent, schemes.size(), schemes.size()); - QList newScheme = defaultScheme; - newScheme[0] = QVariant(tr("new")); - - schemes.insert(row, newScheme); + if (row == -1) + { + QList newScheme = defaultScheme; + newScheme[0] = QVariant(tr("new")); + schemes.insert(schemes.size(), newScheme); + } + else + { + QList newScheme = schemes[row]; + newScheme[0] = QVariant(tr("copy of") + " " + newScheme[0].toString()); + schemes.insert(schemes.size(), newScheme); + } endInsertRows(); diff -r 7cb8c9db6e8d -r 5a3b1dbdd4c9 QTfrontend/pages.cpp --- a/QTfrontend/pages.cpp Tue Dec 21 21:56:34 2010 +0100 +++ b/QTfrontend/pages.cpp Tue Dec 21 23:22:53 2010 +0100 @@ -1507,7 +1507,7 @@ sp.setVerticalPolicy(QSizePolicy::MinimumExpanding); sp.setHorizontalPolicy(QSizePolicy::Expanding); - pageLayout->addWidget(gb, 1,0,13,4); + pageLayout->addWidget(gb, 1,0,13,5); gbGameModes = new QGroupBox(QGroupBox::tr("Game Modifiers"), gb); gbBasicSettings = new QGroupBox(QGroupBox::tr("Basic Settings"), gb); @@ -1834,12 +1834,14 @@ mapper = new QDataWidgetMapper(this); BtnBack = addButton(":/res/Exit.png", pageLayout, 15, 0, true); - BtnNew = addButton(tr("New"), pageLayout, 15, 2); - BtnDelete = addButton(tr("Delete"), pageLayout, 15, 3); + BtnCopy = addButton(tr("Copy"), pageLayout, 15, 2); + BtnNew = addButton(tr("New"), pageLayout, 15, 3); + BtnDelete = addButton(tr("Delete"), pageLayout, 15, 4); selectScheme = new QComboBox(this); pageLayout->addWidget(selectScheme, 15, 1); + connect(BtnCopy, SIGNAL(clicked()), this, SLOT(copyRow())); connect(BtnNew, SIGNAL(clicked()), this, SLOT(newRow())); connect(BtnDelete, SIGNAL(clicked()), this, SLOT(deleteRow())); connect(selectScheme, SIGNAL(currentIndexChanged(int)), mapper, SLOT(setCurrentIndex(int))); @@ -1896,7 +1898,14 @@ void PageScheme::newRow() { QAbstractItemModel * model = mapper->model(); - model->insertRow(model->rowCount()); + model->insertRow(-1); + selectScheme->setCurrentIndex(model->rowCount() - 1); +} + +void PageScheme::copyRow() +{ + QAbstractItemModel * model = mapper->model(); + model->insertRow(selectScheme->currentIndex()); selectScheme->setCurrentIndex(model->rowCount() - 1); } diff -r 7cb8c9db6e8d -r 5a3b1dbdd4c9 QTfrontend/pages.h --- a/QTfrontend/pages.h Tue Dec 21 21:56:34 2010 +0100 +++ b/QTfrontend/pages.h Tue Dec 21 23:22:53 2010 +0100 @@ -470,6 +470,7 @@ PageScheme(QWidget* parent = 0); QPushButton * BtnBack; + QPushButton * BtnCopy; QPushButton * BtnNew; QPushButton * BtnDelete; QPushButton * BtnSave; @@ -479,6 +480,7 @@ public slots: void newRow(); + void copyRow(); void deleteRow(); private: diff -r 7cb8c9db6e8d -r 5a3b1dbdd4c9 share/hedgewars/Data/Locale/hedgewars_ar.ts --- a/share/hedgewars/Data/Locale/hedgewars_ar.ts Tue Dec 21 21:56:34 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_ar.ts Tue Dec 21 23:22:53 2010 +0100 @@ -7,6 +7,10 @@ new جديد + + copy of + + FreqSpinBox @@ -183,6 +187,10 @@ Large floating islands جزر طائفة كبيرة + + Seed + + HWNetServersModel @@ -313,6 +321,37 @@ + PageDrawMap + + Undo + + + + Clear + + + + Load + تحميل + + + Save + + + + Load drawn map + + + + Drawn Maps (*.hwmap);;All files (*.*) + + + + Save drawn map + + + + PageEditTeam General @@ -1011,6 +1050,10 @@ Wind will affect almost everything. + + Copy + + PageSelectWeapon @@ -1026,6 +1069,10 @@ New جديد + + Copy + + PageSinglePlayer @@ -1202,6 +1249,14 @@ Default التلقائي + + Normal + + + + hand drawn map... + + QGroupBox @@ -1428,6 +1483,10 @@ % Rope Length + + Gameplay + + QLineEdit @@ -1611,6 +1670,10 @@ Associate file extensions + + Set + + QTableWidget @@ -1665,6 +1728,10 @@ new جديد + + copy of + + TCPBase diff -r 7cb8c9db6e8d -r 5a3b1dbdd4c9 share/hedgewars/Data/Locale/hedgewars_bg.ts --- a/share/hedgewars/Data/Locale/hedgewars_bg.ts Tue Dec 21 21:56:34 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_bg.ts Tue Dec 21 23:22:53 2010 +0100 @@ -7,6 +7,10 @@ new Нов отбор + + copy of + + FreqSpinBox @@ -182,6 +186,10 @@ Large floating islands + + Seed + + HWNetServersModel @@ -294,6 +302,37 @@ + PageDrawMap + + Undo + + + + Clear + + + + Load + Зареждане + + + Save + + + + Load drawn map + + + + Drawn Maps (*.hwmap);;All files (*.*) + + + + Save drawn map + + + + PageEditTeam General @@ -961,6 +1000,10 @@ Wind will affect almost everything. + + Copy + + PageSelectWeapon @@ -976,6 +1019,10 @@ New + + Copy + + PageSinglePlayer @@ -1148,6 +1195,14 @@ Default По подразбиране + + Normal + + + + hand drawn map... + + QGroupBox @@ -1374,6 +1429,10 @@ % Rope Length + + Gameplay + + QLineEdit @@ -1557,6 +1616,10 @@ Associate file extensions + + Set + + QTableWidget @@ -1611,6 +1674,10 @@ new Нов отбор + + copy of + + TCPBase diff -r 7cb8c9db6e8d -r 5a3b1dbdd4c9 share/hedgewars/Data/Locale/hedgewars_cs.ts --- a/share/hedgewars/Data/Locale/hedgewars_cs.ts Tue Dec 21 21:56:34 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_cs.ts Tue Dec 21 23:22:53 2010 +0100 @@ -7,6 +7,10 @@ new nový + + copy of + + FreqSpinBox @@ -183,6 +187,10 @@ Large floating islands + + Seed + + HWNetServersModel @@ -295,6 +303,37 @@ + PageDrawMap + + Undo + + + + Clear + + + + Load + Nahrát + + + Save + + + + Load drawn map + + + + Drawn Maps (*.hwmap);;All files (*.*) + + + + Save drawn map + + + + PageEditTeam General @@ -970,6 +1009,10 @@ Wind will affect almost everything. + + Copy + + PageSelectWeapon @@ -985,6 +1028,10 @@ New + + Copy + + PageSinglePlayer @@ -1157,6 +1204,14 @@ Default Základní + + Normal + + + + hand drawn map... + + QGroupBox @@ -1383,6 +1438,10 @@ % Rope Length + + Gameplay + + QLineEdit @@ -1566,6 +1625,10 @@ Associate file extensions + + Set + + QTableWidget @@ -1620,6 +1683,10 @@ new nový + + copy of + + TCPBase diff -r 7cb8c9db6e8d -r 5a3b1dbdd4c9 share/hedgewars/Data/Locale/hedgewars_de.ts --- a/share/hedgewars/Data/Locale/hedgewars_de.ts Tue Dec 21 21:56:34 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_de.ts Tue Dec 21 23:22:53 2010 +0100 @@ -7,6 +7,10 @@ new Neu + + copy of + + FreqSpinBox @@ -186,6 +190,10 @@ Large floating islands Große schwebende Inseln + + Seed + + HWNetServersModel @@ -321,6 +329,37 @@ + PageDrawMap + + Undo + + + + Clear + + + + Load + Laden + + + Save + + + + Load drawn map + + + + Drawn Maps (*.hwmap);;All files (*.*) + + + + Save drawn map + + + + PageEditTeam General @@ -1035,6 +1074,10 @@ Wind will affect almost everything. + + Copy + + PageSelectWeapon @@ -1050,6 +1093,10 @@ New Neu + + Copy + + PageSinglePlayer @@ -1226,6 +1273,14 @@ Default Standard + + Normal + + + + hand drawn map... + + QGroupBox @@ -1458,6 +1513,10 @@ % Rope Length + + Gameplay + + QLineEdit @@ -1641,6 +1700,10 @@ Associate file extensions Ordne Dateitypen zu + + Set + + QTableWidget @@ -1695,6 +1758,10 @@ new Neu + + copy of + + TCPBase diff -r 7cb8c9db6e8d -r 5a3b1dbdd4c9 share/hedgewars/Data/Locale/hedgewars_en.ts --- a/share/hedgewars/Data/Locale/hedgewars_en.ts Tue Dec 21 21:56:34 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_en.ts Tue Dec 21 23:22:53 2010 +0100 @@ -7,6 +7,10 @@ new new + + copy of + + FreqSpinBox @@ -186,6 +190,10 @@ Large floating islands + + Seed + + HWNetServersModel @@ -319,6 +327,37 @@ + PageDrawMap + + Undo + + + + Clear + + + + Load + Load + + + Save + + + + Load drawn map + + + + Drawn Maps (*.hwmap);;All files (*.*) + + + + Save drawn map + + + + PageEditTeam General @@ -1019,6 +1058,10 @@ Wind will affect almost everything. + + Copy + + PageSelectWeapon @@ -1034,6 +1077,10 @@ New New + + Copy + + PageSinglePlayer @@ -1210,6 +1257,14 @@ Default Default + + Normal + + + + hand drawn map... + + QGroupBox @@ -1436,6 +1491,10 @@ % Rope Length + + Gameplay + + QLineEdit @@ -1619,6 +1678,10 @@ Associate file extensions Associate file extensions + + Set + + QTableWidget @@ -1673,6 +1736,10 @@ new new + + copy of + + TCPBase diff -r 7cb8c9db6e8d -r 5a3b1dbdd4c9 share/hedgewars/Data/Locale/hedgewars_es.ts --- a/share/hedgewars/Data/Locale/hedgewars_es.ts Tue Dec 21 21:56:34 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_es.ts Tue Dec 21 23:22:53 2010 +0100 @@ -7,6 +7,10 @@ new Nuevo + + copy of + + FreqSpinBox @@ -190,6 +194,10 @@ Large floating islands Islas grandes + + Seed + + HWNetServersModel @@ -323,6 +331,37 @@ + PageDrawMap + + Undo + + + + Clear + + + + Load + Cargar + + + Save + + + + Load drawn map + + + + Drawn Maps (*.hwmap);;All files (*.*) + + + + Save drawn map + + + + PageEditTeam General @@ -1037,6 +1076,10 @@ Wind will affect almost everything. + + Copy + + PageSelectWeapon @@ -1052,6 +1095,10 @@ New Nuevo + + Copy + + PageSinglePlayer @@ -1256,6 +1303,14 @@ Crazy Lunático + + Normal + + + + hand drawn map... + + QGroupBox @@ -1495,6 +1550,10 @@ % Rope Length + + Gameplay + + QLineEdit @@ -1678,6 +1737,10 @@ Associate file extensions Asociar tipos de archivo + + Set + + QTableWidget @@ -1732,6 +1795,10 @@ new Nuevo + + copy of + + TCPBase diff -r 7cb8c9db6e8d -r 5a3b1dbdd4c9 share/hedgewars/Data/Locale/hedgewars_fi.ts --- a/share/hedgewars/Data/Locale/hedgewars_fi.ts Tue Dec 21 21:56:34 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_fi.ts Tue Dec 21 23:22:53 2010 +0100 @@ -7,6 +7,10 @@ new uusi + + copy of + + FreqSpinBox @@ -182,6 +186,10 @@ Large floating islands Suuria kelluvia saaria + + Seed + + HWNetServersModel @@ -315,6 +323,37 @@ + PageDrawMap + + Undo + + + + Clear + Tyhjennä + + + Load + Lataa + + + Save + + + + Load drawn map + + + + Drawn Maps (*.hwmap);;All files (*.*) + + + + Save drawn map + + + + PageEditTeam General @@ -1029,6 +1068,10 @@ Wind will affect almost everything. + + Copy + + PageSelectWeapon @@ -1044,6 +1087,10 @@ New Uusi + + Copy + + PageSinglePlayer @@ -1248,6 +1295,14 @@ Crazy Sekopäinen + + Normal + + + + hand drawn map... + + QGroupBox @@ -1474,6 +1529,10 @@ % Rope Length + + Gameplay + + QLineEdit @@ -1657,6 +1716,10 @@ Associate file extensions + + Set + + QTableWidget @@ -1711,6 +1774,10 @@ new uusi + + copy of + + TCPBase diff -r 7cb8c9db6e8d -r 5a3b1dbdd4c9 share/hedgewars/Data/Locale/hedgewars_fr.ts --- a/share/hedgewars/Data/Locale/hedgewars_fr.ts Tue Dec 21 21:56:34 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_fr.ts Tue Dec 21 23:22:53 2010 +0100 @@ -7,6 +7,10 @@ new Nouveau + + copy of + + FreqSpinBox @@ -182,6 +186,10 @@ Large floating islands Grandes îles flottantes + + Seed + + HWNetServersModel @@ -312,6 +320,37 @@ + PageDrawMap + + Undo + + + + Clear + + + + Load + Charger + + + Save + + + + Load drawn map + + + + Drawn Maps (*.hwmap);;All files (*.*) + + + + Save drawn map + + + + PageEditTeam General @@ -999,6 +1038,10 @@ Wind will affect almost everything. + + Copy + + PageSelectWeapon @@ -1014,6 +1057,10 @@ New Nouveau + + Copy + + PageSinglePlayer @@ -1190,6 +1237,14 @@ Default Défaut + + Normal + + + + hand drawn map... + + QGroupBox @@ -1416,6 +1471,10 @@ % Rope Length + + Gameplay + + QLineEdit @@ -1599,6 +1658,10 @@ Associate file extensions + + Set + + QTableWidget @@ -1653,6 +1716,10 @@ new + + copy of + + TCPBase diff -r 7cb8c9db6e8d -r 5a3b1dbdd4c9 share/hedgewars/Data/Locale/hedgewars_hu.ts --- a/share/hedgewars/Data/Locale/hedgewars_hu.ts Tue Dec 21 21:56:34 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_hu.ts Tue Dec 21 23:22:53 2010 +0100 @@ -7,6 +7,10 @@ new új + + copy of + + FreqSpinBox @@ -181,6 +185,10 @@ Large floating islands Nagy lebegő szigetek + + Seed + + HWNetServersModel @@ -311,6 +319,37 @@ + PageDrawMap + + Undo + + + + Clear + Törlés + + + Load + Betöltés + + + Save + + + + Load drawn map + + + + Drawn Maps (*.hwmap);;All files (*.*) + + + + Save drawn map + + + + PageEditTeam General @@ -1000,6 +1039,10 @@ Wind will affect almost everything. + + Copy + + PageSelectWeapon @@ -1015,6 +1058,10 @@ New Új + + Copy + + PageSinglePlayer @@ -1191,6 +1238,14 @@ Default Default + + Normal + + + + hand drawn map... + + QGroupBox @@ -1423,6 +1478,10 @@ % Rope Length + + Gameplay + + QLineEdit @@ -1606,6 +1665,10 @@ Associate file extensions + + Set + + QTableWidget @@ -1660,6 +1723,10 @@ new új + + copy of + + TCPBase diff -r 7cb8c9db6e8d -r 5a3b1dbdd4c9 share/hedgewars/Data/Locale/hedgewars_it.ts --- a/share/hedgewars/Data/Locale/hedgewars_it.ts Tue Dec 21 21:56:34 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_it.ts Tue Dec 21 23:22:53 2010 +0100 @@ -7,6 +7,10 @@ new nuovo + + copy of + + FreqSpinBox @@ -186,6 +190,10 @@ Large floating islands + + Seed + + HWNetServersModel @@ -316,6 +324,37 @@ + PageDrawMap + + Undo + + + + Clear + Cancella + + + Load + Carica + + + Save + + + + Load drawn map + + + + Drawn Maps (*.hwmap);;All files (*.*) + + + + Save drawn map + + + + PageEditTeam General @@ -1015,6 +1054,10 @@ Wind will affect almost everything. + + Copy + + PageSelectWeapon @@ -1030,6 +1073,10 @@ New Nuovo + + Copy + + PageSinglePlayer @@ -1206,6 +1253,14 @@ Default Default + + Normal + + + + hand drawn map... + + QGroupBox @@ -1438,6 +1493,10 @@ % Rope Length + + Gameplay + + QLineEdit @@ -1621,6 +1680,10 @@ Associate file extensions + + Set + + QTableWidget @@ -1675,6 +1738,10 @@ new nuovo + + copy of + + TCPBase diff -r 7cb8c9db6e8d -r 5a3b1dbdd4c9 share/hedgewars/Data/Locale/hedgewars_ja.ts --- a/share/hedgewars/Data/Locale/hedgewars_ja.ts Tue Dec 21 21:56:34 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_ja.ts Tue Dec 21 23:22:53 2010 +0100 @@ -7,6 +7,10 @@ new 作成 + + copy of + + FreqSpinBox @@ -181,6 +185,10 @@ Large floating islands + + Seed + + HWNetServersModel @@ -293,6 +301,37 @@ + PageDrawMap + + Undo + + + + Clear + + + + Load + ロード + + + Save + + + + Load drawn map + + + + Drawn Maps (*.hwmap);;All files (*.*) + + + + Save drawn map + + + + PageEditTeam General @@ -952,6 +991,10 @@ Wind will affect almost everything. + + Copy + + PageSelectWeapon @@ -967,6 +1010,10 @@ New + + Copy + + PageSinglePlayer @@ -1139,6 +1186,14 @@ Default デフォールト + + Normal + + + + hand drawn map... + + QGroupBox @@ -1365,6 +1420,10 @@ % Rope Length + + Gameplay + + QLineEdit @@ -1548,6 +1607,10 @@ Associate file extensions + + Set + + QTableWidget @@ -1602,6 +1665,10 @@ new 作成 + + copy of + + TCPBase diff -r 7cb8c9db6e8d -r 5a3b1dbdd4c9 share/hedgewars/Data/Locale/hedgewars_nl.ts --- a/share/hedgewars/Data/Locale/hedgewars_nl.ts Tue Dec 21 21:56:34 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_nl.ts Tue Dec 21 23:22:53 2010 +0100 @@ -7,6 +7,10 @@ new + + copy of + + FreqSpinBox @@ -178,6 +182,10 @@ Large floating islands + + Seed + + HWNetServersModel @@ -300,6 +308,37 @@ + PageDrawMap + + Undo + + + + Clear + + + + Load + + + + Save + + + + Load drawn map + + + + Drawn Maps (*.hwmap);;All files (*.*) + + + + Save drawn map + + + + PageEditTeam General @@ -963,6 +1002,10 @@ Wind will affect almost everything. + + Copy + + PageSelectWeapon @@ -978,6 +1021,10 @@ New + + Copy + + PageSinglePlayer @@ -1146,6 +1193,14 @@ In progress + + Normal + + + + hand drawn map... + + QGroupBox @@ -1368,6 +1423,10 @@ % Rope Length + + Gameplay + + QLineEdit @@ -1541,6 +1600,10 @@ Associate file extensions + + Set + + QTableWidget @@ -1595,6 +1658,10 @@ new + + copy of + + TCPBase diff -r 7cb8c9db6e8d -r 5a3b1dbdd4c9 share/hedgewars/Data/Locale/hedgewars_pl.ts --- a/share/hedgewars/Data/Locale/hedgewars_pl.ts Tue Dec 21 21:56:34 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_pl.ts Tue Dec 21 23:22:53 2010 +0100 @@ -7,6 +7,10 @@ new nowy + + copy of + + FreqSpinBox @@ -191,6 +195,10 @@ Large floating islands Duże wyspy + + Seed + + HWNetServersModel @@ -324,6 +332,37 @@ + PageDrawMap + + Undo + + + + Clear + + + + Load + Wczytaj + + + Save + + + + Load drawn map + + + + Drawn Maps (*.hwmap);;All files (*.*) + + + + Save drawn map + + + + PageEditTeam General @@ -1063,6 +1102,10 @@ Wind will affect almost everything. + + Copy + + PageSelectWeapon @@ -1078,6 +1121,10 @@ New Nowy + + Copy + + PageSinglePlayer @@ -1282,6 +1329,14 @@ Crazy Crazy + + Normal + + + + hand drawn map... + + QGroupBox @@ -1524,6 +1579,10 @@ % Rope Length + + Gameplay + + QLineEdit @@ -1707,6 +1766,10 @@ Associate file extensions Powiąż typy plików z Hedgewars + + Set + + QTableWidget @@ -1761,6 +1824,10 @@ new nowy + + copy of + + TCPBase diff -r 7cb8c9db6e8d -r 5a3b1dbdd4c9 share/hedgewars/Data/Locale/hedgewars_pt_BR.ts --- a/share/hedgewars/Data/Locale/hedgewars_pt_BR.ts Tue Dec 21 21:56:34 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_pt_BR.ts Tue Dec 21 23:22:53 2010 +0100 @@ -7,6 +7,10 @@ new Novo + + copy of + + FreqSpinBox @@ -182,6 +186,10 @@ Large floating islands Ilhas grandes + + Seed + + HWNetServersModel @@ -307,6 +315,37 @@ + PageDrawMap + + Undo + + + + Clear + Limpar + + + Load + Carregar + + + Save + + + + Load drawn map + + + + Drawn Maps (*.hwmap);;All files (*.*) + + + + Save drawn map + + + + PageEditTeam General @@ -1087,6 +1126,10 @@ Wind will affect almost everything. + + Copy + + PageSelectWeapon @@ -1102,6 +1145,10 @@ New Novo + + Copy + + PageSinglePlayer @@ -1306,6 +1353,14 @@ Crazy Crazy + + Normal + + + + hand drawn map... + + QGroupBox @@ -1542,6 +1597,10 @@ % Rope Length + + Gameplay + + QLineEdit @@ -1727,6 +1786,10 @@ Associate file extensions Associar extensão de arquivos. + + Set + + QTableWidget @@ -1783,6 +1846,10 @@ new + + copy of + + TCPBase diff -r 7cb8c9db6e8d -r 5a3b1dbdd4c9 share/hedgewars/Data/Locale/hedgewars_pt_PT.ts --- a/share/hedgewars/Data/Locale/hedgewars_pt_PT.ts Tue Dec 21 21:56:34 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_pt_PT.ts Tue Dec 21 23:22:53 2010 +0100 @@ -7,6 +7,10 @@ new novo + + copy of + + FreqSpinBox @@ -182,6 +186,10 @@ Large floating islands Ilhas flutuantes grandes + + Seed + + HWNetServersModel @@ -315,6 +323,37 @@ + PageDrawMap + + Undo + + + + Clear + + + + Load + Carregar + + + Save + + + + Load drawn map + + + + Drawn Maps (*.hwmap);;All files (*.*) + + + + Save drawn map + + + + PageEditTeam General @@ -1029,6 +1068,10 @@ Wind will affect almost everything. + + Copy + + PageSelectWeapon @@ -1044,6 +1087,10 @@ New Novo + + Copy + + PageSinglePlayer @@ -1220,6 +1267,14 @@ Default Predefinido + + Normal + + + + hand drawn map... + + QGroupBox @@ -1446,6 +1501,10 @@ % Rope Length + + Gameplay + + QLineEdit @@ -1629,6 +1688,10 @@ Associate file extensions Associar com as extensões dos ficheiros + + Set + + QTableWidget @@ -1683,6 +1746,10 @@ new novo + + copy of + + TCPBase diff -r 7cb8c9db6e8d -r 5a3b1dbdd4c9 share/hedgewars/Data/Locale/hedgewars_ru.ts --- a/share/hedgewars/Data/Locale/hedgewars_ru.ts Tue Dec 21 21:56:34 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_ru.ts Tue Dec 21 23:22:53 2010 +0100 @@ -7,6 +7,10 @@ new новый + + copy of + + FreqSpinBox @@ -187,6 +191,10 @@ Large floating islands Большие островки + + Seed + + HWNetServersModel @@ -320,6 +328,37 @@ + PageDrawMap + + Undo + + + + Clear + Очистить + + + Load + Загрузить + + + Save + + + + Load drawn map + + + + Drawn Maps (*.hwmap);;All files (*.*) + + + + Save drawn map + + + + PageEditTeam General @@ -1030,6 +1069,10 @@ Wind will affect almost everything. + + Copy + + PageSelectWeapon @@ -1045,6 +1088,10 @@ New Новая + + Copy + + PageSinglePlayer @@ -1221,6 +1268,14 @@ Default По умолчанию + + Normal + + + + hand drawn map... + + QGroupBox @@ -1457,6 +1512,10 @@ % Rope Length + + Gameplay + + QLineEdit @@ -1640,6 +1699,10 @@ Associate file extensions Сопоставить расширения файлов + + Set + + QTableWidget @@ -1694,6 +1757,10 @@ new новый + + copy of + + TCPBase diff -r 7cb8c9db6e8d -r 5a3b1dbdd4c9 share/hedgewars/Data/Locale/hedgewars_sk.ts --- a/share/hedgewars/Data/Locale/hedgewars_sk.ts Tue Dec 21 21:56:34 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_sk.ts Tue Dec 21 23:22:53 2010 +0100 @@ -7,6 +7,10 @@ new nový + + copy of + + FreqSpinBox @@ -187,6 +191,10 @@ Large floating islands Veľké plávajúce ostrovčeky + + Seed + + HWNetServersModel @@ -322,6 +330,37 @@ + PageDrawMap + + Undo + + + + Clear + + + + Load + Načítať + + + Save + + + + Load drawn map + + + + Drawn Maps (*.hwmap);;All files (*.*) + + + + Save drawn map + + + + PageEditTeam General @@ -1051,6 +1090,10 @@ Wind will affect almost everything. + + Copy + + PageSelectWeapon @@ -1066,6 +1109,10 @@ New Nová + + Copy + + PageSinglePlayer @@ -1270,6 +1317,14 @@ Crazy Šialené + + Normal + + + + hand drawn map... + + QGroupBox @@ -1507,6 +1562,10 @@ % Rope Length + + Gameplay + + QLineEdit @@ -1690,6 +1749,10 @@ Associate file extensions Asociovať prípony súborov. + + Set + + QTableWidget @@ -1744,6 +1807,10 @@ new nový + + copy of + + TCPBase diff -r 7cb8c9db6e8d -r 5a3b1dbdd4c9 share/hedgewars/Data/Locale/hedgewars_sv.ts --- a/share/hedgewars/Data/Locale/hedgewars_sv.ts Tue Dec 21 21:56:34 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_sv.ts Tue Dec 21 23:22:53 2010 +0100 @@ -7,6 +7,10 @@ new ny + + copy of + kopia av + FreqSpinBox @@ -26,7 +30,7 @@ GameCFGWidget Edit weapons - Redigera vapenscheman + Redigera vapenset Error @@ -42,7 +46,7 @@ When this option is enabled selecting a game scheme will auto-select a weapon - + När det här valet är aktivt kommer vapnen att ändras när du ändrar spelschema @@ -182,6 +186,10 @@ Large floating islands Stora flytande öar + + Seed + Frö + HWNetServersModel @@ -315,6 +323,37 @@ + PageDrawMap + + Undo + Ångra + + + Clear + Rensa + + + Load + Läs in + + + Save + Spara + + + Load drawn map + Läs in ritad karta + + + Drawn Maps (*.hwmap);;All files (*.*) + Ritade kartor (*.hwmap);;Alla filer (*.*) + + + Save drawn map + Spara ritad karta + + + PageEditTeam General @@ -666,12 +705,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 - + Du kan hitta dina konfigurationsfiler under "Library/Application Support/Hedgewars" i din hem-mapp. Gör en säkerhetskopia eller ta med dig filerna, men redigera dem inte för hand. You can find your Hedgewars configuration files under ".hedgewars" in your home directory. Create backups or take the files with you, but don't edit them by hand. Tips - + Du kan hitta dina konfigurationsfiler under ".hedgewars" i din hem-mapp. Gör en säkerhetskopia eller ta med dig filerna, men redigera dem inte för hand. @@ -742,27 +781,27 @@ New scheme - + Nytt schema Edit scheme - + Redigera schema Delete scheme - + Ta bort schema New weapon set - + Nytt vapenset Edit weapon set - + Redigera vapenset Delete weapon set - + Ta bort vapenset @@ -1023,11 +1062,15 @@ You will not have to worry about wind anymore. - + Nu behöver du inte oroa dig för vinden längre. Wind will affect almost everything. - + Vind påverkar nästan allting. + + + Copy + Kopiera @@ -1042,7 +1085,11 @@ New - Ny + Ny + + + Copy + Kopiera @@ -1248,6 +1295,14 @@ Crazy Galet + + Normal + Vanligt + + + hand drawn map... + handritad karta... + QGroupBox @@ -1301,7 +1356,7 @@ Schemes and Weapons - + Scheman och vapen @@ -1478,7 +1533,11 @@ % Rope Length - + % replängd + + + Gameplay + Speltyp @@ -1547,27 +1606,27 @@ Teams - Lag + Lag Really delete this team? - + Vill du verkligen ta bort detta lag? Schemes - + Scheman Can not delete default scheme '%1'! - + Kan inte ta bort standardschema '%1'! Really delete this game scheme? - + Vill du verkligen ta bort detta spelschema? Can not delete default weapon set '%1'! - + Kan inte ta bort standardvapenset '%1'! @@ -1663,6 +1722,10 @@ Associate file extensions Associera filextentioner + + Set + Ange + QTableWidget @@ -1715,7 +1778,11 @@ new - ny + ny + + + copy of + kopia av @@ -1825,11 +1892,11 @@ Disable Wind - + Avaktivera vind More Wind - + Mer vind diff -r 7cb8c9db6e8d -r 5a3b1dbdd4c9 share/hedgewars/Data/Locale/hedgewars_tr_TR.ts --- a/share/hedgewars/Data/Locale/hedgewars_tr_TR.ts Tue Dec 21 21:56:34 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_tr_TR.ts Tue Dec 21 23:22:53 2010 +0100 @@ -7,6 +7,10 @@ new yeni + + copy of + + FreqSpinBox @@ -181,6 +185,10 @@ Large floating islands + + Seed + + HWNetServersModel @@ -301,6 +309,37 @@ + PageDrawMap + + Undo + + + + Clear + + + + Load + Yükle + + + Save + + + + Load drawn map + + + + Drawn Maps (*.hwmap);;All files (*.*) + + + + Save drawn map + + + + PageEditTeam General @@ -964,6 +1003,10 @@ Wind will affect almost everything. + + Copy + + PageSelectWeapon @@ -979,6 +1022,10 @@ New Yeni + + Copy + + PageSinglePlayer @@ -1151,6 +1198,14 @@ Default Öntanımlı + + Normal + + + + hand drawn map... + + QGroupBox @@ -1377,6 +1432,10 @@ % Rope Length + + Gameplay + + QLineEdit @@ -1560,6 +1619,10 @@ Associate file extensions + + Set + + QTableWidget @@ -1614,6 +1677,10 @@ new yeni + + copy of + + TCPBase diff -r 7cb8c9db6e8d -r 5a3b1dbdd4c9 share/hedgewars/Data/Locale/hedgewars_uk.ts --- a/share/hedgewars/Data/Locale/hedgewars_uk.ts Tue Dec 21 21:56:34 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_uk.ts Tue Dec 21 23:22:53 2010 +0100 @@ -7,6 +7,10 @@ new нова + + copy of + + FreqSpinBox @@ -187,6 +191,10 @@ Large floating islands Великі плавучі острова + + Seed + + HWNetServersModel @@ -320,6 +328,37 @@ + PageDrawMap + + Undo + + + + Clear + Очистити + + + Load + Завантажити + + + Save + + + + Load drawn map + + + + Drawn Maps (*.hwmap);;All files (*.*) + + + + Save drawn map + + + + PageEditTeam General @@ -1030,6 +1069,10 @@ Wind will affect almost everything. Вітер вплине майже на все. + + Copy + + PageSelectWeapon @@ -1045,6 +1088,10 @@ New Нова + + Copy + + PageSinglePlayer @@ -1221,6 +1268,14 @@ Default За замовчуванням + + Normal + + + + hand drawn map... + + QGroupBox @@ -1447,6 +1502,10 @@ % Rope Length % Довжина Мотузки + + Gameplay + + QLineEdit @@ -1630,6 +1689,10 @@ Associate file extensions Асоціювати файлові розширення + + Set + + QTableWidget @@ -1684,6 +1747,10 @@ new нова + + copy of + + TCPBase @@ -2086,7 +2153,7 @@ Delete - + Видалити Mouse: Left button @@ -2118,7 +2185,7 @@ Clear - + Очистити Return diff -r 7cb8c9db6e8d -r 5a3b1dbdd4c9 share/hedgewars/Data/Locale/hedgewars_zh_CN.ts --- a/share/hedgewars/Data/Locale/hedgewars_zh_CN.ts Tue Dec 21 21:56:34 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_zh_CN.ts Tue Dec 21 23:22:53 2010 +0100 @@ -7,6 +7,10 @@ new 新建 + + copy of + + FreqSpinBox @@ -181,6 +185,10 @@ Large floating islands 大型漂浮岛屿 + + Seed + + HWNetServersModel @@ -314,6 +322,37 @@ + PageDrawMap + + Undo + + + + Clear + + + + Load + 读取 + + + Save + + + + Load drawn map + + + + Drawn Maps (*.hwmap);;All files (*.*) + + + + Save drawn map + + + + PageEditTeam General @@ -1038,6 +1077,10 @@ Wind will affect almost everything. 风无所不在。 + + Copy + + PageSelectWeapon @@ -1053,6 +1096,10 @@ New 新模式 + + Copy + + PageSinglePlayer @@ -1257,6 +1304,14 @@ Crazy 疯狂刺猬 + + Normal + + + + hand drawn map... + + QGroupBox @@ -1483,6 +1538,10 @@ Health in Crates 生命箱的值数 + + Gameplay + + QLineEdit @@ -1666,6 +1725,10 @@ Associate file extensions 相关文件扩展 + + Set + + QTableWidget @@ -1720,6 +1783,10 @@ new + + copy of + + TCPBase diff -r 7cb8c9db6e8d -r 5a3b1dbdd4c9 share/hedgewars/Data/Locale/hedgewars_zh_TW.ts --- a/share/hedgewars/Data/Locale/hedgewars_zh_TW.ts Tue Dec 21 21:56:34 2010 +0100 +++ b/share/hedgewars/Data/Locale/hedgewars_zh_TW.ts Tue Dec 21 23:22:53 2010 +0100 @@ -7,6 +7,10 @@ new + + copy of + + FreqSpinBox @@ -181,6 +185,10 @@ Large floating islands + + Seed + + HWNetServersModel @@ -311,6 +319,37 @@ + PageDrawMap + + Undo + + + + Clear + 清除 + + + Load + 讀取 + + + Save + + + + Load drawn map + + + + Drawn Maps (*.hwmap);;All files (*.*) + + + + Save drawn map + + + + PageEditTeam General @@ -988,6 +1027,10 @@ Wind will affect almost everything. + + Copy + + PageSelectWeapon @@ -1003,6 +1046,10 @@ New 新模式 + + Copy + + PageSinglePlayer @@ -1179,6 +1226,14 @@ Default 默認 + + Normal + + + + hand drawn map... + + QGroupBox @@ -1405,6 +1460,10 @@ % Rope Length + + Gameplay + + QLineEdit @@ -1588,6 +1647,10 @@ Associate file extensions + + Set + + QTableWidget @@ -1642,6 +1705,10 @@ new + + copy of + + TCPBase diff -r 7cb8c9db6e8d -r 5a3b1dbdd4c9 share/hedgewars/Data/Locale/sv.lua --- a/share/hedgewars/Data/Locale/sv.lua Tue Dec 21 21:56:34 2010 +0100 +++ b/share/hedgewars/Data/Locale/sv.lua Tue Dec 21 23:22:53 2010 +0100 @@ -24,4 +24,7 @@ ["Fastest lap: "] = "Snabbast varv: ", ["Best laps per team: "] = "Bästa varv per lag: ", ["Team %d: "] = "Lag %d: ", + ["Random Weapons"] = "Slumpade vapen", + ["A game of luck"] = "Ett lyckospel", + ["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!", }