System messages
From Stunts Wiki
This is a list of system messages available in the MediaWiki namespace.
Please visit MediaWiki Localisation and translatewiki.net if you wish to contribute to the generic MediaWiki localisation.
| Name | Default message text |
|---|---|
| Current message text | |
| clearyourcache (talk) (Translate) | <strong>Note:</strong> After publishing, you may have to bypass your browser's cache to see the changes. * <strong>Firefox / Safari:</strong> Hold <em>Shift</em> while clicking <em>Reload</em>, or press either <em>Ctrl-F5</em> or <em>Ctrl-R</em> (<em>⌘-R</em> on a Mac) * <strong>Google Chrome:</strong> Press <em>Ctrl-Shift-R</em> (<em>⌘-Shift-R</em> on a Mac) * <strong>Edge:</strong> Hold <em>Ctrl</em> while clicking <em>Refresh</em>, or press <em>Ctrl-F5</em>. |
| collapsible-collapse (talk) (Translate) | Collapse |
| collapsible-collapse-all-text (talk) (Translate) | Collapse all |
| collapsible-collapse-all-tooltip (talk) (Translate) | Collapse all collapsible elements on the current page |
| collapsible-expand (talk) (Translate) | Expand |
| collapsible-expand-all-text (talk) (Translate) | Expand all |
| collapsible-expand-all-tooltip (talk) (Translate) | Expand all collapsible elements on the current page |
| colon-separator (talk) (Translate) | : |
| comma-separator (talk) (Translate) | , |
| common.css (talk) (Translate) | /* CSS placed here will be applied to all skins */ |
| /* <pre><nowiki> */ /** CSS placed here will be applied to all skins */ /* wikitable class */ table.wikitable { margin: 1em; padding: 0.5em; background: #fafafa; border: 1px solid gray; color: black; text-align: left; } table.wikitable th, table.wikitable td { padding-right: 1em; } table.wikitable th { background: #e9e9e9; color: black; } /* Pseudo code syntax highlighting classes */ .hlC { color: #777; font-style: italic } /* Comment */ .hlP { color: #933 } /* Primitive type */ .hlB { color: #6c6 } /* Bracket/operator */ .hlN { color: #c6c } /* Numeric */ .hlS { color: #f00 } /* String */ /* </nowiki></pre> */ /* Taken from MediaWiki - http://www.mediawiki.org/wiki/Manual:Collapsible_tables */ .collapseButton { /* 'show'/'hide' buttons created dynamically by the */ float: right; /* CollapsibleTables JavaScript in [[MediaWiki:Common.js]] */ font-weight: normal; /* are styled here so they can be customised. */ text-align: right; width: auto; } /* https://en.wikibooks.org/w/index.php?title=MediaWiki:Common.css/toc.css&oldid=1598195 */ /* When <div class="nonumtoc"> is used on the table of contents, the ToC will display without numbers */ .toclimit-count .tocnumber, .nonumtoc .tocnumber { display:none; } /* Allow limiting of which header levels are shown in a TOC; <div class="toclimit-3">, for instance, will limit to showing ==headings== and ===headings=== but no further (as long as there are no =headings= on the page, which there shouldn't be according to the MoS). */ .toclimit-2 .toclevel-2 {display:none;} .toclimit-3 .toclevel-3 {display:none;} .toclimit-4 .toclevel-4 {display:none;} .toclimit-5 .toclevel-5 {display:none;} .toclimit-6 .toclevel-6 {display:none;} | |
| common.js (talk) (Translate) | /* Any JavaScript here will be loaded for all users on every page load. */ |
| /* Any JavaScript here will be loaded for all users on every page load. */ /* Experimental: adding the collapsible tables code from MediaWiki - http://www.mediawiki.org/wiki/Manual:Collapsible_tables */ /** Collapsible tables ********************************************************* * * Description: Allows tables to be collapsed, showing only the header. See * http://www.mediawiki.org/wiki/Manual:Collapsible_tables. * Maintainers: [[**MAINTAINERS**]] */ var autoCollapse = 2; var collapseCaption = 'hide'; var expandCaption = 'show'; function collapseTable( tableIndex ) { var Button = document.getElementById( 'collapseButton' + tableIndex ); var Table = document.getElementById( 'collapsibleTable' + tableIndex ); if ( !Table || !Button ) { return false; } var Rows = Table.rows; if ( Button.firstChild.data == collapseCaption ) { for ( var i = 1; i < Rows.length; i++ ) { Rows[i].style.display = 'none'; } Button.firstChild.data = expandCaption; } else { for ( var i = 1; i < Rows.length; i++ ) { Rows[i].style.display = Rows[0].style.display; } Button.firstChild.data = collapseCaption; } } function createCollapseButtons() { var tableIndex = 0; var NavigationBoxes = new Object(); var Tables = document.getElementsByTagName( 'table' ); for ( var i = 0; i < Tables.length; i++ ) { if ( hasClass( Tables[i], 'collapsible' ) ) { /* only add button and increment count if there is a header row to work with */ var HeaderRow = Tables[i].getElementsByTagName( 'tr' )[0]; if( !HeaderRow ) continue; var Header = HeaderRow.getElementsByTagName( 'th' )[0]; if( !Header ) continue; NavigationBoxes[tableIndex] = Tables[i]; Tables[i].setAttribute( 'id', 'collapsibleTable' + tableIndex ); var Button = document.createElement( 'span' ); var ButtonLink = document.createElement( 'a' ); var ButtonText = document.createTextNode( collapseCaption ); Button.className = 'collapseButton'; // Styles are declared in MediaWiki:Common.css ButtonLink.style.color = Header.style.color; ButtonLink.setAttribute( 'id', 'collapseButton' + tableIndex ); ButtonLink.setAttribute( 'href', "javascript:collapseTable(" + tableIndex + ");" ); ButtonLink.appendChild( ButtonText ); Button.appendChild( document.createTextNode( '[' ) ); Button.appendChild( ButtonLink ); Button.appendChild( document.createTextNode( ']' ) ); Header.insertBefore( Button, Header.childNodes[0] ); tableIndex++; } } for ( var i = 0; i < tableIndex; i++ ) { if ( hasClass( NavigationBoxes[i], 'collapsed' ) || ( tableIndex >= autoCollapse && hasClass( NavigationBoxes[i], 'autocollapse' ) ) ) { collapseTable( i ); } } } addOnloadHook( createCollapseButtons ); /** Test if an element has a certain class ************************************** * * Description: Uses regular expressions and caching for better performance. * Maintainers: [[User:Mike Dillon]], [[User:R. Koot]], [[User:SG]] */ var hasClass = (function() { var reCache = {}; return function( element, className ) { return (reCache[className] ? reCache[className] : (reCache[className] = new RegExp("(?:\\s|^)" + className + "(?:\\s|$)"))).test(element.className); }; })(); | |
| compare-page1 (talk) (Translate) | Page 1 |
| compare-page2 (talk) (Translate) | Page 2 |
| compare-rev1 (talk) (Translate) | Revision 1 |
| compare-rev2 (talk) (Translate) | Revision 2 |
| compare-revision-not-exists (talk) (Translate) | The revision you specified does not exist. |
| compare-submit (talk) (Translate) | Compare |
| comparepages (talk) (Translate) | Compare pages |
| comparepages-summary (talk) (Translate) | |
| compareselectedversions (talk) (Translate) | Compare selected revisions |
| config-invalid-key (talk) (Translate) | Invalid MediaWiki configuration parameter "$1": $2 |
| config-missing-key (talk) (Translate) | Missing MediaWiki configuration parameter "$1" |
| confirm (talk) (Translate) | Confirm |
| confirm-markpatrolled-button (talk) (Translate) | OK |
| confirm-markpatrolled-top (talk) (Translate) | Mark revision $3 of $2 as patrolled? |
| confirm-mcrrestore-title (talk) (Translate) | Restore a revision |
| confirm-mcrundo-title (talk) (Translate) | Undo a change |
| confirm-purge-bottom (talk) (Translate) | Purging a page clears the cache and forces the most current revision to appear. |
| confirm-purge-title (talk) (Translate) | Purge this page |
| confirm-purge-top (talk) (Translate) | Purge the cache of this page? |
| confirm-rollback-bottom (talk) (Translate) | This action will instantly rollback the selected changes to this page. |
| confirm-rollback-button (talk) (Translate) | OK |
| confirm-rollback-top (talk) (Translate) | Revert edits to this page? |
| confirm-unwatch-button (talk) (Translate) | OK |
| confirm-unwatch-top (talk) (Translate) | Remove this page from your watchlist? |
| confirm-watch-button (talk) (Translate) | OK |
| confirm-watch-button-expiry (talk) (Translate) | Watch |
| confirm-watch-label (talk) (Translate) | Watchlist time period: |
| confirm-watch-top (talk) (Translate) | Add this page to your watchlist? |
| confirm_purge_button (talk) (Translate) | OK |
| confirmable-confirm (talk) (Translate) | Are {{GENDER:$1|you}} sure? |
| confirmable-no (talk) (Translate) | No |
| confirmable-yes (talk) (Translate) | Yes |
| confirmdeletetext (talk) (Translate) | You are about to delete a page along with all of its history. Please confirm that you intend to do this, that you understand the consequences, and that you are doing this in accordance with [[{{MediaWiki:Policy-url}}|the policy]]. |
| confirmedittext (talk) (Translate) | You must confirm your email address before editing pages. Please set and validate your email address through your [[Special:Preferences|user preferences]]. |
| confirmemail (talk) (Translate) | Confirm email address |
| confirmemail_body (talk) (Translate) | Someone, probably you, from IP address $1, has registered an account "$2" with this email address on {{SITENAME}}. To confirm that this account really does belong to you and activate email features on {{SITENAME}}, open this link in your browser: $3 If you did *not* register the account, follow this link to cancel the email address confirmation: $5 This confirmation code will expire at $4. |
| confirmemail_body_changed (talk) (Translate) | Someone, probably you, from IP address $1, has changed the email address of the account "$2" to this address on {{SITENAME}}. To confirm that this account really does belong to you and reactivate email features on {{SITENAME}}, open this link in your browser: $3 If the account does *not* belong to you, follow this link to cancel the email address confirmation: $5 This confirmation code will expire at $4. |
| confirmemail_body_set (talk) (Translate) | Someone, probably you, from IP address $1, has set the email address of the account "$2" to this address on {{SITENAME}}. To confirm that this account really does belong to you and activate email features on {{SITENAME}}, open this link in your browser: $3 If the account does *not* belong to you, follow this link to cancel the email address confirmation: $5 This confirmation code will expire at $4. |
| confirmemail_invalid (talk) (Translate) | Invalid confirmation code. The code may have expired. |
