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

660 lines
32 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
/** Georgian (ქართული)
*
* @addtogroup Language
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 = array(
NS_MEDIA => 'მედია',
NS_SPECIAL => 'სპეციალური',
NS_MAIN => '',
NS_TALK => 'განხილვა',
NS_USER => 'მომხმარებელი',
NS_USER_TALK => 'მომხმარებელი_განხილვა',
# NS_PROJECT set by $wgMetaNamespace
NS_PROJECT_TALK => '$1_განხილვა',
NS_IMAGE => 'სურათი',
NS_IMAGE_TALK => 'სურათი_განხილვა',
NS_MEDIAWIKI => 'მედიავიკი',
NS_MEDIAWIKI_TALK => 'მედიავიკი_განხილვა',
NS_TEMPLATE => 'თარგი',
NS_TEMPLATE_TALK => 'თარგი_განხილვა',
NS_HELP => 'დახმარება',
NS_HELP_TALK => 'დახმარება_განხილვა',
NS_CATEGORY => 'კატეგორია',
NS_CATEGORY_TALK => 'კატეგორია_განხილვა'
);
$linkPrefixExtension = true;
$linkTrail = '/^([a-zაბგდევზთიკლმნოპჟრსტუფქღშჩცძწჭხჯჰ“»]+)(.*)$/sDu';
$messages = array(
# User preference toggles
# Dates
'sunday' => 'კვირა',
'monday' => 'ორშაბათი',
'tuesday' => 'სამშაბათი',
'wednesday' => 'ოთხშაბათი',
'thursday' => 'ხუთშაბათი',
'friday' => 'პარასკევი',
'saturday' => 'შაბათი',
'sun' => 'კვი',
'mon' => 'ორშ',
'tue' => 'სამ',
'wed' => 'ოთხ',
'thu' => 'ხუთ',
'fri' => 'პარ',
'sat' => 'შაბ',
'january' => 'იანვარი',
'february' => 'თებერვალი',
'march' => 'მარტი',
'april' => 'აპრილი',
'may_long' => 'მაისი',
'june' => 'ივნისი',
'july' => 'ივლისი',
'august' => 'აგვისტო',
'september' => 'სექტემბერი',
'october' => 'ოქტომბერი',
'november' => 'ნოემბერი',
'december' => 'დეკემბერი',
'january-gen' => 'იანვრის',
'february-gen' => 'თებერვლის',
'march-gen' => 'მარტის',
'april-gen' => 'აპრილის',
'may-gen' => 'მაისის',
'june-gen' => 'ივნისის',
'july-gen' => 'ივლისის',
'august-gen' => 'აგვისტოს',
'september-gen' => 'სექტემბრის',
'october-gen' => 'ოქტომბრის',
'november-gen' => 'ნოემბრის',
'december-gen' => 'დეკემბრის',
'jan' => 'იან',
'feb' => 'თებ',
'mar' => 'მარ',
'apr' => 'აპრ',
'may' => 'მაი',
'jun' => 'ივნ',
'jul' => 'ივლ',
'aug' => 'აგვ',
'sep' => 'სექ',
'oct' => 'ოქტ',
'nov' => 'ნოე',
'dec' => 'დეკ',
# Bits of text used by many pages:
'categories' => 'კატეგორიები',
'pagecategories' => '{{PLURAL:$1|კატეგორია|კატეგორიები}}',
'category_header' => 'სტატიები კატეგორიაში "$1"',
'subcategories' => 'ქვეკატეგორიები',
'linkprefix' => '/^(.*?)(„|«)$/sD',
'mainpage' => 'მთავარი გვერდი',
#TODO: 'mainpagetext' => "<big>'''MediaWiki has been successfully installed.'''</big>",
/*TODO: 'mainpagedocfooter' => "Consult the [http://meta.wikimedia.org/wiki/Help:Contents User's Guide] for information on using the wiki software.
== Getting started ==
* [http://www.mediawiki.org/wiki/Help:Configuration_settings Configuration settings list]
* [http://www.mediawiki.org/wiki/Help:FAQ MediaWiki FAQ]
* [http://mail.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]",*/
'portal' => 'საზოგადოების პორტალი',
'portal-url' => '{{ns:project}}:საზოგადოების პორტალი',
'about' => 'შესახებ',
'aboutsite' => '{{SITENAME}}ს შესახებ',
'aboutpage' => 'პროექტი:შესახებ',
'article' => 'სტატია',
'help' => 'დახმარება',
'helppage' => '{{ns:project}}:დახმარება',
'bugreports' => 'ანგარიში შეცდომის შესახებ',
'bugreportspage' => '{{ns:project}}:ანგარიში შეცდომის შესახებ',
'sitesupport' => 'შეწირულობები',
'sitesupport-url' => '{{ns:project}}:შეწირულობები',
'faq' => 'ხშირი შეკითხვები',
'faqpage' => '{{ns:project}}:ხშირი შეკითხვები',
'edithelp' => 'რედაქტირების დახმარება',
'newwindow' => '(ახალ ფანჯარაში)',
'edithelppage' => '{{ns:project}}:რედაქტირების დახმარება',
'cancel' => 'გაუქმება',
'qbfind' => 'ძებნა',
'qbbrowse' => 'მიმოხილვა',
'qbedit' => 'რედაქტირება',
'qbpageoptions' => 'ეს გვერდი',
'qbpageinfo' => 'კონტექსტი',
'qbmyoptions' => 'ჩემი გვერდები',
'qbspecialpages' => 'სპეციალური გვერდები',
'moredotdotdot' => 'მეტი...',
'mypage' => 'ჩემი გვერდი',
'mytalk' => 'ჩემი განხილვა',
'anontalk' => 'ამ IP-ს განხილვა',
'navigation' => 'ნავიგაცია',
# Metadata in edit box
#TODO: 'metadata_help' => 'Metadata (see [[{{ns:project}}:Metadata]] for an explanation):',
'currentevents' => 'ახალი ამბები',
'currentevents-url' => 'ახალი ამბები',
'disclaimers' => 'პასუხისმგებლობის უარყოფა',
'disclaimerpage' => '{{ns:project}}:პასუხისმგებლობის უარყოფა',
'privacy' => 'კონფიდენციალურობის პოლიტიკა',
'privacypage' => '{{ns:project}}:კონფიდენციალურობის პოლიტიკა',
'errorpagetitle' => 'შეცდომა',
'returnto' => '$1-ზე დაბრუნება.',
'tagline' => '{{SITENAME}}დან',
'help' => 'დახმარება',
'search' => 'ძიება',
'searchbutton' => 'ძიება',
'go' => 'გვერდი',
'searcharticle' => 'გვერდი',
'history' => 'გვერდის ისტორია',
'history_short' => 'ისტორია',
'updatedmarker' => 'ჩემი უკანასკნელი შემოსვლიდან ცვლილებები',
'info_short' => 'ინფორმაცია',
'printableversion' => 'დასაბეჭდი ვერსია',
'permalink' => 'მუდმივი ბმული',
'print' => 'ბეჭდვა',
'edit' => 'რედაქტირება',
'editthispage' => 'ამ გვერდის რედაქტირება',
'delete' => 'წაშლა',
'deletethispage' => 'ამ გვერდის წაშლა',
'undelete_short' => '$1 ცვლილების აღდგენა',
'protect' => 'დაცვა',
#TODO: 'protectthispage' => 'Protect this page',
'unprotect' => 'დაცვის მოხსნა',
'unprotectthispage' => 'გვერდის დაცვის მოხსნა',
'newpage' => 'ახალი გვერდი',
'talkpage' => 'განიხილეთ ეს გვერდი',
'specialpage' => 'სპეციალური გვერდი',
#TODO: 'personaltools' => 'Personal tools',
'postcomment' => 'დაურთეთ კომენტარი',
'articlepage' => 'სტატიის ნახვა',
'talk' => 'განხილვა',
#TODO: 'views' => 'Views',
'toolbox' => 'ხელსაწყოები',
'userpage' => 'მომხმარებლის გვერდის ხილვა',
'projectpage' => 'პროექტის გვერდის ხილვა',
'imagepage' => 'სურათის გვერდის ნახვა',
#TODO: 'mediawikipage' => 'View message page',
#TODO: #'templatepage' => 'View template page',
#TODO: 'viewhelppage' => 'View help page',
'categorypage' => 'კატეგორიის გვერდის ხილვა',
#TODO: 'viewtalkpage' => 'View discussion',
'otherlanguages' => 'სხვა ენებზე',
#TODO: 'redirectedfrom' => '(Redirected from $1)',
'autoredircomment' => 'გადამისამართება [[$1]]-ზე',
'redirectpagesub' => 'გადამისამართების გვერდი',
'lastmodifiedat' => 'ეს გვერდი ბოლოს განახლდა $2, $1.', //$1 date, $2 time
#TODO: 'viewcount' => 'This page has been accessed {{plural:$1|one time|$1 times}}.',
#TODO: 'copyright' => 'Content is available under $1.',
#TODO: 'protectedpage' => 'Protected page',
#TODO: 'jumpto' => 'Jump to:',
'jumptonavigation' => 'ნავიგაცია ',
'jumptosearch' => 'ძიება',
'badaccess' => 'აკრძალული მოქმედება',
#'badaccess-group0' => 'You are not allowed to execute the action you have requested.',
#'badaccess-group1' => 'The action you have requested is limited to users in the group $1.',
#'badaccess-group2' => 'The action you have requested is limited to users in one of the groups $1.',
#'badaccess-groups' => 'The action you have requested is limited to users in one of the groups $1.',
#'versionrequired' => 'Version $1 of MediaWiki required',
#'versionrequiredtext' => 'Version $1 of MediaWiki is required to use this page. See [[Special:Version]]',
#'widthheight' => '$1×$2',
#'ok' => 'OK',
#'sitetitle' => '{{SITENAME}}',
#'pagetitle' => '$1 - {{SITENAME}}',
#'sitesubtitle' => '',
#'retrievedfrom' => 'Retrieved from "$1"',
'youhavenewmessages' => 'თქვენ გაქვთ $1 ($2).',
'newmessageslink' => 'ახალი შეტყობინებები',
'newmessagesdifflink' => 'განსხვავება უკანასკნელ მდგომარეობას შორის',
'editsection'=>'რედაქტირება',
'editold'=>'რედაქტირება',
'editsectionhint' => 'სექციის რედაქტირება: $1',
'toc' => 'სარჩევი',
'showtoc' => 'ჩვენება',
'hidetoc' => 'დამალვა',
'thisisdeleted' => 'გსურთ განიხილოთ ან აღადგინოთ $1?',
'viewdeleted' => 'იხილე $1?',
'restorelink' => '{{PLURAL:$1|ერთი წაშლილი რედაქტირება|$1 წაშლილი რედაქტირება}}',
#'feedlinks' => 'Feed:',
#'feed-invalid' => 'Invalid subscription feed type.',
#'sitenotice' => '-', # the equivalent to wgSiteNotice
#'anonnotice' => '-',
# Short words for each namespace, by default used in the 'article' tab in monobook
'nstab-main' => 'სტატია',
'nstab-user' => 'მომხმარებლის გვერდი',
'nstab-media' => 'მედია',
'nstab-special' => 'სპეციალური',
'nstab-project' => 'პროექტის გვერდი',
'nstab-image' => 'ფაილი',
'nstab-mediawiki' => 'შეტყობინება',
'nstab-template' => 'თარგი',
'nstab-help' => 'დახმარება',
'nstab-category' => 'კატეგორია',
# Main script and global functions
# General errors
# Login and logout pages
# Edit page toolbar
# Edit pages
# History pages
# Revision deletion
# Diffs
'difference' => '(სხვაობა ვერსიებს შორის)',
#TODO: 'loadingrev' => 'loading revision for diff',
'lineno' => "ხაზი $1:",
'editcurrent' => 'ამ გვერდის ამჟამინდელი ვერსიის რედაქტირება',
#TODO: 'selectnewerversionfordiff' => 'Select a newer version for comparison',
#TODO: 'selectolderversionfordiff' => 'Select an older version for comparison',
'compareselectedversions' => 'არჩეული ვერსიების შედარება',
# Search results
# Preferences page
'preferences' => 'კონფიგურაცია',
'mypreferences' => 'ჩემი კონფიგურაცია',
#TODO: 'prefsnologin' => 'Not logged in',
#TODO: 'prefsnologintext' => "You must be [[Special:Userlogin|logged in]] to set user preferences.",
#TODO: 'prefsreset' => 'Preferences have been reset from storage.',
'qbsettings' => 'სწრაფი ზოლი',
'changepassword' => 'პაროლის შეცვლა',
#TODO: 'skin' => 'Skin',
#TODO: 'math' => 'Math',
'dateformat' => 'თარიღის ფორმატი',
#TODO: 'datedefault' => 'No preference',
'datetime' => 'თარიღი და დრო',
#TODO: 'math_failure' => 'Failed to parse',
#TODO: 'math_unknown_error' => 'unknown error',
#TODO: 'math_unknown_function' => 'unknown function',
#TODO: 'math_lexing_error' => 'lexing error',
#TODO: 'math_syntax_error' => 'syntax error',
#TODO: 'math_image_error' => 'PNG conversion failed; check for correct installation of latex, dvips, gs, and convert',
#TODO: 'math_bad_tmpdir' => 'Can\'t write to or create math temp directory',
#TODO: 'math_bad_output' => 'Can\'t write to or create math output directory',
#TODO: 'math_notexvc' => 'Missing texvc executable; please see math/README to configure.',
'prefs-personal' => 'მომხმარებლის მონაცემები',
#TODO: 'prefs-rc' => 'Recent changes',
'prefs-watchlist' => 'კონტროლის სია',
#TODO: 'prefs-watchlist-days' => 'Number of days to show in watchlist:',
#TODO: 'prefs-watchlist-edits' => 'Number of edits to show in expanded watchlist:',
#TODO: 'prefs-misc' => 'Misc',
'saveprefs' => 'შენახვა',
'resetprefs' => 'გადატვირთვა',
'oldpassword' => 'ძველი პაროლი:',
'newpassword' => 'ახალი პაროლი:',
#TODO: 'retypenew' => 'Retype new password:',
'textboxsize' => 'რედაქტირება',
'rows' => 'რიგები:',
'columns' => 'სვეტები:',
'searchresultshead' => 'ძიება',
#TODO: 'resultsperpage' => 'Hits per page:',
'contextlines' => 'სტრიქონები შედეგის მიხედვით:',
'contextchars' => 'კონტექსტი სტრიქონების მიხედვით:',
#TODO: 'stubthreshold' => 'Threshold for stub display:',
#TODO: 'recentchangescount' => 'Titles in recent changes:',
'savedprefs' => 'თქვენს მიერ შერჩეული პარამეტრები დამახსოვრებულია.',
#TODO: 'timezonelegend' => 'Time zone',
#TODO: 'timezonetext' => 'The number of hours your local time differs from server time (UTC).',
'localtime' => 'ლოკალური დრო',
#TODO: 'timezoneoffset' => 'Offset¹',
#TODO: 'servertime' => 'Server time',
'guesstimezone' => 'ბრაუზერიდან შევსება',
'allowemail' => 'შესაძლებელია ელ. წერილების მიღება სხვა მომხმარებლებისაგან',
'defaultns' => 'სტანდარტული ძიება ამ სახელთა სივრცეებში:',
'default' => 'სტანდარტული',
'files' => 'ფაილები',
# User rights
# Groups
'group' => 'ჯგუფი:',
'group-bot' => 'რობოტები',
'group-sysop' => 'ადმინისტრატორები',
'group-bureaucrat' => 'ბიუროკრატები',
'group-all' => '(ყველა)',
'group-bot-member' => 'რობოტი',
'group-sysop-member' => 'ადმინისტრატორი',
'group-bureaucrat-member' => 'ბიუროკრატი',
'grouppage-bot' => '{{ns:project}}:რობოტები',
'grouppage-sysop' => '{{ns:project}}:ადმინისტრატორები',
'grouppage-bureaucrat' => '{{ns:project}}:ბიუროკრატები',
# Recent changes
'changes' => 'ცვლილებები',
'recentchanges' => 'ბოლო ცვლილებები',
#TODO: 'recentchanges-url' => 'Special:Recentchanges',
#TODO: 'recentchangestext' => 'Track the most recent changes to the wiki on this page.',
#TODO: 'rcnote' => "Below are the last <strong>$1</strong> changes in the last <strong>$2</strong> days, as of $3.",
#TODO: 'rcnotefrom' => "Below are the changes since <b>$2</b> (up to <b>$1</b> shown).",
'rclistfrom' => "ახალი ცვლილებების ჩვენება დაწყებული $1-დან",
'rcshowhideminor' => 'მცირე რედაქტირების $1',
'rcshowhidebots' => 'რობოტების $1',
'rcshowhideliu' => 'რეგისტრირებული მომხმარებლების $1',
'rcshowhideanons' => 'ანონიმური მომხმარებლების $1',
#TODO: 'rcshowhidepatr' => '$1 patrolled edits',
'rcshowhidemine' => 'ჩემი რედაქტირების $1',
'rclinks' => "ბოლო $1 ცვლილების ჩვენება უკანასკნელი $2 დღის მანძილზე<br />$3",
'diff' => 'განსხ.',
'hist' => 'ისტ.',
'hide' => 'დამალვა',
'show' => 'ჩვენება',
'minoreditletter' => 'მ',
'newpageletter' => 'ა',
'boteditletter' => 'რ',
'sectionlink' => '→',
#TODO: 'number_of_watching_users_RCview' => '[$1]',
#TODO: 'number_of_watching_users_pageview' => '[$1 watching user/s]',
#TODO: 'rc_categories' => 'Limit to categories (separate with "|")',
#TODO: 'rc_categories_any' => 'Any',
# Upload
# Image list
'imagelist' => 'ფაილების სია',
#TODO: 'imagelisttext' => "Below is a list of '''$1''' {{plural:$1|file|files}} sorted $2.",
#TODO: 'imagelistforuser' => "This shows only images uploaded by $1.",
#TODO: 'getimagelist' => 'fetching file list',
'ilsubmit' => 'ძიება',
#TODO: 'showlast' => 'Show last $1 files sorted $2.',
'byname' => 'სახელით',
'bydate' => 'თარიღით',
'bysize' => 'ზომით',
'imgdelete' => 'წაშ.',
'imgdesc' => 'აღწ.',
'imgfile' => 'ფაილი',
#TODO: 'imglegend' => 'Legend: (desc) = show/edit file description.',
'imghistory' => 'ფაილის ისტორია',
#TODO: 'revertimg' => 'rev',
'deleteimg' => 'წაშ.',
#TODO: 'deleteimgcompletely' => 'Delete all revisions of this file',
/*TODO: 'imghistlegend' => 'Legend: (cur) = this is the current file, (del) = delete
this old version, (rev) = revert to this old version.
<br /><i>Click on date to see the file uploaded on that date</i>.',*/
'imagelinks' => 'ბმულები',
#TODO: 'linkstoimage' => 'The following pages link to this file:',
'nolinkstoimage' => 'არ არსებობს ამ ფაილთან დაკავშირებული გვერდები.',
#TODO: 'sharedupload' => 'This file is a shared upload and may be used by other projects.',
'shareduploadwiki' => 'გთხოვთ, იხილოთ $1 შემდგომი ინფორმაციის მისაღებად.',
#TODO: 'shareduploadwiki-linktext' => 'file description page',
#TODO: 'shareddescriptionfollows' => '-',
'noimage' => 'ამ სახელის მქონე ფაილი არ არსებობს, თქვენ შეგიძლიათ $1.',
'noimage-linktext' => 'ფაილის ატვირთვა',
'uploadnewversion-linktext' => 'ამ ფაილის ახალი ვერსიის ატვირთვა',
'imagelist_date' => 'თარიღი',
'imagelist_name' => 'სახელი',
'imagelist_user' => 'მომხმარებელი',
'imagelist_size' => 'ზომა (ბაიტები)',
'imagelist_description' => 'აღწერილობა',
'imagelist_search_for' => 'ძიება სურათის სახელის მიხედვით:',
# Mime search
# Unwatchedpages
# List redirects
# Unused templates
# Random redirect
'randomredirect' => 'ნებისმიერი გადამისამართება',
# Statistics
# Miscellaneous special pages
# Special:Allpages
'nextpage' => 'შემდეგი გვერდი ($1)',
'prevpage' => 'წინა გვერდი ($1)',
'allpagesfrom' => 'გვერდების ჩვენება დაწყებული:',
'allarticles' => 'ყველა სტატია',
'allinnamespace' => 'ყველა გვერდი ($1 სახელთა სივრცეში)',
'allnotinnamespace' => 'ყველა გვერდი ($1 სახელთა სივრცის გარეშე)',
'allpagesprev' => 'წინა',
'allpagesnext' => 'შემდეგი',
'allpagessubmit' => 'ჩვენება',
'allpagesprefix' => 'ასახე გვერდები პრეფიქსით:',
'allpagesbadtitle' => 'მოცემული გვერდის სათაური არასწორია ან აქვს ინტერვიკი ან ნათშორისი პრეფიქსი.
იგი შესაძლოა შეიცავდეს ერთ ან მეტ სიმბოლოს, რომელიც არ შეიძლება გამოყენებულ იქნას სათაურში.',
# Special:Listusers
# Email this user
# Watchlist
# Delete/protect/revert
# restrictions (nouns)
# Undelete
# Namespace form on various pages
# Contributions
# What links here
#
'whatlinkshere' => 'სადაა მითითებული ეს გვერდი',
#TODO: 'whatlinkshere-summary' => '',
#TODO: 'whatlinkshere-barrow' => '&lt;',
'notargettitle' => 'სამიზნე არაა',
'notargettext' => 'თქვენ არ მიუთითეთ სამიზნე გვერდი ან მომხმარებელი
ამ ფუნქციის შესასრულებლად.',
#TODO: 'linklistsub' => '(List of links)',
#TODO: 'linkshere' => "The following pages link to '''[[:$1]]''':",
'nolinkshere' => "'''[[:$1]]'''-ზე ბმული არ არის.",
#TODO: 'isredirect' => 'redirect page',
#TODO: 'istemplate' => 'inclusion',
# Block/unblock IP
# Developer tools
# Make sysop
# Move page
#
'movepage' => 'გვერდის გადატანა',
/*TODO: 'movepagetext' => 'Using the form below will rename a page, moving all
of its history to the new name.
The old title will become a redirect page to the new title.
Links to the old page title will not be changed; be sure to
check for double or broken redirects.
You are responsible for making sure that links continue to
point where they are supposed to go.
Note that the page will \'\'\'not\'\'\' be moved if there is already
a page at the new title, unless it is empty or a redirect and has no
past edit history. This means that you can rename a page back to where
it was just renamed from if you make a mistake, and you cannot overwrite
an existing page.
<b>WARNING!</b>
This can be a drastic and unexpected change for a popular page;
please be sure you understand the consequences of this before
proceeding.',*/
/*TODO: 'movepagetalktext' => 'The associated talk page will be automatically moved along with it \'\'\'unless:\'\'\'
*A non-empty talk page already exists under the new name, or
*You uncheck the box below.
In those cases, you will have to move or merge the page manually if desired.',*/
'movearticle' => 'გვერდის გადატანა',
'movenologin' => 'რეგისტრაცია ვერ გაიარა',
/*TODO: 'movenologintext' => "You must be a registered user and [[Special:Userlogin|logged in]]
to move a page.",*/
'newtitle' => 'ახალი სათაური',
#TODO: 'move-watch' => 'Watch this page',
'movepagebtn' => 'გვერდის გადატანა',
#TODO: 'pagemovedsub' => 'Move succeeded',
'pagemovedtext' => "გვერდი \"[[$1]]\" გადავიდა \"[[$2]]\".",
'articleexists' => 'ამ დასახელების გვერდი უკვე არსებობს,
ან თქვენს მიერ მითითებული დასახელება არასწორია.
თუ შეიძლება, მიუთითეთ სხვა სახელი.',
#TODO: 'talkexists' => "'''The page itself was moved successfully, but the talk page could not be moved because one already exists at the new title. Please merge them manually.'''",
'movedto' => 'გადატანილია',
'movetalk' => 'დაკავშირებული განხილვის გადატანა',
#TODO: 'talkpagemoved' => 'The corresponding talk page was also moved.',
#TODO: 'talkpagenotmoved' => 'The corresponding talk page was <strong>not</strong> moved.',
'1movedto2' => '[[$1]] გადატანილია [[$2]]-ზე',
'1movedto2_redir' => '[[$1]] გადატანილია [[$2]]-ზე გადამისამართებულ გვერდში',
'movelogpage' => 'გადატანის ჟურნალი',
#TODO: 'movelogpagetext' => 'Below is a list of page moved.',
'movereason' => 'მიზეზი',
#TODO: 'revertmove' => 'revert',
'delete_and_move' => 'წაშლა და გადატანა',
'delete_and_move_text' =>
'==საჭიროა წაშლა==
სტატია დასახელებით "[[$1]]" უკვე არსებობს. გსურთ მისი წაშლა გადატანისთვის ადგილის დასათმობად?',
'delete_and_move_confirm' => 'დიახ, წაშალეთ ეს გვერდი',
'delete_and_move_reason' => 'წაშლილია გადატანისთვის ადგილის დასათმობად',
#TODO: 'selfmove' => "Source and destination titles are the same; can't move a page over itself.",
#TODO: 'immobile_namespace' => "Source or destination title is of a special type; cannot move pages from and into that namespace.",*/
# Export
# Namespace 8 related
'allmessages' => 'სისტემური შეტყობინება',
'allmessagesname' => 'დასახელება',
'allmessagesdefault' => 'სტანდარტული ტექსტი',
'allmessagescurrent' => 'მიმდინარე ტექსტი',
'allmessagestext' => 'ეს არის სახელთა სივრცე მედიავიკიში არსებული სისტემური შეტყობინებების ჩამონათვალი.',
'allmessagesnotsupportedUI' => 'თქვენს ამჟამინდელ ინტერფეისის ენას <b>$1</b> არ აქვს სპეციალური:AllMessages-ის უზრუნველყოფა ამ საიტზე.',
'allmessagesnotsupportedDB' => 'სპეციალური:AllMessages-ის უზრუნველყოფა არ ხდება, ვინაიდან wgUseDatabaseMessages გამორთულია.',
'allmessagesfilter' => 'ფილტრი შეტყობინების სახელის მიხედვით:',
'allmessagesmodified' => 'აჩვენე მხოლოდ შეცვლილი',
# Thumbnails
'thumbnail-more' => 'გაზარდეთ',
#TODO: 'missingimage' => '<b>Missing image</b><br /><i>$1</i>',
'filemissing' => 'ფაილი ვერ მოიძებნა',
'thumbnail_error' => 'ესკიზის შექმნის შეცდომა: $1',
# Special:Import
# import log
# tooltip help for some actions, most are in Monobook.js
# stylesheets
# Metadata
# Attribution
'anonymous' => '{{SITENAME}}-ის ანონიმური მომხმარებლები',
'siteuser' => '{{SITENAME}} მომხმარებელი $1',
#TODO: 'lastmodifiedatby' => 'This page was last modified $2, $1 by $3.', // $1 date, $2 time. $3 user
'and' => 'და',
#TODO: 'othercontribs' => 'Based on work by $1.',
'others' => 'სხვები',
'siteusers' => '{{SITENAME}} მომხმარებლები $1',
#TODO: 'creditspage' => 'წვლილი',
#TODO: 'nocredits' => 'There is no credits info available for this page.',
# Spam protection
# Info page
# Math options
# Patrolling
# Monobook.js: tooltips and access keys for monobook
# image deletion
# browsing diffs
# labels for User: and Title: on Special:Log pages
'specialloguserlabel' => 'მომხმარებელი:',
'speciallogtitlelabel' => 'სათაური:',
'passwordtooshort' => 'თქვენი პაროლი ძალიან მოკლეა. მასში უნდა შედიოდეს არანაკლებ $1 ასო-ნიშანი.',
# Media Warning
#TODO: 'mediawarning' => '\'\'\'Warning\'\'\': This file may contain malicious code, by executing it your system may be compromised.<hr />',
'fileinfo' => '$1KB, MIME ტიპი: <code>$2</code>',
# Metadata
# Exif tags
# Make & model, can be wikified in order to link to the camera and model name
# Exif attributes
# external editor support
# 'all' in various places, this might be different for inflected languages
'recentchangesall' => 'ყველა',
'imagelistall' => 'ყველა',
'watchlistall1' => 'ყველა',
'watchlistall2' => 'ყველა',
'namespacesall' => 'ყველა',
# E-mail address confirmation
# Inputbox extension, may be useful in other contexts as well
# Scary transclusion
# Trackbacks
# delete conflict
# HTML dump
# action=purge
#TODO: 'confirm_purge' => "Clear the cache of this page?\n\n$1",
#TODO: 'confirm_purge_button' => 'OK',
'youhavenewmessagesmulti' => "თქვენ გაქვთ ახალი შეტყობინება $1-ზე",
#TODO: 'searchcontaining' => "Search for articles containing ''$1''.",
#TODO: 'searchnamed' => "Search for articles named ''$1''.",
'articletitles' => "სტატიები დაწყებული ''$1''-ით",
'hideresults' => 'შედეგების დამალვა',
# DISPLAYTITLE
'displaytitle' => '(ამ გვერდის ბმული როგორც [[$1]])',
'loginlanguagelabel' => 'ენა: $1',
# Multipage image navigation
# Table pager
#TODO: 'ascending_abbrev' => 'asc',
#TODO: 'descending_abbrev' => 'desc',
#TODO: 'table_pager_next' => 'Next page',
#TODO: 'table_pager_prev' => 'Previous page',
'table_pager_first' => 'პირველი გვერდი',
'table_pager_last' => 'ბოლო გვერდი',
#TODO: 'table_pager_limit' => 'Show $1 items per page',
#TODO: 'table_pager_limit_submit' => 'Go',
'table_pager_empty' => 'შედეგები არაა',
);
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
?>