Jump to content

Extension:ContentTranslation(内容翻译)

From mediawiki.org
This page is a translated version of the page Extension:ContentTranslation and the translation is 100% complete.
MediaWiki扩展手册
ContentTranslation
发行状态: 稳定版
实现 用户界面, 页面操作
描述 允许译者借助机器翻译和其他翻译建议将某一语言条目翻译为其他语言。
作者 语言团队
兼容性政策 快照跟随MediaWiki发布。 master分支不向后兼容。
MediaWiki 1.37+
PHP 7.2+
数据库更改
Composer mediawiki/content-translation
cx_translations
cx_translators
cx_lists
cx_suggestions
cx_corpora
cx_notification_log
cx_significant_edits
cx_section_translations
许可协议 GNU通用公眾授權條款2.0或更新版本
下載
帮助 Help:Extension:ContentTranslation/zh
  • $wgContentTranslationVersion
  • $wgContentTranslationContentImportForSectionTranslation
  • $wgContentTranslationDomainCodeMapping
  • $wgContentTranslationCXServerAuth
  • $wgContentTranslationCxServerHost
  • $wgContentTranslationEnableAnonSectionTranslation
  • $wgContentTranslationAsBetaFeature
  • $wgContentTranslationTranslateInTarget
  • $wgContentTranslationDevMode
  • $wgRecommendToolAPIURL
  • $wgDraftMaxAge
  • $wgContentTranslationEnableMT
  • $wgAutomaticTranslationLanguageSearcherEntrypointEnabledLanguages
  • $wgContentTranslationSiteTemplates
  • $wgContentTranslationUnmodifiedMTThresholdForPublish
  • $wgContentTranslationTargetNamespace
  • $wgContentTranslationPublishRequirements
  • $wgContentTranslationCampaigns
  • $wgSectionTranslationTargetLanguages
前往translatewiki.net翻譯ContentTranslation扩展
問題 开启的任务 · 报告错误

内容翻译扩展允许译者借助机器翻译和其他翻译建议将某一语言条目翻译为其他语言。参见内容翻译 有关背景和额外信息。此扩展由维基媒体语言工程组开发。

安装

This extension requires a CXserver to be setup first. Moreover it has extension dependencies.
  • 下载文件,并解压ContentTranslation文件夹到extensions/目录中。
    开发者和代码贡献人员应改从Git安装此扩展,输入:
    cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/ContentTranslation
    
  • 只有是從Git安裝的才需运行Composer来安装PHP依赖,通过发行composer install --no-dev至扩展的目录。 (参见T173141了解潜在问题。)
  • 請新增下列代码到您的LocalSettings.php 文件的底部:
    wfLoadExtension( 'ContentTranslation' );
    
  • 請运行更新脚本,它将自动创建此扩展所必须的数据库表。
  • Yes 完成 – 請导航至您的wiki上的Special:Version,以验证此扩展已成功安装。


使用Vagrant安装:

  • 如果你有使用Vagrant ,请通过vagrant roles enable contenttranslation --provision安装

Content Translation server

此扩展需要内容翻译服务器(或称cxserver)启动和运行。 参见Content_translation/Setup以获取设置内容翻译服务器的信息。 在本地運行内容翻译時,可以將以下內容添加到LocalSettings.php以使用服務器:

$wgContentTranslationSiteTemplates['cx'] = 'https://cxserver.wikimedia.org/v1';

扩展依赖性

ContentTranslation依赖以下扩展:

UniversalLanguageSelector Required
VisualEditor Required 编辑器组件必需。
Cite Required 如果要在翻译时支持引用,则必需。
WikimediaMessage Required
GuidedTour Optional 如果已安装,它将用于显示有关将页面移出用户空间的说明。
Echo Optional 如果已安装,它将用于在完成翻译里程碑后显示“祝贺”通知。
Wikibase Optional 如果安装和配置与维基百科类似,它将用于自动添加中介语链接(作为附加链接)。
EventLogging Optional 如果已安装,则可用于记录发布,错误和其他事件。
BetaFeatures Optional 如果已安装,内容翻译将在首选项中显示为测试版功能。


配置变量

有关完整列表和默认值,请参阅源存储库中的 extension.json

ContentTranslationDomainCodeMapping
Used to map between non-standard language codes and actual domains. The default is the same as in Wikipedia codes and domains.
ContentTranslationSiteTemplates
Templates for essential URLs. The defaults assume Wikipedia, so this variable must be configured differently for other sites. Where relevant, $1 is replaced by the language code, and $2 is replaced by the page title.
ContentTranslationTranslateInTarget
Whether to open Special:ContentTranslation in the target wiki when clicking the button in the entry point. The domain will be based on $wgContentTranslationSiteTemplates. The default is to open Special:ContentTranslation on the same wiki. (For Wikipedia this is set to true.)
ContentTranslationAsBetaFeature
Whether ContentTranslation is a beta feature.
ContentTranslationTargetNamespace
The default target namespace for published articles. The default is Main.
ContentTranslationCampaigns
Campaigns that are available in the URL as valid values for the campaign parameter in the URL. This allows automatic enabling of the beta feature and event logging.
ContentTranslationCXServerAuth
CXServer connection configuration.
ContentTranslationEnableSuggestions
Whether to use the suggestions tab and automatic suggestions. This needs the GapFinder API. This is false by default, but true in Wikipedia.
RecommendToolAPIURL
The URL for the GapFinder API, needed if ContentTranslationEnableSuggestions is true.


URL 参数

内容翻译主要在特殊页面Special:ContentTranslation上进行。 网址参数是

  • 页码:来源标题
  • 目标标题:目标标题
  • 来自:源语言
  • 至:目标语言
  • 活动:活动名称
    • 在 Wikimedia wiki 中,如果用户设置中未启用内容翻译,则只有预定义活动的链接才有效。 活动在 InitialiseSettings.php wmgContentTranslationCampaigns变量中定义。

示例

參閱