System messages

From SDA Knowledge Base

Jump to: navigation, 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.

Filter
Filter by customization state:    
First page
First page
Last page
Last page
Name Default message text
Current message text
cite_error_empty_references_define (Talk) (Translate) <code><ref></code> tag defined in <code><references></code> with name "$1" has no content.
cite_error_group_refs_without_references (Talk) (Translate) <code><ref></code> tags exist for a group named "$1", but no corresponding <code><references group="$1"/></code> tag was found, or a closing <code></ref></code> is missing
cite_error_included_ref (Talk) (Translate) Closing <code></ref></code> missing for <code><ref></code> tag
cite_error_ref_no_input (Talk) (Translate) Invalid <code><ref></code> tag; refs with no name must have content
cite_error_ref_no_key (Talk) (Translate) Invalid <code><ref></code> tag; refs with no content must have a name
cite_error_ref_numeric_key (Talk) (Translate) Invalid <code><ref></code> tag; name cannot be a simple integer. Use a descriptive title
cite_error_ref_too_many_keys (Talk) (Translate) Invalid <code><ref></code> tag; invalid names, e.g. too many
cite_error_references_group_mismatch (Talk) (Translate) <code><ref></code> tag in <code><references></code> has conflicting group attribute "$1".
cite_error_references_invalid_parameters (Talk) (Translate) Invalid <code><references></code> tag; no parameters are allowed. Use <code><references /></code>
cite_error_references_invalid_parameters_group (Talk) (Translate) Invalid <code><references></code> tag; parameter "group" is allowed only. Use <code><references /></code>, or <code><references group="..." /></code>
cite_error_references_missing_group (Talk) (Translate) <code><ref></code> tag defined in <code><references></code> has group attribute "$1" which does not appear in prior text.
cite_error_references_missing_key (Talk) (Translate) <code><ref></code> tag with name "$1" defined in <code><references></code> is not used in prior text.
cite_error_references_no_key (Talk) (Translate) <code><ref></code> tag defined in <code><references></code> has no name attribute.
cite_error_references_no_text (Talk) (Translate) Invalid <code><ref></code> tag; no text was provided for refs named <code>$1</code>
cite_error_refs_without_references (Talk) (Translate) <code><ref></code> tags exist, but no <code><references/></code> tag was found
cite_references_prefix (Talk) (Translate) <ol class="references">
cite_references_suffix (Talk) (Translate) </ol>
clearyourcache (Talk) (Translate) <strong>Note:</strong> After saving, 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:</strong> Hold <em>Ctrl</em> while clicking <em>Refresh</em>, or press <em>Ctrl-F5</em> * <strong>Opera:</strong> Clear the cache in <em>Tools → Preferences</em>
collapsible-collapse (Talk) (Translate) Collapse
collapsible-expand (Talk) (Translate) Expand
cologneblue.css (Talk) (Translate) /* CSS placed here will affect users of the Cologne Blue skin */
/* CSS placed here will affect users of the Cologne Blue skin */ /* * Table styles */ table { background-color: #ffffff; } table.wikitable { border: none; margin-bottom: .5em; } table.wikitable th, table.wikitable td { border: none; vertical-align: top; padding: 2px; } table.wikitable td { background-color: #c1cdcd; } table.wikitable th { text-align: center; font-weight:bold; background: #6688aa; color: #ffffff; } table.wikitable caption { margin-left: inherit; margin-right: inherit; font-weight: bold; font-size: 1.1em; } /* * Templates */ .contents { float: right; padding: 5px; margin: 0 0 .5em 1em; border: 1px solid #6688aa; background-color: #c1cdcd; } .yes-cell { background-color: #71c671 !important; } .no-cell { background-color: #ee7942 !important; }
cologneblue.js (Talk) (Translate) /* Any JavaScript here will be loaded for users using the Cologne Blue skin */
colon-separator (Talk) (Translate) :
columns (Talk) (Translate) Columns:
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 link icon for YouTube */ #bodyContent a[href ^="http://www.youtube.com"], #article a[href ^="http://www.youtube.com"], #contentSub a[href ^="http://www.youtube.com"] { background: url(http://speeddemosarchive.com/w/images/4/4c/YouTube_icon.png) center right no-repeat !important; padding-right: 20px !important; } /* Suppressing YouTube icon when plainlinks class is used */ #bodyContent .plainlinks a[href ^="http://www.youtube.com"], #article .plainlinks a[href ^="http://www.youtube.com"], #contentSub .plainlinks a[href ^="http://www.youtube.com"] { background: none !important; padding-right: 0 !important; } .NavToggle{ /* 'show'/'hide' buttons created dynamically */ float: right; /* by the CollapsibleTables javascript in */ font-weight: normal; /* [[MediaWiki:Common.js]] are styled here */ text-align: right; /* so they can be customised. */ font-size: .9em; width: auto; }
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. */ /* * Defining commonly used functions */ function hasClass(E, cName) { if (E.className.search(cName) >= 0) { return true; } else { return false; }; } /** Dynamic Navigation Bars (experimental) ************************************* * * Copied from CC-BY-SA document: http://en.wikipedia.org/wiki/MediaWiki:Common.js */ // set up the words in your language var NavigationBarHide = '[hide]'; var NavigationBarShow = '[show]'; // shows and hides content and picture (if available) of navigation bars // Parameters: // indexNavigationBar: the index of navigation bar to be toggled function toggleNavigationBar(indexNavigationBar) { var NavToggle = document.getElementById("NavToggle" + indexNavigationBar); var NavFrame = document.getElementById("NavFrame" + indexNavigationBar); if (!NavFrame || !NavToggle) { return false; } // if shown now if (NavToggle.firstChild.data == NavigationBarHide) { for (var NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling) { if (hasClass(NavChild, 'NavContent') || hasClass(NavChild, 'NavPic')) { NavChild.style.display = 'none'; } } NavToggle.firstChild.data = NavigationBarShow; // if hidden now } else if (NavToggle.firstChild.data == NavigationBarShow) { for (var NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling) { if (hasClass(NavChild, 'NavContent') || hasClass(NavChild, 'NavPic')) { NavChild.style.display = 'block'; } } NavToggle.firstChild.data = NavigationBarHide; } } // adds show/hide-button to navigation bars function createNavigationBarToggleButton() { var indexNavigationBar = 0; // iterate over all < div >-elements var divs = document.getElementsByTagName("div"); for (var i = 0; NavFrame = divs[i]; i++) { // if found a navigation bar if (hasClass(NavFrame, "NavFrame")) { indexNavigationBar++; var NavToggle = document.createElement("a"); NavToggle.className = 'NavToggle'; NavToggle.setAttribute('id', 'NavToggle' + indexNavigationBar); NavToggle.setAttribute('href', 'javascript:toggleNavigationBar(' + indexNavigationBar + ');'); var isCollapsed = hasClass( NavFrame, "collapsed" ); /* * Check if any children are already hidden. This loop is here for backwards compatibility: * the old way of making NavFrames start out collapsed was to manually add style="display:none" * to all the NavPic/NavContent elements. Since this was bad for accessibility (no way to make * the content visible without JavaScript support), the new recommended way is to add the class * "collapsed" to the NavFrame itself, just like with collapsible tables. */ for (var NavChild = NavFrame.firstChild; NavChild != null && !isCollapsed; NavChild = NavChild.nextSibling) { if ( hasClass( NavChild, 'NavPic' ) || hasClass( NavChild, 'NavContent' ) ) { if ( NavChild.style.display == 'none' ) { isCollapsed = true; } } } if (isCollapsed) { for (var NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling) { if ( hasClass( NavChild, 'NavPic' ) || hasClass( NavChild, 'NavContent' ) ) { NavChild.style.display = 'none'; } } } var NavToggleText = document.createTextNode(isCollapsed ? NavigationBarShow : NavigationBarHide); NavToggle.appendChild(NavToggleText); // Find the NavHead and attach the toggle link (Must be this complicated because Moz's firstChild handling is borked) for(var j=0; j < NavFrame.childNodes.length; j++) { if (hasClass(NavFrame.childNodes[j], "NavHead")) { NavFrame.childNodes[j].appendChild(NavToggle); } } NavFrame.setAttribute('id', 'NavFrame' + indexNavigationBar); } } } addOnloadHook( createNavigationBarToggleButton );
compare-invalid-title (Talk) (Translate) The title you specified is invalid.
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.
First page
First page
Last page
Last page
Views
Personal tools