formatNum for Esperanto
[lhc/web/wiklou.git] / languages / Language.php
index 387d271..602b4e6 100644 (file)
@@ -81,6 +81,8 @@ if(isset($wgExtraNamespaces)) {
        'fancysig'              => 0,
        'externaleditor'        => 0,
        'externaldiff'          => 0,
+       'showjumplinks'         => 1,
+       'numberheadings'        => 0,
 );
 
 /* private */ $wgQuickbarSettingsEn = array(
@@ -107,12 +109,22 @@ if(isset($wgExtraNamespaces)) {
        MW_MATH_MATHML => 'mw_math_mathml'
 );
 
-# Whether to use user or default setting in Language::date()
-
-/* private */ $wgDateFormatsEn = array(
+/**
+ * Whether to use user or default setting in Language::date()
+ *
+ * NOTE: the array string values are no longer important!
+ * The actual date format functions are now called for the selection in
+ * Special:Preferences, and the 'datedefault' message for MW_DATE_DEFAULT.
+ *
+ * The array keys make up the set of formats which this language allows
+ * the user to select. It's exposed via Language::getDateFormats().
+ *
+ * @access private
+ */
+$wgDateFormatsEn = array(
        MW_DATE_DEFAULT => 'No preference',
-       MW_DATE_MDY => '16:12, January 15, 2001',
        MW_DATE_DMY => '16:12, 15 January 2001',
+       MW_DATE_MDY => '16:12, January 15, 2001',
        MW_DATE_YMD => '16:12, 2001 January 15',
        MW_DATE_ISO => '2001-01-15 16:12:34'
 );
@@ -143,6 +155,7 @@ if(isset($wgExtraNamespaces)) {
        'fancysig',
        'externaleditor',
        'externaldiff',
+       'showjumplinks',
 );
 
 /* private */ $wgBookstoreListEn = array(
@@ -207,6 +220,9 @@ $wgLanguageNamesEn =& $wgLanguageNames;
        MAG_PAGENAME             => array( 1,    'PAGENAME'               ),
        MAG_PAGENAMEE            => array( 1,    'PAGENAMEE'              ),
        MAG_NAMESPACE            => array( 1,    'NAMESPACE'              ),
+       MAG_NAMESPACEE           => array( 1,    'NAMESPACEE'             ),
+       MAG_FULLPAGENAME         => array( 1,    'FULLPAGENAME'           ),
+       MAG_FULLPAGENAMEE        => array( 1,    'FULLPAGENAMEE'          ),
        MAG_MSG                  => array( 0,    'MSG:'                   ),
        MAG_SUBST                => array( 0,    'SUBST:'                 ),
        MAG_MSGNW                => array( 0,    'MSGNW:'                 ),
@@ -253,10 +269,6 @@ $wgLanguageNamesEn =& $wgLanguageNames;
 global $wgRightsText;
 
 /* private */ $wgAllMessagesEn = array(
-
-# The navigation toolbar, int: is used here to make sure that the appropriate
-# messages are automatically pulled from the user-selected language file.
-
 /*
 The sidebar for MonoBook is generated from this message, lines that do not
 begin with * or ** are discarded, furthermore lines that do begin with ** and
@@ -307,6 +319,7 @@ parent class in order maintain consistency across languages.
 'tog-fancysig' => 'Raw signatures (without automatic link)',
 'tog-externaleditor' => 'Use external editor by default',
 'tog-externaldiff' => 'Use external diff by default',
+'tog-showjumplinks' => 'Enable "jump to" accessibility links',
 
 'underline-always' => 'Always',
 'underline-never' => 'Never',
@@ -442,6 +455,7 @@ parent class in order maintain consistency across languages.
 'viewtalkpage' => 'View discussion',
 'otherlanguages' => 'In other languages',
 'redirectedfrom' => '(Redirected from $1)',
+'redirectpagesub' => 'Redirect page',
 'lastmodified' => 'This page was last modified $1.',
 'viewcount'            => 'This page has been accessed $1 times.',
 'copyright'    => 'Content is available under $1.',
@@ -612,6 +626,7 @@ Your account has been created. Don't forget to change your {{SITENAME}} preferen
 'yourlanguage' => 'Language:',
 'yourvariant'  => 'Variant',
 'yournick'             => 'Nickname:',
+'badsig'               => 'Invalid raw signature; check HTML tags.',
 'email'                        => 'Email',
 'emailforlost'         => "Fields marked with superscripts are optional.  Storing an email address enables people to contact you through the website without you having to reveal your
 email address to them, and it can be used to send you a new password if you forget it.<br /><br />Your real name, if you choose to provide it, will be used for giving you attribution for your work.",
@@ -726,8 +741,11 @@ If you are here by mistake, just click your browser's '''back''' button.",
 'updated'              => '(Updated)',
 'note'                 => '<strong>Note:</strong> ',
 'previewnote'  => '<strong>This is only a preview; changes have not yet been saved!</strong>',
+'session_fail_preview' => '<strong>Sorry! We could not process your edit due to a loss of session data. 
+Please try again. If it still doesn\'t work, try logging out and logging back in.</strong>',
 'previewconflict' => 'This preview reflects the text in the upper
 text editing area as it will appear if you choose to save.',
+'importing'            => "Importing $1",
 'editing'              => "Editing $1",
 'editingsection'               => "Editing $1 (section)",
 'editingcomment'               => "Editing $1 (comment)",
@@ -866,6 +884,7 @@ $2 List redirects &nbsp; Search for $3 $9",
 'skin'                 => 'Skin',
 'math'                 => 'Math',
 'dateformat'           => 'Date format',
+'datedefault'          => 'No preference',
 'datetime'             => 'Date and time',
 'math_failure'         => 'Failed to parse',
 'math_unknown_error'   => 'unknown error',
@@ -1022,7 +1041,7 @@ To include the image in a page, use a link in the form
 'copyrightpage' => "Project:Copyrights",
 'copyrightpagename' => "{{SITENAME}} copyright",
 'uploadedfiles'        => 'Uploaded files',
-'ignorewarning'        => 'Ignore warning and save file anyway.',
+'ignorewarnings'       => 'Ignore any warnings',
 'minlength'            => 'File names must be at least three letters.',
 'illegalfilename'      => 'The filename "$1" contains characters that are not allowed in page titles. Please rename the file and try uploading it again.',
 'badfilename'  => 'File name has been changed to "$1".',
@@ -1048,7 +1067,7 @@ created and by whom, and anything else you may know about it. If this is an imag
 'sourcefilename' => 'Source filename',
 'destfilename' => 'Destination filename',
 
-'license' => 'Licensing',      
+'license' => 'Licensing',
 'nolicense' => 'None selected',
 
 # Image list
@@ -1119,6 +1138,7 @@ That comes to '''$5''' average edits per page, and '''$6''' views per edit.",
 'disambiguationstext'  => "The following pages link to a <i>disambiguation page</i>. They should link to the appropriate topic instead.<br />A page is treated as disambiguation if it is linked from $1.<br />Links from other namespaces are <i>not</i> listed here.",
 'doubleredirects'      => 'Double redirects',
 'doubleredirectstext'  => "Each row contains links to the first and second redirect, as well as the first line of the second redirect text, usually giving the \"real\" target page, which the first redirect should point to.",
+'doubleredirectsarrow' => '→',
 'brokenredirects'      => 'Broken Redirects',
 'brokenredirectstext'  => 'The following redirects link to a non-existing pages.',
 'selflinks'            => 'Pages with Self Links',
@@ -1145,7 +1165,8 @@ That comes to '''$5''' average edits per page, and '''$6''' views per edit.",
 'wantedcategories' => 'Wanted categories',
 'wantedpages'  => 'Wanted pages',
 'mostlinked'   => 'Most linked to pages',
-'mostcategories' => 'Most linked to categories',
+'mostlinkedcategories' => 'Most linked to categories',
+'mostcategories' => 'Articles with the most categories',
 'mostimages'   => 'Most linked to images',
 'mostrevisions' => 'Articles with the most revisions',
 'nlinks'               => '$1 links',
@@ -1486,6 +1507,28 @@ Please confirm that this is what you intend to do.',
 <br />Remember to remove the lock after your maintenance is complete.',
 'unlockdbsuccesstext' => 'The database has been unlocked.',
 
+# Make sysop
+'makesysoptitle'       => 'Make a user into a sysop',
+'makesysoptext'                => 'This form is used by bureaucrats to turn ordinary users into administrators.
+Type the name of the user in the box and press the button to make the user an administrator',
+'makesysopname'                => 'Name of the user:',
+'makesysopsubmit'      => 'Make this user into a sysop',
+'makesysopok'          => "<b>User \"$1\" is now a sysop</b>",
+'makesysopfail'                => "<b>User \"$1\" could not be made into a sysop. (Did you enter the name correctly?)</b>",
+'setbureaucratflag' => 'Set bureaucrat flag',
+'setstewardflag'    => 'Set steward flag',
+'bureaucratlog'                => 'Bureaucrat_log',
+'rightslogtext'                => 'This is a log of changes to user rights.',
+'bureaucratlogentry'   => "Changed group membership for $1 from $2 to $3",
+'rights'                       => 'Rights:',
+'set_user_rights'      => 'Set user rights',
+'user_rights_set'      => "<b>User rights for \"$1\" updated</b>",
+'set_rights_fail'      => "<b>User rights for \"$1\" could not be set. (Did you enter the name correctly?)</b>",
+'makesysop'         => 'Make a user into a sysop',
+'already_sysop'     => 'This user is already an administrator',
+'already_bureaucrat' => 'This user is already a bureaucrat',
+'already_steward'   => 'This user is already a steward',
+
 # Validation
 'val_yes' => 'Yes',
 'val_no' => 'No',
@@ -1532,6 +1575,9 @@ Please confirm that this is what you intend to do.',
 'val_validated' => 'Validation done.',
 'val_article_lists' => 'List of validated articles',
 'val_page_validation_statistics' => 'Page validation statistics for $1',
+'val_max_topics' => 'Maximum number of $1 topics reached',
+'val_no_topics_defined' => 'No topics defined',
+'val_no_topics_defined_text' => 'You have no topics defined which can be rated. Go to [[Special:Validate]], and have an administrator run the "Manage" function to add at least one topic and point range.',
 
 # Move page
 #
@@ -1634,6 +1680,8 @@ In the latter case you can also use a link, e.g. [[{{ns:Special}}:Export/{{Media
 'importsuccess'        => 'Import succeeded!',
 'importhistoryconflict' => 'Conflicting history revision exists (may have imported this page before)',
 'importnosources' => 'No transwiki import sources have been defined and direct history uploads are disabled.',
+'importnofile' => 'No import file was uploaded.',
+'importuploaderror' => 'Upload of import file failed; perhaps the file is bigger than the allowed upload size.',
 
 # Keyboard access keys for power users
 'accesskey-search' => 'f',
@@ -2154,6 +2202,10 @@ Please confirm that really want to recreate this article.',
 # HTML dump
 'redirectingto' => 'Redirecting to [[$1]]...',
 
+# action=purge
+'confirm_purge' => "Clear the cache of this page?\n\n$1",
+'confirm_purge_button' => 'OK',
+
 );
 
 /* a fake language converter */
@@ -2427,17 +2479,23 @@ class Language {
         * [...]
         *</code>
         *
-        * @param bool $usePrefs: if false, the site/language default is used
+        * @param mixed $usePrefs: if true, the user's preference is used
+        *                         if false, the site/language default is used
+        *                         if int/string, assumed to be a format.
         * @return string
         */
        function dateFormat( $usePrefs = true ) {
                global $wgUser, $wgAmericanDates;
 
-               if( $usePrefs ) {
-                       $datePreference = $wgUser->getOption( 'date' );
+               if( is_bool( $usePrefs ) ) {
+                       if( $usePrefs ) {
+                               $datePreference = $wgUser->getOption( 'date' );
+                       } else {
+                               $options = $this->getDefaultUserOptions();
+                               $datePreference = (string)$options['date'];
+                       }
                } else {
-                       $options = $this->getDefaultUserOptions();
-                       $datePreference = (string)$options['date'];
+                       $datePreference = (string)$usePrefs;
                }
 
                if( $datePreference == MW_DATE_DEFAULT || $datePreference == '' ) {
@@ -2452,7 +2510,7 @@ class Language {
         *               date('YmdHis') format with wfTimestamp(TS_MW,$ts)
         * @param bool   $adj whether to adjust the time output according to the
         *               user configured offset ($timecorrection)
-        * @param bool   $format true to use user's date format preference
+        * @param mixed  $format true to use user's date format preference
         * @param string $timecorrection the time offset as returned by
         *               validateTimeZone() in Special:Preferences
         * @return string
@@ -2464,8 +2522,8 @@ class Language {
 
                $datePreference = $this->dateFormat( $format );
 
-               $month = $this->getMonthName( substr( $ts, 4, 2 ) );
-               $day = $this->formatNum( 0 + substr( $ts, 6, 2 ) );
+               $month = $this->formatMonth( substr( $ts, 4, 2 ), $datePreference );
+               $day = $this->formatDay( substr( $ts, 6, 2 ), $datePreference );
                $year = $this->formatNum( substr( $ts, 0, 4 ), true );
 
                switch( $datePreference ) {
@@ -2482,7 +2540,7 @@ class Language {
        *               date('YmdHis') format with wfTimestamp(TS_MW,$ts)
        * @param bool   $adj whether to adjust the time output according to the
        *               user configured offset ($timecorrection)
-       * @param bool   $format true to use user's date format preference
+       * @param mixed  $format true to use user's date format preference
        * @param string $timecorrection the time offset as returned by
        *               validateTimeZone() in Special:Preferences
        * @return string
@@ -2492,13 +2550,53 @@ class Language {
 
                if ( $adj ) { $ts = $this->userAdjust( $ts, $timecorrection ); }
                $datePreference = $this->dateFormat( $format );
-
-               $t = substr( $ts, 8, 2 ) . ':' . substr( $ts, 10, 2 );
+               
+               $sep = ($datePreference == MW_DATE_ISO)
+                       ? ':'
+                       : $this->timeSeparator( $format );
+               
+               $t = substr( $ts, 8, 2 ) . $sep . substr( $ts, 10, 2 );
 
                if ( $datePreference == MW_DATE_ISO ) {
-                       $t .= ':' . substr( $ts, 12, 2 );
+                       $t .= $sep . substr( $ts, 12, 2 );
                }
-               return $this->formatNum( $t );
+               return $t;
+       }
+       
+       /**
+        * Default separator character between hours, minutes, and seconds.
+        * Will be used by Language::time() for non-ISO formats.
+        * (ISO will always use a colon.)
+        * @return string
+        */
+       function timeSeparator( $format ) {
+               return ':';
+       }
+       
+       /**
+        * String to insert between the time and the date in a combined
+        * string. Should include any relevant whitespace.
+        * @return string
+        */
+       function timeDateSeparator( $format ) {
+               return ', ';
+       }
+       
+       /**
+        * Return true if the time should display before the date.
+        * @return bool
+        * @access private
+        */
+       function timeBeforeDate() {
+               return true;
+       }
+
+       function formatMonth( $month, $format ) {
+               return $this->getMonthName( $month );
+       }
+       
+       function formatDay( $day, $format ) {
+               return $this->formatNum( 0 + $day );
        }
 
        /**
@@ -2507,7 +2605,7 @@ class Language {
        *               date('YmdHis') format with wfTimestamp(TS_MW,$ts)
        * @param bool   $adj whether to adjust the time output according to the
        *               user configured offset ($timecorrection)
-       * @param bool   $format true to use user's date format preference
+       * @param mixed  $format true to use user's date format preference
        * @param string $timecorrection the time offset as returned by
        *               validateTimeZone() in Special:Preferences
        * @return string
@@ -2519,8 +2617,13 @@ class Language {
                switch ( $datePreference ) {
                        case MW_DATE_ISO: return $this->date( $ts, $adj, $format, $timecorrection ) . ' ' .
                                $this->time( $ts, $adj, $format, $timecorrection );
-                       default: return $this->time( $ts, $adj, $format, $timecorrection ) . ', ' .
-                               $this->date( $ts, $adj, $format, $timecorrection );
+                       default:
+                               $time = $this->time( $ts, $adj, $format, $timecorrection );
+                               $sep = $this->timeDateSeparator( $datePreference );
+                               $date = $this->date( $ts, $adj, $format, $timecorrection );
+                               return $this->timeBeforeDate( $datePreference )
+                                       ? $time . $sep . $date
+                                       : $date . $sep . $time;
                }
        }
 
@@ -2676,6 +2779,9 @@ class Language {
        # Fill a MagicWord object with data from here
        function getMagic( &$mw ) {
                $raw = $this->getMagicWords();
+
+               wfRunHooks( 'LanguageGetMagic', array( &$raw ) );
+               
                if( !isset( $raw[$mw->mId] ) ) {
                        # Fall back to English if local list is incomplete
                        $raw =& Language::getMagicWords();