From: terencehill Date: Sat, 31 Dec 2016 14:55:21 +0000 (+0100) Subject: Cvar descriptions shouldn't be translatable X-Git-Tag: xonotic-v0.8.2~337 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=edd79267421f8de053ca7f12f68b80eba0a89c62;p=xonotic%2Fxonotic-data.pk3dir.git Cvar descriptions shouldn't be translatable --- diff --git a/qcsrc/common/mutators/mutator/buffs/sv_buffs.qc b/qcsrc/common/mutators/mutator/buffs/sv_buffs.qc index 900d16a45..a2d50b059 100644 --- a/qcsrc/common/mutators/mutator/buffs/sv_buffs.qc +++ b/qcsrc/common/mutators/mutator/buffs/sv_buffs.qc @@ -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) { diff --git a/qcsrc/common/mutators/mutator/damagetext/damagetext.qc b/qcsrc/common/mutators/mutator/damagetext/damagetext.qc index 7f2b740ba..49097aa81 100644 --- a/qcsrc/common/mutators/mutator/damagetext/damagetext.qc +++ b/qcsrc/common/mutators/mutator/damagetext/damagetext.qc @@ -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 */) diff --git a/qcsrc/common/mutators/mutator/hook/sv_hook.qc b/qcsrc/common/mutators/mutator/hook/sv_hook.qc index b5a196c51..45a2aee6b 100644 --- a/qcsrc/common/mutators/mutator/hook/sv_hook.qc +++ b/qcsrc/common/mutators/mutator/hook/sv_hook.qc @@ -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 {