From 67b57834da06bc86ddb4889509c0b3e0109b0d0b Mon Sep 17 00:00:00 2001 From: Frans de Jonge Date: Mon, 18 Nov 2019 20:51:08 +0100 Subject: [PATCH] [lang] Minor touchups (#5611) --- frontend/apps/cloudstorage/cloudstorage.lua | 8 ++++---- frontend/ui/widget/keyboardlayoutdialog.lua | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/apps/cloudstorage/cloudstorage.lua b/frontend/apps/cloudstorage/cloudstorage.lua index b17e96e5e..d6fe913c6 100644 --- a/frontend/apps/cloudstorage/cloudstorage.lua +++ b/frontend/apps/cloudstorage/cloudstorage.lua @@ -408,11 +408,11 @@ function CloudStorage:synchronizeCloud(item) if not failed_files then failed_files = 0 end local text if downloaded_files == 0 and failed_files == 0 then - text = _("No files to download from dropbox.") + text = _("No files to download from Dropbox.") elseif downloaded_files > 0 and failed_files == 0 then - text = T(_("Successfuly downloaded %1 files from Dropbox to local storage."), downloaded_files) + text = T(_("Successfully downloaded %1 files from Dropbox to local storage."), downloaded_files) else - text = T(_("Successfuly downloaded %1 files from Dropbox to local storage.\nFailed downloaded %2 files."), + text = T(_("Successfully downloaded %1 files from Dropbox to local storage.\nFailed to download %2 files."), downloaded_files, failed_files) end UIManager:show(InfoMessage:new{ @@ -498,7 +498,7 @@ function CloudStorage:synchronizeSettings(item) buttons = { { { - text = _("Choose dropbox folder"), + text = _("Choose Dropbox folder"), callback = function() UIManager:close(syn_dialog) require("ui/cloudmgr"):new{ diff --git a/frontend/ui/widget/keyboardlayoutdialog.lua b/frontend/ui/widget/keyboardlayoutdialog.lua index 31cc5d86b..ef58d8889 100644 --- a/frontend/ui/widget/keyboardlayoutdialog.lua +++ b/frontend/ui/widget/keyboardlayoutdialog.lua @@ -23,7 +23,7 @@ local orderedPairs = require("ffi/util").orderedPairs local KeyboardLayoutDialog = InputContainer:new{ is_always_active = true, - title = _("Keyboard Layout"), + title = _("Keyboard layout"), modal = true, width = Screen:getWidth() * 0.8, face = Font:getFace("cfont", 22),