System messages

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 customisation state:    
First page
First page
Last page
Last page
Name Default message text
Current message text
variantname-shi-latn (Talk)shi-Latn
variantname-shi-tfng (Talk)shi-Tfng
variantname-sr (Talk)sr
variantname-sr-ec (Talk)sr-ec
variantname-sr-el (Talk)sr-el
variantname-tg (Talk)tg
variantname-tg-cyrl (Talk)tg-Cyrl
variantname-tg-latn (Talk)tg-Latn
variantname-zh (Talk)zh
variantname-zh-cn (Talk)cn
variantname-zh-hans (Talk)hans
variantname-zh-hant (Talk)hant
variantname-zh-hk (Talk)hk
variantname-zh-mo (Talk)mo
variantname-zh-my (Talk)my
variantname-zh-sg (Talk)sg
variantname-zh-tw (Talk)tw
variants (Talk)Variants
vector-action-addsection (Talk)Add topic
vector-action-delete (Talk)Delete
vector-action-move (Talk)Move
vector-action-protect (Talk)Protect
vector-action-undelete (Talk)Undelete
vector-action-unprotect (Talk)Change protection
vector-simplesearch-preference (Talk)Enable simplified search bar (Vector skin only)
vector-view-create (Talk)Create
vector-view-edit (Talk)Edit
vector-view-history (Talk)View history
vector-view-view (Talk)Read
vector-view-viewsource (Talk)View source
vector.css (Talk)/* CSS placed here will affect users of the Vector skin */
/* CSS placed here will affect users of the Vector skin */ /* <source lang="css"> */ /* CSS an dieser Stelle wirkt sich auf den Vector-Skin aus. Für allgemeingültige Skin-Anpassungen bitte [[MediaWiki:Common.css]] bearbeiten. */ /* Für Vector-Skin-Benutzer irrelevante Informationen in MediaWiki:Preferences-summary ausblenden */ div.oldskinonly { display: none; } /* Vermeide hässliche weiße Ränder bei Float-Objekten auf nicht-weißen Hintergründen. */ div.thumb { border: none; } div.tright { margin: 0.5em 0 0.8em 1.4em; } div.tleft { margin: 0.5em 1.4em 0.8em 0; } /* Koordinaten in Artikeln oben rechts */ #coordinates, #editcount, #issnlink, #shortcut { display: block; position: absolute; border: none; right: 0; top: -1.4em; margin: 0; padding: 0; line-height: 11px; text-align: right; text-indent: 0; font-size: 10px; white-space: nowrap; } /* Spezialseiten */ .sp-cached { background-color: #ffffe0; background-image: url(http://upload.wikimedia.org/wikipedia/commons/thumb/8/8c/Clock%20and%20warning.svg/20px-Clock%20and%20warning.svg); background-position: 5px 3px; background-repeat: no-repeat; border: 1px solid #eeee80; color: #606000; font-style: italic; margin: 0.3em 0; padding: 4px 0 4px 30px; } /* Auszeichnung lesenswerter und exzellenter Artikel in anderen Sprachen */ #p-lang li.FA { background: url("http://upload.wikimedia.org/wikipedia/commons/d/d0/Monobook-bullet-star-transparent.png") no-repeat 0% 0%; margin-left: -10px !important; padding-left: 10px !important; list-style-image: none; /* Übersteuern der Common.css notwendig */ } #p-lang li.GA { background: url("http://upload.wikimedia.org/wikipedia/commons/a/a1/Monobook-bullet-star-gray.png") no-repeat 0% 0%; margin-left: -10px !important; padding-left: 10px !important; list-style-image: none; /* Übersteuern der Common.css notwendig */ } /* Vervollständigung für [[rev:69336]] bzw. [[bugzilla:20706]] */ kbd, samp { font-family: monospace, "Courier New"; } /* [[bugzilla:24515]] */ html { font-size: 100%; } /* </source> */
vector.js (Talk)/* Any JavaScript here will be loaded for users using the Vector skin */
/* Any JavaScript here will be loaded for users using the Vector skin */ /* Der Grossteil der Codes befindet sich in [[MediaWiki:Common.js]] */ /* * moveEditsection * Dieses Script verschiebt die [Bearbeiten]-Buttons vom rechten Fensterrand * direkt rechts neben die jeweiligen Überschriften. * This script moves the [edit]-buttons from the right border of the window * directly right next to the corresponding headings. * * Zum Abschalten die folgende Zeile (ohne führendes Sternchen) in die eigene * vector.js (zu finden unter [[Special:Mypage/vector.js|Benutzer:Name/vector.js]]) kopieren: * var oldEditsectionLinks = true; * * dbenzhuser (de:Benutzer:Dbenzhuser) * Angepasst nach Vorschlag von http://de.wikipedia.org/w/index.php?title=MediaWiki_Diskussion:Vector.js&oldid=75510836 */ addOnloadHook( function () { if (typeof oldEditsectionLinks != 'undefined' && oldEditsectionLinks) return; appendCSS(".editsection{float:none;margin-left:0}"); var elt, item; var root=document.getElementById("content"); for (var i=1; i <= 6; ++i) { var list=root.getElementsByTagName("h" + i); for (var j=0, je=list.length; j < je; ++j) { item=list[j]; numChilds=item.childNodes.length; if (numChilds > 1 && item.firstChild.className == "editsection") { // Zuerst das Leerzeichen von hinter dem Bearbeiten Link davor item.insertBefore(item.firstChild.nextSibling, item.firstChild); // Danach die große Rotation: Alles nach vorn, bis auf die beiden Elemente while (--numChilds > 1) item.insertBefore(item.lastChild, item.firstChild); // Überschrift vor Bearbeitenlink } } } }); /* * showTopicon * Funktion zum Anzeigen von Bewertungskästchen im rechten oberen Bereich des Artikels, * um exzellente bzw. lesenswerte Artikel, ausgezeichnete Bilder und dergleichen zu kennzeichnen. * * Abschaltbar für angemeldete Benutzer, einfach 'dontShowTopicons = true' in die eigene vector.js aufnehmen * * Der Code basiert auf der Lösung der frWP */ var dontShowTopicons = false; addOnloadHook( function() { if (dontShowTopicons) return; var h1 = document.getElementById("firstHeading"); var bc = document.getElementById("bodyContent"); if (!h1 || !bc) return; var icons = getElementsByClassName(bc, "div", "topicon"); for (var j = icons.length; j > 0; --j) { var icon = icons[j-1]; h1.parentNode.insertBefore(icon, h1); icon.style.cssFloat = icon.style.styleFloat = "right"; icon.style.marginLeft = "3px"; icon.style.display = "block"; } });
verification-error (Talk)This file did not pass file verification.
version (Talk)Version
version-antispam (Talk)Spam prevention
version-api (Talk)API
version-extension-functions (Talk)Extension functions
version-extensions (Talk)Installed extensions
version-hook-name (Talk)Hook name
version-hook-subscribedby (Talk)Subscribed by
version-hooks (Talk)Hooks
version-license (Talk)License
version-license-info (Talk)MediaWiki is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. MediaWiki is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received [{{SERVER}}{{SCRIPTPATH}}/COPYING a copy of the GNU General Public License] along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA or [//www.gnu.org/licenses/old-licenses/gpl-2.0.html read it online].
version-mediahandlers (Talk)Media handlers
version-other (Talk)Other
version-parser-extensiontags (Talk)Parser extension tags
version-parser-function-hooks (Talk)Parser function hooks
version-parserhooks (Talk)Parser hooks
version-poweredby-credits (Talk)This wiki is powered by '''[//www.mediawiki.org/ MediaWiki]''', copyright © 2001-$1 $2.
version-poweredby-others (Talk)[{{SERVER}}{{SCRIPTPATH}}/CREDITS others]
First page
First page
Last page
Last page
Personal tools
Namespaces

Variants
Views
Actions
Navigation
Development
Toolbox