PyBitmessage/src/tr.py

57 lines
2.0 KiB
Python
Raw Normal View History

2019-10-22 14:24:52 +00:00
"""
Translating text
"""
2013-09-06 17:41:24 +00:00
import os
import state
2019-10-22 14:24:52 +00:00
class translateClass:
2019-10-22 14:24:52 +00:00
"""
This is used so that the translateText function can be used
when we are in daemon mode and not using any QT functions.
"""
# pylint: disable=old-style-class,too-few-public-methods
def __init__(self, context, text):
self.context = context
self.text = text
2019-10-22 14:24:52 +00:00
def arg(self, _):
"""Replace argument placeholders"""
if '%' in self.text:
2019-10-22 14:24:52 +00:00
# This doesn't actually do anything with the arguments
# because we don't have a UI in which to display this information anyway.
return translateClass(self.context, self.text.replace('%', '', 1))
return self.text
2019-10-22 14:24:52 +00:00
2020-01-15 10:47:26 +00:00
def _translate(context, text, disambiguation=None, encoding=None, n=None):
# pylint: disable=unused-argument
return translateText(context, text, n)
2019-10-22 14:24:52 +00:00
def translateText(context, text, n=None):
"""Translate text in context"""
try:
enableGUI = state.enableGUI
except AttributeError: # inside the plugin
enableGUI = True
if enableGUI:
try:
from PyQt4 import QtCore, QtGui
except Exception as err:
2019-10-22 14:24:52 +00:00
print 'PyBitmessage requires PyQt unless you want to run it as a daemon'\
' and interact with it using the API.'\
' You can download PyQt from http://www.riverbankcomputing.com/software/pyqt/download'\
' or by searching Google for \'PyQt Download\'.'\
' If you want to run in daemon mode, see https://bitmessage.org/wiki/Daemon'
print 'Error message:', err
2020-01-15 10:47:26 +00:00
os._exit(0) # pylint: disable=protected-access
if n is None:
return QtGui.QApplication.translate(context, text)
2019-10-22 14:24:52 +00:00
return QtGui.QApplication.translate(context, text, None, QtCore.QCoreApplication.CodecForTr, n)
else:
if '%' in text:
2019-10-22 14:24:52 +00:00
return translateClass(context, text.replace('%', '', 1))
return text