System messages

Jump to navigation Jump to search
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.
System messages
First pagePrevious pageNext pageLast page
Name Default message text
Current message text
collapsible-expand-all-tooltip (talk) (Translate) Expand all collapsible elements on the current page
cologneblue-desc (talk) (Translate) A lightweight skin with minimal formatting
cologneblue.css (talk) (Translate) /* All CSS here will be loaded for users of the Cologne Blue skin */
cologneblue.js (talk) (Translate) /* All JavaScript here will be loaded for users of the Cologne Blue skin */
colon-separator (talk) (Translate) :
comma-separator (talk) (Translate) ,
common.css (talk) (Translate) /* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */ body { background-color: #EEEEEE; } table {color: black; } h1, h2, h5 {font: 'Sakkal Majalla',Arial, Helvetica, sans-serif;color:#009cd6; font-weight: bold; src: url('http://data.ggbn.org/ggbn_new/fonts/majalla.ttf')} h1 { font-size: 1.4em; } h2 { font-size: 1.3em; } h3 { font-size: 1.2em; } h4 { font-size: 1.1em; } h5 { font-size: 1em; } #wikinote { background-color: #DFDFE6; border: 1px dashed #ffa500; color: black; margin: 2em 0 1em; padding: .5em 1em; vertical-align: middle; } #frame { border: 1px solid #000000; } .portlet h5 { text-transform: none; font-weight: bold; } /* scrollable preview */ #wikiPreview { overflow-y: auto; max-height: 300px !important; border: 1px dotted gray; padding: 4px; } #wikiPreview { /* fix if missing clear in preview (? add for #mw-subcategories, #mw-pages, #mw-category-media, #filehistory, #wikiDiff neccessary?) */ clear: both; } /* new table layouts */ table.vertical-align-top td { vertical-align:top;} /* new table layouts (like in printed scientific journals):  booktable (only thead horizontal bar + tfoot) booktabledotted (… same, but adding dotted horizontal lines inbetween (better for large tables)) */ table.booktable, table.booktabledotted { margin: 1em 1em 1em 0; background: #ffffff; border-top: 2px #656463 solid; border-bottom: 2px #656463 solid; border-collapse: collapse; } .booktabledotted td { border-bottom: 1px dotted gray; padding:0.2em; } .booktable td { border: 0px none !important; padding:0.2em; } .booktable tr.line-t td, .booktable tr td.line-t{ border-top: 1px #656463 solid !important; } .booktable tr.line-b td, .booktable tr td.line-b{ border-bottom: 1px #656463 solid !important; } .booktable tr.line-tb td, .booktable tr td.line-tb{ border-bottom: 1px #656463 solid !important; border-top: 1px #656463 solid !important; } .booktabledotted th, .booktable th { vertical-align:bottom; border-bottom:1px solid #656463; border-top: 1px solid #656463; border-left:0px; border-right:0px; padding: 0.2em; } .booktabledotted th, .booktable th { background: #ffffff; text-align: center; } .booktable caption, .booktabledotted caption { font-weight: normal; } /* category pages with 3 columns */ .mw-category-generated #mw-subcategories .mw-content-ltr, .mw-category-generated #mw-pages .mw-content-ltr { -webkit-column-count: 3; -moz-column-count: 3; column-count: 3; -webkit-column-width: 24em; -moz-column-width: 24em; column-width: 24em; } .mw-category-generated #mw-subcategories .mw-content-ltr h3:first-child, .mw-category-generated #mw-pages .mw-content-ltr h3:first-child { margin-top:0; padding-top:0; }
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. */ /** * Add file’s usage to Special:ListFiles * @requires mw.config * @requires mw.util * @requires mw.Api */ window.init_special_listfiles_add_file_usage = function () { if(mw.config.get("wgCanonicalSpecialPageName")==="Listfiles"){ // "Special:ListFiles" /* * {batchcomplete: "", query: {…}} batchcomplete: "" query: normalized: [{…}] pages: 402: fileusage: Array(1) 0: ns: 0 pageid: 90 title: "News" __proto__: Object length: 1 __proto__: Array(0) ns: 6 pageid: 402 title: "File:INVEMAR logo.png" __proto__: Object __proto__: Object __proto__: Object __proto__: Object * */ var api = new mw.Api(), zero_indexColImgName = parseInt($('table.listfiles tr:nth-child(2)').children('td.TablePager_col_img_name').index()); // $('td.TablePager_col_img_name').first().find('a').attr('href').replace(mw.config.get('wgArticlePath').replace('$1', ''), ''); $('table.listfiles tr:nth-child(1) th:nth-child('+ ( zero_indexColImgName + 1 ) + ')').after($('<th/>').append('File Usage')); $('td.TablePager_col_img_name').each(function () { var $thisTdImgName = $(this) , thisWikiFile=$thisTdImgName.find('a').first().attr('href').replace( mw.config.get('wgArticlePath').replace('$1', ''), '' ), $td=$('<td/>').addClass('TablePager_col_img_fileusage') ; if (thisWikiFile.length) { api.get({ action: 'query', prop: 'fileusage', titles: thisWikiFile }).done(function (data) { // console.log(data); if (typeof data['query'] ['pages'] != "undefined") { $.each(data.query.pages, function(i_1, el_pages) { if (typeof el_pages['fileusage'] != "undefined") { $list_tag=$('<ol/>'); // $list_tag=$('<span/>').append('File is used on:').add('<ol/>'); $.each(el_pages['fileusage'], function(i_2, el_fileusage) { var $a=$('<a/>') .attr('href', mw.util.getUrl(el_fileusage.title)) .append(el_fileusage.title); $list_tag.append($('<li/>').append($a)); }); $td.append($('<span/>').append('File is used on:')) .append($list_tag); } }); $thisTdImgName.after($td); } else { // console.log("DEBUG: data ['query'] ['pages'] not found "); $thisTdImgName.after($td); } }); } else{ console.warn('DEBUG: thisWikiFile seems empty: '); console.warn(thisWikiFile); } }); }// if "Special:ListFiles" };// end init_special_listfiles_add_file_usage document.getElementsByTagName("body")[0].classList.remove("vector-animateLayout"); if(skin=="ggbn"){ toolbox = document.getElementById("p-tb"); headmenu = document.getElementById("mw-head"); if(toolbox && headmenu){ toolbox.parentNode.removeChild(toolbox); toolbox.setAttribute("class","vectorTabs"); headmenu.appendChild(toolbox); } portalLinks = document.getElementsByClassName("portal"); for(i=0;i<portalLinks.length;i++){ var portalLink = portalLinks[i]; portalLink.setAttribute('title',portalLink.getAttribute('id').substring(2).replace(new RegExp('_', 'g'), ' ')); } } jQuery(document).ready(function($) { if(mw.config.get("wgCanonicalSpecialPageName")==="Listfiles"){ init_special_listfiles_add_file_usage(); } });
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]].
confirmedit-preview-content (talk) (Translate) Content
confirmedit-preview-description (talk) (Translate) The following table shows the list of lines on this page and whether it's a valid IP address or IP address range. If the line is a valid IP address or IP address range, it will be excluded from CAPTCHA checks but invalid lines will be ignored. An example of a valid IP address range would be: 69.208.0.0/16 which goes from 69.208.0.0 to 69.208.255.255. [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Range_blocks#Calculating_the_CIDR_suffix More information] about calculating an IP address range.
confirmedit-preview-invalid (talk) (Translate) invalid
confirmedit-preview-line (talk) (Translate) Line number
confirmedit-preview-valid (talk) (Translate) valid
confirmedit-preview-validity (talk) (Translate) Validity
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.
First pagePrevious pageNext pageLast page