Added i18n comment so that it people will know what this string is

about.


git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@8795 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
hikerstk 2011-06-01 01:52:59 +00:00
parent 01520d4b1b
commit 4d3b1d5d2e

View File

@ -128,7 +128,8 @@ void AddonsScreen::loadList()
if(addon->getDesigner().size()==0)
s = (addon->getName()+"\t"+addon->getDateAsString()).c_str();
else
s = _("%s by %s\t%d", addon->getName().c_str(),
//I18N: as in: The Old Island by Johannes Sjolund\t27.04.2011
s = _("%s by %s\t%s", addon->getName().c_str(),
addon->getDesigner().c_str(),
addon->getDateAsString().c_str());
w_list->addItem(addon->getId(), s.c_str(), icon);