From 3133cb5b322f70e0f0b8b3b1d4ea6d4c57d34d83 Mon Sep 17 00:00:00 2001 From: xujibbs <79200793+xujibbs@users.noreply.github.com> Date: Sun, 18 Aug 2024 09:02:22 +0800 Subject: [PATCH] Update fullscreen_ui.cpp Make "version" in Big picture translatable --- src/core/fullscreen_ui.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core/fullscreen_ui.cpp b/src/core/fullscreen_ui.cpp index d4b5f5eee..0b9358470 100644 --- a/src/core/fullscreen_ui.cpp +++ b/src/core/fullscreen_ui.cpp @@ -7054,7 +7054,7 @@ void FullscreenUI::DrawAboutWindow() FSUI_CSTR("DuckStation is a free and open-source simulator/emulator of the Sony PlayStation(TM) " "console, focusing on playability, speed, and long-term maintainability.")); ImGui::NewLine(); - ImGui::TextWrapped("Version: %s", g_scm_tag_str); + ImGui::TextWrapped(FSUI_CSTR("Version: %s"), g_scm_tag_str); ImGui::NewLine(); ImGui::TextWrapped( "%s", FSUI_CSTR("Duck icon by icons8 (https://icons8.com/icon/74847/platforms.undefined.short-title)")); @@ -7855,5 +7855,6 @@ TRANSLATE_NOOP("FullscreenUI", "{} Frames"); TRANSLATE_NOOP("FullscreenUI", "{} deleted."); TRANSLATE_NOOP("FullscreenUI", "{} does not exist."); TRANSLATE_NOOP("FullscreenUI", "{} is not a valid disc image."); +TRANSLATE_NOOP("FullscreenUI", "Version: %s"); // TRANSLATION-STRING-AREA-END #endif