From ff4e2f3458e0ed54bf87c706609e354b1138cae9 Mon Sep 17 00:00:00 2001 From: Frans de Jonge Date: Wed, 12 Nov 2014 12:29:38 +0100 Subject: [PATCH] Minor English improvements. --- frontend/apps/filemanager/filemanagersetdefaults.lua | 6 +++--- frontend/apps/reader/modules/readerdictionary.lua | 2 +- frontend/apps/reader/modules/readergoto.lua | 2 +- frontend/ui/language.lua | 2 +- frontend/ui/networkmgr.lua | 4 ++-- frontend/ui/otamanager.lua | 8 ++++---- frontend/ui/widget/opdsbrowser.lua | 2 +- plugins/evernote.koplugin/main.lua | 2 +- 8 files changed, 14 insertions(+), 14 deletions(-) diff --git a/frontend/apps/filemanager/filemanagersetdefaults.lua b/frontend/apps/filemanager/filemanagersetdefaults.lua index b3a2facd8..6592f626e 100644 --- a/frontend/apps/filemanager/filemanagersetdefaults.lua +++ b/frontend/apps/filemanager/filemanagersetdefaults.lua @@ -47,7 +47,7 @@ end function SetDefaults:ConfirmEdit() if not SetDefaults.EditConfirmed then UIManager:show(ConfirmBox:new{ - text = _("Some changes will just work on the next restart. Wrong settings might crash Koreader! Continue?"), + text = _("Some changes will just work on the next restart. Wrong settings might crash KOReader! Continue?"), ok_callback = function() self.EditConfirmed = true self:init() @@ -277,7 +277,7 @@ end function SetDefaults:ConfirmSave() UIManager:show(ConfirmBox:new{ - text = _("Are you sure to save the settings to \"defaults.persistent.lua\"?"), + text = _("Are you sure you want to save the settings to \"defaults.persistent.lua\"?"), ok_callback = function() self:SaveSettings() end, @@ -353,7 +353,7 @@ function SetDefaults:SaveSettings() file:write(dpl[i] .. "\n") end file:close() - UIManager:show(InfoMessage:new{text = _("Default settings successfully saved!")}) + UIManager:show(InfoMessage:new{text = _("Default settings were saved successfully!")}) settings_changed = false end return SetDefaults diff --git a/frontend/apps/reader/modules/readerdictionary.lua b/frontend/apps/reader/modules/readerdictionary.lua index 692f4e5fb..d179b880f 100644 --- a/frontend/apps/reader/modules/readerdictionary.lua +++ b/frontend/apps/reader/modules/readerdictionary.lua @@ -17,7 +17,7 @@ function ReaderDictionary:addToMainMenu(tab_item_table) table.insert(tab_item_table.plugins, { text = _("Dictionary lookup"), tap_input = { - title = _("Input word to lookup"), + title = _("Enter word to look up"), type = "text", callback = function(input) self:onLookupWord(input) diff --git a/frontend/apps/reader/modules/readergoto.lua b/frontend/apps/reader/modules/readergoto.lua index 9abff8f09..a66ab269f 100644 --- a/frontend/apps/reader/modules/readergoto.lua +++ b/frontend/apps/reader/modules/readergoto.lua @@ -7,7 +7,7 @@ local DEBUG = require("dbg") local _ = require("gettext") local ReaderGoto = InputContainer:new{ - goto_menu_title = _("Go To"), + goto_menu_title = _("Go to"), goto_dialog_title = _("Go to Page or Location"), } diff --git a/frontend/ui/language.lua b/frontend/ui/language.lua index a477bc199..982116f45 100644 --- a/frontend/ui/language.lua +++ b/frontend/ui/language.lua @@ -10,7 +10,7 @@ function Language:changeLanguage(lang_locale) _.changeLang(lang_locale) G_reader_settings:saveSetting("language", lang_locale) UIManager:show(InfoMessage:new{ - text = _("Please restart reader for new language setting to take effect."), + text = _("Please restart KOReader for the new language setting to take effect."), timeout = 3, }) end diff --git a/frontend/ui/networkmgr.lua b/frontend/ui/networkmgr.lua index c811a9e46..519de006e 100644 --- a/frontend/ui/networkmgr.lua +++ b/frontend/ui/networkmgr.lua @@ -56,7 +56,7 @@ end function NetworkMgr:promptWifiOn() UIManager:show(ConfirmBox:new{ - text = _("Do you want to Turn on Wifi?"), + text = _("Do you want to turn on Wifi?"), ok_callback = function() self:turnOnWifi() end, @@ -65,7 +65,7 @@ end function NetworkMgr:promptWifiOff() UIManager:show(ConfirmBox:new{ - text = _("Do you want to Turn off Wifi?"), + text = _("Do you want to turn off Wifi?"), ok_callback = function() self:turnOffWifi() end, diff --git a/frontend/ui/otamanager.lua b/frontend/ui/otamanager.lua index bdad9a5c0..757d91620 100644 --- a/frontend/ui/otamanager.lua +++ b/frontend/ui/otamanager.lua @@ -106,7 +106,7 @@ function OTAManager:fetchAndProcessUpdate() local ota_version = OTAManager:checkUpdate() if ota_version == 0 then UIManager:show(InfoMessage:new{ - text = _("Your koreader is updated."), + text = _("Your KOReader is up to date."), }) elseif ota_version == nil then UIManager:show(InfoMessage:new{ @@ -123,11 +123,11 @@ function OTAManager:fetchAndProcessUpdate() UIManager:scheduleIn(1, function() if OTAManager:zsync() == 0 then UIManager:show(InfoMessage:new{ - text = _("Koreader will be updated on next restart."), + text = _("KOReader will be updated on next restart."), }) else UIManager:show(ConfirmBox:new{ - text = _("Error updating Koreader. Would you like to delete temporary files?"), + text = _("Error updating KOReader. Would you like to delete temporary files?"), ok_callback = function() os.execute("rm ota/ko*") end, @@ -191,7 +191,7 @@ function OTAManager:getOTAMenuTable() text = _("OTA update"), sub_item_table = { { - text = _("Check update"), + text = _("Check for update"), callback = function() if NetworkMgr:getWifiStatus() == false then NetworkMgr:promptWifiOn() diff --git a/frontend/ui/widget/opdsbrowser.lua b/frontend/ui/widget/opdsbrowser.lua index f22ccaa2a..277af2258 100644 --- a/frontend/ui/widget/opdsbrowser.lua +++ b/frontend/ui/widget/opdsbrowser.lua @@ -35,7 +35,7 @@ local CatalogCache = Cache:new{ local OPDSBrowser = Menu:extend{ opds_servers = {}, - calibre_name = _("Local calibre catalog"), + calibre_name = _("Local Calibre catalog"), catalog_type = "application/atom%+xml", search_type = "application/opensearchdescription%+xml", diff --git a/plugins/evernote.koplugin/main.lua b/plugins/evernote.koplugin/main.lua index 177360532..445ad0628 100644 --- a/plugins/evernote.koplugin/main.lua +++ b/plugins/evernote.koplugin/main.lua @@ -149,7 +149,7 @@ function EvernoteExporter:login() end) UIManager:show(InfoMessage:new{ - text = _("Logging in please wait..."), + text = _("Logging in. Please wait..."), timeout = 1, }) end,