diff --git a/romfs/i18n/en-US/about_tab.json b/romfs/i18n/en-US/about_tab.json index be32294..1a39ce8 100644 --- a/romfs/i18n/en-US/about_tab.json +++ b/romfs/i18n/en-US/about_tab.json @@ -24,8 +24,7 @@ "line_07": "\uE016 The folks from NSWDB.COM and No-Intro.org, for being kind enough to put up public APIs to perform online checksum lookups.", "line_08": "\uE016 The folks at the nxdumptool Discord server.", "line_09": "\uE016 The Comfy Boyes, for always being awesome and supportive. You know who you are.", - "line_10": "\uE016 AndreĆ­na, for always being by my side and motivating me to keep working on all my projects.", - "line_11": "\uE016 And, at last but not least, you! Thank you for using my work!" + "line_10": "\uE016 And, at last but not least, you! Thank you for using my work!" }, "links": { diff --git a/source/about_tab.cpp b/source/about_tab.cpp index 966d2ce..2b781e5 100644 --- a/source/about_tab.cpp +++ b/source/about_tab.cpp @@ -62,7 +62,7 @@ namespace nxdt::views /* Acknowledgments. */ this->addView(new brls::Header("about_tab/acknowledgments/header"_i18n)); for(int i = 0; i < 8; i++) this->addView(new AboutTabLabel(brls::LabelStyle::SMALL, i18n::getStr(fmt::format("about_tab/acknowledgments/line_{:02d}", i)), false)); - for(int i = 8; i < 12; i++) this->addView(new brls::Label(brls::LabelStyle::SMALL, i18n::getStr(fmt::format("about_tab/acknowledgments/line_{:02d}", i)), true)); + for(int i = 8; i < 11; i++) this->addView(new brls::Label(brls::LabelStyle::SMALL, i18n::getStr(fmt::format("about_tab/acknowledgments/line_{:02d}", i)), true)); /* Additional links and resources. */ this->addView(new brls::Header("about_tab/links/header"_i18n));