Laajennus:Sisällön kääntäminen
ContentTranslation Julkaisustatus: vakaa |
|
---|---|
Toteutus | Käyttöliittymä, Sivutoiminto |
Kuvaus | Työkalu joka tekee käyttäjille mahdolliseksi kääntää artikkelin kieleltä toiselle konekäännösten ja muiden käännösapujen avustuksella. |
Tekijä(t) | Kielitiimi |
Yhteensopivuuskäytäntö | Snapshots releases along with MediaWiki. Master is not backward compatible. |
MediaWiki | 1.37+ |
PHP | 7.2+ |
Tietokantamuutokset | Kyllä |
Composer | mediawiki/content-translation |
Taulukot | cx_translations cx_translators cx_lists cx_suggestions cx_corpora cx_notification_log cx_significant_edits cx_section_translations |
Lisenssi | GNU General Public License 2.0 tai myöhempi |
Lataa | |
Help | Help:Extension:ContentTranslation/fi |
|
|
|
|
Quarterly downloads | 25 (Ranked 106th) |
Voit kääntää ContentTranslation-laajennuksen mikäli se on saatavilla translatewiki.netissä | |
Ongelmat | Avoimet tehtävät · Raportoi ongelmasta |
Sisällön kääntäminen -laajennus (ContentTranslation) on työkalu, joka tekee käyttäjille mahdolliseksi kääntää artikkelin kieleltä toiselle konekäännösten ja muiden käännösapujen avustuksella. Tietoja laajennuksen taustasta ja muuta lisätietoa löydät sivulta Sisällön kääntäminen . Laajennusta kehittää Wikimedia Language Engineering -tiimi.
Asennus
- Lataa ja siirrä purettu kansio nimeltä
ContentTranslation
extensions/
-kansioosi.
Kehittäjien ja koodipaikkauksia tekevien tahojen tulisi asentaa laajennos git-versionhallintaohjelmaa käyttäen: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 task T173141 for potential complications.) - Lisää seuraava koodi LocalSettings.php -tiedostosi loppuosaan:
wfLoadExtension( 'ContentTranslation' );
- Suorita päivitysskripti, joka luo automaattisesti tarvittavat tietokantataulut, joita tämä laajennos käyttää.
- Tehty – Mene wikisi sivulle Special:Version vahvistaaksesi, että laajennoksen asennus onnistui.
Vagrant installation:
- If using Vagrant , install with
vagrant roles enable contenttranslation --provision
Content Translation server
The extension needs the Content Translation server (a.k.a. cxserver) up and running.
See Content translation/cxserver/Setup for setting up the Content Translation server.
When running Content Translation locally, following can be added to LocalSettings.php
to use production cxserver:
$wgContentTranslationSiteTemplates['cx'] = 'https://cxserver.wikimedia.org/v1';
Translations database
This extension has an optional dashboard feature, which allows translators to see all the translations across all languages.
In a multilingual installation of this extension, for example in Wikimedia wikis, a central database is required to serve the dashboard feature.
Table definitions for that database are in sql
directory in the extension source code; Content translation/Product Definition/Database has more details.
Once database is created, set the $wgContentTranslationDatabase
global configuration variable as the name of database:
$wgContentTranslationDatabase = 'db_name';
Extension dependencies
ContentTranslation depends on the following extensions:
UniversalLanguageSelector | Required | |
VisualEditor | Required | Required for editor component. |
Cite | Required | Required if you want to support references while translating. |
GuidedTour | Optional | If installed, it will be used to show an explanation about moving a page out of user space. |
Echo | Optional | If installed, it will be used for showing "congratulations" notifications after completing translation milestones. |
Wikibase | Optional | If installed and configured similarly to Wikipedia, it will be used for automatic addition of interlanguage links (as sitelinks). |
EventLogging | Optional | If installed, can be used to log publishing, errors, and other events. |
BetaFeatures | Optional | If installed, ContentTranslation will appear as a beta feature in the preferences. |
Configuration variables
Tämä osio on toistaiseksi luonnos. Sisältö voi olla epätäydellistä, tärkeää tietoa saattaa puuttua ja jotkin sisällön osat ovat mahdollisesti muuttumassa nopeasti ja kokonaisvaltaisesti. Lisää tietoa saattaa olla keskustelusivulla. |
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.
- ContentTranslationRESTBase
- Configuration of RESTBase URL and connection parameters. The defaults are for Wikipedia.
- ContentTranslationDatabase
- The name of the database in which the common tables for managing translations across wikis are stored. The default is null, which means that the default database is used.
- ContentTranslationCluster
- In a Wikipedia-like database configuration, the name of the cluster on which the database is hosted. The default is null, which means that the default cluster is used.
- ContentTranslationEventLogging
- Whether EventLogging is enabled. The default is false.
- ContentTranslationHighMTCategory
- A category to which pages that have a high level of machine translation are added upon publishing. The default is null.
- 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.
- 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
Example
Katso myös
Tätä laajennusta käytetään yhdessä tai useammassa Wikimedian hankkeessa. Tämä on todennäköisesti merkki siitä, että laajennus on vakaa ja toimii tarpeeksi hyvin voidakseen olla käytössä suosituilla verkkosivuilla. Look for this extension's name in Wikimedia's CommonSettings.php and InitialiseSettings.php configuration files to see where it's installed. Täydellinen lista yksittäiseen wikiin asennetuista laajennuksista löytyy jokaisesta wikistä sivulta Special:Version. |
This page or project is maintained by Wikimedia Language engineering.
Get help: |
- Stable extensions/fi
- User interface extensions/fi
- Page action extensions/fi
- Extensions supporting Composer/fi
- GPL licensed extensions/fi
- Extensions in Wikimedia version control/fi
- BeforeCreateEchoEvent extensions/fi
- BeforePageDisplay extensions/fi
- ChangeTagsListActive extensions/fi
- ContributeCards extensions/fi
- EchoGetBundleRules extensions/fi
- EditPage::showEditForm:initial extensions/fi
- GetBetaFeaturePreferences extensions/fi
- GetPreferences extensions/fi
- ListDefinedTags extensions/fi
- LoadExtensionSchemaUpdates extensions/fi
- ResourceLoaderRegisterModules extensions/fi
- RevisionFromEditComplete extensions/fi
- SaveUserOptions extensions/fi
- SectionTranslationBeforePublish extensions/fi
- SpecialContributionsBeforeMainOutput extensions/fi
- All extensions/fi
- Extensions requiring Composer with git/fi
- Extensions used on Wikimedia/fi
- WYSIWYG extensions/fi
- Localisation extensions/fi
- Language Engineering/fi
- Content Translation/fi