#!/usr/bin/env python #**************************************************************************** # immoduletr.py, a dummy source code file to add strings for translation # that are used in the immodule patch to Qt. # This file should never be imported. # # TreeLine, an information storage program # Copyright (C) 2005, Douglas W. Bell # # This is free software; you can redistribute it and/or modify it under the # terms of the GNU General Public License, Version 2. This program is # distributed in the hope that it will be useful, but WITTHOUT ANY WARRANTY. #***************************************************************************** class QMultiInputContext: def __init__(self): self.tr('Select Input &Method') def tr(self, text): return text class QMultiInputContextPlugin: def __init__(self): self.tr('Multiple input method switcher') self.tr('Multiple input method switcher that uses the context menu '\ 'of the text widgets') def tr(self, text): return text class QNoneInputContextPlugin: def __init__(self): self.tr('Dummy input method switcher') self.tr('Dummy input method switcher that uses the context menu '\ 'of the text widgets') def tr(self, text): return text class QSimpleInputContextPlugin: def __init__(self): self.tr('Simple composing input method') def tr(self, text): return text class QXIMInputContextPlugin: def __init__(self): self.tr('XIM') self.tr('XIM input method') def tr(self, text): return text