Personal tools
User menu

System messages

From atmoschem

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_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 */
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 */ body.page-Main_Page h1.firstHeading { 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. */ // <syntax type="javascript"> /** Toggles the display of elements on a page Author/contact: Austin Che http://openwetware.org/wiki/User:Austin_J._Che See http://openwetware.org/wiki/OpenWetWare:Toggle for examples and documentation */ // indexed array of toggler ids to array of associated toggle operations // each operation is a two element array, the first being the type, the second a class name or array of elements // operation types are strings like "_reset" or "" for the default toggle operation var togglers = new Array(); var allClasses = new Object(); // associative map of class names to page elements function toggler(id) { var toBeToggled = togglers[id]; if (!toBeToggled) return; // if some element is in list more than once, it will be toggled multiple times for (var i = 0; i < toBeToggled.length; i++) { // get array of elements to operate on var toggles = toBeToggled[i][1]; if (typeof(toggles) == "string") { if (toggles.charAt(0) == '-') { // treat as an element ID, not as class toggles = document.getElementById(toggles.substring(1)); if (toggles) toggles = new Array(toggles); } else toggles = allClasses[toggles]; } if (!toggles || !toggles.length) continue; var op = toBeToggled[i][0]; // what the operation will be switch (op) { case "_reset": for (var j = 0; j < toggles.length; j++) toggles[j].style.display = toggles[j]._toggle_original_display; break; case "_show": for (var j = 0; j < toggles.length; j++) toggles[j].style.display = ''; break; case "_hide": for (var j = 0; j < toggles.length; j++) toggles[j].style.display = 'none'; break; case "": default: // Toggle for (var j = 0; j < toggles.length; j++) toggles[j].style.display = ((toggles[j].style.display == 'none') ? '' : 'none'); break; } } } function createTogglerLink(toggler, id) { var toggle = document.createElement("a"); toggle.className = 'toggler-link'; toggle.setAttribute('id', 'toggler' + id); toggle.setAttribute('href', 'javascript:toggler("' + id + '");'); var child = toggler.firstChild; toggler.removeChild(child); toggle.appendChild(child); toggler.insertBefore(toggle, toggler.firstChild); } function toggleInit() { var togglerElems = new Array(); var toggleGroup = new Array(); // initialize/clear any old information togglers = new Array(); allClasses = new Object(); // make list of all document classes var elems = document.getElementsByTagName("*"); var numelems = elems.length; for (var i = 0; i < elems.length; i++) { var elem = elems[i]; if (!elem.className) continue; elem._toggle_original_display = elem.style.display; var togglerID = -1; var elemClasses = elem.className.split(' '); // get list of classes for (var j = 0; j < elemClasses.length; j++) { var elemClass = elemClasses[j]; if (! allClasses[elemClass]) allClasses[elemClass] = new Array(); allClasses[elemClass].push(elem); // all the special classes begin with _toggle if (elemClass.substring(0, 7) != "_toggle") continue; if (elemClass == "_togglegroup") toggleGroup = new Array(); else if (elemClass == "_toggle") toggleGroup.push(elem); else if (elemClass.substring(0, 12) == "_toggle_init") { // set initial value for display (ignore the original CSS set value) // understands _toggle_initshow and _toggle_inithide var disp = elemClass.substring(12); if (disp == "show") elem.style.display = ''; else if (disp == "hide") elem.style.display = 'none'; elem._toggle_original_display = disp; } else if (elemClass.substring(0, 8) == "_toggler") { if (togglerID == -1) { togglerID = togglers.length; togglers[togglerID] = new Array(); togglerElems[togglerID] = elem; } // all classes are of form _toggler_op-CLASS // figure out what class we're toggling // if none is specified, then we use the current toggle group var toBeToggled; var hyphen = elemClass.indexOf('-'); if (hyphen != -1) toBeToggled = elemClass.substring(hyphen+1); else { toBeToggled = toggleGroup; hyphen = elemClass.length; } var op = elemClass.substring(8, hyphen); togglers[togglerID].push(new Array(op, toBeToggled)); } } } // add javascript links to all toggler elements for (var i = 0; i < togglerElems.length; i++) createTogglerLink(togglerElems[i], i); } function owwsitesearch(f){ f.q.value='site:http://openwetware.org/wiki/'+ f.base.value+'++'+f.qfront.value } addOnloadHook(toggleInit); // </syntax>
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.
compare-submit (Talk) (Translate) Compare
compare-title-not-exists (Talk) (Translate) The title you specified does not exist.
comparepages (Talk) (Translate) Compare pages
comparepages-summary (Talk) (Translate)  
compareselectedversions (Talk) (Translate) Compare selected revisions
confirm (Talk) (Translate) Confirm
confirm-purge-bottom (Talk) (Translate) Purging a page clears the cache and forces the most current revision to appear.
confirm-purge-top (Talk) (Translate) Clear the cache of 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-top (Talk) (Translate) Add this page to your watchlist?
confirm_purge_button (Talk) (Translate) OK
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 canceled
confirmemail_loggedin (Talk) (Translate) Your email address has now been confirmed.
confirmemail_needlogin (Talk) (Translate) Please $1 to confirm your email address.
confirmemail_noemail (Talk) (Translate) You do not have a valid email address set in your [[Special:Preferences|user preferences]].
confirmemail_oncreate (Talk) (Translate) A confirmation code was sent to your email address. This code is not required to log in, but you will need to provide it before enabling any email-based features in the wiki.
confirmemail_pending (Talk) (Translate) A confirmation code has already been emailed to you; if you recently created your account, you may wish to wait a few minutes for it to arrive before trying to request a new code.
confirmemail_send (Talk) (Translate) Mail a confirmation code
confirmemail_sendfailed (Talk) (Translate) {{SITENAME}} could not send your confirmation mail. Please check your email address for invalid characters. Mailer returned: $1
confirmemail_sent (Talk) (Translate) Confirmation email sent.
confirmemail_subject (Talk) (Translate) {{SITENAME}} email address confirmation
confirmemail_success (Talk) (Translate) Your email address has been confirmed. You may now [[Special:UserLogin|log in]] and enjoy the wiki.
First page
First page
Last page
Last page