wiki.techinc.nl/languages/messages/MessagesGa.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

78 lines
3.9 KiB
PHP
Raw Normal View History

<?php
Merged localisation-work branch: * Made lines from initialiseMessages() appear as list items during installation * Moved the bulk of the localisation data from the Language*.php files to the Messages*.php files. Deleted most of the Languages*.php files. * Introduced "stub global" framework to provide deferred initialisation of core modules. * Removed placeholder values for $wgTitle and $wgArticle, these variables will now be null during the initialisation process, until they are set by index.php or another entry point. * Added DBA cache type, for BDB-style caches. * Removed custom date format functions, replacing them with a format string in the style of PHP's date(). Used string identifiers instead of integer identifiers, in both the language files and user preferences. Migration should be transparent in most cases. * Simplified the initialisation API for LoadBalancer objects. * Removed the broken altencoding feature. * Moved default user options and toggles from Language to User. Language objects are still able to define default preference overrides and extra user toggles, via a slightly different interface. * Don't include the date option in the parser cache rendering hash unless $wgUseDynamicDates is enabled. * Merged LanguageUtf8 with Language. Removed LanguageUtf8.php. * Removed inclusion of language files from the bottom of Language.php. This is now consistently done from Language::factory(). * Add the name of the executing maintenance script to the debug log. Start the profiler during maintenance scripts. * Added "serialized" directory, for storing precompiled data in serialized form.
2006-07-26 07:15:39 +00:00
/** Irish (Gaeilge)
*
* @file
* @ingroup Languages
Merged localisation-work branch: * Made lines from initialiseMessages() appear as list items during installation * Moved the bulk of the localisation data from the Language*.php files to the Messages*.php files. Deleted most of the Languages*.php files. * Introduced "stub global" framework to provide deferred initialisation of core modules. * Removed placeholder values for $wgTitle and $wgArticle, these variables will now be null during the initialisation process, until they are set by index.php or another entry point. * Added DBA cache type, for BDB-style caches. * Removed custom date format functions, replacing them with a format string in the style of PHP's date(). Used string identifiers instead of integer identifiers, in both the language files and user preferences. Migration should be transparent in most cases. * Simplified the initialisation API for LoadBalancer objects. * Removed the broken altencoding feature. * Moved default user options and toggles from Language to User. Language objects are still able to define default preference overrides and extra user toggles, via a slightly different interface. * Don't include the date option in the parser cache rendering hash unless $wgUseDynamicDates is enabled. * Merged LanguageUtf8 with Language. Removed LanguageUtf8.php. * Removed inclusion of language files from the bottom of Language.php. This is now consistently done from Language::factory(). * Add the name of the executing maintenance script to the debug log. Start the profiler during maintenance scripts. * Added "serialized" directory, for storing precompiled data in serialized form.
2006-07-26 07:15:39 +00:00
*/
/** @phpcs-require-sorted-array */
$magicWords = [
'currentday' => [ '1', 'LÁLÁITHREACH', 'CURRENTDAY' ],
'currentdayname' => [ '1', 'AINMANLAELÁITHRIGH', 'CURRENTDAYNAME' ],
'currentdow' => [ '1', 'LÁLÁITHREACHNAS', 'CURRENTDOW' ],
'currentmonth' => [ '1', 'MÍLÁITHREACH', 'CURRENTMONTH', 'CURRENTMONTH2' ],
'currentmonthabbrev' => [ '1', 'GIORRÚNAMÍOSALÁITHREAÍ', 'CURRENTMONTHABBREV' ],
'currentmonthname' => [ '1', 'AINMNAMÍOSALÁITHREAÍ', 'CURRENTMONTHNAME' ],
'currentmonthnamegen' => [ '1', 'GINAINMNAMÍOSALÁITHREAÍ', 'CURRENTMONTHNAMEGEN' ],
'currenttime' => [ '1', 'AMLÁITHREACH', 'CURRENTTIME' ],
'currentweek' => [ '1', 'SEACHTAINLÁITHREACH', 'CURRENTWEEK' ],
'currentyear' => [ '1', 'BLIAINLÁITHREACH', 'CURRENTYEAR' ],
'forcetoc' => [ '0', '__CÁGACHUAIR__', '__FORCETOC__' ],
'grammar' => [ '0', 'GRAMADACH:', 'GRAMMAR:' ],
'img_center' => [ '1', 'lár', 'center', 'centre' ],
'img_framed' => [ '1', 'fráma', 'frámaithe', 'frame', 'framed', 'enframed' ],
'img_left' => [ '1', 'clé', 'left' ],
'img_none' => [ '1', 'faic', 'none' ],
'img_right' => [ '1', 'deas', 'right' ],
'img_thumbnail' => [ '1', 'mion', 'mionsamhail', 'thumb', 'thumbnail' ],
'int' => [ '0', 'INMH:', 'INT:' ],
'localurl' => [ '0', 'URLÁITIÚIL', 'LOCALURL:' ],
'localurle' => [ '0', 'URLÁITIÚILB', 'LOCALURLE:' ],
'msg' => [ '0', 'TCHT:', 'MSG:' ],
'msgnw' => [ '0', 'TCHTFS:', 'MSGNW:' ],
'namespace' => [ '1', 'AINMSPÁS', 'NAMESPACE' ],
'nocontentconvert' => [ '0', '__GANTIONTÚNANÁBHAIR__', '__GANTA__', '__NOCONTENTCONVERT__', '__NOCC__' ],
'noeditsection' => [ '0', '__GANMHÍRATHRÚ__', '__NOEDITSECTION__' ],
'notitleconvert' => [ '0', '__GANTIONTÚNADTEIDEAL__', '__GANTT__', '__NOTITLECONVERT__', '__NOTC__' ],
'notoc' => [ '0', '__GANCÁ__', '__NOTOC__' ],
'ns' => [ '0', 'AS:', 'NS:' ],
'numberofarticles' => [ '1', 'LÍONNANALT', 'NUMBEROFARTICLES' ],
'numberoffiles' => [ '1', 'LÍONNAGCOMHAD', 'NUMBEROFFILES' ],
'pagename' => [ '1', 'AINMANLGH', 'PAGENAME' ],
'pagenamee' => [ '1', 'AINMANLGHB', 'PAGENAMEE' ],
'redirect' => [ '0', '#athsheoladh', '#REDIRECT' ],
'revisionid' => [ '1', 'IDANLEASAITHE', 'REVISIONID' ],
'scriptpath' => [ '0', 'SCRIPTCHOSÁN', 'SCRIPTPATH' ],
'server' => [ '0', 'FREASTALAÍ', 'SERVER' ],
'servername' => [ '0', 'AINMANFHREASTALAÍ', 'SERVERNAME' ],
'sitename' => [ '1', 'AINMANTSUÍMH', 'SITENAME' ],
'subst' => [ '0', 'IONAD:', 'SUBST:' ],
'toc' => [ '0', '__CÁ__', '__TOC__' ],
];
Merged localisation-work branch: * Made lines from initialiseMessages() appear as list items during installation * Moved the bulk of the localisation data from the Language*.php files to the Messages*.php files. Deleted most of the Languages*.php files. * Introduced "stub global" framework to provide deferred initialisation of core modules. * Removed placeholder values for $wgTitle and $wgArticle, these variables will now be null during the initialisation process, until they are set by index.php or another entry point. * Added DBA cache type, for BDB-style caches. * Removed custom date format functions, replacing them with a format string in the style of PHP's date(). Used string identifiers instead of integer identifiers, in both the language files and user preferences. Migration should be transparent in most cases. * Simplified the initialisation API for LoadBalancer objects. * Removed the broken altencoding feature. * Moved default user options and toggles from Language to User. Language objects are still able to define default preference overrides and extra user toggles, via a slightly different interface. * Don't include the date option in the parser cache rendering hash unless $wgUseDynamicDates is enabled. * Merged LanguageUtf8 with Language. Removed LanguageUtf8.php. * Removed inclusion of language files from the bottom of Language.php. This is now consistently done from Language::factory(). * Add the name of the executing maintenance script to the debug log. Start the profiler during maintenance scripts. * Added "serialized" directory, for storing precompiled data in serialized form.
2006-07-26 07:15:39 +00:00
$namespaceNames = [
NS_MEDIA => 'Meán',
Merged localisation-work branch: * Made lines from initialiseMessages() appear as list items during installation * Moved the bulk of the localisation data from the Language*.php files to the Messages*.php files. Deleted most of the Languages*.php files. * Introduced "stub global" framework to provide deferred initialisation of core modules. * Removed placeholder values for $wgTitle and $wgArticle, these variables will now be null during the initialisation process, until they are set by index.php or another entry point. * Added DBA cache type, for BDB-style caches. * Removed custom date format functions, replacing them with a format string in the style of PHP's date(). Used string identifiers instead of integer identifiers, in both the language files and user preferences. Migration should be transparent in most cases. * Simplified the initialisation API for LoadBalancer objects. * Removed the broken altencoding feature. * Moved default user options and toggles from Language to User. Language objects are still able to define default preference overrides and extra user toggles, via a slightly different interface. * Don't include the date option in the parser cache rendering hash unless $wgUseDynamicDates is enabled. * Merged LanguageUtf8 with Language. Removed LanguageUtf8.php. * Removed inclusion of language files from the bottom of Language.php. This is now consistently done from Language::factory(). * Add the name of the executing maintenance script to the debug log. Start the profiler during maintenance scripts. * Added "serialized" directory, for storing precompiled data in serialized form.
2006-07-26 07:15:39 +00:00
NS_SPECIAL => 'Speisialta',
NS_TALK => 'Plé',
NS_USER => 'Úsáideoir',
NS_USER_TALK => 'Plé_úsáideora',
NS_PROJECT_TALK => 'Plé_{{grammar:genitive|$1}}',
NS_FILE => 'Íomhá',
NS_FILE_TALK => 'Plé_íomhá',
Merged localisation-work branch: * Made lines from initialiseMessages() appear as list items during installation * Moved the bulk of the localisation data from the Language*.php files to the Messages*.php files. Deleted most of the Languages*.php files. * Introduced "stub global" framework to provide deferred initialisation of core modules. * Removed placeholder values for $wgTitle and $wgArticle, these variables will now be null during the initialisation process, until they are set by index.php or another entry point. * Added DBA cache type, for BDB-style caches. * Removed custom date format functions, replacing them with a format string in the style of PHP's date(). Used string identifiers instead of integer identifiers, in both the language files and user preferences. Migration should be transparent in most cases. * Simplified the initialisation API for LoadBalancer objects. * Removed the broken altencoding feature. * Moved default user options and toggles from Language to User. Language objects are still able to define default preference overrides and extra user toggles, via a slightly different interface. * Don't include the date option in the parser cache rendering hash unless $wgUseDynamicDates is enabled. * Merged LanguageUtf8 with Language. Removed LanguageUtf8.php. * Removed inclusion of language files from the bottom of Language.php. This is now consistently done from Language::factory(). * Add the name of the executing maintenance script to the debug log. Start the profiler during maintenance scripts. * Added "serialized" directory, for storing precompiled data in serialized form.
2006-07-26 07:15:39 +00:00
NS_MEDIAWIKI => 'MediaWiki',
NS_MEDIAWIKI_TALK => 'Plé_MediaWiki',
NS_TEMPLATE => 'Teimpléad',
NS_TEMPLATE_TALK => 'Plé_teimpléid',
NS_HELP => 'Cabhair',
NS_HELP_TALK => 'Plé_cabhrach',
NS_CATEGORY => 'Catagóir',
NS_CATEGORY_TALK => 'Plé_catagóire',
];
Merged localisation-work branch: * Made lines from initialiseMessages() appear as list items during installation * Moved the bulk of the localisation data from the Language*.php files to the Messages*.php files. Deleted most of the Languages*.php files. * Introduced "stub global" framework to provide deferred initialisation of core modules. * Removed placeholder values for $wgTitle and $wgArticle, these variables will now be null during the initialisation process, until they are set by index.php or another entry point. * Added DBA cache type, for BDB-style caches. * Removed custom date format functions, replacing them with a format string in the style of PHP's date(). Used string identifiers instead of integer identifiers, in both the language files and user preferences. Migration should be transparent in most cases. * Simplified the initialisation API for LoadBalancer objects. * Removed the broken altencoding feature. * Moved default user options and toggles from Language to User. Language objects are still able to define default preference overrides and extra user toggles, via a slightly different interface. * Don't include the date option in the parser cache rendering hash unless $wgUseDynamicDates is enabled. * Merged LanguageUtf8 with Language. Removed LanguageUtf8.php. * Removed inclusion of language files from the bottom of Language.php. This is now consistently done from Language::factory(). * Add the name of the executing maintenance script to the debug log. Start the profiler during maintenance scripts. * Added "serialized" directory, for storing precompiled data in serialized form.
2006-07-26 07:15:39 +00:00
$namespaceAliases = [
'Plé_í­omhá' => NS_FILE_TALK,
Merged localisation-work branch: * Made lines from initialiseMessages() appear as list items during installation * Moved the bulk of the localisation data from the Language*.php files to the Messages*.php files. Deleted most of the Languages*.php files. * Introduced "stub global" framework to provide deferred initialisation of core modules. * Removed placeholder values for $wgTitle and $wgArticle, these variables will now be null during the initialisation process, until they are set by index.php or another entry point. * Added DBA cache type, for BDB-style caches. * Removed custom date format functions, replacing them with a format string in the style of PHP's date(). Used string identifiers instead of integer identifiers, in both the language files and user preferences. Migration should be transparent in most cases. * Simplified the initialisation API for LoadBalancer objects. * Removed the broken altencoding feature. * Moved default user options and toggles from Language to User. Language objects are still able to define default preference overrides and extra user toggles, via a slightly different interface. * Don't include the date option in the parser cache rendering hash unless $wgUseDynamicDates is enabled. * Merged LanguageUtf8 with Language. Removed LanguageUtf8.php. * Removed inclusion of language files from the bottom of Language.php. This is now consistently done from Language::factory(). * Add the name of the executing maintenance script to the debug log. Start the profiler during maintenance scripts. * Added "serialized" directory, for storing precompiled data in serialized form.
2006-07-26 07:15:39 +00:00
'Múnla' => NS_TEMPLATE,
'Plé_múnla' => NS_TEMPLATE_TALK,
'Rang' => NS_CATEGORY
];