stringtable Cleanup

This commit is contained in:
jokoho48 2015-08-22 22:50:36 +02:00
parent 9d0f3c7f5b
commit 29cc4c2697

View File

@ -63,15 +63,15 @@ class GVAR(medicalMenu) {
colorText[] = {1, 1, 1.0, 0.9}; colorText[] = {1, 1, 1.0, 0.9};
colorBackground[] = {0,0,0,0}; colorBackground[] = {0,0,0,0};
SizeEx = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1.2)"; SizeEx = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1.2)";
text = $STR_ACE_Medical_Menu_EXAMINE_TREATMENT; text = CSTRING(EXAMINE_TREATMENT);
}; };
class CatagoryCenter: CatagoryLeft { class CatagoryCenter: CatagoryLeft {
x = "13.33 * (((safezoneW / safezoneH) min 1.2) / 40) + (safezoneX + (safezoneW - ((safezoneW / safezoneH) min 1.2))/2)"; x = "13.33 * (((safezoneW / safezoneH) min 1.2) / 40) + (safezoneX + (safezoneW - ((safezoneW / safezoneH) min 1.2))/2)";
text = $STR_ACE_Medical_Menu_STATUS; text = CSTRING(STATUS);
}; };
class CatagoryRight: CatagoryCenter{ class CatagoryRight: CatagoryCenter{
x = "25.66 * (((safezoneW / safezoneH) min 1.2) / 40) + (safezoneX + (safezoneW - ((safezoneW / safezoneH) min 1.2))/2)"; x = "25.66 * (((safezoneW / safezoneH) min 1.2) / 40) + (safezoneX + (safezoneW - ((safezoneW / safezoneH) min 1.2))/2)";
text = $STR_ACE_Medical_Menu_OVERVIEW; text = CSTRING(OVERVIEW);
}; };
class Line: ACE_gui_backgroundBase { class Line: ACE_gui_backgroundBase {
idc = -1; idc = -1;
@ -404,11 +404,11 @@ class GVAR(medicalMenu) {
colorText[] = {0.6, 0.7, 1.0, 1}; colorText[] = {0.6, 0.7, 1.0, 1};
colorBackground[] = {0,0,0,0}; colorBackground[] = {0,0,0,0};
SizeEx = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1)"; SizeEx = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 1)";
text = $STR_ACE_Medical_Menu_ACTIVITY_LOG; text = CSTRING(ACTIVITY_LOG);
}; };
class QuickViewHeader: ActivityLogHeader { class QuickViewHeader: ActivityLogHeader {
x = "19.5 * (((safezoneW / safezoneH) min 1.2) / 40) + (safezoneX + (safezoneW - ((safezoneW / safezoneH) min 1.2))/2)"; x = "19.5 * (((safezoneW / safezoneH) min 1.2) / 40) + (safezoneX + (safezoneW - ((safezoneW / safezoneH) min 1.2))/2)";
text = $STR_ACE_Medical_Menu_QUICK_VIEW; text = CSTRING(QUICK_VIEW);
}; };
class LineBottomHeaders: Line { class LineBottomHeaders: Line {
y = "19.5 * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) + (safezoneY + (safezoneH - (((safezoneW / safezoneH) min 1.2) / 1.2))/2)"; y = "19.5 * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) + (safezoneY + (safezoneH - (((safezoneW / safezoneH) min 1.2) / 1.2))/2)";