machine/personal record now uses localized text
This commit is contained in:
@@ -5,7 +5,7 @@ local record = stats:GetMachineHighScoreIndex()
|
|||||||
local hasMachineRecord = record ~= -1
|
local hasMachineRecord = record ~= -1
|
||||||
|
|
||||||
return LoadFont("Common normal")..{
|
return LoadFont("Common normal")..{
|
||||||
Text=string.format("Machine Record #%i!", record+1);
|
Text=string.format(THEME:GetString("ScreenEvaluation", "MachineRecord"), record+1)string.format(THEME:GetString( "ScreenEvaluation", "Machine Record" ), record+1)
|
||||||
InitCommand=cmd(zoom,0.55;shadowlength,1;NoStroke;glowshift;effectcolor1,color("1,1,1,0");effectcolor2,color("1,1,1,0.25"));
|
InitCommand=cmd(zoom,0.55;shadowlength,1;NoStroke;glowshift;effectcolor1,color("1,1,1,0");effectcolor2,color("1,1,1,0.25"));
|
||||||
BeginCommand=cmd(visible,hasMachineRecord;);
|
BeginCommand=cmd(visible,hasMachineRecord;);
|
||||||
};
|
};
|
||||||
@@ -5,7 +5,7 @@ local record = stats:GetPersonalHighScoreIndex()
|
|||||||
local hasPersonalRecord = record ~= -1
|
local hasPersonalRecord = record ~= -1
|
||||||
|
|
||||||
return LoadFont("Common normal")..{
|
return LoadFont("Common normal")..{
|
||||||
Text=string.format("Personal Record #%i!", record+1);
|
Text=string.format(THEME:GetString("ScreenEvaluation", "PersonalRecord"), record+1)
|
||||||
InitCommand=cmd(zoom,0.55;shadowlength,1;NoStroke;glowshift;effectcolor1,color("1,1,1,0");effectcolor2,color("1,1,1,0.25"));
|
InitCommand=cmd(zoom,0.55;shadowlength,1;NoStroke;glowshift;effectcolor1,color("1,1,1,0");effectcolor2,color("1,1,1,0.25"));
|
||||||
BeginCommand=cmd(visible,hasPersonalRecord;);
|
BeginCommand=cmd(visible,hasPersonalRecord;);
|
||||||
};
|
};
|
||||||
@@ -80,6 +80,8 @@ HelpText=
|
|||||||
HelpText=&BACK; Exit &START; Move On &MENULEFT;+&MENURIGHT; or &SELECT; Snapshot
|
HelpText=&BACK; Exit &START; Move On &MENULEFT;+&MENURIGHT; or &SELECT; Snapshot
|
||||||
LifeDifficulty=Life Difficulty: %s
|
LifeDifficulty=Life Difficulty: %s
|
||||||
TimingDifficulty=Timing Difficulty: %s
|
TimingDifficulty=Timing Difficulty: %s
|
||||||
|
MachineRecord=Machine Record #%i!
|
||||||
|
PersonalRecord=Personal Record #%i!
|
||||||
|
|
||||||
[OptionTitles]
|
[OptionTitles]
|
||||||
UserPrefAutoSetStyle=Auto Set Style
|
UserPrefAutoSetStyle=Auto Set Style
|
||||||
|
|||||||
Reference in New Issue
Block a user