182 lines
4.9 KiB
PHP
182 lines
4.9 KiB
PHP
<?php
|
|
/** Latin (lingua Latina)
|
|
*
|
|
* @package MediaWiki
|
|
* @subpackage Language
|
|
*/
|
|
|
|
/* private */ $wgNamespaceNamesLa = array(
|
|
NS_SPECIAL => 'Specialis',
|
|
NS_MAIN => '',
|
|
NS_TALK => 'Disputatio',
|
|
NS_USER => 'Usor',
|
|
NS_USER_TALK => 'Disputatio_Usoris',
|
|
NS_PROJECT => $wgMetaNamespace,
|
|
NS_PROJECT_TALK => FALSE, # Set in constructor
|
|
NS_IMAGE => 'Imago',
|
|
NS_IMAGE_TALK => 'Disputatio_Imaginis',
|
|
NS_MEDIAWIKI => 'MediaWiki',
|
|
NS_MEDIAWIKI_TALK => 'Disputatio_MediaWiki',
|
|
NS_TEMPLATE => 'Formula',
|
|
NS_TEMPLATE_TALK => 'Disputatio_Formulae',
|
|
NS_HELP => 'Auxilium',
|
|
NS_HELP_TALK => 'Disputatio_Auxilii',
|
|
NS_CATEGORY => 'Categoria',
|
|
NS_CATEGORY_TALK => 'Disputatio_Categoriae',
|
|
) + $wgNamespaceNamesEn;
|
|
|
|
/* private */ $wgQuickbarSettingsLa = array(
|
|
"Nullus", "Constituere a sinistra", "Constituere a dextra", "Innens a sinistra"
|
|
);
|
|
|
|
/* private */ $wgSkinNamesLa = array(
|
|
'standard' => 'Norma',
|
|
'nostalgia' => 'Nostalgia',
|
|
'cologneblue' => 'Caerulus Colonia'
|
|
) + $wgSkinNamesEn;
|
|
|
|
|
|
$wgAllMessagesLa = array(
|
|
|
|
# User Toggles
|
|
|
|
"tog-underline" => "Subscribere nexi",
|
|
"tog-highlightbroken" => "Formare nexos fractos <a href=\"\" class=\"new\">sici</a> (alioqui: sic<a href=\"\" class=\"internal\">?</a>).",
|
|
"tog-justify" => "Saepire capites",
|
|
"tog-hideminor" => "Celare mutationes recentes minores",
|
|
"tog-usenewrc" => "Mutationes recentes amplificatae (non efficit in tota navigatra)",
|
|
"tog-numberheadings" => "Numerare indices necessario",
|
|
"tog-rememberpassword" => "Recordari tesserae inter conventa (uti cookies)",
|
|
"tog-editwidth" => "Capsa recensitorum totam latitudinem habet",
|
|
"tog-editondblclick" => "Premere bis ut paginam recensere (uti JavaScript)",
|
|
"tog-watchdefault" => "Custodire res novas et mutatas",
|
|
"tog-minordefault" => "Notare totas mutations ut minor",
|
|
"tog-previewontop" => "Monstrare praevisus ante capsam recensiti, non post ipsam",
|
|
|
|
# Dates
|
|
|
|
'sunday' => 'dies Solis',
|
|
'monday' => 'dies Lunae',
|
|
'tuesday' => 'dies Martis',
|
|
'wednesday' => 'dies Mercuri',
|
|
'thursday' => 'dies Iovis',
|
|
'friday' => 'dies Veneris',
|
|
'saturday' => 'dies Saturni',
|
|
'january' => 'Ianuarii',
|
|
'february' => 'Februarii',
|
|
'march' => 'Martii',
|
|
'april' => 'Aprilis',
|
|
'may_long' => 'Maii',
|
|
'june' => 'Iunii',
|
|
'july' => 'Iulii',
|
|
'august' => 'Augusti',
|
|
'september' => 'Septembri',
|
|
'october' => 'Octobri',
|
|
'november' => 'Novembri',
|
|
'december' => 'Decembri',
|
|
'jan' => 'ian',
|
|
'feb' => 'feb',
|
|
'mar' => 'mar',
|
|
'apr' => 'apr',
|
|
'may' => 'mai',
|
|
'jun' => 'iun',
|
|
'jul' => 'iul',
|
|
'aug' => 'aug',
|
|
'sep' => 'sep',
|
|
'oct' => 'oct',
|
|
'nov' => 'nov',
|
|
'dec' => 'dec',
|
|
|
|
# Math
|
|
'mw_math_png' => "Semper vertere PNG",
|
|
'mw_math_simple' => "HTML si admodum simplex, alioqui PNG",
|
|
'mw_math_html' => "HTML si fieri potest, alioqui PNG",
|
|
'mw_math_source' => "Stet ut TeX (pro navigatri texti)",
|
|
'mw_math_modern' => "Commendatum pro navigatri recentes",
|
|
'mw_math_mathml' => 'MathML',
|
|
);
|
|
|
|
require_once( "LanguageUtf8.php" );
|
|
|
|
class LanguageLa extends LanguageUtf8 {
|
|
function LanguageLa() {
|
|
global $wgNamespaceNamesLa, $wgMetaNamespace;
|
|
LanguageUtf8::LanguageUtf8();
|
|
$wgNamespaceNamesLa[NS_PROJECT_TALK] = 'Disputatio_' .
|
|
$this->convertGrammar( $wgMetaNamespace, 'genitive' );
|
|
}
|
|
|
|
function getNamespaces() {
|
|
global $wgNamespaceNamesLa;
|
|
return $wgNamespaceNamesLa;
|
|
}
|
|
|
|
function getNsIndex( $text ) {
|
|
global $wgNamespaceNamesLa;
|
|
global $wgMetaNamespace;
|
|
|
|
foreach ( $wgNamespaceNamesLa as $i => $n ) {
|
|
if ( 0 == strcasecmp( $n, $text ) ) { return $i; }
|
|
}
|
|
|
|
# Backwards compatibility hacks
|
|
if( $wgMetaNamespace == 'Vicipaedia' || $wgMetaNamespace == 'Victionarium' ) {
|
|
if( 0 == strcasecmp( 'Wikipedia', $text ) ) return NS_PROJECT;
|
|
if( 0 == strcasecmp( 'Disputatio_Wikipedia', $text ) ) return NS_PROJECT_TALK;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
function getQuickbarSettings() {
|
|
global $wgQuickbarSettingsLa;
|
|
return $wgQuickbarSettingsLa;
|
|
}
|
|
|
|
function getSkinNames() {
|
|
global $wgSkinNamesLa;
|
|
return $wgSkinNamesLa;
|
|
}
|
|
|
|
function date( $ts, $adj = false ) {
|
|
if ( $adj ) { $ts = $this->userAdjust( $ts ); }
|
|
|
|
$d = $this->getMonthAbbreviation( substr( $ts, 4, 2 ) ) .
|
|
" " . (0 + substr( $ts, 6, 2 )) . ", " .
|
|
substr( $ts, 0, 4 );
|
|
return $d;
|
|
}
|
|
|
|
function timeanddate( $ts, $adj = false ) {
|
|
return $this->time( $ts, $adj ) . " " . $this->date( $ts, $adj );
|
|
}
|
|
|
|
function getMessage( $key ) {
|
|
global $wgAllMessagesLa;
|
|
if( isset( $wgAllMessagesLa[$key] ) ) {
|
|
return $wgAllMessagesLa[$key];
|
|
}
|
|
return parent::getMessage( $key );
|
|
}
|
|
|
|
/**
|
|
* Convert from the nominative form of a noun to some other case
|
|
*
|
|
* Just used in a couple places for sitenames; special-case as necessary.
|
|
* Rules are far from complete.
|
|
*/
|
|
function convertGrammar( $word, $case ) {
|
|
switch ( $case ) {
|
|
case 'genitive':
|
|
// 1st and 2nd declension singular only.
|
|
$in = array( '/a$/', '/u[ms]$/', '/tio$/' );
|
|
$out = array( 'ae', 'i', 'tionis' );
|
|
return preg_replace( $in, $out, $word );
|
|
default:
|
|
return $word;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
|
|
?>
|