From e9d53fd3d9acf92f0c9da1115b234560f95e840d Mon Sep 17 00:00:00 2001 From: suutari-olli Date: Sun, 24 Jul 2016 23:25:23 +0300 Subject: [PATCH] - Changed Remote web page titles from OpenLP | x to x | OpenLP --- openlp/plugins/remotes/lib/httprouter.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/openlp/plugins/remotes/lib/httprouter.py b/openlp/plugins/remotes/lib/httprouter.py index 5791146e6..38f9d9c35 100644 --- a/openlp/plugins/remotes/lib/httprouter.py +++ b/openlp/plugins/remotes/lib/httprouter.py @@ -319,9 +319,9 @@ class HttpRouter(RegistryProperties): remote = translate('RemotePlugin.Mobile', 'Remote') stage = translate('RemotePlugin.Mobile', 'Stage') self.template_vars = { - 'app_title': "OpenLP | {remote}".format(remote=remote), - 'stage_title': "OpenLP | {stage}".format(stage=stage), - 'live_title': "OpenLP | {live}".format(live=UiStrings().Live), + 'app_title': "{remote} | OpenLP".format(remote=remote), + 'stage_title': "{stage} | OpenLP".format(stage=stage), + 'live_title': "{live} | OpenLP".format(live=UiStrings().Live), 'service_manager': translate('RemotePlugin.Mobile', 'Service Manager'), 'slide_controller': translate('RemotePlugin.Mobile', 'Slide Controller'), 'alerts': translate('RemotePlugin.Mobile', 'Alerts'),