From 8932a5e765dbf4c0805b5a4adf2fbf6cbe93f9b9 Mon Sep 17 00:00:00 2001 From: Frans de Jonge Date: Mon, 17 Dec 2018 20:41:46 +0100 Subject: [PATCH] [fix, i18n] plugins/wallabag: make a few overlooked strings translateable (#4408) Notified on the forum https://www.mobileread.com/forums/showthread.php?p=3787617#post3787617 --- plugins/wallabag.koplugin/main.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/wallabag.koplugin/main.lua b/plugins/wallabag.koplugin/main.lua index 258a869d9..69247cbff 100644 --- a/plugins/wallabag.koplugin/main.lua +++ b/plugins/wallabag.koplugin/main.lua @@ -121,7 +121,7 @@ function Wallabag:addToMainMenu(menu_items) end, }, { - text = "Settings", + text = _("Settings"), callback_func = function() return nil end, @@ -137,7 +137,7 @@ function Wallabag:addToMainMenu(menu_items) text_func = function() local path if not self.directory or self.directory == "" then - path = "Not set" + path = _("Not set") else path = filemanagerutil.abbreviate(self.directory) end @@ -152,7 +152,7 @@ function Wallabag:addToMainMenu(menu_items) text_func = function() local filter if not self.filter_tag or self.filter_tag == "" then - filter = "All articles" + filter = _("All articles") else filter = self.filter_tag end