]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Cvar descriptions shouldn't be translatable
authorterencehill <piuntn@gmail.com>
Sat, 31 Dec 2016 14:55:21 +0000 (15:55 +0100)
committerterencehill <piuntn@gmail.com>
Sat, 31 Dec 2016 14:55:21 +0000 (15:55 +0100)
qcsrc/common/mutators/mutator/buffs/sv_buffs.qc
qcsrc/common/mutators/mutator/damagetext/damagetext.qc
qcsrc/common/mutators/mutator/hook/sv_hook.qc

index 900d16a45d20e6acf376fd297ea922d76b80bc81..a2d50b05975655cc4aced5d3295e8d9a3f2dc430 100644 (file)
@@ -6,7 +6,7 @@
 .float buff_time = _STAT(BUFF_TIME);
 void buffs_DelayedInit(entity this);
 
-AUTOCVAR(g_buffs, int, -1, _("Enable buffs, -1: enabled but no auto location or replacing powerups, 1: enabled and can replace them"));
+AUTOCVAR(g_buffs, int, -1, "Enable buffs, -1: enabled but no auto location or replacing powerups, 1: enabled and can replace them");
 
 REGISTER_MUTATOR(buffs, autocvar_g_buffs)
 {
index 7f2b740ba56aa6e1d654644406f4f5e656d583a3..49097aa814b0917f92e7a29a25fb0b5abd823aa4 100644 (file)
@@ -117,7 +117,7 @@ ENDCLASS(DamageText)
 REGISTER_NET_TEMP(damagetext)
 
 #ifdef SVQC
-AUTOCVAR(sv_damagetext, int, 2, _("<= 0: disabled, >= 1: spectators, >= 2: players, >= 3: all players"));
+AUTOCVAR(sv_damagetext, int, 2, "<= 0: disabled, >= 1: spectators, >= 2: players, >= 3: all players");
 #define SV_DAMAGETEXT_DISABLED()        (autocvar_sv_damagetext <= 0 /* disabled */)
 #define SV_DAMAGETEXT_SPECTATORS_ONLY() (autocvar_sv_damagetext >= 1 /* spectators only */)
 #define SV_DAMAGETEXT_PLAYERS()         (autocvar_sv_damagetext >= 2 /* players */)
index b5a196c51131e7103db9f818991857c4eecb7c0f..45a2aee6b89edb16ebadf75cda8606dd233ec268 100644 (file)
@@ -1,6 +1,6 @@
 #include "sv_hook.qh"
 
-AUTOCVAR(g_grappling_hook, bool, false, _("let players spawn with the grappling hook which allows them to pull themselves up"));
+AUTOCVAR(g_grappling_hook, bool, false, "let players spawn with the grappling hook which allows them to pull themselves up");
 #ifdef SVQC
 REGISTER_MUTATOR(hook, autocvar_g_grappling_hook) {
     MUTATOR_ONADD {