strings not shown on GUI will not be translated

This may encourage users in transifex to join Koreader project.
This commit is contained in:
chrox
2014-06-05 14:58:53 +08:00
parent 427da958cb
commit 857bd6fcc8
22 changed files with 80 additions and 401 deletions

View File

@@ -25,22 +25,22 @@ function ReaderFont:init()
if Device:hasKeyboard() then
-- add shortcut for keyboard
self.key_events = {
ShowFontMenu = { {"F"}, doc = _("show font menu") },
ShowFontMenu = { {"F"}, doc = "show font menu" },
IncreaseSize = {
{ "Shift", Input.group.PgFwd },
doc = _("increase font size"),
doc = "increase font size",
event = "ChangeSize", args = "increase" },
DecreaseSize = {
{ "Shift", Input.group.PgBack },
doc = _("decrease font size"),
doc = "decrease font size",
event = "ChangeSize", args = "decrease" },
IncreaseLineSpace = {
{ "Alt", Input.group.PgFwd },
doc = _("increase line space"),
doc = "increase line space",
event = "ChangeLineSpace", args = "increase" },
DecreaseLineSpace = {
{ "Alt", Input.group.PgBack },
doc = _("decrease line space"),
doc = "decrease line space",
event = "ChangeLineSpace", args = "decrease" },
}
end