diff --git a/sysmodules/rosalina/source/menus/cheats.c b/sysmodules/rosalina/source/menus/cheats.c index e1515c4b..d37b0b2e 100755 --- a/sysmodules/rosalina/source/menus/cheats.c +++ b/sysmodules/rosalina/source/menus/cheats.c @@ -2046,14 +2046,14 @@ void RosalinaMenu_Cheats(void) do { Draw_Lock(); - Draw_DrawString(10, 10, COLOR_TITLE, "Cheats"); + Draw_DrawString(10, 10, COLOR_TITLE, "Trucchi"); if (titleId == 0) { - Draw_DrawString(10, 30, COLOR_WHITE, "No suitable title found"); + Draw_DrawString(10, 30, COLOR_WHITE, "Nessun titolo avente trucchi trovato"); } else { - Draw_DrawFormattedString(10, 30, COLOR_WHITE, "No cheats found for title %016llX", titleId); + Draw_DrawFormattedString(10, 30, COLOR_WHITE, "Nessun trucco trovato per il titolo %016llX", titleId); } Draw_FlushFramebuffer(); @@ -2074,7 +2074,7 @@ void RosalinaMenu_Cheats(void) } if (R_SUCCEEDED(r)) { - Draw_DrawFormattedString(10, 10, COLOR_TITLE, "Cheat list"); + Draw_DrawFormattedString(10, 10, COLOR_TITLE, "Lista trucchi"); for (s32 i = 0; i < CHEATS_PER_MENU_PAGE && page * CHEATS_PER_MENU_PAGE + i < cheatCount; i++) { @@ -2090,7 +2090,7 @@ void RosalinaMenu_Cheats(void) } else { - Draw_DrawFormattedString(10, 10, COLOR_TITLE, "ERROR: %08lx", r); + Draw_DrawFormattedString(10, 10, COLOR_TITLE, "ERRORE: %08lx", r); Draw_DrawFormattedString(10, 30, COLOR_RED, failureReason); } Draw_FlushFramebuffer();