From 8812d3fb0ee276c4598cebb0f72ee6fd9b1562ab Mon Sep 17 00:00:00 2001 From: jpirnay Date: Wed, 15 Apr 2026 10:44:20 +0200 Subject: [PATCH] use correct string --- src/activities/home/GlobalBookmarksActivity.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/activities/home/GlobalBookmarksActivity.cpp b/src/activities/home/GlobalBookmarksActivity.cpp index 79c2ce86..d40482a9 100644 --- a/src/activities/home/GlobalBookmarksActivity.cpp +++ b/src/activities/home/GlobalBookmarksActivity.cpp @@ -272,7 +272,7 @@ void GlobalBookmarksActivity::render(RenderLock&&) { if (rows.empty()) { renderer.drawText(UI_10_FONT_ID, contentRect.x + metrics.contentSidePadding, contentTop + 20, - tr(STR_NO_STARRED_PAGES)); + tr(STR_NO_GLOBAL_BOOKMARKS)); } else { GUI.drawList(renderer, Rect{contentRect.x, contentTop, contentRect.width, contentHeight}, static_cast(rows.size()), selectorIndex, [this](int index) { return getRowTitle(index); });