From 4d3b1d5d2e951f25ffe94cf82916c6f522f94efb Mon Sep 17 00:00:00 2001 From: hikerstk Date: Wed, 1 Jun 2011 01:52:59 +0000 Subject: [PATCH] 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 --- src/states_screens/addons_screen.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/states_screens/addons_screen.cpp b/src/states_screens/addons_screen.cpp index d3360d48c..fdc3a5c75 100644 --- a/src/states_screens/addons_screen.cpp +++ b/src/states_screens/addons_screen.cpp @@ -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);