forked from openlp/openlp
Missing strings
This commit is contained in:
parent
c61fde2d1f
commit
a197e92f7d
@ -309,10 +309,13 @@ class HttpRouter(RegistryProperties):
|
|||||||
"""
|
"""
|
||||||
Translate various strings in the mobile app.
|
Translate various strings in the mobile app.
|
||||||
"""
|
"""
|
||||||
|
remote = translate('RemotePlugin.Mobile', 'Remote')
|
||||||
|
stage = translate('RemotePlugin.Mobile', 'Stage View')
|
||||||
|
live = translate('RemotePlugin.Mobile', 'Live View')
|
||||||
self.template_vars = {
|
self.template_vars = {
|
||||||
'app_title': translate('RemotePlugin.Mobile', 'OpenLP 2.2 Remote'),
|
'app_title': "%s %s" % (UiStrings().OLPV2x, remote),
|
||||||
'stage_title': translate('RemotePlugin.Mobile', 'OpenLP 2.2 Stage View'),
|
'stage_title': "%s %s" % (UiStrings().OLPV2x, stage),
|
||||||
'live_title': translate('RemotePlugin.Mobile', 'OpenLP 2.2 Live View'),
|
'live_title': "%s %s" % (UiStrings().OLPV2x, live),
|
||||||
'service_manager': translate('RemotePlugin.Mobile', 'Service Manager'),
|
'service_manager': translate('RemotePlugin.Mobile', 'Service Manager'),
|
||||||
'slide_controller': translate('RemotePlugin.Mobile', 'Slide Controller'),
|
'slide_controller': translate('RemotePlugin.Mobile', 'Slide Controller'),
|
||||||
'alerts': translate('RemotePlugin.Mobile', 'Alerts'),
|
'alerts': translate('RemotePlugin.Mobile', 'Alerts'),
|
||||||
|
Loading…
Reference in New Issue
Block a user