chore: style cleanup for infomessage

This commit is contained in:
Qingping Hou
2017-05-08 00:26:01 -07:00
committed by Frans de Jonge
parent 0b47c81b1a
commit 23c2955500
8 changed files with 52 additions and 43 deletions

View File

@@ -482,16 +482,16 @@ function FileManager:renameFile(file)
})
else
UIManager:show(InfoMessage:new{
text = util.template(_(
"Failed to move history data of %1 to %2.\n" ..
"The reading history may be lost."), file, dest),
text = util.template(
_("Failed to move history data of %1 to %2.\nThe reading history may be lost."),
file, dest),
})
end
end
else
UIManager:show(InfoMessage:new{
text = util.template(
_("Failed to rename from %1 to %2"), file, dest),
_("Failed to rename from %1 to %2"), file, dest),
})
end
end