allow some strings to be translated (#6428)

This commit is contained in:
yparitcher
2020-07-25 09:26:26 -04:00
committed by GitHub
parent db843929f0
commit 2f3fda3fe8
3 changed files with 9 additions and 5 deletions

View File

@@ -409,7 +409,7 @@ common_settings.document = {
local interval = G_reader_settings:readSetting("auto_save_settings_interval_minutes")
local s_interval
if interval == false then
s_interval = "only on close"
s_interval = _("only on close")
else
s_interval = T(N_("every 1 m", "every %1 m", interval), interval)
end