Cleanup localization calls (no quotes around $STR)

This commit is contained in:
dayz10k
2013-11-21 10:27:52 -05:00
parent ccd95799d1
commit ba921db57b

View File

@@ -746,7 +746,7 @@ class RscDisplayGenderSelect
class Gender_Title: RscStructuredText class Gender_Title: RscStructuredText
{ {
idc = -1; idc = -1;
text = "$STR_UI_GENDER_TITLE"; text = $STR_UI_GENDER_TITLE;
x = 0.4 * safezoneW + safezoneX; x = 0.4 * safezoneW + safezoneX;
y = 0.221864 * safezoneH + safezoneY; y = 0.221864 * safezoneH + safezoneY;
w = 0.2 * safezoneW; w = 0.2 * safezoneW;
@@ -756,7 +756,7 @@ class RscDisplayGenderSelect
class Gender_Description: RscStructuredText class Gender_Description: RscStructuredText
{ {
idc = -1; idc = -1;
text = "$STR_UI_GENDER_DESC"; text = $STR_UI_GENDER_DESC;
x = 0.4 * safezoneW + safezoneX; x = 0.4 * safezoneW + safezoneX;
y = 0.366134 * safezoneH + safezoneY; y = 0.366134 * safezoneH + safezoneY;
w = 0.2 * safezoneW; w = 0.2 * safezoneW;
@@ -834,7 +834,7 @@ class RscDisplayMPInterrupt : RscStandardDisplay {
class CA_B_REVERT : CA_B_SAVE { class CA_B_REVERT : CA_B_SAVE {
idc = 119; idc = 119;
y = 0.2537 + 0.101903 * 1; y = 0.2537 + 0.101903 * 1;
text = "$str_disp_revert"; text = $str_disp_revert;
default = 0; default = 0;
}; };
@@ -1643,4 +1643,4 @@ class DZ_ItemInteraction {
#include "RscDisplay\RscDisplaySpawnSelecter.hpp" #include "RscDisplay\RscDisplaySpawnSelecter.hpp"
#endif #endif
#include "RscDisplay\RscMap.hpp" #include "RscDisplay\RscMap.hpp"