Traducidas las notificaciones a los tres idiomas

This commit is contained in:
2023-02-12 22:40:01 +01:00
parent ec9572175f
commit 3fa7324569
6 changed files with 95 additions and 75 deletions

View File

@@ -780,12 +780,12 @@ bool Game::sendOnlineScore()
if (jscore::updateUserPoints(options->online.gameID, options->online.jailerID, score))
{
options->online.score = score;
screen->showNotification("PUNTUACION ENVIADA: " + std::to_string(score) + " PUNTOS");
screen->showNotification(lang->getText(86) + std::to_string(score), "", 2);
return true;
}
else
{
screen->showNotification("NO SE HA PODIDO ENVIAR LA PUNTUACION");
screen->showNotification(lang->getText(86), lang->getText(87));
return false;
}
}