2
0
mirror of https://github.com/koreader/koreader synced 2024-11-10 01:10:34 +00:00

Fix "Info on dictionaries ordering" string for translation (#3156)

This commit is contained in:
poire-z 2017-09-01 20:42:03 +02:00 committed by Frans de Jonge
parent 103afea9e0
commit 6efcfce479

View File

@ -162,13 +162,13 @@ function ReaderDictionary:addToMainMenu(menu_items)
sub_item_table = self:genDictionariesMenu(), sub_item_table = self:genDictionariesMenu(),
}, },
{ {
text = _("Info on dictionaries ordering"), text = _("Info on dictionary order"),
callback = function() callback = function()
UIManager:show(InfoMessage:new{ UIManager:show(InfoMessage:new{
text = T(_("If you'd like to change the order in which dictionaries are queried (and their results displayed), you can:\n".. text = T(_([[
"- move all dictionary directories out of %1.\n".. If you'd like to change the order in which dictionaries are queried (and their results displayed), you can:
"- move them back there, one by one, in the order you want them to be used." - move all dictionary directories out of %1.
), self.data_dir) - move them back there, one by one, in the order you want them to be used.]]), self.data_dir)
}) })
end end
}, },