one word (issue 594)
This commit is contained in:
@@ -31,7 +31,10 @@ local t = Def.ActorFrame{
|
||||
local song = GAMESTATE:GetCurrentSong();
|
||||
local text = "";
|
||||
if song then
|
||||
text = song:GetDisplayArtist().." - "..song:GetDisplayFullTitle().." [from "..song:GetGroupName().."]";
|
||||
local artist = song:GetDisplayArtist()
|
||||
local title = song:GetDisplayFullTitle()
|
||||
local group = song:GetGroupName()
|
||||
text = string.format(Screen.String("%s - %s [from %s]"),artist,title,group)
|
||||
end;
|
||||
self:settext(text);
|
||||
end;
|
||||
|
||||
@@ -28,6 +28,7 @@ DoublesPremiumSecondary=Play doubles for one credit!
|
||||
|
||||
[ScreenDemonstration]
|
||||
Demonstration=Demonstration
|
||||
%s - %s [from %s]=%s - %s [from %s]
|
||||
|
||||
[ScreenQuickSetupOverview]
|
||||
Explanation=Quick Setup provides a easy way to set commonly-changed and useful preferences.
|
||||
|
||||
Reference in New Issue
Block a user