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

@@ -19,16 +19,16 @@ function ReaderPanning:init()
self.key_events = {
-- these will all generate the same event, just with different arguments
MoveUp = {
{ "Up" }, doc = _("move visible area up"),
{ "Up" }, doc = "move visible area up",
event = "Panning", args = {0, -1} },
MoveDown = {
{ "Down" }, doc = _("move visible area down"),
{ "Down" }, doc = "move visible area down",
event = "Panning", args = {0, 1} },
MoveLeft = {
{ "Left" }, doc = _("move visible area left"),
{ "Left" }, doc = "move visible area left",
event = "Panning", args = {-1, 0} },
MoveRight = {
{ "Right" }, doc = _("move visible area right"),
{ "Right" }, doc = "move visible area right",
event = "Panning", args = {1, 0} },
}
end