From acd0ce337e84c4ce09fff53e241c8e2d6e06dc7d Mon Sep 17 00:00:00 2001 From: skymike03 Date: Thu, 2 Oct 2025 18:58:24 +0200 Subject: [PATCH] correct language bug on forein languages --- ports/RGSX/__main__.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ports/RGSX/__main__.py b/ports/RGSX/__main__.py index 5c8e4ce..300a276 100644 --- a/ports/RGSX/__main__.py +++ b/ports/RGSX/__main__.py @@ -162,8 +162,8 @@ config.init_font() # Mise à jour de la résolution dans config config.screen_width, config.screen_height = pygame.display.get_surface().get_size() -logger.debug(f"Résolution d'écran : {config.screen_width}x{config.screen_height}") -print(f"Résolution écran validée: {config.screen_width}x{config.screen_height}") +logger.debug(f"Resolution d'ecran : {config.screen_width}x{config.screen_height}") +print(f"Resolution ecran validee: {config.screen_width}x{config.screen_height}") # Afficher un premier écran de chargement immédiatement pour éviter un écran noir try: @@ -176,7 +176,7 @@ try: pygame.display.flip() pygame.event.pump() except Exception as e: - logger.debug(f"Impossible d'afficher l'écran de chargement initial: {e}") + logger.debug(f"Impossible d'afficher l'ecran de chargement initial: {e}") # Détection des joysticks après init_display (plus stable sur Batocera) try: @@ -213,8 +213,8 @@ else: # Des joysticks sont présents: activer le mode joystick et mémoriser le nom pour l'auto-préréglage config.joystick = True config.keyboard = False - print("Joystick détecté:", ", ".join(joystick_names)) - logger.debug(f"Joysticks détectés: {joystick_names}") + print("Joystick detecte:", ", ".join(joystick_names)) + logger.debug(f"Joysticks detectes: {joystick_names}")