当前位置: 首页>>代码示例>>Python>>正文


Python LANGUAGENAMES.get_english方法代码示例

本文整理汇总了Python中horizons.constants.LANGUAGENAMES.get_english方法的典型用法代码示例。如果您正苦于以下问题:Python LANGUAGENAMES.get_english方法的具体用法?Python LANGUAGENAMES.get_english怎么用?Python LANGUAGENAMES.get_english使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在horizons.constants.LANGUAGENAMES的用法示例。


在下文中一共展示了LANGUAGENAMES.get_english方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: update_authors_per_file

# 需要导入模块: from horizons.constants import LANGUAGENAMES [as 别名]
# 或者: from horizons.constants.LANGUAGENAMES import get_english [as 别名]
def update_authors_per_file(input_po, regexp=LANG_RE, since='weblate-credits..', pushed_by='Weblate'):
	authors = subprocess.check_output([
	    'git',
	    'log',
	    since,
	    '--committer',
	    pushed_by,
	    '--format=%an',
	    input_po, ],
	    stderr=subprocess.STDOUT)

	#TODO Clearly the above can never fail, ever. But what if it did?
	lang = regexp.search(input_po).groups()[0]
	for author in authors.decode('utf-8').split('\n'):
		if not author:
			continue
		if author in GLOBAL_AUTHORS:
			continue
		english_lang = LANGUAGENAMES.get_english(lang)
		language_authors[english_lang].add(author)
开发者ID:MarkusHackspacher,项目名称:unknown-horizons,代码行数:22,代码来源:update_translations.py

示例2: update_authors_per_file

# 需要导入模块: from horizons.constants import LANGUAGENAMES [as 别名]
# 或者: from horizons.constants.LANGUAGENAMES import get_english [as 别名]
def update_authors_per_file(input_po, regexp=LANG_RE, since='weblate-credits..', pushed_by='Weblate'):
	authors = subprocess.check_output([
		'git',
		'shortlog',
		since,
		'--committer',
		pushed_by,
		'-sn', # Use 'sne' to include email (if that is ever needed)
		'--',
		input_po,
	], stderr=subprocess.STDOUT)

	#TODO Clearly the above can never fail, ever. But what if it did?
	lang = regexp.search(input_po).groups()[0]
	for author_line in authors.split('\n'):
		if not author_line:
			continue
		author = JUST_NAME.search(author_line).groups()[0]
		if author in GLOBAL_AUTHORS:
			continue
		english_lang = LANGUAGENAMES.get_english(lang)
		language_authors[english_lang].add(author)
开发者ID:Octavianuspg,项目名称:unknown-horizons,代码行数:24,代码来源:update_translations.py


注:本文中的horizons.constants.LANGUAGENAMES.get_english方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。