2006-07-26 07:15:39 +00:00
|
|
|
<?php
|
2012-06-23 20:09:38 +00:00
|
|
|
/** Aragonese (aragonés)
|
Localisation updates from Betawiki.
* an, ar, br, el, ext, fo, gl, hr, hsb, hy, inh, is, it, ku-latn, li, loz (new), ln, nl, ps, qu, sd, sdc, tet, tg, tl, ug, vls
2007-10-20 16:54:39 +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
|
|
|
* @file
|
2022-06-22 22:37:31 +00:00
|
|
|
* @ingroup Languages
|
Localisation updates from Betawiki.
* an, ar, br, el, ext, fo, gl, hr, hsb, hy, inh, is, it, ku-latn, li, loz (new), ln, nl, ps, qu, sd, sdc, tet, tg, tl, ug, vls
2007-10-20 16:54:39 +00:00
|
|
|
*/
|
2006-07-26 07:15:39 +00:00
|
|
|
|
Localisation updates from Betawiki.
* an, ast, dsb, ext, ff, frp, glk (new) hr, hsb, is, it, la, ln, myv, nl, pdc (new), rm (new), sdc, shi, sv, vls
2007-10-31 13:33:39 +00:00
|
|
|
$fallback = 'es';
|
|
|
|
|
|
2016-02-17 09:09:32 +00:00
|
|
|
$namespaceNames = [
|
2009-02-17 17:57:25 +00:00
|
|
|
NS_MEDIA => 'Media',
|
2011-08-06 09:21:05 +00:00
|
|
|
NS_SPECIAL => 'Especial',
|
2009-02-17 17:57:25 +00:00
|
|
|
NS_TALK => 'Descusión',
|
|
|
|
|
NS_USER => 'Usuario',
|
|
|
|
|
NS_USER_TALK => 'Descusión_usuario',
|
|
|
|
|
NS_PROJECT_TALK => 'Descusión_$1',
|
|
|
|
|
NS_FILE => 'Imachen',
|
|
|
|
|
NS_FILE_TALK => 'Descusión_imachen',
|
|
|
|
|
NS_MEDIAWIKI => 'MediaWiki',
|
|
|
|
|
NS_MEDIAWIKI_TALK => 'Descusión_MediaWiki',
|
|
|
|
|
NS_TEMPLATE => 'Plantilla',
|
|
|
|
|
NS_TEMPLATE_TALK => 'Descusión_plantilla',
|
|
|
|
|
NS_HELP => 'Aduya',
|
|
|
|
|
NS_HELP_TALK => 'Descusión_aduya',
|
|
|
|
|
NS_CATEGORY => 'Categoría',
|
|
|
|
|
NS_CATEGORY_TALK => 'Descusión_categoría',
|
2016-02-17 09:09:32 +00:00
|
|
|
];
|
2006-07-26 07:15:39 +00:00
|
|
|
|
2016-02-17 09:09:32 +00:00
|
|
|
$namespaceAliases = [
|
2011-08-06 09:21:05 +00:00
|
|
|
'Espezial' => NS_SPECIAL,
|
2016-02-17 09:09:32 +00:00
|
|
|
];
|
2011-08-06 09:21:05 +00:00
|
|
|
|
2015-09-28 07:15:29 +00:00
|
|
|
// T113890: Setting $namespaceGenderAliases for Aragonese (an)
|
2016-02-17 09:09:32 +00:00
|
|
|
$namespaceGenderAliases = [
|
|
|
|
|
NS_USER => [ 'male' => 'Usuario', 'female' => 'Usuaria' ],
|
|
|
|
|
NS_USER_TALK => [ 'male' => 'Descusión_usuario', 'female' => 'Descusión_usuaria' ],
|
|
|
|
|
];
|
2012-06-13 17:58:55 +00:00
|
|
|
|
2021-03-03 17:33:55 +00:00
|
|
|
/** @phpcs-require-sorted-array */
|
2016-02-17 09:09:32 +00:00
|
|
|
$magicWords = [
|
2021-03-03 17:33:55 +00:00
|
|
|
'currentversion' => [ '1', 'BERSIÓNAUTUAL', 'BERSIONAUTUAL', 'REVISIÓNACTUAL', 'VERSIONACTUAL', 'VERSIÓNACTUAL', 'CURRENTVERSION' ],
|
|
|
|
|
'displaytitle' => [ '1', 'TÍTOL', 'MOSTRARTÍTULO', 'MOSTRARTITULO', 'DISPLAYTITLE' ],
|
|
|
|
|
'img_left' => [ '1', 'cucha', 'izquierda', 'zurda', 'izda', 'izq', 'left' ],
|
|
|
|
|
'img_right' => [ '1', 'dreita', 'derecha', 'dcha', 'der', 'right' ],
|
2024-06-04 17:55:10 +00:00
|
|
|
'language' => [ '0', '#LUENGA', '#IDIOMA', '#LANGUAGE' ],
|
2016-02-17 09:09:32 +00:00
|
|
|
'namespace' => [ '1', 'ESPACIODENOMBRES', 'ESPACIODENOMBRE', 'NAMESPACE' ],
|
|
|
|
|
'namespacee' => [ '1', 'ESPACIODENOMBRESE', 'ESPACIODENOMBREC', 'NAMESPACEE' ],
|
|
|
|
|
'ns' => [ '0', 'EN:', 'EDN:', 'NS:' ],
|
2021-03-03 17:33:55 +00:00
|
|
|
'redirect' => [ '0', '#ENDRECERA', '#REENDRECERA', '#REDIRECCIÓN', '#REDIRECCION', '#REDIRECT' ],
|
2016-02-17 09:09:32 +00:00
|
|
|
'special' => [ '0', 'especial', 'espezial', 'special' ],
|
|
|
|
|
];
|
2007-12-30 23:44:27 +00:00
|
|
|
|
2020-10-30 08:59:17 +00:00
|
|
|
/** @phpcs-require-sorted-array */
|
2016-02-17 09:09:32 +00:00
|
|
|
$specialPageAliases = [
|
|
|
|
|
'Allmessages' => [ 'Totz_os_mensaches', 'Toz_os_mensaches' ],
|
|
|
|
|
'Allpages' => [ 'Todas_as_pachinas' ],
|
|
|
|
|
'Ancientpages' => [ 'Pachinas_mas_viellas', 'Pachinas_mas_antigas', 'Pachinas_más_biellas', 'Pachinas_biellas', 'Pachinas_antigas' ],
|
|
|
|
|
'Block' => [ 'Bloqueyar' ],
|
2020-10-30 08:59:17 +00:00
|
|
|
'BlockList' => [ 'Lista_d\'IPs_bloqueyatas', 'Lista_d\'IPs_bloquiatas', 'Lista_d\'adrezas_IP_bloqueyatas', 'Lista_d\'adrezas_IP_bloquiatas' ],
|
2016-02-17 09:09:32 +00:00
|
|
|
'Booksources' => [ 'Fuents_de_libros' ],
|
|
|
|
|
'BrokenRedirects' => [ 'Endreceras_trencatas', 'Endreceras_trencadas', 'Reendrezeras_trencatas', 'Endrezeras_trencatas', 'Reendrezeras_crebatas', 'Endrezeras_crebatas', 'Endrezeras_trencadas', 'Endrezeras_crebadas' ],
|
|
|
|
|
'Categories' => [ 'Categorías' ],
|
|
|
|
|
'ChangePassword' => [ 'Cambiar_contrasenya' ],
|
|
|
|
|
'Confirmemail' => [ 'Confirmar_e-mail' ],
|
|
|
|
|
'Contributions' => [ 'Contrebucions', 'Contrebuzions' ],
|
|
|
|
|
'CreateAccount' => [ 'Creyar_cuenta' ],
|
|
|
|
|
'Deadendpages' => [ 'Pachinas_sin_salida', 'Pachinas_sin_de_salida' ],
|
|
|
|
|
'DoubleRedirects' => [ 'Endreceras_doples', 'Reendrezeras_dobles', 'Dobles_reendrezeras', 'Endrezeras_dobles', 'Dobles_endrezeras' ],
|
|
|
|
|
'Emailuser' => [ 'Ninvía_mensache', 'Nimbía_mensache' ],
|
|
|
|
|
'Export' => [ 'Exportar' ],
|
|
|
|
|
'Fewestrevisions' => [ 'Pachinas_con_menos_edicions', 'Pachinas_con_menos_edizions', 'Pachinas_menos_editatas', 'Pachinas_con_menos_bersions' ],
|
|
|
|
|
'Import' => [ 'Importar' ],
|
|
|
|
|
'Listadmins' => [ 'Lista_d\'almenistradors' ],
|
|
|
|
|
'Listbots' => [ 'Lista_de_botz', 'Lista_de_bots' ],
|
|
|
|
|
'Listfiles' => [ 'Lista_de_fichers', 'Lista_d\'imáchens', 'Lista_d\'imachens' ],
|
|
|
|
|
'Listgrouprights' => [ 'ListaDreitosGrupos' ],
|
|
|
|
|
'Listusers' => [ 'Lista_d\'usuarios' ],
|
|
|
|
|
'Log' => [ 'Rechistro', 'Rechistros' ],
|
|
|
|
|
'Lonelypages' => [ 'Pachinas_popiellas' ],
|
|
|
|
|
'Longpages' => [ 'Pachinas_mas_largas' ],
|
|
|
|
|
'Mostcategories' => [ 'Pachinas_con_mas_categorías' ],
|
|
|
|
|
'Mostimages' => [ 'Fichers_mas_emplegatos', 'Imáchens_mas_emplegatas', 'Imachens_más_emplegatas' ],
|
|
|
|
|
'Mostlinked' => [ 'Pachinas_mas_enlazatas', 'Pachinas_mas_vinculatas' ],
|
|
|
|
|
'Mostlinkedcategories' => [ 'Categorías_mas_emplegatas', 'Categorías_más_enlazatas', 'Categorías_más_binculatas' ],
|
|
|
|
|
'Mostlinkedtemplates' => [ 'Plantillas_mas_emplegatas', 'Plantillas_mas_enlazatas', 'Plantillas_más_binculatas' ],
|
|
|
|
|
'Mostrevisions' => [ 'Pachinas_con_más_edicions', 'Pachinas_con_más_edizions', 'Pachinas_más_editatas', 'Pachinas_con_más_bersions' ],
|
|
|
|
|
'Movepage' => [ 'TresladarPachina', 'Renombrar_pachina', 'Mober_pachina', 'Tresladar_pachina' ],
|
|
|
|
|
'Mycontributions' => [ 'As_mías_contrebucions', 'As_mías_contrebuzions' ],
|
|
|
|
|
'Mypage' => [ 'A_mía_pachina', 'A_mía_pachina_d\'usuario' ],
|
|
|
|
|
'Mytalk' => [ 'A_mía_descusión', 'A_mía_pachina_de_descusión' ],
|
|
|
|
|
'Newimages' => [ 'Nuevos_fichers', 'Nuevas_imáchens', 'Nuevas_imachens', 'Nuebas_imachens' ],
|
|
|
|
|
'Newpages' => [ 'Pachinas_nuevas', 'Pachinas_recients', 'Pachinas_nuebas', 'Pachinas_más_nuebas', 'Pachinas_más_rezients', 'Pachinas_rezients' ],
|
|
|
|
|
'Preferences' => [ 'Preferencias' ],
|
|
|
|
|
'Prefixindex' => [ 'Pachinas_por_prefixo', 'Mirar_por_prefixo' ],
|
|
|
|
|
'Protectedpages' => [ 'Pachinas_protechitas', 'Pachinas_protechidas' ],
|
|
|
|
|
'Protectedtitles' => [ 'Títols_protechitos', 'Títols_protexitos', 'Títols_protechius' ],
|
|
|
|
|
'Randompage' => [ 'Pachina_a_l\'azar', 'Pachina_aleatoria', 'Pachina_aliatoria' ],
|
|
|
|
|
'Recentchanges' => [ 'Zaguers_cambeos', 'Cambeos_recients' ],
|
|
|
|
|
'Search' => [ 'Mirar' ],
|
|
|
|
|
'Shortpages' => [ 'Pachinas_más_curtas' ],
|
|
|
|
|
'Specialpages' => [ 'Pachinas_especials', 'Pachinas_espezials' ],
|
|
|
|
|
'Statistics' => [ 'Estatisticas', 'Estadisticas' ],
|
|
|
|
|
'Uncategorizedcategories' => [ 'Categorías_sin_categorizar._Categorías_sin_categorías' ],
|
|
|
|
|
'Uncategorizedimages' => [ 'Fichers_sin_categorizar', 'Fichers_sin_categorías', 'Imáchens_sin_categorías', 'Imachens_sin_categorizar', 'Imáchens_sin_categorizar' ],
|
|
|
|
|
'Uncategorizedpages' => [ 'Pachinas_sin_categorizar', 'Pachinas_sin_categorías' ],
|
|
|
|
|
'Uncategorizedtemplates' => [ 'Plantillas_sin_categorizar._Plantillas_sin_categorías' ],
|
|
|
|
|
'Undelete' => [ 'Restaurar' ],
|
|
|
|
|
'Unusedcategories' => [ 'Categorías_no_emplegatas', 'Categorías_sin_emplegar' ],
|
|
|
|
|
'Unusedimages' => [ 'Fichers_no_emplegatos', 'Fichers_sin_emplegar', 'Imáchens_no_emplegatas', 'Imáchens_sin_emplegar' ],
|
|
|
|
|
'Unwatchedpages' => [ 'Pachinas_no_cosiratas', 'Pachinas_sin_cosirar' ],
|
|
|
|
|
'Upload' => [ 'Cargar', 'Puyar' ],
|
|
|
|
|
'Userlogin' => [ 'Encetar_sesión', 'Enzetar_sesión', 'Dentrar' ],
|
|
|
|
|
'Userlogout' => [ 'Salir', 'Rematar_sesión' ],
|
|
|
|
|
'Version' => [ 'Versión', 'Bersión' ],
|
|
|
|
|
'Wantedcategories' => [ 'Categorías_requiestas', 'Categorías_demandatas' ],
|
|
|
|
|
'Wantedfiles' => [ 'Fichers_requiestos', 'Fichers_demandaus', 'Archibos_requiestos', 'Archibos_demandatos' ],
|
|
|
|
|
'Wantedpages' => [ 'Pachinas_requiestas', 'Pachinas_demandatas', 'Binclos_crebatos', 'Binclos_trencatos' ],
|
|
|
|
|
'Wantedtemplates' => [ 'Plantillas_requiestas', 'Plantillas_demandatas' ],
|
|
|
|
|
'Watchlist' => [ 'Lista_de_seguimiento' ],
|
|
|
|
|
];
|