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:
parent
9a38037f10
commit
0e9266fd1c
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \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"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@ -22,6 +22,12 @@ msgstr ""
|
|||||||
msgid "%i laps"
|
msgid "%i laps"
|
||||||
msgstr ""
|
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
|
#: src/states_screens/kart_selection.cpp:417
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%s is ready"
|
msgid "%s is ready"
|
||||||
|
@ -259,8 +259,8 @@ void LinearWorld::newLap(unsigned int kart_index)
|
|||||||
std::string s = StringUtils::timeToString(time_per_lap);
|
std::string s = StringUtils::timeToString(time_per_lap);
|
||||||
|
|
||||||
irr::core::stringw m_fastest_lap_message;
|
irr::core::stringw m_fastest_lap_message;
|
||||||
m_fastest_lap_message += (s + " by ").c_str();
|
//I18N: as in "fastest lap: 60 seconds by Wilber"
|
||||||
m_fastest_lap_message += kart->getName();
|
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,
|
m_race_gui->addMessage(m_fastest_lap_message, NULL,
|
||||||
2.0f, 40, video::SColor(255, 100, 210, 100));
|
2.0f, 40, video::SColor(255, 100, 210, 100));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user