summaryrefslogtreecommitdiff
path: root/noncore/games/kbill/UI.cpp
Unidiff
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) {
71 kill_timer(); 71 kill_timer();
72 switch (dialog) { 72 switch (dialog) {
73 case Game::ENDGAME: 73 case Game::ENDGAME:
74 QMessageBox::message(("Endgame"), (endgamestr)); 74 QMessageBox::message(("Endgame"), QT_TR_NOOP(endgamestr));
75 break; 75 break;
76 case Game::HIGHSCORE: 76 case Game::HIGHSCORE:
77 //QMessageBox::message(("HighScore"), highscorestr); 77 //QMessageBox::message(("HighScore"), highscorestr);
78 break; 78 break;
79 case Game::ENTERNAME: { 79 case Game::ENTERNAME: {
80 InputBox b(main, 0, ("Enter Name"), (enternamestr)); 80 InputBox b(main, 0, ("Enter Name"), QT_TR_NOOP(enternamestr));
81 bool state = b.exec() == 2; 81 bool state = b.exec() == 2;
82 char str[20], *nl; 82 char str[20], *nl;
83 strcpy(str, b.getText()); 83 strcpy(str, b.getText());
@@ -171,5 +171,5 @@ void UI::update_hsbox(char *str) {
171} 171}
172 172
173void UI::update_scorebox(int level, int score) { 173void UI::update_scorebox(int level, int score) {
174 scorestr.sprintf ("%s %d:\n%s: %d", ("After Level"), level, ("Your score"), score); 174 scorestr.sprintf ("%s %d:\n%s: %d", QT_TR_NOOP("After Level"), level, QT_TR_NOOP("Your score"), score);
175} 175}