From: Mario Date: Fri, 7 Sep 2018 21:34:58 +0000 (+1000) Subject: Capitalize all health/armor items for consistency X-Git-Tag: xonotic-v0.8.5~1897^2~2 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=0f9a6fc2b7d1f72dd486dd387f32ad2202f757c7;p=xonotic%2Fxonotic-data.pk3dir.git Capitalize all health/armor items for consistency --- diff --git a/qcsrc/common/items/item/armor.qh b/qcsrc/common/items/item/armor.qh index 8f778a26c..2ecd83557 100644 --- a/qcsrc/common/items/item/armor.qh +++ b/qcsrc/common/items/item/armor.qh @@ -39,7 +39,7 @@ REGISTER_ITEM(ArmorSmall, Armor) { this.m_sound = SND_ArmorSmall; #endif this.netname = "armor_small"; - this.m_name = _("small armor"); + this.m_name = _("Small armor"); this.m_icon = "armor"; #ifdef SVQC this.m_itemid = IT_ARMOR_SHARD; @@ -77,7 +77,7 @@ REGISTER_ITEM(ArmorMedium, Armor) { this.m_sound = SND_ArmorMedium; #endif this.netname = "armor_medium"; - this.m_name = _("medium armor"); + this.m_name = _("Medium armor"); this.m_icon = "armor"; #ifdef SVQC this.m_itemid = IT_ARMOR; @@ -115,7 +115,7 @@ REGISTER_ITEM(ArmorBig, Armor) { this.m_sound = SND_ArmorBig; #endif this.netname = "armor_big"; - this.m_name = _("big armor"); + this.m_name = _("Big armor"); this.m_icon = "armor"; this.m_color = '0 1 0'; this.m_waypoint = _("Big armor"); diff --git a/qcsrc/common/items/item/health.qh b/qcsrc/common/items/item/health.qh index bf4cb3f6d..e6a9dd988 100644 --- a/qcsrc/common/items/item/health.qh +++ b/qcsrc/common/items/item/health.qh @@ -39,7 +39,7 @@ REGISTER_ITEM(HealthSmall, Health) { this.m_sound = SND_HealthSmall; #endif this.netname = "health_small"; - this.m_name = _("small health"); + this.m_name = _("Small health"); this.m_icon = "health"; #ifdef SVQC this.m_itemid = IT_5HP; @@ -77,7 +77,7 @@ REGISTER_ITEM(HealthMedium, Health) { this.m_sound = SND_HealthMedium; #endif this.netname = "health_medium"; - this.m_name = _("medium health"); + this.m_name = _("Medium health"); this.m_icon = "health"; #ifdef SVQC this.m_itemid = IT_25HP; @@ -115,7 +115,7 @@ REGISTER_ITEM(HealthBig, Health) { this.m_sound = SND_HealthBig; #endif this.netname = "health_big"; - this.m_name = _("big health"); + this.m_name = _("Big health"); this.m_icon = "health"; this.m_color = '1 0 0'; this.m_waypoint = _("Big health");