mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Description2
synced 2024-11-23 22:33:34 +00:00
39 lines
1 KiB
PHP
39 lines
1 KiB
PHP
<?php
|
|
/**
|
|
* Internationalisation for Description2 extension
|
|
*
|
|
* @file
|
|
* @ingroup Extensions
|
|
*/
|
|
|
|
$messages = array();
|
|
|
|
/** English
|
|
* @author Daniel Friesen
|
|
*/
|
|
$messages['en'] = array(
|
|
'description2-desc' => 'Adds a description meta-tag to MediaWiki pages and into the ParserOutput for other extensions to use',
|
|
);
|
|
|
|
/** Breton (Brezhoneg)
|
|
* @author Fulup
|
|
*/
|
|
$messages['br'] = array(
|
|
'description2-desc' => 'Ouzhpennañ a ra un deskrivadur meta-tikedennet da bajennoù MediaWiki hag er Parser Output da vezañ implijet gant astennoù all',
|
|
);
|
|
|
|
/** German (Deutsch)
|
|
* @author Kghbln
|
|
*/
|
|
$messages['de'] = array(
|
|
'description2-desc' => 'Fügt dem Seitenquelltext das Meta-Element „description“ hinzu sowie zusätzlich zur Nutzung durch andere Softwareerweiterungen der Parserausgabe',
|
|
);
|
|
|
|
/** Upper Sorbian (Hornjoserbsce)
|
|
* @author Michawiki
|
|
*/
|
|
$messages['hsb'] = array(
|
|
'description2-desc' => 'Přidawa metatafličku "description" do stronow MediaWiki a do ParserOutput za wužiwanje druhich rozšěrjenjow',
|
|
);
|
|
|