[Bug 1901456]: Slight text error in Column Icon rules

This commit is contained in:
Charles Haley 2020-10-31 12:55:40 +00:00
parent a380227d24
commit 62c0d4dba3

View File

@ -873,8 +873,9 @@ class RulesModel(QAbstractListModel): # {{{
_('<li>The condition using column <b>%(col)s</b> is <b>invalid</b>') _('<li>The condition using column <b>%(col)s</b> is <b>invalid</b>')
% dict(col=c)) % dict(col=c))
return ( return (
_('<li>If the <b>%(col)s</b> column <b>%(action)s</b> value: <b>%(val)s</b>') % dict( _('<li>If the <b>%(col)s</b> column <b>%(action)s</b> %(val_label)s<b>%(val)s</b>') % dict(
col=c, action=action_name, val=prepare_string_for_xml(v))) col=c, action=action_name, val=prepare_string_for_xml(v),
val_label=_('value: ') if v else ''))
# }}} # }}}