Make 'default' and 'fallback' strings translatable

This commit is contained in:
Frans de Jonge
2015-09-04 10:59:07 +02:00
parent cf41829450
commit f84b537954
2 changed files with 4 additions and 4 deletions

View File

@@ -212,11 +212,11 @@ function ReaderFont:makeDefault(face)
UIManager:show(MultiConfirmBox:new{
text = T( _([[Set %1 as default or fallback font? The fallback font ]]
..[[displays characters not found in the active font.]]), face),
choice1_text = ("Default"),
choice1_text = _("Default"),
choice1_callback = function()
G_reader_settings:saveSetting("cre_font", face)
end,
choice2_text = ("Fallback"),
choice2_text = _("Fallback"),
choice2_callback = function()
G_reader_settings:saveSetting("fallback_font", face)
end,