2007-08-13 13:40:48 +00:00
|
|
|
<?php
|
be, got (new), haw (new), ht, hu, ig (new), lb, nl, oc, sdc, to (new), wuu
2007-12-19 07:51:39 +00:00
|
|
|
/** Haitian (Kreyòl ayisyen)
|
2009-04-16 10:17:40 +00:00
|
|
|
*
|
2014-06-05 14:06:25 +00:00
|
|
|
* To improve a translation please visit https://translatewiki.net
|
2007-08-13 13:40:48 +00:00
|
|
|
*
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @ingroup Language
|
|
|
|
|
* @file
|
2007-08-13 13:40:48 +00:00
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2007-10-17 17:12:14 +00:00
|
|
|
$fallback = 'fr';
|
|
|
|
|
|
2007-08-13 13:40:48 +00:00
|
|
|
$namespaceNames = array(
|
2009-05-31 17:31:21 +00:00
|
|
|
NS_MEDIA => 'Medya',
|
|
|
|
|
NS_SPECIAL => 'Espesyal',
|
|
|
|
|
NS_TALK => 'Diskite',
|
|
|
|
|
NS_USER => 'Itilizatè',
|
|
|
|
|
NS_USER_TALK => 'Diskisyon_Itilizatè',
|
|
|
|
|
NS_PROJECT_TALK => 'Diskisyon_$1',
|
2011-02-03 15:59:55 +00:00
|
|
|
NS_FILE => 'Fichye',
|
|
|
|
|
NS_FILE_TALK => 'Diskisyon_Fichye',
|
2009-05-31 17:31:21 +00:00
|
|
|
NS_MEDIAWIKI => 'MedyaWiki',
|
|
|
|
|
NS_MEDIAWIKI_TALK => 'Diskisyon_MedyaWiki',
|
|
|
|
|
NS_TEMPLATE => 'Modèl',
|
|
|
|
|
NS_TEMPLATE_TALK => 'Diskisyon_Modèl',
|
|
|
|
|
NS_HELP => 'Èd',
|
|
|
|
|
NS_HELP_TALK => 'Diskisyon_Èd',
|
|
|
|
|
NS_CATEGORY => 'Kategori',
|
|
|
|
|
NS_CATEGORY_TALK => 'Diskisyon_Kategori',
|
2007-08-13 13:40:48 +00:00
|
|
|
);
|
|
|
|
|
|
2011-02-03 15:59:55 +00:00
|
|
|
$namespaceAliases = array(
|
|
|
|
|
'Imaj' => NS_USER,
|
|
|
|
|
'Diskisyon_Imaj' => NS_USER_TALK,
|
|
|
|
|
);
|
|
|
|
|
|
Gender aliases for user namespaces in French and Cajun French
NS_USER:
* User identifies as male: Utilisateur
* User identifies as female: Utilisatrice
NS_USER_TALK:
* User identifies as male: Discussion utilisateur
* User identifies as female: Discussion utilisatrice
Languages with fallback to French:
* applies to frc (Cajun French). This language also uses « Utilisateur »
and « Utilisatric » to translate “user”.
* doesn't apply to bm, ff, frp, ht, ln, mg, pcd, sg, ty, wa, wo.
This change is a follow-up of I5825f750a58dd196f907ad848c74f82130fd857d.
Change-Id: Icb8c787ebfa0e7dfd8289260225fef045fc1b0cb
2014-01-06 12:09:18 +00:00
|
|
|
// Remove French aliases
|
|
|
|
|
$namespaceGenderAliases = array();
|
|
|
|
|
|
2008-10-19 14:00:10 +00:00
|
|
|
$specialPageAliases = array(
|
2011-05-07 14:19:48 +00:00
|
|
|
'Activeusers' => array( 'ItilizatèAktif' ),
|
|
|
|
|
'Allmessages' => array( 'ToutMesaj' ),
|
|
|
|
|
'Allpages' => array( 'ToutPaj' ),
|
|
|
|
|
'Ancientpages' => array( 'PajAnsyen' ),
|
2011-12-26 00:05:13 +00:00
|
|
|
'Badtitle' => array( 'MovèTit' ),
|
2011-05-07 14:19:48 +00:00
|
|
|
'Blankpage' => array( 'PajVid' ),
|
|
|
|
|
'Block' => array( 'Bloke', 'BlokeIP', 'BlokeItilizatè' ),
|
|
|
|
|
'Booksources' => array( 'SousLiv' ),
|
2008-10-19 14:00:10 +00:00
|
|
|
'BrokenRedirects' => array( 'RedireksyonKase' ),
|
2011-05-07 14:19:48 +00:00
|
|
|
'Categories' => array( 'Kategori' ),
|
|
|
|
|
'ChangePassword' => array( 'ChanjeMopas', 'ResètMopas' ),
|
|
|
|
|
'ComparePages' => array( 'KonparePaj' ),
|
|
|
|
|
'Confirmemail' => array( 'VerifyeImèl' ),
|
|
|
|
|
'Contributions' => array( 'Kontribisyon', 'Kontrib' ),
|
2011-02-03 15:27:08 +00:00
|
|
|
'CreateAccount' => array( 'KreyeKont' ),
|
2011-05-07 14:19:48 +00:00
|
|
|
'Deadendpages' => array( 'PajEnpas' ),
|
|
|
|
|
'DeletedContributions' => array( 'SiprimeKontribisyon' ),
|
|
|
|
|
'DoubleRedirects' => array( 'RedireksyonDoub' ),
|
|
|
|
|
'Emailuser' => array( 'ImèlItilizatè' ),
|
2013-12-02 08:38:25 +00:00
|
|
|
'ExpandTemplates' => array( 'EtannModèl' ),
|
2011-05-07 14:19:48 +00:00
|
|
|
'Export' => array( 'Ekspòte' ),
|
|
|
|
|
'Fewestrevisions' => array( 'MwensRevizyon' ),
|
|
|
|
|
'FileDuplicateSearch' => array( 'ChacheFichyeDoub' ),
|
|
|
|
|
'Filepath' => array( 'ChemenFichye' ),
|
|
|
|
|
'Import' => array( 'Enpòte' ),
|
|
|
|
|
'Invalidateemail' => array( 'EnvalideImèl' ),
|
|
|
|
|
'BlockList' => array( 'LisBloke', 'LisIPBloke' ),
|
|
|
|
|
'LinkSearch' => array( 'ChacheLyen' ),
|
|
|
|
|
'Listadmins' => array( 'LisAdmin' ),
|
|
|
|
|
'Listbots' => array( 'LisWobo' ),
|
2011-02-03 15:27:08 +00:00
|
|
|
'Listfiles' => array( 'LisFichye', 'Lis_Fichye', 'LisImaj' ),
|
|
|
|
|
'Listgrouprights' => array( 'LisDwaGwoup' ),
|
2011-05-07 14:19:48 +00:00
|
|
|
'Listredirects' => array( 'LisRedireksyon' ),
|
|
|
|
|
'Listusers' => array( 'LisItilizatè' ),
|
|
|
|
|
'Lockdb' => array( 'KadnaseDB' ),
|
|
|
|
|
'Log' => array( 'Jounal' ),
|
2011-02-03 15:27:08 +00:00
|
|
|
'Lonelypages' => array( 'PajPoukontli', 'PajOfelen' ),
|
2011-05-07 14:19:48 +00:00
|
|
|
'Longpages' => array( 'PajLong' ),
|
|
|
|
|
'MergeHistory' => array( 'FizyoneIstwa' ),
|
|
|
|
|
'MIMEsearch' => array( 'ChacheMIME' ),
|
|
|
|
|
'Mostcategories' => array( 'PlisKategori' ),
|
|
|
|
|
'Mostimages' => array( 'ImajPlisLye', 'PlisFichye', 'PlisImaj' ),
|
2011-02-03 15:27:08 +00:00
|
|
|
'Mostlinked' => array( 'PajPlisLye', 'PlisLye' ),
|
|
|
|
|
'Mostlinkedcategories' => array( 'KategoriPlisLye', 'KategoriPlisItilize' ),
|
|
|
|
|
'Mostlinkedtemplates' => array( 'ModèlPlisLye', 'ModèlPlisItilize' ),
|
2008-10-19 14:00:10 +00:00
|
|
|
'Mostrevisions' => array( 'PlisRevizyon' ),
|
|
|
|
|
'Movepage' => array( 'DeplasePaj' ),
|
2011-05-07 14:19:48 +00:00
|
|
|
'Mycontributions' => array( 'KontribisyonM' ),
|
2014-09-18 23:18:01 +00:00
|
|
|
'MyLanguage' => array( 'LangMwen' ),
|
2008-10-19 14:00:10 +00:00
|
|
|
'Mypage' => array( 'PajMwen' ),
|
2011-02-03 15:27:08 +00:00
|
|
|
'Mytalk' => array( 'DiskisyonM' ),
|
|
|
|
|
'Myuploads' => array( 'ChajmanM' ),
|
2011-05-07 14:19:48 +00:00
|
|
|
'Newimages' => array( 'NouvoImaj' ),
|
|
|
|
|
'Newpages' => array( 'PajNouvo' ),
|
|
|
|
|
'PasswordReset' => array( 'ResètMopas2' ),
|
2011-02-03 15:27:08 +00:00
|
|
|
'PermanentLink' => array( 'LyenPouToutTan' ),
|
2011-05-07 14:19:48 +00:00
|
|
|
'Preferences' => array( 'Preferans' ),
|
|
|
|
|
'Prefixindex' => array( 'EndèksPrefiks' ),
|
|
|
|
|
'Protectedpages' => array( 'PajPwoteje' ),
|
|
|
|
|
'Protectedtitles' => array( 'TitPwoteje' ),
|
|
|
|
|
'Randompage' => array( 'Oaza', 'PajOaza' ),
|
2013-12-02 08:38:25 +00:00
|
|
|
'RandomInCategory' => array( 'OazaNanKategori' ),
|
2011-05-07 14:19:48 +00:00
|
|
|
'Randomredirect' => array( 'RedireksyonOaza' ),
|
|
|
|
|
'Recentchanges' => array( 'ChanjmanResan' ),
|
|
|
|
|
'Recentchangeslinked' => array( 'LyenChanjmanResan', 'ChanjmanAk' ),
|
|
|
|
|
'Revisiondelete' => array( 'RevizyonSiprime' ),
|
2008-10-19 14:00:10 +00:00
|
|
|
'Search' => array( 'Chache', 'Fouye' ),
|
2011-05-07 14:19:48 +00:00
|
|
|
'Shortpages' => array( 'PajKout' ),
|
|
|
|
|
'Specialpages' => array( 'PajEspesyal' ),
|
|
|
|
|
'Statistics' => array( 'Estatistik' ),
|
2011-02-03 15:27:08 +00:00
|
|
|
'Tags' => array( 'Etikèt' ),
|
2011-05-07 14:19:48 +00:00
|
|
|
'Unblock' => array( 'Debloke' ),
|
|
|
|
|
'Uncategorizedcategories' => array( 'KategoriPakategorize' ),
|
|
|
|
|
'Uncategorizedimages' => array( 'ImajPakategorize' ),
|
|
|
|
|
'Uncategorizedpages' => array( 'PajPakategorize' ),
|
|
|
|
|
'Uncategorizedtemplates' => array( 'ModèlPakategorize' ),
|
|
|
|
|
'Undelete' => array( 'Restore' ),
|
|
|
|
|
'Unlockdb' => array( 'DekadnaseDB' ),
|
|
|
|
|
'Unusedcategories' => array( 'KategoriPaItilize' ),
|
|
|
|
|
'Unusedimages' => array( 'FichyePaItilize', 'ImajPaItilize' ),
|
|
|
|
|
'Unusedtemplates' => array( 'ModèlVyèj' ),
|
|
|
|
|
'Unwatchedpages' => array( 'PajPaSiveye' ),
|
|
|
|
|
'Upload' => array( 'Chaje' ),
|
|
|
|
|
'UploadStash' => array( 'ChajePil' ),
|
|
|
|
|
'Userlogin' => array( 'Koneksyon' ),
|
|
|
|
|
'Userlogout' => array( 'Dekoneksyon' ),
|
|
|
|
|
'Userrights' => array( 'DwaItilizatè', 'FèSysop', 'FèBot' ),
|
|
|
|
|
'Version' => array( 'Vèsyon' ),
|
|
|
|
|
'Wantedcategories' => array( 'KategoriNouBezwen' ),
|
|
|
|
|
'Wantedfiles' => array( 'FichyeNouBezwen' ),
|
|
|
|
|
'Wantedpages' => array( 'PajNouBezwen', 'LyenKase' ),
|
|
|
|
|
'Wantedtemplates' => array( 'ModèlNouBezwen' ),
|
|
|
|
|
'Watchlist' => array( 'LisSwivi' ),
|
|
|
|
|
'Whatlinkshere' => array( 'SakLye' ),
|
|
|
|
|
'Withoutinterwiki' => array( 'SanEntèwiki' ),
|
2008-10-19 14:00:10 +00:00
|
|
|
);
|
|
|
|
|
|
2007-08-13 13:40:48 +00:00
|
|
|
$linkTrail = '/^([a-zàèòÀÈÒ]+)(.*)$/sDu';
|
|
|
|
|
|