コード例 #1
0
ファイル: dialogs.py プロジェクト: Hellysonrp/phatch
 def GetTagSelection(self):
     return _r(self.GetListBox().GetTag().GetStringSelection())
コード例 #2
0
ファイル: translation.py プロジェクト: CamelliaDPG/Camellia
def _var_to_english(match):
    return _r(match.group("var")) + match.group("attr")
コード例 #3
0
ファイル: translation.py プロジェクト: CamelliaDPG/Camellia
def to_english(x):
    _x = _r(ensure_unicode(x))
    if x != _x:
        return _x
    return RE_EXPR.sub(_expr_to_english, x)
コード例 #4
0
ファイル: dialogs.py プロジェクト: CamelliaDPG/Camellia
 def GetTagSelection(self):
     return _r(self.GetListBox().GetTag().GetStringSelection())
コード例 #5
0
ファイル: translation.py プロジェクト: sean-abbott/phatch
def _var_to_english(match):
    return _r(match.group('var')) + match.group('attr')
コード例 #6
0
ファイル: translation.py プロジェクト: sean-abbott/phatch
def to_english(x):
    _x = _r(ensure_unicode(x))
    if x != _x:
        return _x
    return RE_EXPR.sub(_expr_to_english, x)