Extension:MultiLanguageManager/pt-br
O autor desta extensão não está mais mantendo-a! Embora ainda possa funcionar, qualquer relatório de bug ou solicitações de recursos serão mais do que provavelmente ignorados. Se você estiver interessado em assumir a tarefa de desenvolver e manter essa extensão, você pode solicitar a propriedade do repositório. As a courtesy, you may want to contact the author. Você também deve remover essa predefinição e listar-se como mantenedor da extensão na infobox da página {{Extensão }}. |
MultiLanguageManager Estado da versão: sem manutenção |
|
---|---|
Implementação | Banco de dados , Idiomas |
Descrição | Adicionar capacidade de múltiplos idiomas em uma wiki |
Autor(es) | Marc Despland, Robert Vogel |
Última versão | 2.0 (2017-08-31) |
MediaWiki | 1.29 |
Modifica o banco de dados |
Sim |
Licença | GNU GPL (Licença Pública Geral) 2.0 |
Download | |
|
|
language |
|
Quarterly downloads | 5 (Ranked 126th) |
Para traduzir a extensão MultiLanguageManager, verifique sua disponibilidade no 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.
Instalação
- Baixe e coloque o(s) arquivo(s) num diretório chamado
MultiLanguageManager
na sua pastaextensions/
.
Developers and code contributors should install the extension from Git instead, using:cd extensions/
git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/MultiLanguageManager - Adicione o seguinte código ao final do seu arquivo LocalSettings.php :
wfLoadExtension( 'MultiLanguageManager' );
- Execute o script de atualização que criará automaticamente as tabelas de banco de dados necessárias a essa extensão.
- Concluído – Navegue à página Special:Version em sua wiki para verificar se a instalação da extensão foi bem sucedida.
Configuração
Linguagens disponíveis
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'
);
Direitos de usuário
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;
Veja também
- Extension:PerPageLanguage - Displays the interface in the language of the content
- Unmaintained extensions/pt-br
- Database extensions/pt-br
- Internationalization extensions/pt-br
- GPL licensed extensions/pt-br
- Extensions in Wikimedia version control/pt-br
- Extensions which add rights/pt-br
- ArticleDelete extensions/pt-br
- BeforePageDisplay extensions/pt-br
- LoadExtensionSchemaUpdates extensions/pt-br
- SkinBuildSidebar extensions/pt-br
- SkinTemplateNavigation::Universal extensions/pt-br
- UserGetLanguageObject extensions/pt-br
- All extensions/pt-br