one word (issue 594)

This commit is contained in:
AJ Kelly
2011-10-15 15:56:14 -05:00
parent acf5662962
commit 46679ec215
2 changed files with 5 additions and 1 deletions
@@ -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;
+1
View File
@@ -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.