Jump to content

Rozšíření:MultiLanguageManager

From mediawiki.org
This page is a translated version of the page Extension:MultiLanguageManager and the translation is 100% complete.
Příručka k rozšířením MediaWiki
MultiLanguageManager
Stav rozšíření: neudržované
Implementace Databáze , Národní prostředí
Popis Přidání vícejazyčných možností do wiki
Autoři Marc Despland, Robert Vogel
Nejnovější verze 2.0 (2017-08-31)
MediaWiki 1.29
Změny v databázi Ano

  • $mgAvailableLanguage
  • $mgLanguagePermisionsKey
language
Licence GNU General Public License 2.0
Stáhnout
Přeložte rozšíření MultiLanguageManager, používá-li lokalizaci z translatewiki.net

The MultiLanguageManager extension allows you to add multi-languages capacities to a wiki:

  • You can define a list of available languages
  • You can define a page to be a variant of another page within the same wiki
  • On a page with variants a special navigation will be displayed ("flags") that allow to switch between those pages
  • The interface language for anonymous users will automatically be changed to match the language of the page

ATTENTION: This extension does not use the built-in Page content language mechanism of MediaWiki. If that is desired, use the PerPageLanguage extension.

Instalace

  • Stáhněte soubor/y a vložte je do adresáře pojmenovaného MultiLanguageManager ve vaší složce extensions/.
    Vývojáři a přispěvatelé kódu by si místo toho měli nainstalovat rozšíření from Git pomocí:
    cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/MultiLanguageManager
    
  • Na konec vašeho souboru LocalSettings.php přidejte následující kód:
    wfLoadExtension( 'MultiLanguageManager' );
    
  • Spusťte aktualizační skript, který automaticky provede všechny nezbytné databázové změny, jaké rozšíření vyžaduje.
  • Yes Dokončeno – Přejděte na stránku Special:Version vaší wiki a zkontrolujte, zda bylo rozšíření úspěšně nainstalováno.

Nastavení

Dostupné jazyky

The configuration is done using the $mgAvailableLanguages variable which contains the code of language and the code of its name in the file MultiLanguageManager_setup.php.

$mgAvailableLanguages = array(
   'en',
   'fr'
);

Uživatelská práva

You can manage who has the rights to modify the linguistic parameters of the pages. You can set those users rights to match with an existing right using the $mgLanguagePermisionsKey variable. For example to set the linguistic rights to match the edition article rights:

$mgLanguagePermisionsKey = 'edit';

But you could also choose an other rights language:

$mgLanguagePermisionsKey = 'language';

Then think of set the rights according to the groups:

$wgGroupPermissions['*'][$mgLanguagePermisionsKey] = false;
$wgGroupPermissions['user'][$mgLanguagePermisionsKey] = true;
$wgGroupPermissions['sysop'][$mgLanguagePermisionsKey] = true;

Související odkazy