From: Rudolf Polzer Date: Thu, 20 Jan 2011 20:04:53 +0000 (+0100) Subject: fix some coloring bugs X-Git-Tag: xonotic-v0.5.0~316^2~38 X-Git-Url: https://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=commitdiff_plain;h=df8fe3b033ae236884fdb5ecf39df59f64db9669 fix some coloring bugs --- diff --git a/csprogs.dat.de.po.disabled b/csprogs.dat.de.po.disabled index f5d2018923..3a9ef0b5e7 100644 --- a/csprogs.dat.de.po.disabled +++ b/csprogs.dat.de.po.disabled @@ -245,36 +245,36 @@ msgstr "^1%s^1 konnte dem Drang zur Selbstzerstörung einfach nicht widerstehen\ #: qcsrc/client/hud.qc:2717 #, c-format msgid "^1%s^1 ended it all after a %d kill spree\n" -msgstr "" +msgstr "^1%s^1 machte seinem %d-Amoklauf ein Ende\n" #: qcsrc/client/hud.qc:2734 #, c-format msgid "^1%s^1 took action against a team mate\n" -msgstr "" +msgstr "^1%s^1 ergriff Maßnahmen gegen einen Mitspieler\n" #: qcsrc/client/hud.qc:2736 #, c-format msgid "^1%s^1 mows down a team mate\n" -msgstr "" +msgstr "^1%s^1 mähte einen Mitspieler nieder\n" #: qcsrc/client/hud.qc:2741 #, c-format msgid "^1%s^1 ended a %d scoring spree by going against a team mate\n" -msgstr "" +msgstr "^1%s^1 dachte, %d Punkte hintereinander reichen, und trug dies an einem Mitspieler aus\n" #: qcsrc/client/hud.qc:2743 #, c-format msgid "^1%s^1 ended a %d kill spree by killing a team mate\n" -msgstr "" +msgstr "^1%s^1 beendete seinen %d-Amoklauf, indem er einen Mitspieler tötete\n" #: qcsrc/client/hud.qc:2747 #, c-format -msgid "^1%s's ^1%s scoring spree was ended by a team mate!\n" -msgstr "" +msgid "^1%s^1's %s scoring spree was ended by a team mate!\n" +msgstr "^1%ss ^1%s" #: qcsrc/client/hud.qc:2749 #, c-format -msgid "^1%s's ^1%s kill spree was ended by a team mate!\n" +msgid "^1%s^1's %s kill spree was ended by a team mate!\n" msgstr "" #: qcsrc/client/hud.qc:2757 @@ -384,12 +384,12 @@ msgstr "" #: qcsrc/client/hud.qc:2856 #, c-format -msgid "^1%s's ^1%s scoring spree was ended by %s\n" +msgid "^1%s^1's %s scoring spree was ended by %s\n" msgstr "" #: qcsrc/client/hud.qc:2858 #, c-format -msgid "^1%s's ^1%s kill spree was ended by %s\n" +msgid "^1%s^1's %s kill spree was ended by %s\n" msgstr "" #: qcsrc/client/hud.qc:2861 diff --git a/qcsrc/client/hud.qc b/qcsrc/client/hud.qc index e95a413ec5..a64ff0d451 100644 --- a/qcsrc/client/hud.qc +++ b/qcsrc/client/hud.qc @@ -2744,9 +2744,9 @@ void HUD_KillNotify(string s1, string s2, string s3, float type, float msg) // s } else if (stof(s2) > 2) { if(gentle) - print (sprintf(_("^1%s's ^1%s scoring spree was ended by a team mate!\n"), s1, stof(s3))); + print (sprintf(_("^1%s^1's %s scoring spree was ended by a team mate!\n"), s1, stof(s3))); else - print (sprintf(_("^1%s's ^1%s kill spree was ended by a team mate!\n"), s1, stof(s3))); + print (sprintf(_("^1%s^1's %s kill spree was ended by a team mate!\n"), s1, stof(s3))); } } else if(type == KILL_FIRST_BLOOD) @@ -2853,9 +2853,9 @@ void HUD_KillNotify(string s1, string s2, string s3, float type, float msg) // s } else if(msg == MSG_SPREE) { if(type == KILL_END_SPREE) { if(gentle) - print (sprintf(_("^1%s's ^1%s scoring spree was ended by %s\n"), s1, s2, s3)); + print (sprintf(_("^1%s^1's %s scoring spree was ended by %s\n"), s1, s2, s3)); else - print (sprintf(_("^1%s's ^1%s kill spree was ended by %s\n"), s1, s2, s3)); + print (sprintf(_("^1%s^1's %s kill spree was ended by %s\n"), s1, s2, s3)); } else if(type == KILL_SPREE) { if(gentle) print (sprintf(_("^1%s^1 made %s scores in a row\n"), s1, s2));