Estensione:ContentTranslation
![]() Stato della release: stabile |
|
---|---|
Implementazione | Interfaccia utente, Page action |
Descrizione | Strumento che permette gli autori di tradurre un'articolo da una lingua ad un'altra con l'ausilio delle traduzioni automatiche e altri aiuti |
Autore(i) | Language team |
Politica di compatibilità | Snapshots releases along with MediaWiki. Master is not backward compatible. |
MediaWiki | 1.37+ |
PHP | 7.2+ |
Modifiche al Database | Sì |
Composer | mediawiki/content-translation |
Tabelle | cx_translations cx_translators cx_lists cx_suggestions cx_corpora cx_notification_log cx_significant_edits cx_section_translations |
Licenza | GNU General Public License 2.0 o successivo |
Scaricare | |
Aiuto | Help:Extension:ContentTranslation/it |
|
|
|
|
Quarterly downloads | 29 (Ranked 133rd) |
Traduci l'estensione ContentTranslation se è disponibile su translatewiki.net | |
Problemi | Compiti aperti · Riportare un bug |
L'estensione ContentTranslation è uno strumento che permette tradurre un articolo da una lingua ad un'altra con l'aiuto di un sistema di traduzione automatica e altre funzionalità. Consultare Traduzione contenuti per informazioni sul contesto e altro. L'estensione è stata sviluppata dal gruppo ingegneristico per il linguaggio di Wikimedia.
Installazione
- Download and place the file(s) in a directory called
ContentTranslation
in yourextensions/
folder. - Solo durante l'installazione da git eseguire Composer per installare le dipendenze PHP, immettendo
composer install --no-dev
nella directory dell'estensione. (Vedere task T173141 per potenziali complicazioni.) - Aggiungi il seguente codice al tuo $LocalSettings (preferibilmente alla fine):
wfLoadExtension( 'ContentTranslation' );
- Esegui lo script di aggiornamento, che creerà automaticamente nel database le tavole necessarie a questa estensione.
- Done – Naviga in Special:Version nella tua wiki per verificare che l'estensione sia stata installata correttamente.
Vagrant installation:
- Se stai usando Vagrant , installa con
vagrant roles enable contenttranslation --provision
Content Translation server
Questa estensione richiede che il server di traduzione del contenuto (anche chiamato cxserver) si attivo e funzionante.
Consulata Content_translation/Setup per informazioni su come configurare il server di traduzione del contenuto.
When running Content Translation locally, following can be added to LocalSettings.php
to use production cxserver:
$wgContentTranslationSiteTemplates['cx'] = 'https://cxserver.wikimedia.org/v1';
Database di traduzioni
Questa estensione ha una funzione di dashboard opzionale, che permette i traduttori di vedere tutte le traduzioni in tutti i linguaggi. In una installazione multilingua di questa estenzione, per esempio nel wiki di wikimedia, è richiesto un database centrale che viene usato dalla funzione dashboard. Per creare il database consulta il file sql/contentranslation.sql
nel codice sorgente della estenzione; la sezione Content translation/Database contiene maggiore dettagli. Una volte che il database è stato creato, controlla la variabile di configurazione globale $wgContentTranslationDatabase
con il nome del database.
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';
Dipendenze dell'estensione
ContentTranslation dipende delle seguenti estensioni:
UniversalLanguageSelector | Required | |
VisualEditor | Required | Richiesto per il componente editor |
Cite | Required | Required if you want to support references while translating. |
GuidedTour | Optional | Se installato, verrò usato per mostrare una spiegazione sullo spostamento una pagina fuori dallo spazio utente. |
Echo | Optional | Se installato, Verrà usato per mostrare la notifica di congratulazioni dopo aver completato una milestone di traduzione. |
Wikibase | Optional | Se installato e configurato in modo simile a Wikipedia, verrà utilizzato per l'aggiunta automatica di collegamenti tra le lingue (come link di sito). |
EventLogging | Optional | Se installato, può essere utilizzato per registrare la pubblicazione, glie errori e altri eventi. |
BetaFeatures | Optional | Se installato, ContentTranslation verrà visualizzato come una funzione beta nelle preferenze. |
Opzioni di configurazione
This section is currently a draft. Material may not yet be complete, information may presently be omitted, and certain parts of the content may be subject to radical, rapid alteration. More information pertaining to this may be available on the talk page. |
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. Campaings 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. Campaings are defined in InitialiseSettings.php
Example
Vedi anche
Questa estensione viene utilizzata su uno o più progetti Wikimedia. Ciò probabilmente significa che l'estensione è stabile e funziona abbastanza bene da essere utilizzata da siti Web ad alto traffico. Cerca il nome di questa estensione nei file di configurazione CommonSettings.php e InitialiseSettings.php di Wikimedia per vedere dove è installato. Un elenco completo delle estensioni installate su un particolare wiki può essere visto sulla pagina Special:Version del wiki. |
This page or project is maintained by Wikimedia Language engineering.
Get help: |