Jump to content

Разширение:Превод на съдържание

From mediawiki.org
This page is a translated version of the page Extension:ContentTranslation and the translation is 59% complete.
Ръководство за МедияУики разширения
ContentTranslation
Обявен статут: стабилен
Реализация Потребителски интерфейс, Page action
Описание Инструмент, който позволява на редакторите да преведат статия от един език на друг с помощта на машинен превод и други помощни средства за превод.
Автор(и) Language team
Правило за съвместимост Snapshots releases along with MediaWiki. Master is not backward compatible.
MediaWiki 1.37+
PHP 7.2+
Промени в базата данни Да
Composer mediawiki/content-translation
  • $wgContentTranslationVersion
  • $wgContentTranslationContentImportForSectionTranslation
  • $wgContentTranslationDomainCodeMapping
  • $wgContentTranslationCXServerAuth
  • $wgContentTranslationCxServerHost
  • $wgContentTranslationEnableAnonSectionTranslation
  • $wgContentTranslationFeaturedCollectionLink
  • $wgContentTranslationAsBetaFeature
  • $wgContentTranslationTranslateInTarget
  • $wgContentTranslationDevMode
  • $wgRecommendToolAPIURL
  • $wgDraftMaxAge
  • $wgContentTranslationFeaturedCollectionDescription
  • $wgContentTranslationEnableMT
  • $wgContentTranslationFeaturedCollection
  • $wgAutomaticTranslationLanguageSearcherEntrypointEnabledLanguages
  • $wgContentTranslationSiteTemplates
  • $wgContentTranslationUnmodifiedMTThresholdForPublish
  • $wgContentTranslationTargetNamespace
  • $wgContentTranslationPublishRequirements
  • $wgContentTranslationCampaigns
  • $wgSectionTranslationTargetLanguages
Лиценз GNU General Public License 2.0 or later
Изтегляне
Help Help:Extension:ContentTranslation/bg
Преведете разширението ContentTranslation, ако е налично в translatewiki.net
Проблеми Отворени задачи · Съобщете за грешка

Разширението Превод на съдържание е инструмент, който позволява на редакторите да преведат статия от един език на друг с помощта на машинен превод и други помощни средства за превод. Вижте Превод на съдържание за предистория и допълнителна информация. Разширението се разработва от екипа за Езиков инженеринг на Уикимедия.

Инсталиране

This extension requires a CXserver to be setup first. Moreover it has extension dependencies.
  • Download and move the extracted ContentTranslation folder to your extensions/ directory.
    Developers and code contributors should install the extension from Git instead, using:
    cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/ContentTranslation
    
  • Only when installing from Git, run Composer to install PHP dependencies, by issuing composer install --no-dev in the extension directory. (See T173141 for potential complications.)
  • На дъното на вашия $LocalSettings добавете следния код:
    wfLoadExtension( 'ContentTranslation' );
    
  • Изпълнете скрипта за поднова, който автоматично ще създаде нужните таблици в базата данни, които използват се от това разширение.
  • Yes Готово – Отидете на Special:Version в уикито си, за да проверите дали разширението е успешно инсталирано.


Vagrant installation:

  • Ако използвате Vagrant , инсталирайте разширението с vagrant roles enable contenttranslation --provision

Content Translation server

Разширението има нужда от работещ сървър за превод на съдържание (известен като cxserver). Вижте Настройки за настройване на сървъра за превод на съдържание. When running Content Translation locally, following can be added to LocalSettings.php to use production cxserver:

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

Зависимост на разширението

Превод на съдържание зависи от следните разширения:

UniversalLanguageSelector Required
VisualEditor Required Required for editor component.
Cite Required Required if you want to support references while translating.
WikimediaMessage Required
GuidedTour Optional Ако е инсталирано, то ще се използва за показване на обяснение за преместване на страница извън потребителското пространство.
Echo Optional Ако е инсталирано, то ще се използва за показване на "поздравителни" известия след достигане на ключови постижения при преводите.
Wikibase Optional Ако е инсталирано и конфигурирано подобно на Уикипедия, то ще се използва за автоматично добавяне на връзки към други езици (като препратки в сайта).
EventLogging Optional Ако е инсталирано, може да се използва за записване в дневника на публикации, грешки и други събития.
BetaFeatures Optional Ако е инсталирано, Превод на съдържание ще се показва като бета функционалност в Настройки.


Конфигуриране на променливи

For the full list and defaults, see extension.json in the source repository.

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 parameters

Content Translation mainly works on the special page Special:ContentTranslation. The URL parameters are

  • page: source title
  • targettitle: target title
  • from: source language
  • to: target language
  • campaign: campaign name
    • In Wikimedia wikis, if content translation is not enabled in the user settings then only links to pre-defined campaign will work. Campaigns are defined in InitialiseSettings.php wmgContentTranslationCampaigns variable.

Example

Вижте също