]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
fix some coloring bugs
authorRudolf Polzer <divverent@alientrap.org>
Thu, 20 Jan 2011 20:04:53 +0000 (21:04 +0100)
committerRudolf Polzer <divverent@alientrap.org>
Thu, 20 Jan 2011 20:04:53 +0000 (21:04 +0100)
csprogs.dat.de.po.disabled
qcsrc/client/hud.qc

index f5d2018923eb0a505b032602d2da2f10516fc4c1..3a9ef0b5e7a23647c16e7b7b3cbd3afb2d1fa703 100644 (file)
@@ -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
index e95a413ec551a754b7f87b314a2b41d8607ee706..a64ff0d451fea1065be4e08dc84588e34b976451 100644 (file)
@@ -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));