From 6efcfce479425a69161b2cdde54c9f2298d7abcf Mon Sep 17 00:00:00 2001 From: poire-z Date: Fri, 1 Sep 2017 20:42:03 +0200 Subject: [PATCH] Fix "Info on dictionaries ordering" string for translation (#3156) --- frontend/apps/reader/modules/readerdictionary.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/apps/reader/modules/readerdictionary.lua b/frontend/apps/reader/modules/readerdictionary.lua index c7dde233f..b16e73670 100644 --- a/frontend/apps/reader/modules/readerdictionary.lua +++ b/frontend/apps/reader/modules/readerdictionary.lua @@ -162,13 +162,13 @@ function ReaderDictionary:addToMainMenu(menu_items) sub_item_table = self:genDictionariesMenu(), }, { - text = _("Info on dictionaries ordering"), + text = _("Info on dictionary order"), callback = function() 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".. - "- move all dictionary directories out of %1.\n".. - "- move them back there, one by one, in the order you want them to be used." - ), self.data_dir) + text = T(_([[ +If you'd like to change the order in which dictionaries are queried (and their results displayed), you can: +- move all dictionary directories out of %1. +- move them back there, one by one, in the order you want them to be used.]]), self.data_dir) }) end },