summaryrefslogtreecommitdiff
path: root/noncore/games/kbill/UI.cpp
authorfbarros <fbarros>2002-07-18 05:04:14 (UTC)
committer fbarros <fbarros>2002-07-18 05:04:14 (UTC)
commit09065b0d3a4ef8c50aa4c06f6cba25f5d6ff7557 (patch) (side-by-side diff)
treec5c8adb63fe657730dd2ae8fbfadfecdc5acd722 /noncore/games/kbill/UI.cpp
parent0559e149a7a07463a5eeab8bc6a5792bba14326b (diff)
downloadopie-09065b0d3a4ef8c50aa4c06f6cba25f5d6ff7557.zip
opie-09065b0d3a4ef8c50aa4c06f6cba25f5d6ff7557.tar.gz
opie-09065b0d3a4ef8c50aa4c06f6cba25f5d6ff7557.tar.bz2
a few tr() for translating
Diffstat (limited to 'noncore/games/kbill/UI.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/games/kbill/UI.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/noncore/games/kbill/UI.cpp b/noncore/games/kbill/UI.cpp
index fac731a..2afaf9b 100644
--- a/noncore/games/kbill/UI.cpp
+++ b/noncore/games/kbill/UI.cpp
@@ -71,13 +71,13 @@ void UI::popup_dialog (int dialog) {
kill_timer();
switch (dialog) {
case Game::ENDGAME:
- QMessageBox::message(("Endgame"), (endgamestr));
+ QMessageBox::message(("Endgame"), QT_TR_NOOP(endgamestr));
break;
case Game::HIGHSCORE:
// QMessageBox::message(("HighScore"), highscorestr);
break;
case Game::ENTERNAME: {
- InputBox b(main, 0, ("Enter Name"), (enternamestr));
+ InputBox b(main, 0, ("Enter Name"), QT_TR_NOOP(enternamestr));
bool state = b.exec() == 2;
char str[20], *nl;
strcpy(str, b.getText());
@@ -171,5 +171,5 @@ void UI::update_hsbox(char *str) {
}
void UI::update_scorebox(int level, int score) {
- scorestr.sprintf ("%s %d:\n%s: %d", ("After Level"), level, ("Your score"), score);
+ scorestr.sprintf ("%s %d:\n%s: %d", QT_TR_NOOP("After Level"), level, QT_TR_NOOP("Your score"), score);
}