Removed unused _encoding and _transalate
This commit is contained in:
parent
25876ded2b
commit
641db73614
|
@ -11,11 +11,7 @@ except Exception as err:
|
||||||
import sys
|
import sys
|
||||||
sys.exit()
|
sys.exit()
|
||||||
|
|
||||||
try:
|
from tr import _translate
|
||||||
_encoding = QtGui.QApplication.UnicodeUTF8
|
|
||||||
except AttributeError:
|
|
||||||
logger.exception('QtGui.QApplication.UnicodeUTF8 error', exc_info=True)
|
|
||||||
|
|
||||||
from addresses import *
|
from addresses import *
|
||||||
import shared
|
import shared
|
||||||
from bitmessageui import *
|
from bitmessageui import *
|
||||||
|
@ -70,12 +66,6 @@ except ImportError:
|
||||||
get_plugins = False
|
get_plugins = False
|
||||||
|
|
||||||
|
|
||||||
def _translate(context, text, disambiguation = None, encoding = None, number = None):
|
|
||||||
if number is None:
|
|
||||||
return QtGui.QApplication.translate(context, text)
|
|
||||||
else:
|
|
||||||
return QtGui.QApplication.translate(context, text, None, QtCore.QCoreApplication.CodecForTr, number)
|
|
||||||
|
|
||||||
def change_translation(newlocale):
|
def change_translation(newlocale):
|
||||||
global qmytranslator, qsystranslator
|
global qmytranslator, qsystranslator
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user