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
cite_warning_sectionpreview_no_text (talk) (Translate) <code><ref></code> tag with name <code>$1</code> cannot be previewed because it is defined outside the current section or not defined at all.
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>Internet Explorer / Edge:</strong> Hold <em>Ctrl</em> while clicking <em>Refresh</em>, or press <em>Ctrl-F5</em> * <strong>Opera:</strong> Press <em>Ctrl-F5</em>.
collapsible-collapse (talk) (Translate) Collapse
collapsible-expand (talk) (Translate) Expand
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 */ /* External links are green */ .mw-body-content a.external {color: #008000} .mw-body-content a.external:visited {color: #008000} /* JRB Hide icons for links and files */ div#content a.external { background:none !important; padding: 0px !important; } .image { position: relative; display: inline-block; border-bottom: 1px dotted black; } .image1 { position: relative; display: inline-block; border-bottom: 1px dotted black; } .document { position: relative; display: inline-block; border-bottom: 1px dotted black; } .image .imagecaption { visibility: hidden; width: 120px; background-color: black; color: #fff; text-align: center; border-radius: 6px; padding: 5px 0; /* Position the tooltip */ position: absolute; z-index: 1; top: 100%; left: 50%; margin-left: -60px; } .image1 .image1caption { visibility: hidden; width: 120px; background-color: black; color: #fff; text-align: center; border-radius: 6px; padding: 5px 0; /* Position the tooltip */ position: absolute; z-index: 1; top: 100%; left: 50%; margin-left: -60px; } .document .documentcaption { visibility: hidden; width: 120px; background-color: black; color: #fff; text-align: center; border-radius: 6px; padding: 5px 0; /* Position the tooltip */ position: absolute; z-index: 1; top: 100%; left: 50%; margin-left: -60px; } .image:hover .imagecaption { visibility: visible; } .image1:hover .image1caption { visibility: visible; } .document:hover .documentcaption { visibility: visible; }
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. */ function filterImages () { var x = document.getElementsByClassName("image"); var search = ""; if (document.getElementById("imageinput") !== null && document.getElementById("imageinput").value !== null) { search = document.getElementById("imageinput").value; } for (i = 0; i < x.length; i++) { if (x[i].id.indexOf(search) == -1) { x[i].style.display = 'none'; } else { x[i].style.display = ''; } } } function filterImages1 () { var x = document.getElementsByClassName("image1"); var search = ""; if (document.getElementById("image1input") !== null && document.getElementById("image1input").value !== null) { search = document.getElementById("image1input").value; } for (i = 0; i < x.length; i++) { if (x[i].id.indexOf(search) == -1) { x[i].style.display = 'none'; } else { x[i].style.display = ''; } } } function filterRefs () { var x = document.getElementsByClassName("ref"); var search = ""; if (document.getElementById("refinput") !== null && document.getElementById("refinput").value !== null) { search = document.getElementById("refinput").value; } for (i = 0; i < x.length; i++) { if (x[i].id.indexOf(search) == -1) { x[i].style.display = 'none'; } else { x[i].style.display = ''; } } } function filterRecognitions () { var x = document.getElementsByClassName("recognition"); var search = ""; if (document.getElementById("recognitioninput") !== null && document.getElementById("recognitioninput").value !== null) { search = document.getElementById("recognitioninput").value; } for (i = 0; i < x.length; i++) { if (x[i].id.indexOf(search) == -1) { x[i].style.display = 'none'; } else { x[i].style.display = ''; } } } function filterDocuments () { var x = document.getElementsByClassName("document"); var search = ""; if(document.getElementById("documentinput") !== null && document.getElementById("documentinput").value !== null) { search = document.getElementById("documentinput").value; } for (i = 0; i < x.length; i++) { if (x[i].id.indexOf(search) == -1) { x[i].style.display = 'none'; } else { x[i].style.display = ''; } } } function filterTable() { var input, filter, table, tr, td, i, type, link, creator, source,date, notes, txtValue; input = document.getElementById("tableinput"); filter = input.value.toUpperCase(); table = document.getElementById("filtertable"); tr = table.getElementsByTagName("tr"); for (i = 0; i < tr.length; i++) { // match text in columns Link, Creator, Date, Notes title= tr[i].getElementsByTagName("td")[0]; if (title) { type = tr[i].getElementsByTagName("td")[0]; link = tr[i].getElementsByTagName("td")[1]; creator = tr[i].getElementsByTagName("td")[2]; source = tr[i].getElementsByTagName("td")[3]; date = tr[i].getElementsByTagName("td")[4]; notes = tr[i].getElementsByTagName("td")[6]; txtValue = type.textContent + link.textContent + creator.textContent + source.textContent + date.textContent + notes.textContent; if (txtValue.toUpperCase().indexOf(filter) > -1) { tr[i].style.display = ""; } else { tr[i].style.display = "none"; } } } } function filterWebsites() { var input, filter, table, tr, td, i, link, txtValue; input = document.getElementById("websiteinput"); filter = input.value.toUpperCase(); table = document.getElementById("filterwebsite"); tr = table.getElementsByTagName("tr"); for (i = 0; i < tr.length; i++) { // match text in columns Link, Creator, Date, Notes title= tr[i].getElementsByTagName("td")[0]; if (title) { link= tr[i].getElementsByTagName("td")[0]; txtValue = link.textContent; if (txtValue.toUpperCase().indexOf(filter) > -1) { tr[i].style.display = ""; } else { tr[i].style.display = "none"; } } } } $('#tablebox').html('<input type="text" id="tableinput" onkeyup="filterTable()" value="" placeholder="Filter..." title="Type in a name">'); $('#websitebox').html('<input type="text" id="websiteinput" onkeyup="filterWebsite()" value="" placeholder="Filter..." title="Type in a name">'); $('#imagebox').html('<input type="text" id="imageinput" onkeyup="filterImages()" value="" placeholder="Filter...0" title="Type in a name">'); $('#image1box').html('<input type="text" id="image1input" onkeyup="filterImages1()" value="" placeholder="Filter..." title="Type in a name1">'); $('#documentbox').html('<input type="text" id="documentinput" onkeyup="filterDocuments()" value="" placeholder="Filter..." title="Type in a name">'); $('#recognitionbox').html('<input type="text" id="recognitioninput" onkeyup="filterRecognitions()" value="" placeholder="Filter..." title="Type in a name">'); $('#refbox').html('<input type="text" id="refinput" onkeyup="filterRefs()" value="" placeholder="Filter..." title="Type in a name">');
common.json (talk) (Translate) /* Any JSON here will be loaded for all users on every page load. */
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.
confirmemail_invalidated (talk) (Translate) Email address confirmation cancelled
confirmemail_loggedin (talk) (Translate) Your email address has now been confirmed.
First pagePrevious pageNext pageLast page