Merge branch 'Caps_#509' into 'master'

Adds Uppercase Tag #509

See merge request openlp/openlp!417
This commit is contained in:
Raoul Snyman 2022-02-11 17:49:56 +00:00
commit 0d738e5233
1 changed files with 6 additions and 0 deletions

View File

@ -143,6 +143,12 @@ class FormattingTags(object):
'start html': '<span style="text-decoration: underline;">',
'end tag': '{/u}', 'end html': '</span>', 'protected': True,
'temporary': False
}, {
'desc': translate('OpenLP.FormattingTags', 'UpperCase'),
'start tag': '{uc}',
'start html': '<span style="text-transform: uppercase;">',
'end tag': '{/uc}', 'end html': '</span>', 'protected': True,
'temporary': False
}, {
'desc': translate('OpenLP.FormattingTags', 'Break'),
'start tag': '{br}', 'start html': '<br>', 'end tag': '',