2007-11-07 13:00:48 +00:00
|
|
|
|
<?php
|
2008-01-30 17:16:34 +00:00
|
|
|
|
/** Pontic (Ποντιακά)
|
2007-11-07 13:00:48 +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
|
2007-11-07 13:00:48 +00:00
|
|
|
|
*
|
2008-06-10 09:50:22 +00:00
|
|
|
|
* @author Consta
|
2009-06-19 22:36:36 +00:00
|
|
|
|
* @author Crazymadlover
|
2012-01-27 20:44:55 +00:00
|
|
|
|
* @author Kaganer
|
2008-09-06 22:57:09 +00:00
|
|
|
|
* @author Omnipaedista
|
2011-01-02 21:18:06 +00:00
|
|
|
|
* @author Reedy
|
2008-08-10 10:16:19 +00:00
|
|
|
|
* @author Sinopeus
|
2008-10-19 10:30:24 +00:00
|
|
|
|
* @author Urhixidur
|
2009-01-08 19:21:28 +00:00
|
|
|
|
* @author ZaDiak
|
2007-11-07 13:00:48 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
2016-12-06 22:35:55 +00:00
|
|
|
|
$fallback = 'el';
|
|
|
|
|
|
|
2016-02-17 09:09:32 +00:00
|
|
|
|
$namespaceNames = [
|
2009-05-31 17:31:21 +00:00
|
|
|
|
NS_MEDIA => 'Μέσον',
|
|
|
|
|
|
NS_SPECIAL => 'Ειδικόν',
|
|
|
|
|
|
NS_TALK => 'Καλάτσεμαν',
|
|
|
|
|
|
NS_USER => 'Χρήστες',
|
|
|
|
|
|
NS_USER_TALK => 'Καλάτσεμαν_χρήστε',
|
|
|
|
|
|
NS_PROJECT_TALK => '$1_καλάτσεμαν',
|
2009-11-17 00:01:16 +00:00
|
|
|
|
NS_FILE => 'Αρχείον',
|
|
|
|
|
|
NS_FILE_TALK => 'Καλάτσεμαν_αρχείονος',
|
2009-05-31 17:31:21 +00:00
|
|
|
|
NS_MEDIAWIKI => 'MediaWiki',
|
|
|
|
|
|
NS_MEDIAWIKI_TALK => 'MediaWiki_talk',
|
|
|
|
|
|
NS_TEMPLATE => 'Πρότυπον',
|
|
|
|
|
|
NS_TEMPLATE_TALK => 'Καλάτσεμαν_πρότυπι',
|
|
|
|
|
|
NS_HELP => 'Βοήθειαν',
|
|
|
|
|
|
NS_HELP_TALK => 'Καλάτσεμαν_βοήθειας',
|
|
|
|
|
|
NS_CATEGORY => 'Κατηγορίαν',
|
|
|
|
|
|
NS_CATEGORY_TALK => 'Καλάτσεμαν_κατηγορίας',
|
2016-02-17 09:09:32 +00:00
|
|
|
|
];
|
2008-01-30 17:16:34 +00:00
|
|
|
|
|
2016-02-17 09:09:32 +00:00
|
|
|
|
$namespaceAliases = [
|
2009-11-17 00:01:16 +00:00
|
|
|
|
'Εικόναν' => NS_FILE,
|
|
|
|
|
|
'Καλάτσεμαν_εικόνας' => NS_FILE_TALK,
|
2016-02-17 09:09:32 +00:00
|
|
|
|
];
|
2009-11-17 00:01:16 +00:00
|
|
|
|
|
2016-02-17 09:09:32 +00:00
|
|
|
|
$datePreferences = [
|
2008-04-25 16:26:12 +00:00
|
|
|
|
'default',
|
|
|
|
|
|
'pnt',
|
|
|
|
|
|
'ISO 8601',
|
2016-02-17 09:09:32 +00:00
|
|
|
|
];
|
2008-04-25 16:26:12 +00:00
|
|
|
|
|
|
|
|
|
|
$defaultDateFormat = 'pnt';
|
|
|
|
|
|
|
2016-02-17 09:09:32 +00:00
|
|
|
|
$dateFormats = [
|
2008-04-25 16:26:12 +00:00
|
|
|
|
'pnt time' => 'H:i',
|
|
|
|
|
|
'pnt date' => 'j xg Y',
|
|
|
|
|
|
'pnt both' => 'H:i, j xg Y',
|
2016-02-17 09:09:32 +00:00
|
|
|
|
];
|