From: Mario Date: Thu, 8 May 2014 07:40:00 +0000 (+1000) Subject: Also don't translate the error X-Git-Tag: xonotic-v0.8.0~219^2 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=34be113166b120f32e07c58123257e6d2779617f;p=xonotic%2Fxonotic-data.pk3dir.git Also don't translate the error --- diff --git a/qcsrc/client/Main.qc b/qcsrc/client/Main.qc index e486672c8..4ea750ce5 100644 --- a/qcsrc/client/Main.qc +++ b/qcsrc/client/Main.qc @@ -214,7 +214,7 @@ float SetTeam(entity o, float Team) default: if(GetTeam(Team, false) == world) { - dprintf(_("trying to switch to unsupported team %d\n"), Team); + dprintf("trying to switch to unsupported team %d\n", Team); Team = NUM_SPECTATOR; } break; @@ -230,7 +230,7 @@ float SetTeam(entity o, float Team) default: if(GetTeam(Team, false) == world) { - dprintf(_("trying to switch to unsupported team %d\n"), Team); + dprintf("trying to switch to unsupported team %d\n", Team); Team = NUM_SPECTATOR; } break;