mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
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.
This commit is contained in:
@@ -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),
|
||||
|
||||
Reference in New Issue
Block a user