mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
This introduces context to our strings to differentiate them when necessary. The syntax chosen is `C_()`, following [glib](https://developer.gnome.org/glib/2.28/glib-I18N.html#C-:CAPS). ```lua local _ = require("gettext") local C_ = _.pgettext C_("Menu|StyleTweaks|", "Pages") ``` Closes #5232.