Tr also has daemon mode check without testmode check

This commit is contained in:
Peter Šurda 2018-04-03 22:40:27 +02:00
parent 2c44bb4a7c
commit 2f18794ce8
Signed by: PeterSurda
GPG Key ID: 0C5F50C0B5F37D87

View File

@ -1,6 +1,7 @@
import os
import shared
import state
# This is used so that the translateText function can be used when we are in daemon mode and not using any QT functions.
class translateClass:
@ -18,7 +19,7 @@ def _translate(context, text, disambiguation = None, encoding = None, n = None):
def translateText(context, text, n = None):
try:
is_daemon = shared.thisapp.daemon
is_daemon = shared.thisapp.daemon or state.testmode
except AttributeError: # inside the plugin
is_daemon = False
if not is_daemon: