From 0360d0ff1f987ebe990f80b2e544e8d3089ef000 Mon Sep 17 00:00:00 2001 From: Pihkaal Date: Tue, 10 Feb 2026 14:23:03 +0100 Subject: [PATCH] feat(settings/options/renderingMode): update text --- .../Settings/BottomScreen/Menus/Options/RenderingMode.vue | 3 ++- i18n/locales/en.json | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/app/components/Settings/BottomScreen/Menus/Options/RenderingMode.vue b/app/components/Settings/BottomScreen/Menus/Options/RenderingMode.vue index fa6a4cf..b0fa5c1 100644 --- a/app/components/Settings/BottomScreen/Menus/Options/RenderingMode.vue +++ b/app/components/Settings/BottomScreen/Menus/Options/RenderingMode.vue @@ -148,7 +148,8 @@ onRender((ctx) => { bodyImg.draw(ctx, 0, HEADER_HEIGHT - 2, colorOpts); ctx.fillStyle = "#282828"; - const text = $t("settings.options.renderingMode.autoStart"); + const descKey = key === "_3dMode" ? "3dDescription" : "2dDescription"; + const text = $t(`settings.options.renderingMode.${descKey}`); fillTextHCenteredMultiline(ctx, text, 0, y, buttonWidth, 15); ctx.translate(0, animation[key].headerOffsetY); diff --git a/i18n/locales/en.json b/i18n/locales/en.json index 331cdb6..e66d8d6 100644 --- a/i18n/locales/en.json +++ b/i18n/locales/en.json @@ -54,7 +54,8 @@ "description": "Change the app rendering mode\nbetween 2D and 3D.", "3dMode": "3D Mode", "2dMode": "2D Mode", - "autoStart": "Choose how the app renders.\n3D uses the interactive NDS model.\n2D uses flat canvas screens.", + "3dDescription": "Full 3D experience with\nthe interactive NDS model.\nBest on powerful devices.", + "2dDescription": "Lightweight flat experience.\nFaster and less resource heavy.\nRecommended if 3D mode is lagging.", "confirmation3d": "Rendering mode set to 3D", "confirmation2d": "Rendering mode set to 2D" },