コード例 #1
0
 def get_languages():
     c1 = tgformat.get_languages('en')
     c2 = tgformat.get_languages()
     if len(c1) > len(c2):
         d = dict(c1)
         d.update(dict(c2))
         return d.items()
     else:
         return c2
コード例 #2
0
ファイル: national.py プロジェクト: alonisser/formencode
 def get_languages():
     c1 = tgformat.get_languages('en')
     c2 = tgformat.get_languages()
     if len(c1) > len(c2):
         d = dict(c1)
         d.update(dict(c2))
         return d.items()
     else:
         return c2
コード例 #3
0
ファイル: national.py プロジェクト: terrasea/formencode
 def get_languages():
     c1 = tgformat.get_languages("en")
     c2 = tgformat.get_languages()
     if len(c1) > len(c2):
         d = dict(c1)
         d.update(dict(c2))
         return list(d.items())
     else:
         return c2