|
From: Fredrik K. <sci...@us...> - 2010-10-23 13:11:35
|
Module: performous
Branch: master
Commit: 4ae18750bd0677857af24e05b8f2d68a13ded258
Author: Fredrik Klasson <sci...@gm...>
Date: Sat Oct 23 15:10:07 2010 +0200
[ ] These two strings should be gettext'd too.
---
game/database.cc | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/game/database.cc b/game/database.cc
index 3d4ee32..36ce48b 100644
--- a/game/database.cc
+++ b/game/database.cc
@@ -124,8 +124,8 @@ void Database::queryPerSongHiscore_HiscoreDisplay (std::ostream & os, boost::sha
if (songid == -1 || hi.empty())
{
- os << "No Items up to now.\n";
- os << "Be the first to be listed here!\n";
+ os << _("No Items up to now.") << '\n';
+ os << _("Be the first to be listed here!") << '\n';
return;
}
|