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