From 9826615f06116c8371a28640f5256b642ce0a709 Mon Sep 17 00:00:00 2001 From: NiLuJe Date: Wed, 10 Jan 2024 20:24:21 +0100 Subject: [PATCH] i18n: Don't use Lua unicode escapes (#11330) Something in the gettext/weblate pipeline doesn't like it... These are real unicode codepoints, not custom nerdfont ones, so just render the actual glyph instead of escaping it. Fix #11328 Cf. #10845. --- frontend/ui/elements/screen_notification_menu_table.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/ui/elements/screen_notification_menu_table.lua b/frontend/ui/elements/screen_notification_menu_table.lua index 8912d6cc8..2a30f2be1 100644 --- a/frontend/ui/elements/screen_notification_menu_table.lua +++ b/frontend/ui/elements/screen_notification_menu_table.lua @@ -52,8 +52,8 @@ This allows selecting which to show or hide.]]), sub_item_table = { genMenuItem(Notification.SOURCE_BOTTOM_MENU_ICON, _("From bottom menu icons")), genMenuItem(Notification.SOURCE_BOTTOM_MENU_TOGGLE, _("From bottom menu toggles")), - genMenuItem(Notification.SOURCE_BOTTOM_MENU_FINE, _("From bottom menu \u{00b1} buttons")), -- Poor man's +/- w/ \u{207a}\u{2044}\u{208b} doesn't look too great because subscript minus sits on the baseline in most fonts... - genMenuItem(Notification.SOURCE_BOTTOM_MENU_MORE, _("From bottom menu \u{22ee} buttons")), -- vertical ellipsis + genMenuItem(Notification.SOURCE_BOTTOM_MENU_FINE, _("From bottom menu ± buttons")), -- Poor man's +/- w/ \u{207a}\u{2044}\u{208b} doesn't look too great because subscript minus sits on the baseline in most fonts... + genMenuItem(Notification.SOURCE_BOTTOM_MENU_MORE, _("From bottom menu ⋮ buttons")), genMenuItem(Notification.SOURCE_BOTTOM_MENU_PROGRESS, _("From bottom menu progress bars")), genMenuItem(Notification.SOURCE_DISPATCHER, _("From gestures and profiles")), genMenuItem(Notification.SOURCE_OTHER, _("From all other sources"), nil, true),