Added missing string to the pot

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@4528 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
auria 2010-01-24 15:34:46 +00:00
parent 9a38037f10
commit 0e9266fd1c
2 changed files with 9 additions and 3 deletions

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-01-15 19:02-0500\n"
"POT-Creation-Date: 2010-01-24 10:33-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -22,6 +22,12 @@ msgstr ""
msgid "%i laps"
msgstr ""
#. I18N: as in "fastest lap: 60 seconds by Wilber"
#: src/modes/linear_world.cpp:263
#, c-format
msgid "%s by %s"
msgstr ""
#: src/states_screens/kart_selection.cpp:417
#, c-format
msgid "%s is ready"

View File

@ -259,8 +259,8 @@ void LinearWorld::newLap(unsigned int kart_index)
std::string s = StringUtils::timeToString(time_per_lap);
irr::core::stringw m_fastest_lap_message;
m_fastest_lap_message += (s + " by ").c_str();
m_fastest_lap_message += kart->getName();
//I18N: as in "fastest lap: 60 seconds by Wilber"
m_fastest_lap_message += StringUtils::insertValues(_("%s by %s"), s.c_str(), kart->getName().c_str()).c_str();
m_race_gui->addMessage(m_fastest_lap_message, NULL,
2.0f, 40, video::SColor(255, 100, 210, 100));