[lang] Minor touchups (#5611)

pull/5616/head
Frans de Jonge 5 years ago committed by GitHub
parent 04741d8cfd
commit 67b57834da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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{

@ -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),

Loading…
Cancel
Save