2007-04-02 06:47:52 +00:00
< ? php
/** Sanskrit ( संस्कृत )
2008-04-12 11:13:16 +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
2008-04-12 11:13:16 +00:00
*
* @ author Kaustubh
2008-11-17 20:21:17 +00:00
* @ author Mahitgar
2008-04-12 11:13:16 +00:00
*/
2007-04-02 06:47:52 +00:00
2008-04-19 10:29:04 +00:00
$fallback = 'hi' ;
2007-04-02 06:47:52 +00:00
$digitTransformTable = array (
2007-05-20 20:49:21 +00:00
'0' => '० ' , # ०
'1' => '१' , # १
'2' => '२' , # २
'3' => '३' , # ३
'4' => '४' , # ४
'5' => '५' , # ५
'6' => '६' , # ६
'7' => '७' , # ७
'8' => '८' , # ८
'9' => '९' , # ९
2007-04-02 06:47:52 +00:00
);
2007-04-17 04:45:49 +00:00
$linkPrefixExtension = false ;
$namespaceNames = array (
NS_MEDIA => 'Media' ,
NS_SPECIAL => 'Special' ,
NS_MAIN => '' ,
2007-04-23 07:21:17 +00:00
NS_TALK => 'संभाषणं' ,
NS_USER => 'योजकः' ,
NS_USER_TALK => 'योजकसंभाषणं' ,
2007-04-17 04:45:49 +00:00
# NS_PROJECT set by $wgMetaNamespace
2007-04-23 07:21:17 +00:00
NS_PROJECT_TALK => '$1संभाषणं' ,
2008-12-01 17:14:30 +00:00
NS_FILE => 'चित्रं' ,
NS_FILE_TALK => 'चित्रसंभाषणं' ,
2007-04-17 04:45:49 +00:00
NS_MEDIAWIKI => 'MediaWiki' ,
NS_MEDIAWIKI_TALK => 'MediaWiki_talk' ,
NS_TEMPLATE => 'Template' ,
NS_TEMPLATE_TALK => 'Template_talk' ,
2007-04-23 07:21:17 +00:00
NS_HELP => 'उपकारः' ,
NS_HELP_TALK => 'उपकारसंभाषणं' ,
NS_CATEGORY => 'वर्गः' ,
NS_CATEGORY_TALK => 'वर्गसंभाषणं' ,
2007-04-17 04:45:49 +00:00
);
2007-04-23 07:21:17 +00:00
$messages = array (
2008-11-25 10:28:25 +00:00
'underline-always' => 'सदा' ,
2008-02-16 15:12:49 +00:00
# Dates
'sunday' => 'विश्रामवासरे' ,
'monday' => 'सोमवासरे' ,
'tuesday' => 'मंगलवासरे' ,
2007-04-23 07:21:17 +00:00
'wednesday' => 'बुधवासरे' ,
2008-02-16 15:12:49 +00:00
'thursday' => 'गुरुवासरे' ,
'friday' => 'शुक्रवासरे' ,
'saturday' => 'शनिवासरे' ,
'sun' => 'विश्राम' ,
'mon' => 'सोम' ,
'tue' => 'मंगल' ,
'wed' => 'बुध' ,
'thu' => 'गुरु' ,
'fri' => 'शुक्र' ,
'sat' => 'शनि' ,
'january' => 'पौषमाघे' ,
'february' => 'फाल्गुने' ,
'march' => 'फाल्गुनचैत्रे' ,
'april' => 'मधुमासे' ,
'may_long' => 'वैशाखज्येष्ठे' ,
'june' => 'ज्येष्ठाषाढके' ,
'july' => 'आषाढश्रावणे' ,
'august' => 'नभस्ये' ,
2007-04-23 07:21:17 +00:00
'september' => 'भाद्रपदाश्विने' ,
2008-02-16 15:12:49 +00:00
'october' => 'अश्विनकार्तिके' ,
'november' => 'कार्तिकमार्गशीर्षे' ,
'december' => 'मार्गशीर्षपौषे' ,
2007-06-29 01:19:14 +00:00
2008-12-24 23:04:33 +00:00
# Categories related messages
'listingcontinuesabbrev' => 'आगामि.' ,
2008-11-25 10:28:25 +00:00
'about' => 'विषये' ,
'newwindow' => '(उद्घट् नविन पृष्ठ)' ,
2008-12-17 23:45:11 +00:00
'cancel' => 'अपकर्ष' ,
2008-11-25 10:28:25 +00:00
'qbfind' => 'शोध' ,
'qbedit' => 'संपादयति' ,
'qbpageoptions' => 'इदम् पृष्ठ' ,
'navigation' => 'सुचालन' ,
'and' => ' एवम्' ,
2008-04-12 11:13:16 +00:00
2008-11-17 20:21:17 +00:00
'help' => 'सहायता' ,
'search' => 'शोध' ,
2008-12-18 20:38:33 +00:00
'searchbutton' => 'शोध' ,
2008-11-25 10:28:25 +00:00
'go' => 'गच्छति' ,
2008-12-16 22:06:25 +00:00
'searcharticle' => 'गच्छति' ,
2008-11-25 10:28:25 +00:00
'history' => 'पृष्ठस्य इतिहास' ,
'history_short' => 'इतिहास' ,
2008-11-17 20:21:17 +00:00
'printableversion' => 'मुद्रणस्य पाठ' ,
2008-12-16 22:06:25 +00:00
'permalink' => 'स्थायी निबन्धन' ,
2008-11-25 10:28:25 +00:00
'newpage' => 'नविन पृष्ठ' ,
2008-11-17 20:21:17 +00:00
'talkpagelinktext' => 'संवाद' ,
2008-11-25 10:28:25 +00:00
'specialpage' => 'विशेष पृष्ठ' ,
2008-12-18 20:38:33 +00:00
'personaltools' => 'वैयक्तिक साधन' ,
'views' => 'दृश्य' ,
2008-11-25 10:28:25 +00:00
'toolbox' => 'साधनपेटी' ,
'jumptonavigation' => 'सुचालन' ,
2008-04-12 11:13:16 +00:00
# All link text and link target definitions of links into project namespace that get used by other message strings, with the exception of user group pages (see grouppage) and the disambiguation template definition (see disambiguations).
2008-11-17 20:21:17 +00:00
'aboutsite' => '{{SITENAME}}विषये' ,
2008-12-16 22:06:25 +00:00
'aboutpage' => 'Project:विषये' ,
2008-12-17 23:45:11 +00:00
'copyrightpage' => '{{ns:project}}:प्रताधिकार' ,
2008-11-25 10:28:25 +00:00
'currentevents' => 'सद्य घटना' ,
2008-11-17 20:21:17 +00:00
'disclaimers' => 'स्वाम्यत्यागं' ,
2008-04-12 11:13:16 +00:00
'edithelp' => 'संपादनार्थं सहायता' ,
2008-11-25 10:28:25 +00:00
'faq' => 'अतिप्रश्नपृष्ट' ,
'helppage' => 'Help:सहाय्य' ,
2008-04-12 11:13:16 +00:00
'mainpage' => 'मुखपृष्ठं' ,
'mainpage-description' => 'मुखपृष्ठं' ,
2008-11-17 20:21:17 +00:00
'privacy' => 'गोपनीयविषये नीति' ,
'editsection' => 'संपादयति' ,
2008-11-25 10:28:25 +00:00
# Short words for each namespace, by default used in the namespace tab in monobook
'nstab-main' => 'पृष्ठ' ,
'nstab-image' => 'संचिका' ,
'nstab-template' => 'बिंबधर' ,
2008-12-24 23:04:33 +00:00
'nstab-category' => 'वर्ग' ,
2008-11-25 10:28:25 +00:00
# General errors
'error' => 'विभ्रम' ,
'viewsource' => 'स्रोत पश्यति' ,
# Login and logout pages
2008-12-18 20:38:33 +00:00
'login' => 'प्रवेश करोसि' ,
'nav-login-createaccount' => 'प्रवेश करोसि/ सृज् उपयोजकसंज्ञा' ,
2008-12-24 23:04:33 +00:00
'logout' => 'बहिर्गच्छति' ,
2008-12-18 20:38:33 +00:00
'userlogout' => 'बहिर्गच्छति' ,
2008-12-24 23:04:33 +00:00
'createaccount' => 'सृज उपयोजकसंज्ञा' ,
2008-12-18 20:38:33 +00:00
'gotaccountlink' => 'प्रवेश करोसि' ,
2008-11-25 10:28:25 +00:00
# Edit pages
2008-12-17 23:45:11 +00:00
'watchthis' => 'इदं पृष्ठ निरीक्षा' ,
2008-11-25 10:28:25 +00:00
'savearticle' => 'पृष्ठ त्रायते' ,
'preview' => 'प्रारूप प्रेक्षा' ,
'showpreview' => 'प्रारूप प्रेक्षा' ,
'newarticle' => '(नविन)' ,
# History pages
2008-12-24 23:04:33 +00:00
'currentrevisionlink' => 'सद्य आवृत्ती' ,
'cur' => 'अद्य' ,
'last' => 'पूर्वतन' ,
'page_first' => 'प्रथम्' ,
'page_last' => 'अन्तिम' ,
2008-11-25 10:28:25 +00:00
2008-12-18 20:38:33 +00:00
# Diffs
'editundo' => 'पूर्ववत करोसि' ,
2008-11-17 20:21:17 +00:00
# Search results
'powersearch' => 'परिणत शोध' ,
2008-04-12 11:13:16 +00:00
2008-11-25 10:28:25 +00:00
# Recent changes
'recentchanges' => 'नवीनतम परिवर्तन' ,
2008-12-17 23:45:11 +00:00
'hide' => 'प्रछद्' ,
2008-11-25 10:28:25 +00:00
'show' => 'दर्शयति' ,
2008-12-17 23:45:11 +00:00
# Recent changes linked
'recentchangeslinked' => 'सम्भन्दिन् परिवर्त' ,
2008-12-16 22:06:25 +00:00
# Upload
'upload' => 'भारं न्यस्यति सञ्चिका' ,
2008-12-17 23:45:11 +00:00
# Random page
'randompage' => 'अविशिष्ट पृष्ठ' ,
2008-04-12 11:13:16 +00:00
# Miscellaneous special pages
'ancientpages' => 'प्राचीनतम् पृष्ठा' ,
# Book sources
'booksources-go' => 'प्रस्थानम्' ,
2008-08-08 08:45:04 +00:00
# Special:AllPages
2008-12-16 22:06:25 +00:00
'alphaindexline' => 'इतः $1 यावत् $2' ,
'allarticles' => 'सर्व लेखा' ,
2008-12-24 23:04:33 +00:00
'allpagessubmit' => 'गच्छति' ,
2008-04-12 11:13:16 +00:00
2008-11-25 10:28:25 +00:00
# Special:Categories
'categories' => 'वर्ग' ,
2008-04-12 11:13:16 +00:00
# E-mail user
'emailsubject' => 'विषयः' ,
'emailmessage' => 'सन्देशः' ,
2008-12-24 23:04:33 +00:00
# Watchlist
'watchthispage' => 'प्रतिरक्षति इदं पृष्ठ' ,
2008-12-18 20:38:33 +00:00
# Displayed when you click the "watch" button and it is in the process of watching
'watching' => 'निरिक्षा' ,
2008-09-16 20:55:18 +00:00
# Delete
2008-04-12 11:13:16 +00:00
'actioncomplete' => 'कार्य समापनम्' ,
2008-12-24 23:04:33 +00:00
# Namespace form on various pages
'namespace' => 'नामविश्व:' ,
2008-12-17 23:45:11 +00:00
# What links here
'whatlinkshere' => 'किम् पृष्ठ सम्बद्धं करोति' ,
2008-04-12 11:13:16 +00:00
# Block/unblock
'blocklink' => 'निषेध' ,
# Namespace 8 related
'allmessages' => 'व्यवस्था सन्देशानि' ,
'allmessagesname' => 'नाम' ,
2008-11-17 20:21:17 +00:00
# Tooltip help for the actions
2008-12-18 20:38:33 +00:00
'tooltip-search' => '{{SITENAME}} अन्वेषणं करोति' ,
2008-11-25 10:28:25 +00:00
'tooltip-n-mainpage' => 'मुखपृष्ठ अभ्यागम' ,
'tooltip-n-recentchanges' => 'नविनतम परिवर्तन सूची' ,
'tooltip-n-randompage' => 'अविशीष्ट लेख' ,
'tooltip-save' => 'त्रायते' ,
2008-12-25 18:30:17 +00:00
# Skin names
'skinname-standard' => 'पूर्व' ,
'skinname-nostalgia' => 'पुराण' ,
'skinname-cologneblue' => 'नील' ,
'skinname-monobook' => 'पुस्तक' ,
'skinname-myskin' => 'मे चर्मन्' ,
'skinname-chick' => 'Chick' ,
2008-12-24 23:04:33 +00:00
# Special:NewFiles
'newimages' => 'नूतन संचिका दालन' ,
2008-11-25 10:28:25 +00:00
# 'all' in various places, this might be different for inflected languages
2008-12-24 23:04:33 +00:00
'watchlistall2' => 'सर्व' ,
2008-11-25 10:28:25 +00:00
'namespacesall' => 'सर्व' ,
'monthsall' => 'सर्व' ,
2008-11-17 20:21:17 +00:00
2008-04-12 11:13:16 +00:00
# Auto-summaries
'autosumm-new' => 'नवीन पृष्ठं: $1' ,
2008-11-25 10:28:25 +00:00
# Special:Version
'version' => 'आवृत्ति' , # Not used as normal message but as header for the special page itself
2008-12-16 22:06:25 +00:00
# Special:SpecialPages
'specialpages' => 'विशेष पृष्ठ' ,
2008-02-16 15:12:49 +00:00
);