--- a/QTfrontend/statsPage.cpp Sun Nov 07 19:59:34 2010 +0300
+++ b/QTfrontend/statsPage.cpp Sun Nov 07 20:08:33 2010 +0300
@@ -224,19 +224,22 @@
}
case 's' : {
int i = info.indexOf(' ');
- QString message = "<p><img src=\":/res/StatsMostSelfDamage.png\"> " + PageGameStats::tr("<b>%1</b> thought it's good to shoot his own hedgehogs with <b>%2</b> pts.").arg(info.mid(i + 1), info.left(i)) + "</p>";
+ int num = info.left(i).toInt();
+ QString message = "<p><img src=\":/res/StatsMostSelfDamage.png\"> " + PageGameStats::tr("<b>%1</b> thought it's good to shoot his own hedgehogs with <b>%2</b> pts.", "", num).arg(info.mid(i + 1), num) + "</p>";
AddStatText(message);
break;
}
case 'S' : {
int i = info.indexOf(' ');
- QString message = "<p><img src=\":/res/StatsSelfKilled.png\"> " + PageGameStats::tr("<b>%1</b> killed <b>%2</b> of his own hedgehogs.").arg(info.mid(i + 1), info.left(i)) + "</p>";
+ int num = info.left(i).toInt();
+ QString message = "<p><img src=\":/res/StatsSelfKilled.png\"> " + PageGameStats::tr("<b>%1</b> killed <b>%2</b> of his own hedgehogs.", "", num).arg(info.mid(i + 1), num) + "</p>";
AddStatText(message);
break;
}
case 'B' : {
int i = info.indexOf(' ');
- QString message = "<p><img src=\":/res/StatsSkipped.png\"> " + PageGameStats::tr("<b>%1</b> was scared and skipped turn <b>%2</b> times.").arg(info.mid(i + 1), info.left(i)) + "</p>";
+ int num = info.left(i).toInt();
+ QString message = "<p><img src=\":/res/StatsSkipped.png\"> " + PageGameStats::tr("<b>%1</b> was scared and skipped turn <b>%2</b> times.", "", num).arg(info.mid(i + 1), num) + "</p>";
AddStatText(message);
break;
}
--- a/share/hedgewars/Data/Locale/hedgewars_ar.ts Sun Nov 07 19:59:34 2010 +0300
+++ b/share/hedgewars/Data/Locale/hedgewars_ar.ts Sun Nov 07 20:08:33 2010 +0300
@@ -372,17 +372,26 @@
<numerusform></numerusform>
</translation>
</message>
- <message>
+ <message numerus="yes">
<source><b>%1</b> thought it's good to shoot his own hedgehogs with <b>%2</b> pts.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
+ <translation type="unfinished">
+ <numerusform></numerusform>
+ <numerusform></numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
<source><b>%1</b> killed <b>%2</b> of his own hedgehogs.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
+ <translation type="unfinished">
+ <numerusform></numerusform>
+ <numerusform></numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
<source><b>%1</b> was scared and skipped turn <b>%2</b> times.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">
+ <numerusform></numerusform>
+ <numerusform></numerusform>
+ </translation>
</message>
</context>
<context>
--- a/share/hedgewars/Data/Locale/hedgewars_bg.ts Sun Nov 07 19:59:34 2010 +0300
+++ b/share/hedgewars/Data/Locale/hedgewars_bg.ts Sun Nov 07 20:08:33 2010 +0300
@@ -343,17 +343,26 @@
<numerusform></numerusform>
</translation>
</message>
- <message>
+ <message numerus="yes">
<source><b>%1</b> thought it's good to shoot his own hedgehogs with <b>%2</b> pts.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
+ <translation type="unfinished">
+ <numerusform></numerusform>
+ <numerusform></numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
<source><b>%1</b> killed <b>%2</b> of his own hedgehogs.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
+ <translation type="unfinished">
+ <numerusform></numerusform>
+ <numerusform></numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
<source><b>%1</b> was scared and skipped turn <b>%2</b> times.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">
+ <numerusform></numerusform>
+ <numerusform></numerusform>
+ </translation>
</message>
</context>
<context>
--- a/share/hedgewars/Data/Locale/hedgewars_cs.ts Sun Nov 07 19:59:34 2010 +0300
+++ b/share/hedgewars/Data/Locale/hedgewars_cs.ts Sun Nov 07 20:08:33 2010 +0300
@@ -347,17 +347,29 @@
<numerusform></numerusform>
</translation>
</message>
- <message>
+ <message numerus="yes">
<source><b>%1</b> thought it's good to shoot his own hedgehogs with <b>%2</b> pts.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
+ <translation type="unfinished">
+ <numerusform></numerusform>
+ <numerusform></numerusform>
+ <numerusform></numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
<source><b>%1</b> killed <b>%2</b> of his own hedgehogs.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
+ <translation type="unfinished">
+ <numerusform></numerusform>
+ <numerusform></numerusform>
+ <numerusform></numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
<source><b>%1</b> was scared and skipped turn <b>%2</b> times.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">
+ <numerusform></numerusform>
+ <numerusform></numerusform>
+ <numerusform></numerusform>
+ </translation>
</message>
</context>
<context>
--- a/share/hedgewars/Data/Locale/hedgewars_de.ts Sun Nov 07 19:59:34 2010 +0300
+++ b/share/hedgewars/Data/Locale/hedgewars_de.ts Sun Nov 07 20:08:33 2010 +0300
@@ -388,17 +388,26 @@
<source>(%1 kills)</source>
<translation type="obsolete">(%1 Kills)</translation>
</message>
- <message>
+ <message numerus="yes">
<source><b>%1</b> thought it's good to shoot his own hedgehogs with <b>%2</b> pts.</source>
- <translation><b>%1</b> dachte es ist gut seine eigenen Igel mit <b>%2</b> Punkten zu verletzen.</translation>
- </message>
- <message>
+ <translation type="unfinished">
+ <numerusform><b>%1</b> dachte es ist gut seine eigenen Igel mit <b>%2</b> Punkten zu verletzen.</numerusform>
+ <numerusform></numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
<source><b>%1</b> killed <b>%2</b> of his own hedgehogs.</source>
- <translation><b>%1</b> killte <b>%2</b> seiner eigenen Igel.</translation>
- </message>
- <message>
+ <translation type="unfinished">
+ <numerusform><b>%1</b> killte <b>%2</b> seiner eigenen Igel.</numerusform>
+ <numerusform></numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
<source><b>%1</b> was scared and skipped turn <b>%2</b> times.</source>
- <translation><b>%1</b> hatte Angst und übersprang <b>%2</b> Runden.</translation>
+ <translation type="unfinished">
+ <numerusform><b>%1</b> hatte Angst und übersprang <b>%2</b> Runden.</numerusform>
+ <numerusform></numerusform>
+ </translation>
</message>
</context>
<context>
--- a/share/hedgewars/Data/Locale/hedgewars_en.ts Sun Nov 07 19:59:34 2010 +0300
+++ b/share/hedgewars/Data/Locale/hedgewars_en.ts Sun Nov 07 20:08:33 2010 +0300
@@ -378,17 +378,26 @@
<numerusform></numerusform>
</translation>
</message>
- <message>
+ <message numerus="yes">
<source><b>%1</b> thought it's good to shoot his own hedgehogs with <b>%2</b> pts.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
+ <translation type="unfinished">
+ <numerusform></numerusform>
+ <numerusform></numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
<source><b>%1</b> killed <b>%2</b> of his own hedgehogs.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
+ <translation type="unfinished">
+ <numerusform></numerusform>
+ <numerusform></numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
<source><b>%1</b> was scared and skipped turn <b>%2</b> times.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">
+ <numerusform></numerusform>
+ <numerusform></numerusform>
+ </translation>
</message>
</context>
<context>
--- a/share/hedgewars/Data/Locale/hedgewars_es.ts Sun Nov 07 19:59:34 2010 +0300
+++ b/share/hedgewars/Data/Locale/hedgewars_es.ts Sun Nov 07 20:08:33 2010 +0300
@@ -386,17 +386,26 @@
<source>(%1 kills)</source>
<translation type="obsolete">(%1 bajas)</translation>
</message>
- <message>
+ <message numerus="yes">
<source><b>%1</b> thought it's good to shoot his own hedgehogs with <b>%2</b> pts.</source>
- <translation><b>%1</b> prefiere disparar a sus miembros, con un total de <b>%2</b> pts.</translation>
- </message>
- <message>
+ <translation type="unfinished">
+ <numerusform><b>%1</b> prefiere disparar a sus miembros, con un total de <b>%2</b> pts.</numerusform>
+ <numerusform></numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
<source><b>%1</b> killed <b>%2</b> of his own hedgehogs.</source>
- <translation><b>%1</b> acabó con <b>%2</b> de sus propios miembros.</translation>
- </message>
- <message>
+ <translation type="unfinished">
+ <numerusform><b>%1</b> acabó con <b>%2</b> de sus propios miembros.</numerusform>
+ <numerusform></numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
<source><b>%1</b> was scared and skipped turn <b>%2</b> times.</source>
- <translation><b>%1</b> tenía demasiado miedo y pasó <b>%2</b> turnos.</translation>
+ <translation type="unfinished">
+ <numerusform><b>%1</b> tenía demasiado miedo y pasó <b>%2</b> turnos.</numerusform>
+ <numerusform></numerusform>
+ </translation>
</message>
</context>
<context>
--- a/share/hedgewars/Data/Locale/hedgewars_fi.ts Sun Nov 07 19:59:34 2010 +0300
+++ b/share/hedgewars/Data/Locale/hedgewars_fi.ts Sun Nov 07 20:08:33 2010 +0300
@@ -382,17 +382,26 @@
<source>(%1 kills)</source>
<translation type="obsolete">(%1 tappoa)</translation>
</message>
- <message>
+ <message numerus="yes">
<source><b>%1</b> thought it's good to shoot his own hedgehogs with <b>%2</b> pts.</source>
- <translation><b>%1</b> ajatteli että omia siilejä on hyvä vahingoittaa <b>%2</b> vahinkopisteellä.</translation>
- </message>
- <message>
+ <translation type="unfinished">
+ <numerusform><b>%1</b> ajatteli että omia siilejä on hyvä vahingoittaa <b>%2</b> vahinkopisteellä.</numerusform>
+ <numerusform></numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
<source><b>%1</b> killed <b>%2</b> of his own hedgehogs.</source>
- <translation><b>%1</b> tappoi <b>%2</b> omaa siiltä.</translation>
- </message>
- <message>
+ <translation type="unfinished">
+ <numerusform><b>%1</b> tappoi <b>%2</b> omaa siiltä.</numerusform>
+ <numerusform></numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
<source><b>%1</b> was scared and skipped turn <b>%2</b> times.</source>
- <translation><b>%1</b> pelkäsi ja jätti vuoronsa väliin <b>%2</b> kertaa.</translation>
+ <translation type="unfinished">
+ <numerusform><b>%1</b> pelkäsi ja jätti vuoronsa väliin <b>%2</b> kertaa.</numerusform>
+ <numerusform></numerusform>
+ </translation>
</message>
</context>
<context>
--- a/share/hedgewars/Data/Locale/hedgewars_fr.ts Sun Nov 07 19:59:34 2010 +0300
+++ b/share/hedgewars/Data/Locale/hedgewars_fr.ts Sun Nov 07 20:08:33 2010 +0300
@@ -375,17 +375,26 @@
<numerusform></numerusform>
</translation>
</message>
- <message>
+ <message numerus="yes">
<source><b>%1</b> thought it's good to shoot his own hedgehogs with <b>%2</b> pts.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
+ <translation type="unfinished">
+ <numerusform></numerusform>
+ <numerusform></numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
<source><b>%1</b> killed <b>%2</b> of his own hedgehogs.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
+ <translation type="unfinished">
+ <numerusform></numerusform>
+ <numerusform></numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
<source><b>%1</b> was scared and skipped turn <b>%2</b> times.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">
+ <numerusform></numerusform>
+ <numerusform></numerusform>
+ </translation>
</message>
</context>
<context>
--- a/share/hedgewars/Data/Locale/hedgewars_hu.ts Sun Nov 07 19:59:34 2010 +0300
+++ b/share/hedgewars/Data/Locale/hedgewars_hu.ts Sun Nov 07 20:08:33 2010 +0300
@@ -369,17 +369,23 @@
<numerusform></numerusform>
</translation>
</message>
- <message>
+ <message numerus="yes">
<source><b>%1</b> thought it's good to shoot his own hedgehogs with <b>%2</b> pts.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
+ <translation type="unfinished">
+ <numerusform></numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
<source><b>%1</b> killed <b>%2</b> of his own hedgehogs.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
+ <translation type="unfinished">
+ <numerusform></numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
<source><b>%1</b> was scared and skipped turn <b>%2</b> times.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">
+ <numerusform></numerusform>
+ </translation>
</message>
</context>
<context>
--- a/share/hedgewars/Data/Locale/hedgewars_it.ts Sun Nov 07 19:59:34 2010 +0300
+++ b/share/hedgewars/Data/Locale/hedgewars_it.ts Sun Nov 07 20:08:33 2010 +0300
@@ -379,17 +379,26 @@
<numerusform></numerusform>
</translation>
</message>
- <message>
+ <message numerus="yes">
<source><b>%1</b> thought it's good to shoot his own hedgehogs with <b>%2</b> pts.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
+ <translation type="unfinished">
+ <numerusform></numerusform>
+ <numerusform></numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
<source><b>%1</b> killed <b>%2</b> of his own hedgehogs.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
+ <translation type="unfinished">
+ <numerusform></numerusform>
+ <numerusform></numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
<source><b>%1</b> was scared and skipped turn <b>%2</b> times.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">
+ <numerusform></numerusform>
+ <numerusform></numerusform>
+ </translation>
</message>
</context>
<context>
--- a/share/hedgewars/Data/Locale/hedgewars_ja.ts Sun Nov 07 19:59:34 2010 +0300
+++ b/share/hedgewars/Data/Locale/hedgewars_ja.ts Sun Nov 07 20:08:33 2010 +0300
@@ -339,17 +339,23 @@
<numerusform></numerusform>
</translation>
</message>
- <message>
+ <message numerus="yes">
<source><b>%1</b> thought it's good to shoot his own hedgehogs with <b>%2</b> pts.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
+ <translation type="unfinished">
+ <numerusform></numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
<source><b>%1</b> killed <b>%2</b> of his own hedgehogs.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
+ <translation type="unfinished">
+ <numerusform></numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
<source><b>%1</b> was scared and skipped turn <b>%2</b> times.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">
+ <numerusform></numerusform>
+ </translation>
</message>
</context>
<context>
--- a/share/hedgewars/Data/Locale/hedgewars_pl.ts Sun Nov 07 19:59:34 2010 +0300
+++ b/share/hedgewars/Data/Locale/hedgewars_pl.ts Sun Nov 07 20:08:33 2010 +0300
@@ -392,17 +392,29 @@
<source>(%1 kills)</source>
<translation type="obsolete">(%1 zabitych)</translation>
</message>
- <message>
+ <message numerus="yes">
<source><b>%1</b> thought it's good to shoot his own hedgehogs with <b>%2</b> pts.</source>
- <translation><b>%1</b> przyjaźni się z wrogiem i zabrał swojej drużynie <b>%2</b> pkt. życia.</translation>
- </message>
- <message>
+ <translation type="unfinished">
+ <numerusform><b>%1</b> przyjaźni się z wrogiem i zabrał swojej drużynie <b>%2</b> pkt. życia.</numerusform>
+ <numerusform></numerusform>
+ <numerusform></numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
<source><b>%1</b> killed <b>%2</b> of his own hedgehogs.</source>
- <translation><b>%1</b> zabił <b>%2</b> spośród jego własnych jeży.</translation>
- </message>
- <message>
+ <translation type="unfinished">
+ <numerusform><b>%1</b> zabił <b>%2</b> spośród jego własnych jeży.</numerusform>
+ <numerusform></numerusform>
+ <numerusform></numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
<source><b>%1</b> was scared and skipped turn <b>%2</b> times.</source>
- <translation><b>%1</b> trząsł portkami i opuścił turę <b>%2</b> razy.</translation>
+ <translation type="unfinished">
+ <numerusform><b>%1</b> trząsł portkami i opuścił turę <b>%2</b> razy.</numerusform>
+ <numerusform></numerusform>
+ <numerusform></numerusform>
+ </translation>
</message>
</context>
<context>
--- a/share/hedgewars/Data/Locale/hedgewars_pt_BR.ts Sun Nov 07 19:59:34 2010 +0300
+++ b/share/hedgewars/Data/Locale/hedgewars_pt_BR.ts Sun Nov 07 20:08:33 2010 +0300
@@ -424,17 +424,26 @@
<source>(%1 kills)</source>
<translation type="obsolete">(%1 mortes)</translation>
</message>
- <message>
+ <message numerus="yes">
<source><b>%1</b> thought it's good to shoot his own hedgehogs with <b>%2</b> pts.</source>
- <translation><b>%1</b> pensou que era bom atirar na sua própria equipe totalizando <b>%2</b> pts.</translation>
- </message>
- <message>
+ <translation type="unfinished">
+ <numerusform><b>%1</b> pensou que era bom atirar na sua própria equipe totalizando <b>%2</b> pts.</numerusform>
+ <numerusform></numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
<source><b>%1</b> killed <b>%2</b> of his own hedgehogs.</source>
- <translation><b>%1</b> matou <b>%2</b> dos próprios ouriços.</p>.</translation>
- </message>
- <message>
+ <translation type="unfinished">
+ <numerusform><b>%1</b> matou <b>%2</b> dos próprios ouriços.</p>.</numerusform>
+ <numerusform></numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
<source><b>%1</b> was scared and skipped turn <b>%2</b> times.</source>
- <translation><b>%1</b> estava assustado e passou o turno <b>%2</b> vezes.</p>.</translation>
+ <translation type="unfinished">
+ <numerusform><b>%1</b> estava assustado e passou o turno <b>%2</b> vezes.</p>.</numerusform>
+ <numerusform></numerusform>
+ </translation>
</message>
</context>
<context>
--- a/share/hedgewars/Data/Locale/hedgewars_pt_PT.ts Sun Nov 07 19:59:34 2010 +0300
+++ b/share/hedgewars/Data/Locale/hedgewars_pt_PT.ts Sun Nov 07 20:08:33 2010 +0300
@@ -382,17 +382,26 @@
<source>(%1 kills)</source>
<translation type="obsolete">(%1 mortos)</translation>
</message>
- <message>
+ <message numerus="yes">
<source><b>%1</b> thought it's good to shoot his own hedgehogs with <b>%2</b> pts.</source>
- <translation><b>%1</b> axou que seria divertido disparar dispara contra a sua própria equipa com <b>%2</b> pontos de dano.</translation>
- </message>
- <message>
+ <translation type="unfinished">
+ <numerusform><b>%1</b> axou que seria divertido disparar dispara contra a sua própria equipa com <b>%2</b> pontos de dano.</numerusform>
+ <numerusform></numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
<source><b>%1</b> killed <b>%2</b> of his own hedgehogs.</source>
- <translation><b>%1</b> matou <b>%2</b> ouriços da sua própria equipa.</translation>
- </message>
- <message>
+ <translation type="unfinished">
+ <numerusform><b>%1</b> matou <b>%2</b> ouriços da sua própria equipa.</numerusform>
+ <numerusform></numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
<source><b>%1</b> was scared and skipped turn <b>%2</b> times.</source>
- <translation><b>%1</b> estava tão intimidado que passou <b>%2</b> turnos.</translation>
+ <translation type="unfinished">
+ <numerusform><b>%1</b> estava tão intimidado que passou <b>%2</b> turnos.</numerusform>
+ <numerusform></numerusform>
+ </translation>
</message>
</context>
<context>
--- a/share/hedgewars/Data/Locale/hedgewars_ru.ts Sun Nov 07 19:59:34 2010 +0300
+++ b/share/hedgewars/Data/Locale/hedgewars_ru.ts Sun Nov 07 20:08:33 2010 +0300
@@ -89,17 +89,17 @@
</message>
<message>
<source>DefaultTeam</source>
- <translation type="unfinished"></translation>
+ <translation>Команда по умолчанию</translation>
</message>
<message>
<source>Hedgewars Demo File</source>
<comment>File Types</comment>
- <translation type="unfinished"></translation>
+ <translation>Файл записи игры hedgewars</translation>
</message>
<message>
<source>Hedgewars Save File</source>
<comment>File Types</comment>
- <translation type="unfinished"></translation>
+ <translation>Файл сохранения игры hedgewars</translation>
</message>
</context>
<context>
@@ -252,7 +252,10 @@
registered on Hedgewars.org
Please provide your password below
or pick another nickname in game config:</source>
- <translation type="unfinished"></translation>
+ <translation>Ваше имя пользователя %1
+зарегистрировано на сайте hedgewars.org
+Пожалуйста, укажите ваш пароль в поле ввода внизу
+или выберите иное имя пользователя в настройках игры:</translation>
</message>
</context>
<context>
@@ -347,7 +350,7 @@
</message>
<message>
<source>Health graph</source>
- <translation type="unfinished"></translation>
+ <translation>График уровня здоровья</translation>
</message>
<message>
<source>Ranking</source>
@@ -355,43 +358,55 @@
</message>
<message>
<source>The best shot award was won by <b>%1</b> with <b>%2</b> pts.</source>
- <translation type="unfinished"></translation>
+ <translation>Приз за лучший выстрел получает <b>%1</b> с <b>%2</b> пунктами урона.</translation>
</message>
<message numerus="yes">
<source>The best killer is <b>%1</b> with <b>%2</b> kills in a turn.</source>
- <translation type="unfinished">
- <numerusform></numerusform>
- <numerusform></numerusform>
- <numerusform></numerusform>
+ <translation>
+ <numerusform>Лучший убийца <b>%1</b> с <b>%2</b> убийством за ход.</numerusform>
+ <numerusform>Лучший убийца <b>%1</b> с <b>%2</b> убийствами за ход.</numerusform>
+ <numerusform>Лучший убийца <b>%1</b> с <b>%2</b> убийствами за ход.</numerusform>
</translation>
</message>
<message numerus="yes">
<source>A total of <b>%1</b> hedgehog(s) were killed during this round.</source>
+ <translation>
+ <numerusform>Всего <b>%1</b> ёж был убит в течение игры.</numerusform>
+ <numerusform>Всего <b>%1</b> ёжа был убит в течение игры.</numerusform>
+ <numerusform>Всего <b>%1</b> ёжей был убит в течение игры.</numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
+ <source>(%1 kill)</source>
+ <translation>
+ <numerusform>(%1 убийство)</numerusform>
+ <numerusform>(%1 убийства)</numerusform>
+ <numerusform>(%1 убийств)</numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
+ <source><b>%1</b> thought it's good to shoot his own hedgehogs with <b>%2</b> pts.</source>
<translation type="unfinished">
- <numerusform></numerusform>
+ <numerusform><b>%1</b> посчитал нужным подстрелить друзей на <b>%2</b> пунктов урона.</numerusform>
<numerusform></numerusform>
<numerusform></numerusform>
</translation>
</message>
<message numerus="yes">
- <source>(%1 kill)</source>
+ <source><b>%1</b> killed <b>%2</b> of his own hedgehogs.</source>
<translation type="unfinished">
- <numerusform></numerusform>
+ <numerusform><b>%1</b> убил <b>%2</b> союзников.</numerusform>
<numerusform></numerusform>
<numerusform></numerusform>
</translation>
</message>
- <message>
- <source><b>%1</b> thought it's good to shoot his own hedgehogs with <b>%2</b> pts.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <source><b>%1</b> killed <b>%2</b> of his own hedgehogs.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
+ <message numerus="yes">
<source><b>%1</b> was scared and skipped turn <b>%2</b> times.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">
+ <numerusform><b>%1</b> испугался и пропустил <b>%2</b> ходов.</numerusform>
+ <numerusform></numerusform>
+ <numerusform></numerusform>
+ </translation>
</message>
</context>
<context>
--- a/share/hedgewars/Data/Locale/hedgewars_sk.ts Sun Nov 07 19:59:34 2010 +0300
+++ b/share/hedgewars/Data/Locale/hedgewars_sk.ts Sun Nov 07 20:08:33 2010 +0300
@@ -381,17 +381,29 @@
<numerusform></numerusform>
</translation>
</message>
- <message>
+ <message numerus="yes">
<source><b>%1</b> thought it's good to shoot his own hedgehogs with <b>%2</b> pts.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
+ <translation type="unfinished">
+ <numerusform></numerusform>
+ <numerusform></numerusform>
+ <numerusform></numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
<source><b>%1</b> killed <b>%2</b> of his own hedgehogs.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
+ <translation type="unfinished">
+ <numerusform></numerusform>
+ <numerusform></numerusform>
+ <numerusform></numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
<source><b>%1</b> was scared and skipped turn <b>%2</b> times.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">
+ <numerusform></numerusform>
+ <numerusform></numerusform>
+ <numerusform></numerusform>
+ </translation>
</message>
</context>
<context>
--- a/share/hedgewars/Data/Locale/hedgewars_sv.ts Sun Nov 07 19:59:34 2010 +0300
+++ b/share/hedgewars/Data/Locale/hedgewars_sv.ts Sun Nov 07 20:08:33 2010 +0300
@@ -382,17 +382,26 @@
<source>(%1 kills)</source>
<translation type="obsolete">(%1 döda)</translation>
</message>
- <message>
+ <message numerus="yes">
<source><b>%1</b> thought it's good to shoot his own hedgehogs with <b>%2</b> pts.</source>
- <translation><b>%1</b> tyckte att det var bra att sjuta sina egna igelkottar med <b>%2</b> poäng.</translation>
- </message>
- <message>
+ <translation type="unfinished">
+ <numerusform><b>%1</b> tyckte att det var bra att sjuta sina egna igelkottar med <b>%2</b> poäng.</numerusform>
+ <numerusform></numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
<source><b>%1</b> killed <b>%2</b> of his own hedgehogs.</source>
- <translation><b>%1</b> dödade <b>%2</b> av sina egna igelkottar.</translation>
- </message>
- <message>
+ <translation type="unfinished">
+ <numerusform><b>%1</b> dödade <b>%2</b> av sina egna igelkottar.</numerusform>
+ <numerusform></numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
<source><b>%1</b> was scared and skipped turn <b>%2</b> times.</source>
- <translation><b>%1</b> var rädd och hoppade över turer <b>%2</b> gånger.</translation>
+ <translation type="unfinished">
+ <numerusform><b>%1</b> var rädd och hoppade över turer <b>%2</b> gånger.</numerusform>
+ <numerusform></numerusform>
+ </translation>
</message>
</context>
<context>
--- a/share/hedgewars/Data/Locale/hedgewars_tr_TR.ts Sun Nov 07 19:59:34 2010 +0300
+++ b/share/hedgewars/Data/Locale/hedgewars_tr_TR.ts Sun Nov 07 20:08:33 2010 +0300
@@ -347,17 +347,23 @@
<numerusform></numerusform>
</translation>
</message>
- <message>
+ <message numerus="yes">
<source><b>%1</b> thought it's good to shoot his own hedgehogs with <b>%2</b> pts.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
+ <translation type="unfinished">
+ <numerusform></numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
<source><b>%1</b> killed <b>%2</b> of his own hedgehogs.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
+ <translation type="unfinished">
+ <numerusform></numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
<source><b>%1</b> was scared and skipped turn <b>%2</b> times.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">
+ <numerusform></numerusform>
+ </translation>
</message>
</context>
<context>
--- a/share/hedgewars/Data/Locale/hedgewars_uk.ts Sun Nov 07 19:59:34 2010 +0300
+++ b/share/hedgewars/Data/Locale/hedgewars_uk.ts Sun Nov 07 20:08:33 2010 +0300
@@ -381,17 +381,29 @@
<numerusform></numerusform>
</translation>
</message>
- <message>
+ <message numerus="yes">
<source><b>%1</b> thought it's good to shoot his own hedgehogs with <b>%2</b> pts.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
+ <translation type="unfinished">
+ <numerusform></numerusform>
+ <numerusform></numerusform>
+ <numerusform></numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
<source><b>%1</b> killed <b>%2</b> of his own hedgehogs.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
+ <translation type="unfinished">
+ <numerusform></numerusform>
+ <numerusform></numerusform>
+ <numerusform></numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
<source><b>%1</b> was scared and skipped turn <b>%2</b> times.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">
+ <numerusform></numerusform>
+ <numerusform></numerusform>
+ <numerusform></numerusform>
+ </translation>
</message>
</context>
<context>
--- a/share/hedgewars/Data/Locale/hedgewars_zh_CN.ts Sun Nov 07 19:59:34 2010 +0300
+++ b/share/hedgewars/Data/Locale/hedgewars_zh_CN.ts Sun Nov 07 20:08:33 2010 +0300
@@ -376,17 +376,23 @@
<source>(%1 kills)</source>
<translation type="obsolete">(%1 灭杀)</translation>
</message>
- <message>
+ <message numerus="yes">
<source><b>%1</b> thought it's good to shoot his own hedgehogs with <b>%2</b> pts.</source>
- <translation><b>%1</b>另外,射击己方刺猬损失<b>%2</b>点血。</translation>
- </message>
- <message>
+ <translation type="unfinished">
+ <numerusform><b>%1</b>另外,射击己方刺猬损失<b>%2</b>点血。</numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
<source><b>%1</b> killed <b>%2</b> of his own hedgehogs.</source>
- <translation><b>%1</b>个刺猬被<b>%2</b>己方的刺猬误伤.</translation>
- </message>
- <message>
+ <translation type="unfinished">
+ <numerusform><b>%1</b>个刺猬被<b>%2</b>己方的刺猬误伤.</numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
<source><b>%1</b> was scared and skipped turn <b>%2</b> times.</source>
- <translation><b>%1</b>被迫跳过<b>%2</b>回合。</translation>
+ <translation type="unfinished">
+ <numerusform><b>%1</b>被迫跳过<b>%2</b>回合。</numerusform>
+ </translation>
</message>
</context>
<context>
--- a/share/hedgewars/Data/Locale/hedgewars_zh_TW.ts Sun Nov 07 19:59:34 2010 +0300
+++ b/share/hedgewars/Data/Locale/hedgewars_zh_TW.ts Sun Nov 07 20:08:33 2010 +0300
@@ -369,17 +369,23 @@
<numerusform></numerusform>
</translation>
</message>
- <message>
+ <message numerus="yes">
<source><b>%1</b> thought it's good to shoot his own hedgehogs with <b>%2</b> pts.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
+ <translation type="unfinished">
+ <numerusform></numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
<source><b>%1</b> killed <b>%2</b> of his own hedgehogs.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
+ <translation type="unfinished">
+ <numerusform></numerusform>
+ </translation>
+ </message>
+ <message numerus="yes">
<source><b>%1</b> was scared and skipped turn <b>%2</b> times.</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">
+ <numerusform></numerusform>
+ </translation>
</message>
</context>
<context>