[fix, i18n] ui/widget/frontlightwidget: translators don't need to worry about number of spaces (#3823)

Transifex warns about some issues but this is not one of them.

The proper solution would be `padding_right`. But although it's supported on FrameContainer it's not passed on through TextBoxWidget.
pull/3824/head
Frans de Jonge 6 years ago committed by GitHub
parent ba46376299
commit 489bfb4c77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -401,7 +401,8 @@ function FrontLightWidget:addWarmthWidgets(num_warmth, step, vertical_group)
})
local text_auto_nl = TextBoxWidget:new{
text = _("Maximum at: "),
-- @TODO implement padding_right (etc.) on TextBoxWidget and remove the two-space hack
text = _("Maximum at:") .. " ",
face = self.larger_font_face,
alignment = "right",
fgcolor = self.powerd.auto_warmth and Blitbuffer.COLOR_BLACK or

Loading…
Cancel
Save