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

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

202 lines
12 KiB
PHP
Raw Normal View History

2006-06-09 16:50:53 +00:00
<?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
/** Yiddish (ייִדיש)
*
* @file
* @ingroup Languages
*
* @author Chaim Shel
* @author Jiddisch
* @author Joystick
* @author Kaganer
* @author Reedy
* @author Teak
* @author Yidel
* @author ווארצגאנג
* @author לערי ריינהארט
* @author פוילישער
*/
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
$fallback = 'he';
2006-06-09 16:50:53 +00:00
$rtl = true;
$namespaceNames = [
NS_MEDIA => 'מעדיע',
NS_SPECIAL => 'באַזונדער',
NS_TALK => 'רעדן',
NS_USER => 'באַניצער',
NS_USER_TALK => 'באַניצער_רעדן',
NS_PROJECT_TALK => '$1_רעדן',
NS_FILE => 'טעקע',
NS_FILE_TALK => 'טעקע_רעדן',
NS_MEDIAWIKI => 'מעדיעװיקי',
NS_MEDIAWIKI_TALK => 'מעדיעװיקי_רעדן',
NS_TEMPLATE => 'מוסטער',
NS_TEMPLATE_TALK => וסטער_רעדן',
NS_HELP => 'הילף',
NS_HELP_TALK => ילף_רעדן',
NS_CATEGORY => 'קאַטעגאָריע',
NS_CATEGORY_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
$namespaceAliases = [
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,
'באנוצער' => NS_USER,
'באנוצער_רעדן' => NS_USER_TALK,
'משתמש' => NS_USER,
יחת_משתמש' => NS_USER_TALK,
'משתמשת' => NS_USER,
יחת_משתמשת' => NS_USER_TALK,
'בילד' => NS_FILE,
ילד_רעדן' => 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
'מעדיעוויקי' => NS_MEDIAWIKI,
'מעדיעוויקי_רעדן' => NS_MEDIAWIKI_TALK,
'קאטעגאריע' => NS_CATEGORY,
'קאטעגאריע_רעדן' => NS_CATEGORY_TALK,
'באניצער' => NS_USER,
'באניצער_רעדן' => NS_USER_TALK,
];
$namespaceGenderAliases = [
NS_USER => [ 'male' => 'באַניצער', 'female' => 'באַניצערין' ],
NS_USER_TALK => [ 'male' => 'באַניצער_רעדן', 'female' => 'באַניצערין_רעדן' ],
];
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 */
$specialPageAliases = [
'Activeusers' => [ 'טעטיגע_באניצער' ],
'Allmessages' => [ 'סיסטעם_מעלדונגען' ],
'Allpages' => [ 'אלע_בלעטער' ],
'Ancientpages' => [ וראלטע_בלעטער' ],
'Blankpage' => [ יידיגער_בלאט' ],
'Block' => [ 'בלאקירן' ],
'BlockList' => [ 'בלאקירןיסטע' ],
'BrokenRedirects' => [ 'צעבראכענע_ווייטערפירונגען' ],
'Categories' => [ 'קאטעגאריעס' ],
'ChangePassword' => [ 'ענדערן_פאסווארט' ],
'ComparePages' => [ 'פארגלייהן_בלעטער' ],
'Confirmemail' => [ 'באשטעטיגן_ע-פאסט' ],
'Contributions' => [ 'בײַשטײַערונגען' ],
'CreateAccount' => [ 'שאפֿן_קאנטע' ],
'Deadendpages' => [ 'בלעטער_אן_פארבינדונגען' ],
'DeletedContributions' => [ ויסגעמעקעטע_בײַשטײַערונגען' ],
'DoubleRedirects' => [ 'פארטאפלטע_ווייטערפירונגען' ],
'Emailuser' => [ יקןן_ע-פאסטום_באניצער' ],
'Export' => [ 'עקספארט' ],
'Fewestrevisions' => [ 'ווייניגסטע_רעוויזיעס' ],
'Import' => [ 'אימפארט' ],
'Listadmins' => [ יסטע_פון_סיסאפן' ],
'Listbots' => [ יסטע_פון_באטס' ],
'Listfiles' => [ 'בילדער' ],
'Listredirects' => [ 'ווייטערפירונגען' ],
'Listusers' => [ יסטע_פון_באניצערס' ],
'Lockdb' => [ 'פארשליסן_דאטנבאזע' ],
'Log' => [ 'לאגביכער' ],
'Lonelypages' => [ 'פאר\'יתומ\'טע_בלעטער' ],
'Longpages' => [ 'לאנגע_בלעטער' ],
'MergeHistory' => [ ונויפמישןיסטאריע' ],
'MIMEsearch' => [ וכן_MIME' ],
'Mostcategories' => [ 'מערסטע_קאטעגאריעס' ],
'Mostimages' => [ 'מערסטע_פארבונדענע_בילדער' ],
'Mostinterwikis' => [ 'מערסטע_פארבונדענע_אינטערוויקיס' ],
'Mostlinked' => [ 'מערסטע_פארבונדענע_בלעטער' ],
'Mostlinkedcategories' => [ 'מערסטע_פארבונדענע_קאטעגאריעס' ],
'Mostlinkedtemplates' => [ 'מערסטע_פארבונדענע_מוסטערן' ],
'Mostrevisions' => [ 'מערסטע_רעוויזיעס' ],
'Movepage' => [ 'באוועגן_בלאט' ],
'Mycontributions' => [ יינע_ביישטייערן' ],
'Mypage' => [ 'מײַן_בלאט' ],
'Mytalk' => [ 'מײַן_שמועס_בלאט' ],
'Myuploads' => [ יינע_ארויפלאדונגען' ],
'Newimages' => [ ייע_בילדער' ],
'Newpages' => [ ייע_בלעטער' ],
'Preferences' => [ 'פרעפערענצן' ],
'Prefixindex' => [ 'בלעטער_וואסייבןןיט' ],
'Protectedpages' => [ 'געשיצטע_בלעטער' ],
'Protectedtitles' => [ 'געשיצטע_קעפלעך' ],
'Randompage' => [ 'צופעליג', ופעליגער_בלאט' ],
'Randomredirect' => [ ופעליק_ווײַטערפֿירן' ],
'Recentchanges' => [ 'לעצטע_ענדערונגען' ],
'Redirect' => [ 'ווײַטערפירונג' ],
'Revisiondelete' => [ ויסמעקן_ווערסיעס' ],
'Search' => [ 'זוכן' ],
'Shortpages' => [ ורצע_בלעטער' ],
'Specialpages' => [ 'באזונדערע_בלעטער' ],
'Statistics' => [ 'סטאטיסטיק' ],
'Tags' => [ 'טאגן' ],
'Unblock' => [ 'אויפבלאקירן' ],
'Uncategorizedcategories' => [ 'קאטעגאריעסן_קאטעגאריעס' ],
'Uncategorizedimages' => [ ילדער_אן_קאטעגאריעס' ],
'Uncategorizedpages' => [ 'בלעטער_אן_קאטעגאריעס' ],
'Uncategorizedtemplates' => [ וסטערןן_קאטעגאריעס' ],
'Unusedcategories' => [ ומבאניצטע_קאטעגאריעס' ],
'Unusedimages' => [ ומבאניצטע_בילדער' ],
'Unusedtemplates' => [ ומבאניצטע_מוסטערן' ],
'Unwatchedpages' => [ ישטויפגעפאסטע_בלעטער' ],
'Upload' => [ 'ארויפלאדן' ],
'Userlogin' => [ 'באניצער_איינלאגירן' ],
'Userlogout' => [ 'ארויסלאגירן' ],
'Userrights' => [ 'באניצער_רעכטן' ],
'Version' => [ 'ווערזיע' ],
'Wantedcategories' => [ 'געזוכטע_קאטעגאריעס' ],
'Wantedfiles' => [ 'געזוכטע_טעקעס' ],
'Wantedpages' => [ 'געזוכטע_בלעטער' ],
'Wantedtemplates' => [ 'געזוכטע_מוסטערן' ],
'Watchlist' => [ ויפֿפאסןיסטע', ייןויפֿפאסןיסטע' ],
'Whatlinkshere' => [ 'בלעטער_וואס_פארבונדן_אהער' ],
'Withoutinterwiki' => [ 'בלעטער_אָןינטערוויקי' ],
];
/** @phpcs-require-sorted-array */
$magicWords = [
'currentday' => [ '1', ויפיקער_טאג', 'יום נוכחי', 'CURRENTDAY' ],
'currentmonth' => [ '1', ויפיקער_מאנאט', 'חודש נוכחי', 'חודש נוכחי 2', 'CURRENTMONTH', 'CURRENTMONTH2' ],
'currenttime' => [ '1', ויפֿיקע_צײַט', 'שעה נוכחית', 'CURRENTTIME' ],
'currentyear' => [ '1', ויפֿיקע_יאָר', 'שנה נוכחית', 'CURRENTYEAR' ],
'defaultsort' => [ '1', 'גרונטסארטיר:', 'מיון רגיל:', 'DEFAULTSORT:', 'DEFAULTSORTKEY:', 'DEFAULTCATEGORYSORT:' ],
'displaytitle' => [ '1', 'ווייזן_קעפל', 'כותרת תצוגה', 'DISPLAYTITLE' ],
'filepath' => [ '0', 'טעקעשטעג:', 'נתיב לקובץ:', 'FILEPATH:' ],
'fullpagename' => [ '1', 'פולבלאטנאמען', 'שם הדף המלא', 'FULLPAGENAME' ],
'fullurl' => [ '0', 'פֿולער_נאמען:', 'כתובת מלאה:', 'FULLURL:' ],
'grammar' => [ '0', 'גראמאטיק:', 'דקדוק:', 'GRAMMAR:' ],
'hiddencat' => [ '1', '__באהאלטענע_קאטעגאריע__', '__באהאלטענע_קאט__', '__קטגוריה_מוסתרת__', '__HIDDENCAT__' ],
'img_alt' => [ '1', 'טעקסט=$1', 'טקסט=$1', 'alt=$1' ],
'img_bottom' => [ '1', 'אונטן', 'למטה', 'bottom' ],
'img_center' => [ '1', 'צענטער', 'מרכז', 'center', 'centre' ],
'img_left' => [ '1', 'לינקס', 'שמאל', 'left' ],
'img_link' => [ '1', 'לינק=$1', 'קישור=$1', 'link=$1' ],
'img_manualthumb' => [ '1', 'קליין=$1', 'ממוזער=$1', 'thumbnail=$1', 'thumb=$1' ],
'img_middle' => [ '1', 'אינמיטן', 'באמצע', 'middle' ],
'img_none' => [ '1', 'אן', 'ללא', 'none' ],
'img_right' => [ '1', 'רעכטס', 'ימין', 'right' ],
'img_sub' => [ '1', 'אונטער', 'תחתי', 'sub' ],
'img_super' => [ '1', 'איבער', 'עילי', 'super', 'sup' ],
'img_thumbnail' => [ '1', 'קליין', 'ממוזער', 'thumb', 'thumbnail' ],
'img_top' => [ '1', 'אויבן', 'למעלה', 'top' ],
'img_width' => [ '1', '$1פיקס', '$1 פיקסלים', '$1px' ],
'language' => [ '0', '#שפראך', '#שפה', '#LANGUAGE' ],
'namespace' => [ '1', 'נאמענטייל', 'מרחב השם', 'NAMESPACE' ],
'noeditsection' => [ '0', '__נישט_רעדאקטירן__', '__ללא_עריכה__', '__NOEDITSECTION__' ],
'nogallery' => [ '0', '__קיין_גאלעריע__', '__ללא_גלריה__', '__NOGALLERY__' ],
'notoc' => [ '0', '__קייןינהאלט_טאבעלע__', '__ללא_תוכן_עניינים__', '__ללא_תוכן__', '__NOTOC__' ],
'numberofactiveusers' => [ '1', 'צאל_טעטיקע_באניצער', 'מספר משתמשים פעילים', 'NUMBEROFACTIVEUSERS' ],
'numberofarticles' => [ '1', 'צאל_ארטיקלען', 'מספר ערכים', 'NUMBEROFARTICLES' ],
'numberofedits' => [ '1', 'צאל_רעדאקטירונגען', 'מספר עריכות', 'NUMBEROFEDITS' ],
'numberoffiles' => [ '1', 'צאל_טעקעס', 'מספר קבצים', 'NUMBEROFFILES' ],
'numberofpages' => [ '1', 'צאל_בלעטער', 'מספר דפים כולל', 'מספר דפים', 'NUMBEROFPAGES' ],
'numberofusers' => [ '1', 'צאל_באניצער', 'מספר משתמשים', 'NUMBEROFUSERS' ],
'pagename' => [ '1', 'בלאטנאמען', 'שם הדף', 'PAGENAME' ],
'pagesincategory_pages' => [ '0', 'בלעטער', 'דפים', 'pages' ],
'pagesize' => [ '1', 'בלאטגרייס', 'גודל דף', 'PAGESIZE' ],
'plural' => [ '0', 'מערצאל:', 'רבים:', 'PLURAL:' ],
'raw' => [ '0', 'רוי:', 'ללא עיבוד:', 'RAW:' ],
'redirect' => [ '0', '#ווייטערפירן', '#הפניה', '#REDIRECT' ],
'special' => [ '0', 'באזונדער', 'מיוחד', 'special' ],
'subpagename' => [ '1', 'אונטערבלאטנאמען', 'שם דף המשנה', 'SUBPAGENAME' ],
'subst' => [ '0', 'ס:', 'SUBST:' ],
'tag' => [ '0', 'טאג', 'תג', 'תגית', 'tag' ],
'talkpagename' => [ '1', 'רעדנבלאטנאמען', 'שם דף השיחה', 'TALKPAGENAME' ],
'toc' => [ '0', '__אינהאלט__', '__תוכן_עניינים__', '__תוכן__', '__TOC__' ],
'url_path' => [ '0', 'שטעג', 'נתיב', 'PATH' ],
'url_wiki' => [ '0', 'וויקי', 'ויקי', 'WIKI' ],
];