Mil millons de miniarreglos

Afegides traduccions faltants
This commit is contained in:
2024-09-26 22:13:20 +02:00
parent 69027f96e6
commit 05e3fddb8f
18 changed files with 173 additions and 28 deletions

View File

@@ -238,20 +238,20 @@ void Scoreboard::fillPanelTextures()
break;
case SCOREBOARD_MODE_DEMO:
textScoreBoard->writeCentered(slot4_1.x, slot4_1.y + 4, "Mode demostracio");
textScoreBoard->writeCentered(slot4_1.x, slot4_1.y + 4, lang::getText(101));
if (counter % 10 < 8)
{
textScoreBoard->writeCentered(slot4_3.x, slot4_3.y - 2, "Pulsa START");
textScoreBoard->writeCentered(slot4_4.x, slot4_4.y - 2, "per jugar");
textScoreBoard->writeCentered(slot4_3.x, slot4_3.y - 2, lang::getText(103));
textScoreBoard->writeCentered(slot4_4.x, slot4_4.y - 2, lang::getText(104));
}
break;
case SCOREBOARD_MODE_GAME_OVER:
textScoreBoard->writeCentered(slot4_1.x, slot4_1.y + 4, "Game Over");
textScoreBoard->writeCentered(slot4_1.x, slot4_1.y + 4, lang::getText(102));
if (counter % 10 < 8)
{
textScoreBoard->writeCentered(slot4_3.x, slot4_3.y - 2, "Pulsa START");
textScoreBoard->writeCentered(slot4_4.x, slot4_4.y - 2, "per jugar");
textScoreBoard->writeCentered(slot4_3.x, slot4_3.y - 2, lang::getText(103));
textScoreBoard->writeCentered(slot4_4.x, slot4_4.y - 2, lang::getText(104));
}
break;
@@ -276,7 +276,7 @@ void Scoreboard::fillPanelTextures()
textScoreBoard->writeCentered(slot4_2.x, slot4_2.y, updateScoreText(score[i]));
// CONTINUE
textScoreBoard->writeCentered(slot4_3.x, slot4_3.y, "Continuar?");
textScoreBoard->writeCentered(slot4_3.x, slot4_3.y, lang::getText(105));
textScoreBoard->writeCentered(slot4_4.x, slot4_4.y, std::to_string(continueCounter[i]));
break;