Web+: Fix bookmark bar for localized systems

The folder name "Bookmark bar" should never be translated.
If it is, the folder won't be found, the bookmark bar never shown and
the menu item "Show bookmark bar" always disabled.

Change-Id: I0fb5bc6d4027c7fa957205c1da72c2fabd9e122e
Reviewed-on: https://review.haiku-os.org/c/haiku/+/7204
Reviewed-by: waddlesplash <waddlesplash@gmail.com>
This commit is contained in:
Humdinger 2023-12-11 19:30:38 +01:00 committed by waddlesplash
parent fc786a2f07
commit f362628248

View File

@ -146,7 +146,7 @@ static const char* kHandledProtocols[] = {
"gopher"
};
static const char* kBookmarkBarSubdir = B_TRANSLATE("Bookmark bar");
static const char* kBookmarkBarSubdir = "Bookmark bar";
static BLayoutItem*
layoutItemFor(BView* view)