[fix, CI] Push to Transifex from master, fix multiline strings for xgettext (#5238)

Related to https://github.com/koreader/koreader/pull/5237
This commit is contained in:
Frans de Jonge
2019-08-22 00:12:53 +02:00
committed by GitHub
parent fbd331dd07
commit e2ceace302
25 changed files with 114 additions and 96 deletions

View File

@@ -481,8 +481,8 @@ function TextEditor:editFile(file_path, readonly)
return false, T(_("Failed saving file: %1"), err)
end
end
local save_anyway = Trapper:confirm(T(_([[
Lua syntax check failed:
local save_anyway = Trapper:confirm(T(_(
[[Lua syntax check failed:
%1
@@ -502,8 +502,8 @@ Do you really want to save to this file?
return false, false -- no need for more InfoMessage
end
else -- If content is empty, propose to delete the file
local delete_file = Trapper:confirm(T(_([[
Text content is empty.
local delete_file = Trapper:confirm(T(_(
[[Text content is empty.
Do you want to keep this file as empty, or do you prefer to delete it?
%1]]), file_path), _("Keep empty file"), _("Delete file"))