ReaderDictionary: Colons in menus (#8431)

reviewable/pr8438/r1
zwim 2 years ago committed by GitHub
parent eb4e958303
commit 89064487b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -248,7 +248,7 @@ function ReaderDictionary:addToMainMenu(menu_items)
if nb_disabled > 0 then
nb_str = nb_enabled .. "/" .. nb_available
end
return T(_("Manage dictionaries (%1)"), nb_str)
return T(_("Manage dictionaries: %1"), nb_str)
end,
enabled_func = function()
return self:getNumberOfDictionaries() > 0
@ -326,7 +326,7 @@ function ReaderDictionary:addToMainMenu(menu_items)
{ -- setting used by dictquicklookup
text_func = function()
local font_size = G_reader_settings:readSetting("dict_font_size") or 20
return T(_("Font size (%1)"), font_size)
return T(_("Font size: %1"), font_size)
end,
callback = function(touchmenu_instance)
local SpinWidget = require("ui/widget/spinwidget")

Loading…
Cancel
Save