Bugzilla – Bug 5546
Use player name on Settings Info item
Last modified: 2007-10-30 09:37:02 UTC
Instead of "Player Info" it should be "Kitchen Info" or whatever the player name is. Also see bug 4481
This affects both the menu item and the title on the info menu. Index: ../../trunk/Slim/Plugin/Jive/Plugin.pm =================================================================== --- ../../trunk/Slim/Plugin/Jive/Plugin.pm (revision 13215) +++ ../../trunk/Slim/Plugin/Jive/Plugin.pm (working copy) @@ -653,7 +653,7 @@ # information, always display push @menu, { - text => Slim::Utils::Strings::string('INFORMATION_MENU_PLAYER'), + text => $client->name()." ".Slim::Utils::Strings::string('INFORMATION'), offset => 0, count => 1, textArea =>
fixed in r13239 FWIW, I'm trying not to cobble strings together on the fly, as different languages have different rules for word ordering. Instead I'm using %s in the strings.txt file and using sprintf() to construct the string.