Wikirječnik
bswiktionary
https://bs.wiktionary.org/wiki/Po%C4%8Detna_strana
MediaWiki 1.45.0-wmf.7
case-sensitive
Mediji
Posebno
Razgovor
Korisnik
Razgovor s korisnikom
Wikirječnik
Razgovor s Wikirječnikom
Datoteka
Razgovor o datoteci
MediaWiki
Razgovor o MediaWikiju
Šablon
Razgovor o šablonu
Pomoć
Razgovor o pomoći
Kategorija
Razgovor o kategoriji
Portal
Razgovor o Portalu
Indeks
Razgovor o Indeksu
Dodatak
Razgovor o Dodatku
TimedText
TimedText talk
Modul
Razgovor o modulu
MediaWiki:Portal
8
683
72709
6680
2025-04-18T14:28:35Z
Aca
2473
+
72709
wikitext
text/x-wiki
Čaršija
hnlmzms8te2wayhbulzc6wmo1xr78ui
MediaWiki:Portal-url
8
684
72710
7266
2025-04-18T14:29:47Z
Aca
2473
+
72710
wikitext
text/x-wiki
Wikirječnik:Čaršija
6cnyzz6h29lv2m3wfjiji0nhmq2lacm
Početna strana
0
851
72600
72599
2025-04-06T14:37:02Z
Aca
2473
fix
72600
wikitext
text/x-wiki
<div id="main-page">
{{Početna strana/Dobrodošlica}}
<div style="margin-top:1em;margin-bottom:1em;"></div>
{|width="100%" cellspacing="0" cellpadding="0"
|width="38%" valign="top"|
{{Početna strana/O}}
{{Početna strana/Portali}}
|style="padding:6px;font-size:1px"|
|width="62%" valign="top"|
{{Početna strana/Odabrano}}
</div>
|-
|colspan="3"|
{{Drugi jezici}}
{{Srodni projekti}}
|}
pd33zykx6lnow9u25dh4p19j29ezgev
Šablon:Drugi jezici
10
881
58537
58485
2017-03-04T20:45:54Z
Srđan
1899
58537
wikitext
text/x-wiki
{{TopBox|bleu}}
<div style="font: 10pt Arial; font-weight:bold; text-align:center; padding:5px; border-bottom:1px solid #AAAAAA;">Wikirječnici na drugim jezicima</div>
{|
| style="background-color:#f9f9ff; color:#000000; padding:.5em;" |
{{Wikirječnikjezici}}
|}<noinclude>[[Kategorija:Šabloni početne strane|Drugi jezici]]</noinclude>
{{BottomBox}}
[[sh:]][[hr:]][[sr:]]
[[af:]][[ar:]][[ast:]][[bg:]][[br:]][[ca:]][[cs:]][[da:]][[de:]][[el:]][[en:]][[es:]][[eo:]][[et:]][[eu:]][[fa:]][[fr:]][[fy:]][[gl:]][[he:]][[hi:]][[hu:]][[id:]][[io:]][[is:]][[it:]][[ja:]][[jv:]][[kn:]][[ko:]][[ku:]][[li:]][[lo:]][[lt:]][[mg:]][[ml:]][[my:]][[nl:]][[no:]][[nn:]][[oc:]][[km:]][[ps:]][[pl:]][[pt:]][[ro:]][[ru:]][[scn:]][[simple:]][[fi:]][[sv:]][[sw:]][[ta:]][[te:]][[th:]][[tr:]][[uk:]][[ur:]][[vi:]][[vo:]][[cy:]][[zh:]]
jrdeazh5jpvp0e36nhinj41q0f8ci96
MediaWiki:Monobook.js
8
968
57415
57414
2017-01-09T22:41:34Z
Krinkle
617
Maintenance: [[mw:RL/MGU]], [[mw:RL/JD]] Remove unused mwCustomEditButtons configuration for old toolbar (no longer works)
57415
javascript
text/javascript
/* </pre>
==LinkFA==
<pre> */
function LinkFA() {
// iterate over all <span>-elements
for(var i=0; a = document.getElementsByTagName("span")[i]; i++) {
// if found a FA span
if(a.className == "FA") {
// iterate over all <li>-elements
for(var j=0; b = document.getElementsByTagName("li")[j]; j++) {
// if found a FA link
if(b.className == "interwiki-" + a.id) {
b.style.padding = "0 0 0 16px";
b.style.backgroundImage = "url('//upload.wikimedia.org/wikipedia/en/6/60/LinkFA-star.png')";
b.style.backgroundRepeat = "no-repeat";
b.title = "Odabrani članak";
}
}
}
}
}
/* </pre>
==Dynamic Navigation bars==
<pre> */
// ============================================================
// BEGIN Dynamic Navigation Bars (experimantal)
// set up the words in your language
var NavigationBarHide = ' Sakrij ';
var NavigationBarShow = ' Pokaži ';
// set up max count of Navigation Bars on page,
// if there are more, all will be hidden
// NavigationBarShowDefault = 0; // all bars will be hidden
// NavigationBarShowDefault = 1; // on pages with more than 1 bar all bars will be hidden
var NavigationBarShowDefault = 1;
// 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;
NavChild = NavChild.nextSibling
) {
if (NavChild.className == 'NavPic') {
NavChild.style.display = 'none';
}
if (NavChild.className == 'NavContent') {
NavChild.style.display = 'none';
}
if (NavChild.className == 'NavToggle') {
NavChild.firstChild.data = NavigationBarShow;
}
}
// if hidden now
} else if (NavToggle.firstChild.data == NavigationBarShow) {
for (
var NavChild = NavFrame.firstChild;
NavChild;
NavChild = NavChild.nextSibling
) {
if (NavChild.className == 'NavPic') {
NavChild.style.display = 'block';
}
if (NavChild.className == 'NavContent') {
NavChild.style.display = 'block';
}
if (NavChild.className == 'NavToggle') {
NavChild.firstChild.data = NavigationBarHide;
}
}
}
}
/* </pre>
===Show/hide Dyn Navigation bars===
<pre> */
// adds show/hide-button to navigation bars
function createNavigationBarToggleButton() {
var indexNavigationBar = 0;
// iterate over all < div >-elements
for(
var i=0;
NavFrame = document.getElementsByTagName("div")[i];
i++
) {
// if found a navigation bar
if (NavFrame.className == "NavFrame") {
indexNavigationBar++;
var NavToggle = document.createElement("a");
NavToggle.className = 'NavToggle';
NavToggle.setAttribute('id', 'NavToggle' + indexNavigationBar);
NavToggle.setAttribute('href', 'javascript:toggleNavigationBar(' + indexNavigationBar + ');');
var NavToggleText = document.createTextNode(NavigationBarHide);
NavToggle.appendChild(NavToggleText);
// add NavToggle-Button as first div-element
// in < div class="NavFrame" >
NavFrame.insertBefore(
NavToggle,
NavFrame.firstChild
);
NavFrame.setAttribute('id', 'NavFrame' + indexNavigationBar);
}
}
// if more Navigation Bars found than Default: hide all
if (NavigationBarShowDefault < indexNavigationBar) {
for(
var i=1;
i<=indexNavigationBar;
i++
) {
toggleNavigationBar(i);
}
}
}
// END Dynamic Navigation Bars
// ============================================================
/* </pre>
==Page Numbering==
<pre> */
//default setting, may be overridden by user
var DisplayPageNumbersDefault = true;
CookieDisplayPageNumbers = $.cookie("DisplayPageNumbers")
if (CookieDisplayPageNumbers ) {
if (CookieDisplayPageNumbers == "false") DisplayPageNumbersDefault = false;
}
/* </pre>
===PageNumbers===
<pre> */
function PageNumbers() {
var indexNavigationBar = 0;
// iterate over all < span >-elements until class "PageNumber" is found
for(
var i=0;
SpanElem = document.getElementsByTagName("span")[i];
i++
) {
// if found a page number
if (SpanElem.className == "PageNumber") {
SpanElem.style.display = 'none';
var PageDisplay = document.createElement("li");
PageDisplay.setAttribute('id', 't-pagenumberdisplay');
var PageDisplayLink = document.createElement("a");
PageNumberText = document.createTextNode("");
PageDisplayLink.appendChild(PageNumberText);
PageDisplay.appendChild(PageDisplayLink);
var SpecialPageLink = document.getElementById("t-specialpages");
SpecialPageLink.parentNode.appendChild(PageDisplay);
displayPageNumbers(DisplayPageNumbersDefault);
break;
}
}
}
/* </pre>
===displayPageNumbers===
<pre> */
function displayPageNumbers(bool) {
$.cookie( "DisplayPageNumbers", bool );
var PageDisplayLink = document.getElementById("t-pagenumberdisplay").firstChild;;
// iterate over all < span >-elements
for(
var i=0;
SpanElem = document.getElementsByTagName("span")[i];
i++
) {
// if found a page number
if (SpanElem.className == "PageNumber") {
// if page number shall be displayed
if(bool==true && SpanElem.style.display=='none') {
SpanElem.style.display = 'inline';
//SpanElem.style.color = '#000000';
//SpanElem.style.fontWeight = 'bold';
PageDisplayLink.firstChild.data = ("Seitenzahlen ausblenden");
PageDisplayLink.setAttribute('href', 'javascript:displayPageNumbers(!DisplayPageNumbersDefault);');
}
// if page number shall be hidden
if(bool==false) {
SpanElem.style.display = 'none';
PageDisplayLink.firstChild.data = ("Seitenzahlen einblenden");
PageDisplayLink.setAttribute('href', 'javascript:displayPageNumbers(!DisplayPageNumbersDefault);');
}
}
}
DisplayPageNumbersDefault = bool;
}
/* </pre>
==Annotations==
<pre> */
//default setting, may be overridden by user
var DisplayAnnotationsDefault = true;
function Annotations() {
var indexNavigationBar = 0;
// iterate over all < span >-elements until class "Annotation" is found
for(
var i=0;
SpanElem = document.getElementsByTagName("span")[i];
i++
) {
// if found a annotation
if (SpanElem.className == "Annotation") {
SpanElem.style.display = 'none';
var AnnotationDisplay = document.createElement("li");
AnnotationDisplay.setAttribute('id', 't-annotationdisplay');
var AnnotationDisplayLink = document.createElement("a");
AnnotationText = document.createTextNode("");
AnnotationDisplayLink.appendChild(AnnotationText);
AnnotationDisplay.appendChild(AnnotationDisplayLink);
var SpecialPageLink = document.getElementById("t-specialpages");
SpecialPageLink.parentNode.appendChild(AnnotationDisplay);
displayAnnotations(DisplayAnnotationsDefault);
break;
}
}
}
/* </pre>
===displayAnnotations===
<pre> */
function displayAnnotations(bool) {
var AnnotationDisplayLink = document.getElementById("t-annotationdisplay").firstChild;;
// iterate over all < span >-elements
for(
var i=0;
SpanElem = document.getElementsByTagName("span")[i];
i++
) {
// if found a page number
if (SpanElem.className == "Annotation") {
// if page number shall be displayed
if(bool==true) {
SpanElem.style.display = 'inline';
AnnotationDisplayLink.firstChild.data = ("Anmerkungen ausblenden");
AnnotationDisplayLink.setAttribute('href', 'javascript:displayAnnotations(!DisplayAnnotationsDefault);');
}
// if page number shall be hidden
if(bool==false) {
SpanElem.style.display = 'none';
AnnotationDisplayLink.firstChild.data = ("Anmerkungen einblenden");
AnnotationDisplayLink.setAttribute('href', 'javascript:displayAnnotations(!DisplayAnnotationsDefault);');
}
}
}
DisplayAnnotationsDefault = bool;
}
/* </pre>
==LineBreaks==
<pre> */
//default setting, may be overridden by user
var DisplayLineBreaksDefault = true;
function LineBreaks() {
var indexNavigationBar = 0;
// iterate over all < span >-elements until class "LineBreak" is found
for(
var i=0;
SpanElem = document.getElementsByTagName("span")[i];
i++
) {
// if found a lbr
if (SpanElem.className == "LineBreak") {
SpanElem.style.display = 'none';
var LineBreakDisplay = document.createElement("li");
LineBreakDisplay.setAttribute('id', 't-linebreakdisplay');
var LineBreakDisplayLink = document.createElement("a");
LineBreakText = document.createTextNode("");
LineBreakDisplayLink.appendChild(LineBreakText);
LineBreakDisplay.appendChild(LineBreakDisplayLink);
var SpecialPageLink = document.getElementById("t-specialpages");
SpecialPageLink.parentNode.appendChild(LineBreakDisplay);
displayLineBreaks(DisplayLineBreaksDefault);
break;
}
}
}
/* </pre>
===displayLineBreaks===
<pre> */
function displayLineBreaks(bool) {
var LineBreakDisplayLink = document.getElementById("t-linebreakdisplay").firstChild;;
// iterate over all < span >-elements
for(
var i=0;
SpanElem = document.getElementsByTagName("span")[i];
i++
) {
// if found a page number
if (SpanElem.className == "LineBreak") {
// if page number shall be displayed
if(bool==true) {
SpanElem.style.display = 'inline';
LineBreakDisplayLink.firstChild.data = ("Zeilenumbrüche ausblenden");
LineBreakDisplayLink.setAttribute('href', 'javascript:displayLineBreaks(!DisplayLineBreaksDefault);');
}
// if lbr shall be hidden
if(bool==false) {
SpanElem.style.display = 'none';
LineBreakDisplayLink.firstChild.data = ("Zeilenumbrüche einblenden");
LineBreakDisplayLink.setAttribute('href', 'javascript:displayLineBreaks(!DisplayLineBreaksDefault);');
}
}
}
DisplayLineBreaksDefault = bool;
}
/* </pre>
==interwikiExtra==
<pre> */
function interwikiExtra() {
// iterate over all <span>-elements
for(var i=0; a = document.getElementsByTagName("span")[i]; i++) {
// if found a linkInfo span
if(a.className == "interwiki-info") {
// iterate over all <li>-elements
var count=0;
for(var j=0; b = document.getElementsByTagName("li")[j]; j++) {
if(b.className == "interwiki-" + a.id) {
b.innerHTML = b.innerHTML + " "+a.title;
if(a.title == "(OV)") { b.title = "Originaltext"; }
}
else if(b.className == "interwiki-" + a.id.substr(0,a.id.length-1)) {
count = count+1;
if(a.id.charAt(a.id.length-1) == count) {
b.innerHTML = b.innerHTML + " "+a.title;
}
}
}
}
if(a.className == "AndereVersion") {
p = a.title.indexOf("|");
pvers = document.getElementById("p-version");
if (pvers == null) {
c = document.getElementById("column-one");
c.innerHTML = c.innerHTML
+ "<div class=\"portlet\" id=\"p-version\">"
+ "<h5>Andere Versionen</h5>"
+ "<div class=\"pBody\">"
+ "<ul>"
+ "</ul>"
+ "</div>";
pvers = document.getElementById("p-version");
}
e = pvers.getElementsByTagName("ul")[0];
e.innerHTML = e.innerHTML
+ "<li class=\"\"><a href='"
+ a.title.substr(0,p)
+ "'>" + a.title.substr(p+1,a.title.length-1)+ "</a> " +"</li>"
}
if(a.className == "AnderesFormat") {
p = a.title.indexOf("|");
pvers = document.getElementById("p-format");
if (pvers == null) {
c = document.getElementById("column-one");
c.innerHTML = c.innerHTML
+ "<div class=\"portlet\" id=\"p-format\">"
+ "<h5>Andere Formate</h5>"
+ "<div class=\"pBody\">"
+ "<ul>"
+ "</ul>"
+ "</div>";
pvers = document.getElementById("p-format");
}
e = pvers.getElementsByTagName("ul")[0];
e.innerHTML = e.innerHTML
+ "<li class=\"\"><a href=':"
+ a.title.substr(0,p)
+ "'>" + a.title.substr(p+1,a.title.length-1)+ "</a> " +"</li>"
}
}
}
/* </pre>
==BilingualLink==
<pre> */
function BilingualLink() {
if( document.body.className.substring(0,4) != "ns-0" ) return;
var doc_url = document.URL;
var url = '';
// iterate over all <li>-elements
for(var j=0; b = document.getElementsByTagName("li")[j]; j++) {
if(b.className.substring(0,10) == "interwiki-" ) {
var lang = b.className.substring(10,b.className.length);
if( doc_url.indexOf('?title=') != -1 ) {
var qm = doc_url.indexOf('&match=');
if( qm != -1 ) url = doc_url.substring(0,qm)+"&match="+lang;
else url = doc_url+"&match="+lang;
} else {
var qm = doc_url.indexOf('?');
if( qm != -1 ) url = doc_url.substring(0,qm)+"?match="+lang;
else url = doc_url+"?match="+lang;
}
b.innerHTML = b.innerHTML+
"<a href='"+url+"'> ⇔</a>";
}
}
}
/* </pre>
==ProofReadLink==
<pre> */
function ProofReadLink () {
// iterate over all < span >-elements until class "ProofRead" is found
for(
var i=0;
SpanElem = document.getElementsByTagName("span")[i];
i++
) {
// if found a page number
if (SpanElem.className == "ProofRead") {
ImageSrc=SpanElem.title;
var ProofReadTab = document.createElement("li");
ProofReadTab.setAttribute('id', 'ca-proofread');
var ProofReadTabLink = document.createElement("a");
ProofReadTabLink.href=document.getElementById("ca-edit").firstChild.href + "&image="+ImageSrc;
ProofReadTabText = document.createTextNode("Korrekturlesen");
ProofReadTabLink.appendChild(ProofReadTabText);
ProofReadTab.appendChild(ProofReadTabLink);
var VersionLink = document.getElementById("ca-history");
VersionLink.parentNode.appendChild(ProofReadTab);
break;
}
}
}
/* </pre>
==Only If Editing==
<pre> */
//Vordefinition für eigene Sonderzeichenleiste
MyChar = new Array();
MyCharText = new Array();
MyCharEnd = new Array();
MyCharDefault = new Array();
//Im Bearbeitungsmodus?
var isEditing = document.URL.indexOf("action=edit") > 0 || document.URL.indexOf("action=submit") > 0;
// ============================================================
// BEGIN import Onlyifediting-functions (z.B. für Dropdown-Leiste zum Einfügen von Sonderzeichen)
// Optionen für das Sonderzeichenmenü in [[MediaWiki:Edittools]]
// wird in [[MediaWiki:Monobook.js]] ganz unten eingebunden
// Diese Variablen können in den Benutzer-Javascripts angepasst werden
/* </pre>
===addEditButton===
<pre> */
//The cleaner way to add an editbar button.
function addEditButton(){}
/* </pre>
===bsImprovedToolbar===
<pre> */
//============================================================
// Insertion de nouveaux boutons dans la barre d'outil
//============================================================
/**
* Ajoute quelques boutons sur la barre d'outil
* Inspiré de mon code précédent et des icônes sur he:
* @author: fr:user:dake
* @version: 0.1
*/
function bsImprovedToolbar()
{
tooly = document.getElementById('toolbar');
if ( (!tooly) ) return;
var buttonAB = document.createElement("img");
buttonAB.width = 23;
buttonAB.height = 22;
buttonAB.src = '//upload.wikimedia.org/wikipedia/commons/5/59/Button_replace.png';
buttonAB.border = 0;
buttonAB.alt = 'Zamjeni tekst';
buttonAB.title = 'Zamjeni Tekst'
buttonAB.style.cursor = "pointer";
buttonAB.onclick = function() {
stringReplaceBox();
return false;
}
tooly.appendChild(buttonAB);
}
$(bsImprovedToolbar);
/* </pre>
===InsertTagsValue===
<pre> */
//Autoinkrement-Tags
function insertTagsValue(uchar, ucharend, uchardefault, ucharnr) {
var txtarea = document.editform.wpTextbox1;
// IE
if (document.selection && !is_gecko) {
var theSelection = document.selection.createRange().text;
// Mozilla
} else if(txtarea.selectionStart || txtarea.selectionStart == '0') {
var replaced = false;
var startPos = txtarea.selectionStart;
var endPos = txtarea.selectionEnd;
if (endPos-startPos)
replaced = true;
var scrollTop = txtarea.scrollTop;
var theSelection = (txtarea.value).substring(startPos, endPos);
}
if (theSelection == "") {
if(!(lastVal = $.cookie("CharDefaultValue-"+ ucharnr))) lastVal ="0";
theSelection= parseInt(lastVal)+parseInt(uchardefault.substr(1));
theSelection= theSelection.toString();
}
$.cookie("CharDefaultValue-"+ ucharnr, theSelection);
insertTags(uchar,ucharend,theSelection);
}
/* </pre>
===stringReplaceBox===
<pre> */
function stringReplaceBox() {
Valreplace=$.cookie("StrReplace");
Valreplacement=$.cookie("StrReplacement");
if (Valreplace && Valreplacement) {
//Anführungszeichen ersetzen
Valreplace=Valreplace.replace(/"/g,""");
Valreplacement=Valreplacement.replace(/"/g,""");
} else {
Valreplace="";
Valreplacement="";
}
PromptWin = window.open("about:blank", "PromptWin", "width=280,height=120,dependent=yes,location=no,menubar=no,resizable=yes,status=no,toolbar=no");
PromptWin.focus();
PromptWin.document.open();
PromptWin.document.write("<title>Text ersetzen</title>");
PromptWin.document.write("<body style=\"background-color: threedface;\">");
PromptWin.document.write("<form id=\"replaceform\" name=\"replaceform\" method=POST action=\"javascript:void(0)\">");
PromptWin.document.write("<center><table border=\"0\">");
PromptWin.document.write("<tr><td style=\"font: message-box\">zamjeni:</td> <td><input type=TEXT name=\"valreplace\" value=\"" + Valreplace + "\" size=25 tabindex=\"1\"></td></tr>");
PromptWin.document.write("<tr><td style=\"font: message-box\">sa:</td> <td><input type=TEXT name=\"valreplacement\" value=\"" + Valreplacement + "\" size=25 tabindex=\"2\"></td></tr></table>");
PromptWin.document.write("<p><input type=SUBMIT value=\" Zamjeni \" tabindex=\"3\" onclick=\"opener.stringReplace(document.replaceform.valreplace.value,document.replaceform.valreplacement.value); self.close()\"> ");
PromptWin.document.write("<input type=RESET value=\"Poništi\" tabindex=\"4\" onclick=\"self.close()\"></p>");
PromptWin.document.write("</center></form></body>");
PromptWin.document.close();
PromptWin.document.replaceform.valreplace.select();
}
function stringReplace(inReplace,inReplacement) {
$.cookie("StrReplace", inReplace);
$.cookie("StrReplacement", inReplacement);
var StrReplace = new RegExp(inReplace, "g");
var StrReplacement=inReplacement;
if (document.editform)
var txtarea = document.editform.wpTextbox1;
else {
// some alternate form? take the first one we can find
var areas = document.getElementsByTagName('textarea');
var txtarea = areas[0];
}
txtarea.value=txtarea.value.replace(StrReplace,StrReplacement);
}
/* </pre>
===ProofReading===
<pre> */
//Height of ProofReadDiv
var DivHeight=0;
function ProofReading () {
if (window.location.search.indexOf("image=") != -1) {
var ImageString = window.location.search.substring(window.location.search.indexOf("image=")+6,window.location.search.length);
if (ImageString != "") {
TextBoxRows= document.getElementsByName("wpTextbox1")[0].getAttribute('rows');
TextBoxRows=Math.ceil(TextBoxRows/2);
document.getElementsByName("wpTextbox1")[0].setAttribute('rows',TextBoxRows);
var ImageFrame = "<div id=\"ImageFrame\">" + ImageFrameContent(ImageString) + "</div>";
document.getElementById("contentSub").innerHTML += ImageFrame
}
}
}
/* </pre>
====ImageFrameContent====
<pre> */
function ImageFrameContent(ImageString) {
if (DivHeight == 0) {
if(document.selection && !is_gecko) {
//IE:
DivHeight=Math.ceil(document.body.clientHeight*0.5)+"px";
} else {
//andere:
DivHeight=Math.ceil(window.innerHeight*0.4)+"px";
}
}
var ZoomInIcon = "<a href=\"javascript:Zoom(50)\"><img src=\"//upload.wikimedia.org/wikipedia/commons/4/48/Magnifier_zoom_in.png\" title=\"vergrößern\" width=24 height=24></a>";
var ZoomOutIcon = "<a href=\"javascript:Zoom(-50)\"><img src=\"//upload.wikimedia.org/wikipedia/commons/9/92/Magifier_zoom_out.png\" title=\"verkleinern\" width=24 height=24></a>";
var ZoomStdIcon = "<a href=\"javascript:Zoom(0)\"><img src=\"//upload.wikimedia.org/wikipedia/commons/7/79/Magnifier.png\" title=\"Fensterbreite\" width=24 height=24></a>";
var ImageFrame = ZoomOutIcon + " " + ZoomStdIcon + " " + ZoomInIcon;
var ImageApp = /\.png$|\.jpeg$|\.jpg$|\.gif$/;
if (ImageApp.test(ImageString) == true) {
ImageFrame += "<div style=\"overflow: scroll; height: " + DivHeight + "; width: 100%;\">";
ImageFrame += "<img onerror=\"ImageError('"+ ImageString+"')\" id=\"ProofReadImage\" src=\""+ GetImageUrl(ImageString) +"\" alt=\""+ GetImageUrl(ImageString) +"\"";
if ($.cookie("PrImageWidth")) {
ImageFrame +="width = \"" + $.cookie("PrImageWidth") +"\"";
}
ImageFrame += "></div>";
} else {
ImageFrame += "<iframe id=\"ProofReadImage\" src=\""+ GetImageUrl(ImageString) +"\" style=\"height: " + DivHeight + "; width: 100%;\">";
}
return ImageFrame
}
/* </pre>
====GetImageUrl====
<pre> */
function GetImageUrl(name) {
var retval = name;
if (name.indexOf("http:") != 0) retval = "index.php/Special:Filepath/" + name;
return retval;
}
function ImageError(imagename) {
if (document.getElementById("ProofReadImage").src.indexOf("commons") == -1 && document.getElementById("ProofReadImage").src.indexOf("Special:Filepath") != -1) {
//image not from commons
document.getElementById("ProofReadImage").src = "//commons.wikimedia.org/wiki/Special:Filepath/" + imagename;
}
}
function Zoom(value) {
PrImage = document.getElementById("ProofReadImage");
if (value == 0) PrImage.width = document.getElementById("ImageFrame").offsetWidth-15;
else PrImage.width=PrImage.width+value;
$.cookie("PrImageWidth", PrImage.width);
if(document.selection && !is_gecko) {
//IE:
document.getElementById("ImageFrame").innerHTML = ImageFrameContent(PrImage.src);
}
}
/* </pre>
===chooseCharSubset===
<pre> */
// CharSubset-Auswahl
function chooseCharSubset(ss) {
s = parseInt( ss );
if ( isNaN(s) ) s = 0;
if (SpecCharsAccesskeys.length==0) {
if (is_opera) SpecCharsAccesskeys = new Array("!","\"","§","$","%","&","/","(",")","=");
else SpecCharsAccesskeys = new Array("1","2","3","4","5","6","7","8","9","0","!","\"","§","$","%","&","/","(",")","=");
}
if (s>=0) {
var l = document.getElementById('editpage-specialchars').getElementsByTagName('p');
for (var i = 0; i < l.length ; i++) {
if (i==s) {
l[i].style.display = 'inline';
SetArrayAccessKeys(l[i].getElementsByTagName('a'),SpecCharsAccesskeys);
} else l[i].style.display = 'none';
}
$.cookie('CharSubset', s);
}
}
/* </pre>
===SetArrayAccessKeys===
<pre> */
// Ein Array von Accesskeys an ein Array von Elementen
function SetArrayAccessKeys(elements, keys) {
for (var i =0; i < elements.length;i++) {
if (i < keys.length) {
elements[i].setAttribute("accessKey",keys[i]);
elements[i].setAttribute("title","alt-"+keys[i]);
} else {
elements[i].setAttribute("accessKey","");
elements[i].setAttribute("title","");
}
}
}
/* </pre>
===AddMyChars===
<pre> */
//Vorfunktion für eigene Sonderzeichenleiste, nutzt globale Variablen
function AddMyChars() {
if (MyChar[0]) AddMyCharsDo(MyChar, MyCharEnd, MyCharText, MyCharDefault);
}
//Eigene Sonderzeichenliste
function AddMyCharsDo(thechar, thecharend, thechartext, thechardefault) {
var specialcharslist = document.getElementById('specialchars');
var addtext = "<p class=\"specialbasic\" id=\"Eigene\" title=\"Eigene\" style=\"display: none;\">\n\r";
addtext += "Eigene Zeichen:\n\r";
addtext += "<font style=\"text-decoration: none;\" face=\"Arial Unicode MS,Lucida Sans Unicode,MS Mincho,Arial,sans-serif\">";
for (var i = 0; i < thechar.length; i++) {
if (!thecharend[i]) thecharend[i]="";
if (!thechardefault[i]) thechardefault[i]="";
jsfunction ="insertTags('" + thechar[i] + "','" + thecharend[i] + "','" + thechardefault[i] +"')";
//Autoinkrement-Funktion einsetzen
if (thechardefault[i].charAt(0) == "+" && !isNaN(parseInt(thechardefault[i].substr(1)))) {
jsfunction = "insertTagsValue('" + thechar[i] + "','" + thecharend[i] + "','" + thechardefault[i] + "','" + i +"')";
}
if (!thechartext[i]) thechartext[i] = thechar[i]+" "+thecharend[i];
addtext += "<a href=\"javascript:" +jsfunction +"\">" + thechartext[i] + "</a>\n\r";
}
addtext += "</font></p>";
specialcharslist.innerHTML = addtext+specialcharslist.innerHTML;
}
/* </pre>
===addCharSubsetMenu===
<pre> */
/*
DANGER-MOUSE NOTE: This code is <<<VERY>>> sensitive to [[MediaWiki:Edittools]] changes! Make sure there are no <span>s only <div>s. Make sure there is no <p></p> at top!
*/
SpecCharsAccesskeys = new Array();
// Combined cross-browser features of [[:zh:MediaWiki:Monobook.js]]...
function addCharSubsetMenu() {
var SpecCharsMove = true;
var edittools = document.getElementById('editpage-specialchars');
if (edittools) {
var name;
var menu=document.createElement("select");
menu.style.display="inline";
var line = edittools.getElementsByTagName('p');
for (var i = 0; i < line.length ; i++) {
if (line[i].className == "specialbasic" || line[i].className == "speciallang") {
if (line[i].title) name=line[i].title;
else name = line[i].id;
menu.options[menu.options.length]=new Option(name);
}
}
menu.onchange=function() {chooseCharSubset(this.selectedIndex);} ;
if (SpecCharsMove) {
edittools.insertBefore(menu,edittools.firstChild);
} else {
edittools.insertAfter(menu,edittools.firstChild);
}
var stdsubset = 0;
if ($.cookie("CharSubset")) stdsubset = parseInt( $.cookie("CharSubset") );
if ( isNaN(stdsubset) ) stdsubset = 0;
menu.options[stdsubset].selected = true;
chooseCharSubset(stdsubset);
//Gleicher Tabindex für alle Elemente der Toolbar
var charlinks = document.getElementById('toolbar').getElementsByTagName('a');
for (var i=0; i < charlinks.length; i++) {
charlinks[i].setAttribute("tabindex",8);
}
} //end if (edittools)
}
/* </pre>
===elementMoveto===
<pre> */
//from [[:zh:MediaWiki:Monobook.js]]
function elementMoveto(node, refNode, pos) {
if(node && refNode) {
var parent = refNode.parentNode;
if (pos && pos == 'after') refNode=refNode.nextSibling;
try {
parent.insertBefore(node, refNode);
} catch (DOMException) {};
}
}
/* </pre>
===fixToolbar===
<pre> */
//from [[:zh:MediaWiki:Monobook.js]]
function fixToolbar(){
var wpEditToolbar = document.getElementById("toolbar");
var dropdownListEditTools = document.getElementById("dropdownListEditTools");
elementMoveto(dropdownListEditTools , wpEditToolbar , 'after' );
if (dropdownListEditTools) dropdownListEditTools.style.display="block";
var editspecialchars = document.getElementById("editpage-specialchars");
elementMoveto( editspecialchars, wpEditToolbar, 'after' );
}
/* </pre>
===customizeWiktionary===
<pre> */
// Menü-Einfügung
function customizeWiktionary() {
AddMyChars();
addCharSubsetMenu();
fixToolbar();
}
$(customizeWiktionary);
$(ProofReading);
// END import Onlyifediting-functions
// ============================================================
$( LinkFA );
$( createNavigationBarToggleButton );
$( interwikiExtra );
$( BilingualLink );
$( PageNumbers );
$( Annotations );
$( LineBreaks );
$( ProofReadLink );
/* </pre>
==mainpg==
<pre> */
//Main page tab no longer says article
function mainpg()
{
var site = location.href;
if (mw.config.get('wgPageName') === 'Početna_strana')
{
if(document.getElementById('ca-nstab-main'))
{
document.getElementById('ca-nstab-main').firstChild.innerHTML = 'početna strana';
}
}
else if(document.title.indexOf("Početna strana") != -1)
{
if(document.getElementById('ca-nstab-main'))
{
document.getElementById('ca-nstab-main').firstChild.innerHTML = 'početna strana';
}
}
}
$(mainpg);
/* </pre>
==doRedirect==
<pre> */
/* Redirect if a case-insensitive search on an external link is found */
function doRedirect() {
dym = document.getElementById('did-you-mean')
if ( dym ) {
var dymtarget = dym.firstChild.title ;
var target = dymtarget ;
pagetitle = document.getElementsByTagName('h1').item(0).firstChild.nodeValue;
if (pagetitle == target) {
alert('No looping allowed.');
return;
}
if ( pagetitle.toLowerCase().replace(/[^a-z]/g, "") != target.toLowerCase().replace(/[^a-z]/g, "") ) {
alert(target + " does not match " + pagetitle);
return;
}
if ( pagetitle.search(/Editing /g) != -1 ) return;
pagenamee = pagetitle.replace(/\ /g, "_");
document.location.replace( '//bs.wiktionary.org/wiki/Posebno:Search/' + pagenamee ) ;
}
}
/* </pre>
==fixEditSectionWikifiedLinks==
<pre> */
// edit-section still doesn't return to correct spot if link contains a [[wikified]] term.
function fixEditSectionWikifiedLinks() {
if (/\.5B/.test(window.location.href)) {
var url=window.location.href.replace(/.5B.5B:/g,"").replace(/.5B/g, "").replace(/.5D/g, "");
window.location = url;
}
//removed check for 7B/7D
}
/* </pre>
==mainCustomizeWiktionary==
<pre> */
/* do any Wiktionary-specific customizations */
function mainCustomizeWiktionary() {
doRedirect();
fixEditSectionWikifiedLinks();
}
$(mainCustomizeWiktionary) ;
/* </pre>
==Kill Main Page==
<pre> */
//Sakrij "Početna strana" naslov
var mpTitle = "Početna strana";
var isMainPage = (document.title.substr(0, document.title.lastIndexOf(" - ")) == mpTitle);
var isDiff = (document.location.search && (document.location.search.indexOf("diff=") != -1 || document.location.search.indexOf("oldid=") != -1));
if (isMainPage && !isDiff) mw.util.addCSS('#lastmod, #siteSub, #contentSub, h1.firstHeading { display: none !important; }');
42guqahphzx8zxzn5stha407ds23yti
MediaWiki:Sitenotice
8
1086
72829
72826
2025-05-14T19:33:03Z
Aca
2473
updated
72829
wikitext
text/x-wiki
<div style="border:1px solid var(--color-base, #202122); width:100%; background-color:var(--background-color-neutral-subtle, #f8f9fa); color:var(--background-color-inverted, #101418)">
<div style="padding:1em">Wikirječnici na bosanskom i srpskohrvatskom jeziku su spojeni. U toku je '''[[:meta:Proposals for closing projects/Closure of Bosnian Wiktionary|prijedlog za zatvaranje ovog projekta]]''' na Meta-Wikiju.
<div style="padding-top:0.5em;>'''English''': The Bosnian and Serbo-Croatian Wiktionaries have been merged. '''[[:meta:Proposals for closing projects/Closure of Bosnian Wiktionary|A proposal for the closure of this project]]''' is in progress.
</div>
</div>
</div>
lt900w8cwemjh46j4lgdo1lxcwlqn7n
MediaWiki:Sidebar
8
1746
71043
6679
2024-04-25T07:46:52Z
Srđan
1899
71043
wikitext
text/x-wiki
* navigation
** mainpage|mainpage
** portal-url|portal
** recentchanges-url|recentchanges
** randompage-url|randompage
** helppage|help
** sitesupport-url|sitesupport
6g8zu8fgfh1qpvu1hnrwyypos3521b1
Wikirječnik:Administratori
4
2357
67770
67404
2020-07-31T15:10:42Z
Nesmir Kudilovic
1592
uskl. https://meta.wikimedia.org/wiki/Special:Log?type=gblrename&user=&page=&oldname=User:Srdjan_m&wpdate=2020-07-15&tagfilter=
67770
wikitext
text/x-wiki
Ovdje možete zatražiti status administratora.
Trenutna politika je davanje administratorskog statusa svakom ko je bio aktivan saradnik neko vrijeme, te je generalno poznat kao povjerljiv član zajednice. Većina korisnika, čini se, slažu se da što je više administratora- to je bolje.
Ako želite postati administrator, onda dodajte svoje ime na listu ispod. Bilo koji korisnik može komentirati Vaš zahtjev -- oni mogu izjaviti neslaganje (jer, naprimjer, sumnjaju da ćete zloupotrijebiti Vaše novodobivene moći, ili ste se pridružili nedavno), ali nadati se da će reći i fine stvari o vama.
Ako postoji većinsko slaganje da neko treba dobiti administratorska prava, onda birokrata dodjeljuje prava i pravi zapis o tome.
== List of Administrators ==
* [[Korisnik:Barishan|Barishan]]
* [[Korisnik:KWiki|KWiki]]
* [[Korisnik:Srđan|Srđan]]
== Former Administrators ==
* [[Razgovor s korisnikom:Live Forever~bswiktionary|Live Forever]], od 5. marta 2005. (10:08:25) do 30. marta 2014. (11:41:31).
* [[Korisnik:Dijan|Dijan]], birokrat od 6. aprila 2006. (22:56:48) i administrator od 7. aprila 2006. (00:14:44) pa do 10. februara 2020. (12:15:51).
* [[Korisnik:Gangleri|Gangleri]], od 19. aprila 2006. (23:51:42) do 30. marta 2014. (11:41:49).
* [[Korisnik:Connel MacKenzie|Connel MacKenzie]], od 12. jula 2006. (23:12:26) do 30. marta 2014. (11:40:41).
* [[Korisnik:Edinwiki|Edinwiki]], od 9. aprila 2013. (20:32:14) do 10. maja 2018. (17:58:21).
== Requests for Adminship ==
=== Edinwiki ===
'''Prijedlog korisnika [[Korisnik:Edinwiki|Edinwiki]] za administratora'''
''Nominirao [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 14:17, 19 januar 2013 (KSV)''
Obrazloženje: Predlažem korisnika [[Korisnik:Edinwiki|Edinwiki]] za administratora na Projektu Wikikrječnika. Glasati možete ispod. [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 14:17, 19 januar 2013 (KSV)
==== Podržavam za administratora ====
# -- [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 14:17, 19 januar 2013 (KSV)
# -- [[Korisnik:KWiki|KWiki]] ([[Razgovor sa korisnikom:KWiki|razgovor]]) 14:43, 19 januar 2013 (KSV)
# --[[Korisnik:Palapa|Palapa]] ([[Razgovor sa korisnikom:Palapa|razgovor]]) 15:07, 19 januar 2013 (KSV)
# --[[Korisnik:Dijan|Dijan]] ([[Razgovor sa korisnikom:Dijan|razgovor]]) 18:42, 9 april 2013 (KSV)
==== Protiv ====
==== Komentari ====
* Odobreno. --[[Korisnik:Dijan|Dijan]] ([[Razgovor sa korisnikom:Dijan|razgovor]]) 18:42, 9 april 2013 (KSV)
----
=== KWiki ===
'''Prijedlog korisnika [[Korisnik:KWiki|KWiki]] za administratora'''
''Nominirao [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 14:17, 19 januar 2013 (KSV)''
Obrazloženje: Predlažem korisnika [[Korisnik:KWiki|KWiki]] za administratora na Projektu Wikikrječnika. Glasati možete ispod. [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 14:17, 19 januar 2013 (KSV)
==== Podržavam za administratora ====
# -- [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 14:17, 19 januar 2013 (KSV)
# -- [[Korisnik:Edinwiki|Edinwiki]] ([[Razgovor sa korisnikom:Edinwiki|razgovor]]) 14:33, 19 januar 2013 (KSV)
# -- [[Korisnik:Palapa|Palapa]] ([[Razgovor sa korisnikom:Palapa|razgovor]]) 15:07, 19 januar 2013 (KSV)
# -- [[Korisnik:Dijan|Dijan]] ([[Razgovor sa korisnikom:Dijan|razgovor]]) 18:42, 9 april 2013 (KSV)
==== Protiv ====
==== Komentari ====
* Odobreno. --[[Korisnik:Dijan|Dijan]] ([[Razgovor sa korisnikom:Dijan|razgovor]]) 18:42, 9 april 2013 (KSV)
----
=== Srdjan m ===
'''Prijedlog korisnika [[Korisnik:Srdjan m|Srdjan m]] za administratora'''
''Nominirao [[Korisnik:Srdjan m|Srdjan m]] ([[Razgovor s korisnikom:Srdjan m|razgovor]]) 15:58, 24 februar 2017 (KSV)''
Obrazloženje: Predlažem sam sebe da bih mogao ažurirati .css i .js projekta i projekt uopćeno malo lakše tehnički ažurirati, obrisati stare lokalne MediaWiki poruke i ako se izmijeni naziv projekta, da mi je lakše sve uskladiti na novi naziv. Glasati možete ispod.
[[Korisnik:Srdjan m|Srdjan m]] ([[Razgovor s korisnikom:Srdjan m|razgovor]]) 15:58, 24 februar 2017 (KSV)
==== Podržavam za administratora ====
# {{za}} -- [[Korisnik:C3r4|C3r4]] ([[Razgovor s korisnikom:C3r4|razgovor]]) 16:36, 24 februar 2017 (KSV)
# {{za}} -- [[Korisnik:KWiki|KWiki]] ([[Razgovor s korisnikom:KWiki|razgovor]]) 17:39, 24 februar 2017 (KSV)
# {{za}} --[[Korisnik:AnToni|AnToni]] ([[Razgovor s korisnikom:AnToni|razgovor]]) 17:54, 27 februar 2017 (KSV)
# {{za}} --[[Korisnik:Munja|Munja]] ([[Razgovor s korisnikom:Munja|razgovor]]) 22:13, 3 mart 2017 (KSV)
==== Protiv ====
==== Komentari ====
* Odobreno. --[[Korisnik:Dijan|Dijan]] ([[Razgovor s korisnikom:Dijan|razgovor]]) 02:11, 4 mart 2017 (KSV)
== Requests for removal of Adminship ==
=== Users Connel MacKenzie, Live Forever and Gangleri ===
The users [[Korisnik:Connel MacKenzie|Connel MacKenzie]], [[Korisnik:Live Forever|Live Forever]] and [[Korisnik:Gangleri|Gangleri]]. The last activity is from 2006/2007, so I think that is more than a reasonable request.
==== Podržavam ====
# -- [[Korisnik:Edinwiki|Edinwiki]] ([[Razgovor sa korisnikom:Edinwiki|razgovor]]) 14:42, 19 januar 2013 (KSV)
# -- [[Korisnik:Palapa|Palapa]] ([[Razgovor sa korisnikom:Palapa|razgovor]]) 15:07, 19 januar 2013 (KSV)
# Users were instrumental in helping set up the project in the beginning, but have not been around for a considerable amount of time. --[[Korisnik:Dijan|Dijan]] ([[Razgovor sa korisnikom:Dijan|razgovor]]) 18:42, 9 april 2013 (KSV)
# S obzirom na navedeni razlog, pridružujem se. /Given the reason above, I also support the removal. -- [[Korisnik:KWiki|KWiki]] ([[Razgovor sa korisnikom:KWiki|razgovor]]) 21:45, 9 april 2013 (KSV)
==== Protiv ====
==== Komentari ====
* Odobreno. --[[Korisnik:Dijan|Dijan]] ([[Razgovor sa korisnikom:Dijan|razgovor]]) 03:01, 30 mart 2014 (KSV)
**I've gone ahead and removed their sysop rights. Please thank them for their work! Best regards, [[Korisnik:TBloemink|TBloemink]] ([[Razgovor sa korisnikom:TBloemink|razgovor]]) 09:43, 30 mart 2014 (KSV)
----
[[Kategorija:Wikirječnik]]
<!-- note: the links will be invalid if the project namespaces will change in other languages -->
a5ngcbpxs654jo4m80l88hnphzyw8dk
Kategorija:Osnova
14
2431
66235
53422
2017-07-03T22:02:10Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66235
wikitext
text/x-wiki
Ovdje bi trebale biti sve ostale kategorije.
b13zcydql0jx8qsjuc372u606a71aft
Kategorija:Wikirječnik
14
2432
66292
58516
2017-07-03T22:11:41Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66292
wikitext
text/x-wiki
Ovo je glavna kategorija u vezi s Wikirječnikom. Ovdje trebaju biti druge kategorije i stranice vezane za Wikirječnik i njegovo održavanje.
[[Kategorija:Osnova]]
6xjehmbvirnkr05d8s9js3bjokprra3
Šablon:Bratskiprojekat
10
2437
10180
8923
2006-12-22T13:37:03Z
Dijan
16
10180
wikitext
text/x-wiki
<div class="noprint" style="clear: right; border: solid #aaa 1px; margin: 0 0 1em 1em; font-size: 90%; -moz-border-radius-topright:8px;-moz-border-radius-topleft:8px;background:#eff7ff; width: 220px; padding: 4px; spacing: 0px; text-align: left; float: right;-moz-border-radius-bottomright:8px;-moz-border-radius-bottomleft:8px;background:#eff7ff">
<div style="float: left;">[[Image:{{{image}}}|50px|none| ]]</div>
<div style="margin-left: 60px;">{{{text}}}
<div style="margin-left: 10px;">'''''{{{link}}}'''''</div>
</div>
</div>
<noinclude>[[Kategorija:Bratski projekti|B]]</noinclude>
</p>
mrpumcf6q6uav6uhv1w7aqqnna9x2nt
Šablon:Wikipedia
10
2438
72823
66878
2025-05-01T22:30:08Z
Aca
2473
72823
wikitext
text/x-wiki
{{Bratskiprojekat |projekat=Wikipedia
|image=Wikipedia-logo-v2.svg
|text=Wikipedia ima sljedeći članak:
|link=[[w:{{{1|{{PAGENAME}}}}}|{{{1|{{PAGENAME}}}}}]]
}}<noinclude>
[[Kategorija:Bratski projekti]]
</noinclude>
gvpi93n0zqmwo5elwh3uremvlh2smh8
Šablon:klik
10
2443
72824
8194
2025-05-01T22:30:23Z
Aca
2473
72824
wikitext
text/x-wiki
<div style="position: relative; width: {{{width}}}; height: {{{height}}}; overflow: hidden">
<div style="position: absolute; top: 0px; left: 0px; font-size: 100px; overflow: hidden; line-height: 100px; z-index: 3">[[{{{link}}}| ]]</div>
<div style="position: absolute; top: 0px; left: 0px; z-index: 2">[[Image:{{{image}}}|{{{width}}}|{{{link}}}]]</div>
</div><noinclude>
[[Kategorija:Šabloni]]
</noinclude>
0ztj7yi913jkigfjoj6dbvn8zeijdun
Šablon:Srodni projekti
10
2444
66879
58538
2017-11-02T18:46:45Z
Srđan
1899
66879
wikitext
text/x-wiki
{{TopBox|bleu}}
<div style="font: 10pt Arial; font-weight:bold; text-align:center; padding:5px; border-bottom:1px solid #AAAAAA;">[[Image:Wikimedia-logo.png|30px]] Srodni projekti [[Image:Wikimedia-logo.png|30px]]</div>
{|
|-
| style="background-color:#f9f9ff; color:#000000; padding:.5em;" |
<span class="plainlinks">[http://www.wikimediafoundation.org Wikimedia Fondacija]</span> omogućava tehničku, finansijsku i pravnu osnovu Wikirječnika. Wikimedia omogućava još nekoliko slobodnih wiki projekata na raznim jezicima:
{| width=100% style="font-family:Verdana, Arial, Helvetica, sans-serif; font-size: 100%; line-height: 110%; background-color: #ffffff;"
|-
|width="4%" align=center |{{klik|width=25px|height=25px|image=Wikipedia-logo-v2.svg|link=w:Početna strana}}
|width="25%" |[[w:Početna strana|'''Wikipedia'''<br>
Slobodna enciklopedija]]
|width=5 |
|width="4%" align=center |{{klik|width=24px|height=30px|image=Wikiquote-logo.svg|link=q:Početna strana}}
|width="25%" |[[q:Početna strana|'''Wikicitat'''<br>
Kolekcija slobodnih citata]]
|width=5 |
|width="4%" align=center |{{klik|width=25px|height=30px|image=Wikispecies-logo.jpg|link=Wikispecies:Početna strana}}
|width="25%" |[[Wikispecies:Početna strana|'''Wiki vrste'''<br>
Katalog živih vrsta]]
|-
| colspan="12" |
|-
|width="4%" align=center |{{klik|width=30px|height=19px|image=Wikinews-logo.svg|link=:n:Početna strana}}
|width="25%" |[[:n:Početna strana|'''Wiki vijesti'''<br>
Slobodni izvor vijesti]]
|width=5 |
|width="4%" align=center |{{klik|width=25px|height=27px|image=Wikisource-logo.svg|link=:s:Početna strana}}
|width="25%" |[[:s:Početna strana|'''Wiki izvor'''<br>
Slobodna biblioteka]]
|width=5 |
|width="4%" align=center |{{klik|width=24px|height=34px|image=Commons-logo.svg|link=commons:Main Page}}
|width="25%" |[[commons:Main Page|'''Wikimedia Commons'''<br>
Zajedničko skladište]]
|-
| colspan="12" |
|-
|width="4%" align=center |{{klik|width=30px|height=28px|image=Wikiversity-logo.svg|link=Wikiversity}}
|width="25%" |[[:en:v:Wikiversity:Main Page|'''Wikiversity'''<br>
Wiki univerzitet]]
|width=5 |
|width="4%" align=center |{{klik|width=25px|height=26px|image=Wikibooks-logo.svg|link=b:Početna strana}}
|width="25%" |[[b:Početna strana|'''Wiki knjige'''<br>
Slobodne knjige i priručnici]]
|width=5 |
|width="4%" align=center |{{klik|width=30px|height=28px|image=Wikimedia-logo.svg|link=meta:Početna strana}}
|width="25%" |[[meta:Početna strana|'''Meta-Wiki'''<br>
Koordinacija svih wiki projekata]]
|}
|}<noinclude>[[Kategorija:Šabloni početne strane|Srodni projekti]]</noinclude>
{{BottomBox}}
eea7v0lxfsee70099ub90y9zdf2chw2
Šablon:Početna strana/Dobrodošlica
10
2448
71115
58683
2024-05-07T01:29:12Z
KWiki
1197
71115
wikitext
text/x-wiki
{{TopBox|bleu}}
<div style="font: 12pt Arial; font-weight:bold; text-align:center; padding:5px; border-bottom:1px solid #AAAAAA;">Dobro došli na Wikirječnik!</div>
{|
| style="background-color:#f9f9ff; color:#000000; padding:.5em;" |
Dobro došli na stranice [[Wikirječnik]]a, zajedničkog projekta sakupljanja riječi s definicijama, etimologijama, izgovorom, sinonimima, antonimima i prijevodima za pravljenje dostupnog višejezičkog rječnika na [[bosanski|bosanskom jeziku]]! Wikirječnik je projekt srodan [[w:Početna strana|Wikipediji na bosanskom jeziku]]. Trenutno imamo '''{{NUMBEROFARTICLES}}''' {{plural:{{NUMBEROFARTICLES}}|članak|članka|članaka}}, što nije velika količina i zato nam je potrebna Vaša saradnja.
Pročitajte [[{{ns:Project}}:Uređivanje|upute]] i pogledajte [[Pomoć:Sadržaj|pomoćnu stranicu]] da naučite kako Wikirječnik radi. Vježbajte na [[{{ns:Project}}:Igralište|igralištu]] i posjetite [[{{ns:Project}}:Vrata zajednice|Vrata zajednice]] da saznate kako '''Vi''' možete učestvovati u razvoju Wikirječnika na bosanskom jeziku. Prilikom pretrage Wikirječnika trebate imati tastaturu podešenu na bosanski jezik ('''č, ć, đ, š, ž''').
|}<noinclude>[[Kategorija:Šabloni početne strane|Dobrodošlica]]</noinclude>
{{BottomBox}}
lbe18gmfs0p36knh699fhaeiu70yh5n
Kategorija:Šabloni početne strane
14
2449
58483
7398
2017-03-04T16:28:00Z
Srđan
1899
Srdjan m premjestio je stranicu [[Kategorija:Šabloni glavne stranice]] na [[Kategorija:Šabloni početne strane]] bez ostavljanja preusmjerenja
58483
wikitext
text/x-wiki
[[Kategorija:Početna strana]]
[[Kategorija:Šabloni]]
5iv6ubb5xu8rdmmia4f9984ueuj7o4b
Šablon:Početna strana/O
10
2450
71114
67811
2024-05-07T01:28:10Z
KWiki
1197
71114
wikitext
text/x-wiki
{{TopBox|bleu}}
<div style="font: 10pt Arial; font-weight:bold; text-align:center; padding:5px; border-bottom:1px solid #AAAAAA;">O Wikirječniku</div>
{|
|style="background-color:#f9f9ff; color:#000000; padding:.5em;" |
<div class="center">Wikirječnik '''nije''' enciklopedija. Pogledajte [[Pomoć:Sadržaj|stranice za pomoć]] s uređivanjem Wikirječnika.</div>
|}<noinclude>[[Kategorija:Šabloni početne strane|O]]</noinclude>
{{BottomBox}}
mp70azxnfuhht34xbnqqm2157mqja8t
Šablon:Početna strana/Odabrano
10
2451
58534
58487
2017-03-04T20:43:56Z
Srđan
1899
58534
wikitext
text/x-wiki
{{TopBox|bleu}}
<div style="font: 10pt Arial; font-weight:bold; text-align:center; padding:5px; border-bottom:1px solid #AAAAAA;">Odabrani članci</div>
{|
|-
| style="background-color:#f9f9ff; color:#000000; padding:.5em;" |
{|
|-
| colspan="2" style="background-color:#f9f9ff; color:#000000; padding:.5em; text-align: center;" |
[[Special:Newpages|Nove stranice]] · [[Special:Randompage|Slučajna stranica]]
|-
! style="background:#e2e2ff;" | Brzi indeks
! style="background:#e2e2ff;" | Druga pisma
|- valign="top"
| style="background-color:#f9f9ff; color:#000000; padding:.5em; text-align: center;" |
[[Special:Allpages/A|A]] [[Special:Allpages/a|a]]
[[Special:Allpages/B|B]] [[Special:Allpages/b|b]]
[[Special:Allpages/C|C]] [[Special:Allpages/c|c]]
[[Special:Allpages/Č|Č]] [[Special:Allpages/č|č]]
[[Special:Allpages/Ć|Ć]] [[Special:Allpages/ć|ć]]
[[Special:Allpages/D|D]] [[Special:Allpages/d|d]]
[[Special:Allpages/Dž|Dž]] [[Special:Allpages/dž|dž]]
[[Special:Allpages/Đ|Đ]] [[Special:Allpages/đ|đ]]
[[Special:Allpages/E|E]] [[Special:Allpages/e|e]]
[[Special:Allpages/F|F]] [[Special:Allpages/f|f]]
[[Special:Allpages/G|G]] [[Special:Allpages/g|g]]
[[Special:Allpages/H|H]] [[Special:Allpages/h|h]]
[[Special:Allpages/I|I]] [[Special:Allpages/i|i]]
[[Special:Allpages/J|J]] [[Special:Allpages/j|j]]
[[Special:Allpages/K|K]] [[Special:Allpages/k|k]]
[[Special:Allpages/L|L]] [[Special:Allpages/l|l]]
[[Special:Allpages/Lj|Lj]] [[Special:Allpages/lj|lj]]
[[Special:Allpages/M|M]] [[Special:Allpages/m|m]]
[[Special:Allpages/N|N]] [[Special:Allpages/n|n]]
[[Special:Allpages/Nj|Nj]] [[Special:Allpages/nj|nj]]
[[Special:Allpages/O|O]] [[Special:Allpages/o|o]]
[[Special:Allpages/P|P]] [[Special:Allpages/p|p]]
[[Special:Allpages/R|R]] [[Special:Allpages/r|r]]
[[Special:Allpages/S|S]] [[Special:Allpages/s|s]]
[[Special:Allpages/Š|Š]] [[Special:Allpages/š|š]]
[[Special:Allpages/T|T]] [[Special:Allpages/t|t]]
[[Special:Allpages/U|U]] [[Special:Allpages/u|u]]
[[Special:Allpages/V|V]] [[Special:Allpages/v|v]]
[[Special:Allpages/Z|Z]] [[Special:Allpages/z|z]]
[[Special:Allpages/Ž|Ž]] [[Special:Allpages/ž|ž]]
|rowspan="2" style="background-color:#f9f9ff; color:#000000; padding:.5em; text-align: center;" |
<span title="Grčki velika slova">[[Special:Allpages/Ά|Α–Ω]]</span><!-- U+0386 -->
<span title="Grčki mala slova">[[Special:Allpages/ά|α–ω]]</span><!-- U+03AC -->
<span title="Ćirilica velika slova">[[Special:Allpages/Ё|А–Я]]</span><!-- U+0401 -->
<span title="Ćirilica mala slova">[[Special:Allpages/а|а–я]]</span><!-- U+0430 -->
<span title="Hebrejski">[[Special:Allpages/א|א–ת]]</span><!-- U+05D0 -->
<span title="Arapski">[[Special:Allpages/آ|ﺍ–ﻱ]]</span> <!-- U+0600 -->
<span title="Devanagari">[[Special:Allpages/अ|अ–ह]]</span> <!-- U+0900 -->
<span title="Bengalski">[[Special:Allpages/অ|অ–ঢ়]]</span> <!-- U+0980 -->
<span title="Tajlandski">[[Special:Allpages/ก|ก–ฮ]]</span> <!-- U+0E00 -->
<span title="Japanski hiragana">[[Special:Allpages/あ|あ–ん]]</span> <!-- U+3040 -->
<span title="Japanski katakana">[[Special:Allpages/ア|ア–ン]]</span> <!-- U+30A0 -->
<span title="Kineski">[[Special:Allpages/一|一–]][[Special:Allpages/广|广–]][[Special:Allpages/火|火–]]<span title="">[[Special:Allpages/羊|羊–]][[Special:Allpages/酉|酉–龠]]</span> <!-- U+4E00-U+5E7F-U+706B-U+7F8A-U+9149-U+9FA0 -->
<span title="Koreanski">[[Special:Allpages/가|가–힣]]</span> <!-- U+AC00 -->
|- valign="top"
! style="background:#e2e2ff;" | Latinična pisma (ostala)
|-
| style="background-color:#f9f9ff; color:#000000; padding:.5em; text-align: center;" |
[[Special:Allpages/!|!]]
[[Special:Allpages/0|0–9]]
[[Special:Allpages/À|À–þ]]
[[Special:Allpages/Ā|Ā–ž]]
! style="background-color:#f9f9ff; color:#000000; padding:.5em; text-align: center;" |
[[Posebno:Allpages|Pretražite Wikirječnik ručno]]
|}
|}<noinclude>[[Kategorija:Šabloni početne strane|Odabrano]]</noinclude>
{{BottomBox}}
c3vna66bxuyao9ldkl77gdvnbumpcx4
Šablon:Wikirječnikjezici
10
2452
72825
72811
2025-05-01T22:31:07Z
Aca
2473
72825
wikitext
text/x-wiki
<big>'''1.000.000+''':</big>
<big>[[:en:|English]]</big> <small>(engleski)</small> •
<big>[[:fr:|Français]]</big> <small>(francuski)</small> •
<big>[[:mg:|Malagasy]]</big> <small>(malagaški)</small> •
<big>[[:zh:|中文]]</big> <small>(kineski)</small>
----
<big>'''100.000+''':</big>
<big>[[:de:|Deutsch]]</big> <small>(njemački)</small> •
<big>[[:el:|Ελληνικά]]</big> <small>(grčki)</small> •
<big>[[:es:|Español]]</big> <small>(španski)</small> •
<big>[[:et:|Eesti]]</big> <small>(estonski)</small> •
<big>[[:fi:|Suomi]]</big> <small>(finski)</small> •
<big>[[:hu:|Magyar]]</big> <small>(mađarski)</small> •
<big>[[:id:|Bahasa Indonesia]]</big> <small>(indonezijski)</small> •
<big>[[:io:|Ido]]</big> <small>(ido)</small> •
<big>[[:it:|Italiano]]</big> <small>(italijanski)</small> •
<big>[[:ja:|日本語]]</big> <small>(japanski)</small> •
<big>[[:kn:|ಕನ್ನಡ]]</big> <small>(kanada)</small> •
<big>[[:ko:|한국어]]</big> <small>(korejski)</small> •
<big>[[:ku:|Kurdî]]</big> <small>(kurdski)</small> •
<big>[[:lt:|Lietuvių]]</big> <small>(litvanski)</small> •
<big>[[:ml:|മലയാളം]]</big> <small>(malajalamski)</small> •
<big>[[:my:|မြန်မာဘာသာ]]</big> <small>(burmanski)</small> •
<big>[[:nl:|Nederlands]]</big> <small>(holandski)</small> •
<big>[[:no:|Norsk Bokmål]]</big> <small>(norveški - bokmål)</small> •
<big>[[:pl:|Polski]]</big> <small>(poljski)</small> •
<big>[[:pt:|Português]]</big> <small>(portugalski)</small> •
<big>[[:ro:|Română]]</big> <small>(rumunski)</small> •
<big>[[:ru:|Русский]]</big> <small>(ruski)</small> •
<big>[[:sh:|Srpskohrvatski]]</big> •
<big>[[:sv:|Svenska]]</big> <small>(švedski)</small> •
<big>[[:ta:|தமிழ்]]</big> <small>(tamilski)</small> •
<big>[[:tr:|Türkçe]]</big> <small>(turski)</small> •
<big>[[:vi:|Tiếng Việt]]</big> <small>(vijetnamski)</small>
----
<big>'''10.000+''':</big>
<big>[[:af:|Afrikaans]]</big> <small>(afrikanski)</small> •
{{ARkar|[[:ar:|العربية]]}} <small>(arapski)</small> •
<big>[[:ast:|Asturianu]]</big> <small>(asturijski)</small> •
<big>[[:bg:|Български]]</big> <small>(bugarski)</small> •
<big>[[:br:|Brezhoneg]]</big> <small>(bretonski)</small> •
<big>[[:ca:|Català]]</big> <small>(katalonski)</small> •
<big>[[:cs:|Český]]</big> <small>(češki)</small> •
<big>[[:cy:|Cymraeg]]</big> <small>(velški)</small> •
<big>[[:da:|Dansk]]</big> <small>(danski)</small> •
<big>[[:eo:|Esperanto]]</big> <small>(esperanto)</small> •
<big>[[:eu:|Euskara]]</big> <small>(baskijski)</small> •
{{FAkar|[[:fa:|فارسى]]}} <small>(perzijski)</small> •
<big>[[:fy:|Frysk]]</big> <small>(zapadnofrizijski)</small> •
<big>[[:gl:|Galego]]</big> <small>(galički)</small> •
<big>[[:he:|עברית]]</big> <small>(hebrejski)</small> •
<big>[[:hi:|हिन्दी]]</big> <small>(hindijski)</small> •
<big>[[:hr:|Hrvatski]]</big> <small>(hrvatski)</small> •
<big>[[:is:|Íslenska]]</big> <small>(islandski)</small> •
<big>[[:jv:|Basa Jawa]]</big> <small>(javanski)</small> •
<big>[[:li:|Limburgs]]</big> <small>(limburški)</small> •
<big>[[:lo:|ລາວ]]</big> <small>(laoski)</small> •
<big>[[:nn:|Nynorsk]]</big> <small>(norveški - nynorsk)</small> •
<big>[[:oc:|Occitan]]</big> <small>(oksitanski)</small> •
<big>[[:or:|ଓଡ଼ିଆ]]</big> <small>(orija)</small> •
{{ARkar|[[:ps:|پښتو]]}} <small>(pašto)</small> •
<big>[[:scn:|Sicilianu]]</big> <small>(sicilijski)</small> •
<big>[[:simple:|Simple English]]</big> <small>(pojednostavljeni engleski)</small> •
<big>[[:sr:|Српски]]</big> <small>(srpski)</small> •
<big>[[:sw:|Kiswahili]]</big> <small>(svahili)</small> •
<big>[[:te:|తెలుగు]]</big> <small>(telugu)</small> •
{{THkar|[[:th:|ไทย]]}} <small>(tajski)</small> •
<big>[[:uk:|Українська]]</big> <small>(ukrajinski)</small> •
{{URkar|[[:ur:|اردو]]}} <small>(urdu)</small> •
<big>[[:uz:|O‘zbek]]</big> <small>(uzbečki)</small> •
<big>[[:vo:|Volapük]]</big> <small>(volapik)</small>
<big>[[:wa:|Walon]]</big> <small>(valonski)</small> •
----
'''1.000+''':
[[:ang:|Englisc]] <small>(staroengleski)</small> •
[[:az:|Azərbaycan]] <small>(azerski)</small> •
[[:be:|Беларуская]] <small>(bjeloruski)</small> •
[[:co:|Corsu]] <small>(korsički)</small> •
[[:csb:|Kaszëbsczi]] <small>(kašupski)</small> •
[[:ga:|Gaeilge]] <small>(irski)</small> •
[[:gn:|Avañe'ẽ]] <small>(gvarani)</small> •
[[:hsb:|Hornjoserbsce]] <small>(gornjolužičkosrpski)</small> •
[[:hy:|Հայերեն]] <small>(armenski)</small> •
[[:ia:|Interlingua]] <small>(interlingva)</small> •
[[:ka:|ქართული]] <small>(gruzijski)</small> •
[[:kk:|қазақша]] <small>(kazaški)</small> •
[[:kl:|Kalaallisut]] <small>(grenlandski)</small> •
[[:km:|ភាសាខ្មែរ]] <small>(kmerski)</small> •
[[:ky:|Кыргызча]] <small>(kirgiski)</small> •
[[:la:|Latina]] <small>(latinski)</small> •
[[:lb:|Lëtzebuergesch]] <small>(luksemburški)</small> •
[[:lv:|Latviešu]] <small>(latvijski)</small> •
[[:mk:|Македонски]] <small>(makedonski)</small> •
[[:mn:|Монгол]] <small>(mongolijski)</small> •
[[:mr:|मराठी]] <small>(maratijski)</small> •
[[:ms:|Bahasa Melayu]] <small>(malajski)</small> •
[[:nah:|Nahuatl]] <small>(navatl)</small> •
[[:nds:|Plattdüütsch]] <small>(platdojč)</small> •
{{URkar|[[:pnb:|پنجابی]]}} <small>(pendžabski)</small> •
{{SDkar|[[:sd:|سنڌي]]}} <small>(sindijski)</small> •
[[:si:|සිංහල]] <small>(sinhaleški)</small> •
[[:sk:|Slovenčina]] <small>(slovački)</small> •
[[:sl:|Slovenščina]] <small>(slovenski)</small> •
[[:sm:|Gagana Samoa]] <small>(samoanski)</small> •
[[:so:|Soomaaliga]] <small>(somalijski)</small> •
[[:sq:|Shqip]] <small>(albanski)</small> •
[[:st:|seSotho]] <small>(južni soto)</small> •
[[:tg:|Тоҷикӣ]] <small>(tadžički)</small> •
[[:tk:|Türkmençe]] <small>(turkmenski)</small> •
[[:tl:|Tagalog]] <small>(tagaloški)</small> •
[[:tt:|Татарча]] <small>(tatarski)</small> •
{{ARkar|[[:ug:|ئۇيغۇرچە]]}} <small>(ujgurski)</small> •
[[:wo:|Wollof]] <small>(volofski)</small>
[[:zh-min-nan:|Bân-lâm-gú]] <small>(južni min)</small> •
----
'''<!-- 100 do 1.000 članaka -->100+: '''<div style="font-size:85%;">
[[:am:|አማርኛ]] (amharski) •
[[:an:|Aragonés]] (aragonski) •
{{BNkar|[[:bn:|বাংলা]]}} (bengalski) •
[[:chr:|ᏣᎳᎩ]] (čeroki) •
[[:dv:|ދިވެހިބަސް]] (divehi) •
[[:fo:|Føroyskt]] (farski) •
[[:gd:|Gàidhlig]] (škotskogelski) •
[[:gu:|ગુજરાતી]] (gudžaratski) •
[[:gv:|Gaelg]] (manski) •
[[:ie:|Interlingue]] •
[[:iu:|ᐃᓄᒃᑎᑐᑦ]] (inuktitut) •
[[:kw:|Kernewek/Karnuack]] (kornijski) •
[[:ln:|Lingala]] •
[[:mt:|Malti]] (malteški) •
[[:mi:|Māori]] (maorski) •
[[:ne:|नेपाली]] (nepalski) •
[[:om:|Oromoo]] (oromo) •
[[:pa:|ਪੰਜਾਬੀ]] (pendžabski) •
[[:qu:|Runa Simi]] (južnokečvanski) •
[[:roa-rup:|Armãneashce]] (arumunski) •
[[:rw:|Ikinyarwanda]] (ruandski) •
[[:sg:|Sängö]] (sango) •
[[:su:|Basa Sunda]] (sundanski) •
[[:ti:|ትግርኛ]] (tigrinja) •
[[:tpi:|Tok Pisin]] •
[[:ts:|Xitsonga]] (conga) •
[[:yi:|ייִדיש]] (jidiš) •
[[:za:|Vahcuengh]] (džuanski) •
[[:zu:|isiZulu]] (zulu)
</div>
<div class="center">''[[meta:Wiktionary#List of Wiktionaries|Meta spisak]]'' + [http://www.wiktionary.org/ Svi Wikirječnici]</div><noinclude>
[[Kategorija:Bratski projekti]]
</noinclude>
nmhytf4vbqaqlj705ja4a0a0rg011dr
Šablon:Početna strana/Portali
10
2453
71113
67810
2024-05-07T01:26:49Z
KWiki
1197
71113
wikitext
text/x-wiki
{{TopBox|bleu}}
<div style="font: 10pt Arial; font-weight:bold; text-align:center; padding:5px; border-bottom:1px solid #AAAAAA;">Portali</div>
{|
| style="background-color:#f9f9ff; color:#000000; padding:.5em;" |
<div class="center">Pretražite Wikirječnik kroz ove odabrane portale:</div>
{| border="0" cellpadding="0" cellspacing="10" width="100%"
|- valign="center"
|
*[[Portal:Dani|Dani u sedmici]]
*[[Portal:Mjeseci|Mjeseci u godini]]
*[[Portal:Jedinice za vrijeme|Jedinice za vrijeme]]
*[[Portal:Brojevi|Brojevi]]
| rowspan="2" |
*[[Portal:Države|Države]]
*[[Portal:Glavni gradovi|Glavni gradovi]]
*[[Portal:Jezici|Jezici]]
*[[Portal:Gradovi u BiH|Gradovi u BiH]]
|}
|}<noinclude>[[Kategorija:Šabloni početne strane|Portali]]</noinclude>
{{BottomBox}}
oe4qu7cqcwx15esrkqf2ve7ivonzq2d
Šablon:THkar
10
2456
72806
6764
2025-05-01T22:26:36Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72806
wikitext
text/x-wiki
<span class="TH" style="font-family:{{TH fontovi}}; font-size:{{TH font veličina}}">{{{1}}}</span><noinclude>
[[Kategorija:Šabloni]]
</noinclude>
9pla1fni03ewwvlq7ratt4lbvecbhn5
Šablon:TH fontovi
10
2457
72805
6815
2025-05-01T22:26:35Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72805
wikitext
text/x-wiki
Arial Unicode MS, Code2000, Tahoma<noinclude>
[[Kategorija:Šabloni]]
</noinclude>
1kd35g40r1x0535pdsp83nrvhekj1x3
Šablon:TH font veličina
10
2458
72804
6766
2025-05-01T22:26:33Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72804
wikitext
text/x-wiki
125%<noinclude>
[[Kategorija:Šabloni]]
</noinclude>
3tb18ezqgjdh74ruknmby37b2xb0xr8
Šablon:ARkar
10
2459
72770
72151
2025-05-01T22:24:47Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72770
wikitext
text/x-wiki
<span class="AR" style="font-family:{{AR fontovi}}; font-family :inherit; font-size:150%; font-size :150%">{{{1}}}</span><noinclude>
[[Kategorija:Šabloni]]
</noinclude>
p10qcwnfss18w1eh5pzyqptdy9pdu0q
Šablon:AR fontovi
10
2461
72769
6769
2025-05-01T22:24:37Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72769
wikitext
text/x-wiki
Tahoma, Arial Unicode MS, Code2000, Traditional Arabic<noinclude>
[[Kategorija:Šabloni]]
</noinclude>
6a4ymvozndnrp4xze5xlnfmuzatf6la
Šablon:BNkar
10
2466
72773
6776
2025-05-01T22:24:57Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72773
wikitext
text/x-wiki
<span class="BN" style="font-family:{{BN fontovi}}; font-size:{{BN font veličina}}">{{{1}}}</span><noinclude>
[[Kategorija:Šabloni]]
</noinclude>
cl5pymnmbydcz6bl3jodaqbl2mndv6k
Šablon:BN fontovi
10
2467
72772
18151
2025-05-01T22:24:54Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72772
wikitext
text/x-wiki
Shonar Bangla<noinclude>
[[Kategorija:Šabloni]]
</noinclude>
gng0135j8zu4dhsonpctzmgeou55fu8
Šablon:BN font veličina
10
2468
72771
6778
2025-05-01T22:24:49Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72771
wikitext
text/x-wiki
130%<noinclude>
[[Kategorija:Šabloni]]
</noinclude>
j5xeyx61dfd06jtl7t7t0jpk3jqsusp
Šablon:FAkar
10
2469
72790
72148
2025-05-01T22:25:53Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72790
wikitext
text/x-wiki
<span class="FA" style="font-family:{{FA fontovi}}; font-family :inherit; font-size:150%; font-size :150%">{{{1}}}</span><noinclude>
[[Kategorija:Šabloni]]
</noinclude>
p9qldvo1tvfiq7wdqpxr2omc70d6lai
Šablon:FA fontovi
10
2471
72789
18140
2025-05-01T22:25:52Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72789
wikitext
text/x-wiki
Tahoma<noinclude>
[[Kategorija:Šabloni]]
</noinclude>
rqzbz2y27dwpj3ue19mu307ovbz3gj3
Šablon:URkar
10
2472
72809
6782
2025-05-01T22:26:40Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72809
wikitext
text/x-wiki
<span class="UR" style="font-family:{{UR fontovi}}; font-family :inherit; font-size:{{UR font veličina}}; font-size :inherit">{{{1}}}</span><noinclude>
[[Kategorija:Šabloni]]
</noinclude>
r98z0fftbfzd2d9ghpkqu0ub6p3agx4
Šablon:UR fontovi
10
2473
72808
6783
2025-05-01T22:26:39Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72808
wikitext
text/x-wiki
Tahoma<noinclude>
[[Kategorija:Šabloni]]
</noinclude>
rqzbz2y27dwpj3ue19mu307ovbz3gj3
Šablon:UR font veličina
10
2474
72807
6784
2025-05-01T22:26:37Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72807
wikitext
text/x-wiki
125%<noinclude>
[[Kategorija:Šabloni]]
</noinclude>
3tb18ezqgjdh74ruknmby37b2xb0xr8
Šablon:SDkar
10
2475
72801
6792
2025-05-01T22:26:29Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72801
wikitext
text/x-wiki
<span class="SD" style="font-family:{{SD fontovi}}; font-family :inherit; font-size:{{SD font veličina}}; font-size :inherit">{{{1}}}</span><noinclude>
[[Kategorija:Šabloni]]
</noinclude>
a6zv4ywnnvcubdiqzalybskttnag45z
Šablon:SD font veličina
10
2476
72799
6793
2025-05-01T22:26:26Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72799
wikitext
text/x-wiki
125%<noinclude>
[[Kategorija:Šabloni]]
</noinclude>
3tb18ezqgjdh74ruknmby37b2xb0xr8
Šablon:SD fontovi
10
2477
72800
68151
2025-05-01T22:26:27Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72800
wikitext
text/x-wiki
MB Sindhi, MBSarang Sattar, MB Bhitai Sattar, MB Lateefi, Ayaz Gul, Tahoma<noinclude>
[[Kategorija:Šabloni]]
</noinclude>
f1346f20pakzijtttipzrz81rfahes7
Šablon:Babel-1
10
2478
72780
58647
2025-05-01T22:25:26Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72780
wikitext
text/x-wiki
{| style="float: right; margin-left: 1em; margin-bottom: 0.5em; width: 242px; border: #99B3FF solid 1px; clear: right"
|-
| style="text-align: center" | '''[[Wikirječnik:Babel]]'''
|-
| {{Korisnik {{{1}}}}}
|-
| style="text-align: center" | [[:Kategorija:Korisnički jezici|Pretražite korisničke jezike]]
|}<noinclude>
[[Kategorija:Šabloni]]
</noinclude>
pwlog5k6eife9arz0l56uq400kl70d0
Šablon:Babel-2
10
2480
72783
58649
2025-05-01T22:25:30Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72783
wikitext
text/x-wiki
{| style="float: right; margin-left: 1em; margin-bottom: 0.5em; width: 242px; border: #99B3FF solid 1px; clear: right"
|-
| style="text-align: center" | '''[[Wikirječnik:Babel]]'''
|-
| {{Korisnik {{{1}}}}}
|-
| {{Korisnik {{{2}}}}}
|-
| style="text-align: center" | [[:Kategorija:Korisnički jezici|Pretražite korisničke jezike]]
|}<noinclude>
[[Kategorija:Šabloni]]
</noinclude>
56oqnalf3cefy9ouptzuqurfrfcfsns
Šablon:Babel-3
10
2481
72784
58633
2025-05-01T22:25:31Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72784
wikitext
text/x-wiki
{| style="float: right; margin-left: 1em; margin-bottom: 0.5em; width: 242px; border: #99B3FF solid 1px; clear: right"
|-
| style="text-align: center" | '''[[Wikirječnik:Babel]]'''
|-
| {{Korisnik {{{1}}}}}
|-
| {{Korisnik {{{2}}}}}
|-
| {{Korisnik {{{3}}}}}
|-
| style="text-align: center" | [[:Kategorija:Korisnički jezici|Pretražite korisničke jezike]]
|}<noinclude>
[[Kategorija:Šabloni]]
</noinclude>
6n0pbr3m5ukn9peml5lrole6nal1sd6
Šablon:Babel-4
10
2482
72785
58650
2025-05-01T22:25:32Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72785
wikitext
text/x-wiki
{| style="float: right; margin-left: 1em; margin-bottom: 0.5em; width: 242px; border: #99B3FF solid 1px; clear: right"
|-
| style="text-align: center" | '''[[Wikirječnik:Babel]]'''
|-
| {{Korisnik {{{1}}}}}
|-
| {{Korisnik {{{2}}}}}
|-
| {{Korisnik {{{3}}}}}
|-
| {{Korisnik {{{4}}}}}
|-
| style="text-align: center" | [[:Kategorija:Korisnički jezici|Pretražite korisničke jezike]]
|}<noinclude>
[[Kategorija:Šabloni]]
</noinclude>
nfm9prya0hsayhlzuwx16y59ugx31vr
Šablon:Babel-5
10
2483
72786
58652
2025-05-01T22:25:34Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72786
wikitext
text/x-wiki
{| style="float: right; margin-left: 1em; margin-bottom: 0.5em; width: 242px; border: #99B3FF solid 1px; clear: right"
|-
| style="text-align: center" | '''[[Wikirječnik:Babel]]'''
|-
| {{Korisnik {{{1}}}}}
|-
| {{Korisnik {{{2}}}}}
|-
| {{Korisnik {{{3}}}}}
|-
| {{Korisnik {{{4}}}}}
|-
| {{Korisnik {{{5}}}}}
|-
| style="text-align: center" | [[:Kategorija:Korisnički jezici|Pretražite korisničke jezike]]
|}<noinclude>
[[Kategorija:Šabloni]]
</noinclude>
0aegu7phroc87s10bl4jl50q3yy6192
Šablon:Babel-6
10
2484
72787
58632
2025-05-01T22:25:36Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72787
wikitext
text/x-wiki
{| style="float: right; margin-left: 1em; margin-bottom: 0.5em; width: 242px; border: #99B3FF solid 1px; clear: right"
|-
| style="text-align: center" | '''[[Wikirječnik:Babel]]'''
|-
| {{Korisnik {{{1}}}}}
|-
| {{Korisnik {{{2}}}}}
|-
| {{Korisnik {{{3}}}}}
|-
| {{Korisnik {{{4}}}}}
|-
| {{Korisnik {{{5}}}}}
|-
| {{Korisnik {{{6}}}}}
|-
| style="text-align: center" | [[:Kategorija:Korisnički jezici|Pretražite korisničke jezike]]
|}<noinclude>
[[Kategorija:Šabloni]]
</noinclude>
9su899nqx2fjjby3fh7bybz1angpjwq
Šablon:Babel-12
10
2490
72781
58637
2025-05-01T22:25:27Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72781
wikitext
text/x-wiki
{| style="float: right; margin-left: 1em; margin-bottom: 0.5em; width: 242px; border: #99B3FF solid 1px; clear: right"
|-
| style="text-align: center" | '''[[Wikirječnik:Babel]]'''
|-
| {{Korisnik {{{1}}}}}
|-
| {{Korisnik {{{2}}}}}
|-
| {{Korisnik {{{3}}}}}
|-
| {{Korisnik {{{4}}}}}
|-
| {{Korisnik {{{5}}}}}
|-
| {{Korisnik {{{6}}}}}
|-
| {{Korisnik {{{7}}}}}
|-
| {{Korisnik {{{8}}}}}
|-
| {{Korisnik {{{9}}}}}
|-
| {{Korisnik {{{10}}}}}
|-
| {{Korisnik {{{11}}}}}
|-
| {{Korisnik {{{12}}}}}
|-
| style="text-align: center" | [[:Kategorija:Korisnički jezici|Pretražite korisničke jezike]]
|}<noinclude>
[[Kategorija:Šabloni]]
</noinclude>
80nv6u4dxnl92g2dz96isor2tffi3x2
Kategorija:Wikirječnik:Babel
14
2496
66293
58631
2017-07-03T22:11:51Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66293
wikitext
text/x-wiki
[[Kategorija:Wikirječnik|*]]
jqfi5qx4mwueugs05szu4pdmcrzuw1e
Šablon:Babel field 4
10
2501
72779
7055
2025-05-01T22:25:25Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72779
wikitext
text/x-wiki
<div style="float:left;border:solid #CCCC00 1px;margin:1px">
{| cellspacing="0" style="width:238px;background:#FFFF99"
| style="width:45px;height:45px;background:#FFFF00;text-align:center;font-size:14pt" | '''{{{1}}}-4'''
| style="font-size:8pt;padding:4pt;line-height:1.25em" dir="{{{dir|ltr}}}" | {{{2}}} [[Kategorija:Korisnik {{{1}}}|{{PAGENAME}}]][[Kategorija:Korisnik {{{1}}}-4|{{PAGENAME}}]]
|}</div><noinclude>
[[Kategorija:Šabloni]]
</noinclude>
41amc5cujxh10lkl55gjie9k1vwo9fk
Šablon:Babel field 3
10
2502
72778
7054
2025-05-01T22:25:23Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72778
wikitext
text/x-wiki
<div style="float:left;border:solid #99B3FF 1px;margin:1px">
{| cellspacing="0" style="width:238px;background:#E0E8FF"
| style="width:45px;height:45px;background:#99B3FF;text-align:center;font-size:14pt" | '''{{{1}}}-3'''
| style="font-size:8pt;padding:4pt;line-height:1.25em" dir="{{{dir|ltr}}}" | {{{2}}}[[Kategorija:Korisnik {{{1}}}|{{PAGENAME}}]][[Kategorija:Korisnik {{{1}}}-3|{{PAGENAME}}]]
|}</div><noinclude>
[[Kategorija:Šabloni]]
</noinclude>
tix76owlpp141pb3yy8wwodokbf0pmd
Šablon:Babel field 2
10
2503
72777
7051
2025-05-01T22:25:22Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72777
wikitext
text/x-wiki
<div style="float:left;border:solid #77E0E8 1px;margin:1px">
{| cellspacing="0" style="width:238px;background:#D0F8FF"
| style="width:45px;height:45px;background:#77E0E8;text-align:center;font-size:14pt" | '''{{{1}}}-2'''
| style="font-size:8pt;padding:4pt;line-height:1.25em" dir="{{{dir|ltr}}}" | {{{2}}}[[Kategorija:Korisnik {{{1}}}|{{PAGENAME}}]][[Kategorija:Korisnik {{{1}}}-2|{{PAGENAME}}]]
|}</div><noinclude>
[[Kategorija:Šabloni]]
</noinclude>
8xmmhaalf9jkmhy5wwqcds8bxhjp3e8
Šablon:Babel field 1
10
2504
72776
7052
2025-05-01T22:25:20Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72776
wikitext
text/x-wiki
<div style="float:left;border:solid #C0C8FF 1px;margin:1px">
{| cellspacing="0" style="width:238px;background:#F0F8FF"
| style="width:45px;height:45px;background:#C0C8FF;text-align:center;font-size:14pt" | '''{{{1}}}-1'''
| style="font-size:8pt;padding:4pt;line-height:1.25em" dir="{{{dir|ltr}}}" | {{{2}}}[[Kategorija:Korisnik {{{1}}}|{{PAGENAME}}]][[Kategorija:Korisnik {{{1}}}-1|{{PAGENAME}}]]
|}</div><noinclude>
[[Kategorija:Šabloni]]
</noinclude>
029wbqk97jh2gc2qd15kwhf7ottrt29
Šablon:Korisnik bs
10
2505
8337
8336
2006-07-24T08:45:59Z
Dijan
16
8337
wikitext
text/x-wiki
{{Babel field|bs|'''[[:Kategorija:Korisnik bs|Bosanski]]''' je '''[[:Kategorija:Korisnik bs-M|maternji]]''' jezik ovog korisnika.}}
18epntahzjm9pjlcnjiwoxgi3dwy45p
Kategorija:Korisnik bs-M
14
2507
65704
49605
2017-07-03T20:20:31Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65704
wikitext
text/x-wiki
[[Kategorija:Korisnik bs]]
4xxhfybcy0gl2sn8xtahv20wc1mx2i9
Kategorija:Korisnički jezici
14
2508
66213
58629
2017-07-03T21:58:16Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66213
wikitext
text/x-wiki
[[Kategorija:Wikirječnik:Babel]]
m3yqu7j6fgvkdgxvd50jdl8296wvmrf
Šablon:Korisnik de-4
10
2509
6845
2006-05-17T19:40:44Z
Dijan
16
6845
wikitext
text/x-wiki
{{Babel field 4|de|Dieser Benutzer hat '''[[:Kategorija:Korisnik de-4|mit einem Muttersprachler vergleichbare]]''' '''[[:Kategorija:Korisnik de|Deutschkenntnisse]]'''.}}
1bnctdseelo84ayjw5kr02cynf1agkp
Šablon:Korisnik en-2
10
2510
6848
6846
2006-05-17T19:44:19Z
Dijan
16
6848
wikitext
text/x-wiki
{{Babel field 2|en|This user is able to contribute with an '''[[:Kategorija:Korisnik en-2|intermediate]]''' level of '''[[:Kategorija:Korisnik en|English]]'''.}}
t8vdlmz7wyx1jayg8muglt7a3h6xnun
Šablon:Babel field
10
2512
72774
7053
2025-05-01T22:25:05Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72774
wikitext
text/x-wiki
<div style="float:left;border:solid #6ef7a7 1px;margin:1px;">
{| cellspacing="0" style="width:238px;background:#c5fcdc;"
| style="width:45px;height:45px;background:#6ef7a7;text-align:center;font-size:14pt;" | '''{{{1}}}'''
| style="font-size:8pt;padding:4pt;line-height:1.25em;" dir="{{{dir|ltr}}}" | {{{2}}}[[Kategorija:Korisnik {{{1}}}|{{PAGENAME}}]][[Kategorija:Korisnik {{{1}}}-M|{{PAGENAME}}]]
|}
</div><noinclude>
[[Kategorija:Šabloni]]
</noinclude>
ovdoe29m5zbtenu65li5sc1j4sm4tvs
Kategorija:Korisnik bs
14
2513
65698
52857
2017-07-03T20:19:31Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65698
wikitext
text/x-wiki
{{KorisniciGovore|bs|bosanski|Ovi korisnici govore '''bosanski'''}}
[[Kategorija:Korisnički jezici|bs]]
jtt8ll1zd4zb3l12mjlwkwmz46x7w3f
Kategorija:Korisnik de
14
2514
65747
54788
2017-07-03T20:27:43Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65747
wikitext
text/x-wiki
{{KorisniciGovore|de|njemački|Diese Benutzer sprechen '''Deutsch'''}}
[[Kategorija:Korisnički jezici|de]]
s96akc7ri2bqpkxjhwt5ss7f6hj5r4p
Kategorija:Korisnik de-4
14
2515
65751
56425
2017-07-03T20:28:23Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65751
wikitext
text/x-wiki
[[Kategorija:Korisnik de]]
q2jlbjy7jt9rbq89rz20esvuj0kw9dd
Kategorija:Korisnik en
14
2516
65771
54791
2017-07-03T20:31:55Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65771
wikitext
text/x-wiki
[[Kategorija:Korisnički jezici|en]]
ecsiixykzr8vyretv2c6kknovkqj0f3
Kategorija:Korisnik en-2
14
2517
65773
54847
2017-07-03T20:32:33Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65773
wikitext
text/x-wiki
[[Kategorija:Korisnik en]]
gj9s0gt7cq3rzx29wjfgshytyte90f2
Šablon:Korisnik hr-4
10
2519
6889
2006-05-19T10:05:08Z
Dijan
16
6889
wikitext
text/x-wiki
{{Babel field 4|hr|Ovaj korisnik '''[[:Kategorija:Korisnik hr-4|tečno]]''' govori '''[[:Kategorija:Korisnik hr|hrvatski]]''' jezik.}}
sipnrctr14xuufo52txhp0ks7q2j8jc
Kategorija:Korisnik hr
14
2520
65849
56431
2017-07-03T20:49:46Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65849
wikitext
text/x-wiki
[[Kategorija:Korisnički jezici|hr]]
s40cz162izvs21w4suyalv4xi073sjc
Kategorija:Korisnik hr-4
14
2521
65853
51222
2017-07-03T20:50:26Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65853
wikitext
text/x-wiki
[[Kategorija:Korisnik hr]]
8fub0hwcksqrq1q4hm67bjluoe9i5tf
Kategorija:Korisnik af
14
2523
65614
52850
2017-07-03T20:03:07Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65614
wikitext
text/x-wiki
[[Kategorija:Korisnički jezici|af]]
jkukgifl6nv0lzekwui727k6opc0z1f
Kategorija:Korisnik ar
14
2525
65638
51801
2017-07-03T20:07:28Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65638
wikitext
text/x-wiki
[[Kategorija:Korisnički jezici|ar]]
i4g0fe0phfilr0jrkvq821iufo08uw6
Kategorija:Korisnik el
14
2539
65765
51422
2017-07-03T20:30:43Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65765
wikitext
text/x-wiki
[[Kategorija:Korisnički jezici|el]]
36ebu01r9ytl5qsjg6m4pj1tgbog8pj
Kategorija:Korisnik fa
14
2543
65795
51814
2017-07-03T20:39:54Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65795
wikitext
text/x-wiki
[[Kategorija:Korisnički jezici|fa]]
fkx52srcmlyry56q9zpwu7f9ej84ege
Kategorija:Korisnik fr
14
2545
65807
54991
2017-07-03T20:42:44Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65807
wikitext
text/x-wiki
[[Kategorija:Korisnički jezici|fr]]
2ncgbxzhvukbcv5mn8w7wg9747lip33
Kategorija:Korisnik hi
14
2550
65843
52413
2017-07-03T20:48:46Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65843
wikitext
text/x-wiki
[[Kategorija:Korisnički jezici|hi]]
4a9ps7f76u3mfq4yq3wm7c8j783pdpb
Kategorija:Korisnik it
14
2555
65879
56435
2017-07-03T20:54:46Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65879
wikitext
text/x-wiki
[[Kategorija:Korisnički jezici|it]]
3a0smlv6chk5mvlnfl975ncubgu2713
Kategorija:Korisnik ur
14
2564
66189
52078
2017-07-03T21:54:16Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66189
wikitext
text/x-wiki
[[Kategorija:Korisnički jezici|ur]]
ot1hw648zdp377zn88u35056roa5qp6
Kategorija:Korisnik tr
14
2567
66165
56450
2017-07-03T21:50:16Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66165
wikitext
text/x-wiki
[[Kategorija:Korisnički jezici|tr]]
l94ypuff4w6bm2rjeqztrf3s7awaopw
Kategorija:Korisnik sr
14
2575
66121
51964
2017-07-03T21:42:56Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66121
wikitext
text/x-wiki
[[Kategorija:Korisnički jezici|sr]]
8fvkoij8k46f7f3shv4s7twg5ix035h
Kategorija:Korisnik sl
14
2578
66103
52157
2017-07-03T21:39:55Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66103
wikitext
text/x-wiki
[[Kategorija:Korisnički jezici|sl]]
mk23717i8g1kthn9hmfu7llu90b656f
Kategorija:Korisnik ru
14
2583
66071
51790
2017-07-03T21:29:35Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66071
wikitext
text/x-wiki
[[Kategorija:Korisnički jezici|ru]]
su3ngi3m41ph03ss337mel623zytddk
Kategorija:Korisnik pl
14
2587
66047
56445
2017-07-03T21:23:54Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66047
wikitext
text/x-wiki
[[Kategorija:Korisnički jezici|pl]]
o12c9mryb4p0ezu4k306juh93jokign
Kategorija:Korisnik nl
14
2590
66029
56443
2017-07-03T21:20:57Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66029
wikitext
text/x-wiki
[[Kategorija:Korisnički jezici|nl]]
kitwmqxwptblpjd7ve7ppkyrtfuv4nx
Kategorija:Korisnik mk
14
2597
65981
54871
2017-07-03T21:11:56Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65981
wikitext
text/x-wiki
[[Kategorija:Korisnički jezici|mk]]
omcuf6x0imxsupdr8ioyr304ka2k9hg
Kategorija:Korisnik la
14
2601
65945
56437
2017-07-03T21:05:55Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65945
wikitext
text/x-wiki
[[Kategorija:Korisnički jezici|la]]
9j1g2cvb2bpeo67jynz0ognoa5pvpz4
Šablon:Korisnik bs-1
10
2605
6982
6981
2006-05-19T10:33:30Z
Dijan
16
6982
wikitext
text/x-wiki
{{Babel field 1|bs|Ovaj korisnik ima '''[[:Kategorija:Korisnik bs-1|osnovno poznavanje]]''' '''[[:Kategorija:Korisnik bs|bosanskog]]''' jezika.}}
jazvr595ojp23llys6kmfjti2io6dj0
Kategorija:Korisnik bs-1
14
2606
65700
52005
2017-07-03T20:19:51Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65700
wikitext
text/x-wiki
[[Kategorija:Korisnik bs]]
4xxhfybcy0gl2sn8xtahv20wc1mx2i9
Kategorija:Korisnik bs-4
14
2609
65703
52002
2017-07-03T20:20:21Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65703
wikitext
text/x-wiki
[[Kategorija:Korisnik bs]]
4xxhfybcy0gl2sn8xtahv20wc1mx2i9
Šablon:Korisnik bs-4
10
2610
6983
2006-05-19T10:33:54Z
Dijan
16
6983
wikitext
text/x-wiki
{{Babel field 4|bs|Ovaj korisnik ima '''[[:Kategorija:Korisnik bs-4|odlično poznavanje]]''' '''[[:Kategorija:Korisnik bs|bosanskog]]''' jezika.}}
7mhehm772ddttza2fqmsbguz2eijl59
Kategorija:Korisnik sr-4
14
2616
66125
45319
2017-07-03T21:43:36Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66125
wikitext
text/x-wiki
[[Kategorija:Korisnik sr]]
0s3kwxy0ygamrpmos85yuthbkkcm7hv
Kategorija:Korisnik sr-M
14
2617
66126
53384
2017-07-03T21:43:46Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66126
wikitext
text/x-wiki
[[Kategorija:Korisnik sr]]
0s3kwxy0ygamrpmos85yuthbkkcm7hv
Šablon:Korisnik sr-4
10
2618
10521
6992
2007-01-20T00:14:22Z
Dijan
16
10521
wikitext
text/x-wiki
{{Babel field 4|sr|Овај корисник има '''[[:Kategorija:Korisnik sr-4|одлично познавање]]''' '''[[:Kategorija:Korisnik sr|српског]]''' језика.<hr>Ovaj korisnik ima '''[[:Kategorija:Korisnik sr-4|odlično poznavanje]]''' '''[[:Kategorija:Korisnik sr|srpskog]]''' jezika.}}
l3q2q89znpppzyjaiiiebc1zk4irsz8
Šablon:Korisnik sr
10
2619
10522
6993
2007-01-20T00:15:01Z
Dijan
16
10522
wikitext
text/x-wiki
{{Babel field|sr|'''[[:Kategorija:Korisnik sr|Српски]]''' је '''[[:Kategorija:Korisnik sr-M|матерњи]]''' језик овог корисника.<hr>'''[[:Kategorija:Korisnik sr|Srpski]]''' je '''[[:Kategorija:Korisnik sr-M|maternji]]''' jezik ovog korisnika.}}
dug2v04zfow79ffdc4vxte9autoxdwx
Šablon:Korisnik hr
10
2620
6994
2006-05-19T10:43:00Z
Dijan
16
6994
wikitext
text/x-wiki
{{Babel field|hr|'''[[:Kategorija:Korisnik hr|Hrvatski]]''' je '''[[:Kategorija:Korisnik hr-M|maternji]]''' jezik ovog korisnika.}}
3ef86jmjjs6j2sfcjio3gkneeww64zj
Kategorija:Korisnik hr-M
14
2621
65854
56432
2017-07-03T20:50:36Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65854
wikitext
text/x-wiki
[[Kategorija:Korisnik hr]]
8fub0hwcksqrq1q4hm67bjluoe9i5tf
Kategorija:Korisnik de-M
14
2625
65752
52408
2017-07-03T20:28:33Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65752
wikitext
text/x-wiki
[[Kategorija:Korisnik de]]
q2jlbjy7jt9rbq89rz20esvuj0kw9dd
Kategorija:Korisnik de-3
14
2626
65750
53326
2017-07-03T20:28:13Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65750
wikitext
text/x-wiki
[[Kategorija:Korisnik de]]
q2jlbjy7jt9rbq89rz20esvuj0kw9dd
Kategorija:Korisnik de-1
14
2628
65748
52407
2017-07-03T20:27:53Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65748
wikitext
text/x-wiki
[[Kategorija:Korisnik de]]
q2jlbjy7jt9rbq89rz20esvuj0kw9dd
Kategorija:Korisnik en-3
14
2629
65774
54789
2017-07-03T20:32:53Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65774
wikitext
text/x-wiki
[[Kategorija:Korisnik en]]
gj9s0gt7cq3rzx29wjfgshytyte90f2
Kategorija:Korisnik en-4
14
2630
65775
53344
2017-07-03T20:33:15Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65775
wikitext
text/x-wiki
[[Kategorija:Korisnik en]]
gj9s0gt7cq3rzx29wjfgshytyte90f2
Kategorija:Korisnik fr-1
14
2633
65808
54988
2017-07-03T20:42:54Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65808
wikitext
text/x-wiki
[[Kategorija:Korisnik fr]]
du130g8xsvtfjjuvu1igeb6sarw2lxt
Kategorija:Korisnik fr-2
14
2634
65809
54853
2017-07-03T20:43:05Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65809
wikitext
text/x-wiki
[[Kategorija:Korisnik fr]]
du130g8xsvtfjjuvu1igeb6sarw2lxt
Kategorija:Korisnik hi-2
14
2639
65845
54213
2017-07-03T20:49:06Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65845
wikitext
text/x-wiki
[[Kategorija:Korisnik hi]]
o7tbdm56h0j4uaioum95fsr4nb7dccf
Kategorija:Korisnik tr-M
14
2655
66170
53386
2017-07-03T21:51:06Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66170
wikitext
text/x-wiki
[[Kategorija:Korisnik tr]]
687y89wgg7fg9v2slvdkny79fzsuzm4
Kategorija:Korisnik ur-2
14
2657
66191
52080
2017-07-03T21:54:36Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66191
wikitext
text/x-wiki
[[Kategorija:Korisnik ur]]
l9m4vwt8nxtm23prbp5qelpqdrd4fbt
Kategorija:Korisnik mk-2
14
2662
65983
54873
2017-07-03T21:12:15Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65983
wikitext
text/x-wiki
[[Kategorija:Korisnik mk]]
jd17conuw40jrbue7o3jriuttelvnps
Šablon:Korisnik en-4
10
2667
7041
2006-05-19T10:59:33Z
Dijan
16
7041
wikitext
text/x-wiki
{{Babel field 4|en|This user speaks '''[[:Kategorija:Korisnik en|English]]''' at a '''[[:Kategorija:Korisnik en-4|near native]]''' level.}}
q6sj56fo9a9pylpm7vxubcpztq3kxyz
Šablon:Korisnik en-3
10
2668
7042
2006-05-19T11:00:46Z
Dijan
16
7042
wikitext
text/x-wiki
{{Babel field 3|en|This user is able to contribute with an '''[[:Kategorija:Korisnik en-3|advanced]]''' level of '''[[:Kategorija:Korisnik en|English]]'''.}}
2rmoqrfk6uulvmg9ezr0ddwij5s6cvm
Šablon:Korisnik sh
10
2670
7045
2006-05-19T11:10:01Z
Dijan
16
7045
wikitext
text/x-wiki
{{Babel field|sh|'''[[:Kategorija:Korisnik sh|Srpskohrvatski]]''' je '''[[:Kategorija:Korisnik sh-M|maternji]]''' jezik ovog korisnika.}}
okfgvp7kjx9pzoqs11fzvvc8zk1am68
Kategorija:Korisnik sh
14
2671
66089
51863
2017-07-03T21:37:35Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66089
wikitext
text/x-wiki
[[Kategorija:Korisnički jezici|sh]]
8ibz2nlyegdjph5mqdz9fmmigz0s4uy
Kategorija:Korisnik sh-M
14
2672
66090
52920
2017-07-03T21:37:45Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66090
wikitext
text/x-wiki
[[Kategorija:Korisnik sh]]
40cde8z224r18fgd45vfvlfwu7d3f9z
Šablon:Korisnik fr-2
10
2673
7048
2006-05-19T11:13:27Z
Dijan
16
7048
wikitext
text/x-wiki
{{Babel field 2|fr|Cet utilisateur peut contribuer avec un niveau '''[[:Kategorija:Korisnik fr-2|moyen]]''' en '''[[:Kategorija:Korisnik fr|français]]'''.}}
181bscqjdsy2k3jvhecvbxfxotsjf90
Šablon:Korisnik de-1
10
2723
7195
2006-05-30T07:02:23Z
Dijan
16
7195
wikitext
text/x-wiki
{{Babel field 1|de|Dieser Benutzer hat '''[[:Kategorija:Korisnik de-1|grundlegende]]''' '''[[:Kategorija:Korisnik de|Deutschkenntnisse]]'''.}}
13kumldlmp9ium5tva6929n8m5z1exj
Šablon:m
10
2733
58184
7544
2017-02-22T17:28:49Z
Srđan
1899
[[Help:Cat-a-lot|Cat-a-lot]]: Moving from [[Category:Rod i broj šabloni]] to [[Category:Šabloni roda i broja]]
58184
wikitext
text/x-wiki
<span title="muški rod">''m.''</span><noinclude>
[[Kategorija:Šabloni roda i broja|m]]
[[en:Template:m]]
</noinclude>
kqjo2aj3u0d3sjept78siyqh56q8n6p
Šablon:ž
10
2734
58185
7542
2017-02-22T17:28:49Z
Srđan
1899
[[Help:Cat-a-lot|Cat-a-lot]]: Moving from [[Category:Rod i broj šabloni]] to [[Category:Šabloni roda i broja]]
58185
wikitext
text/x-wiki
<span title="ženski rod">''ž.''</span><noinclude>
[[Kategorija:Šabloni roda i broja|ž]]
[[en:Template:f]]
</noinclude>
27im1mhos5wunfftdpltofh0t59xzer
Šablon:s
10
2735
58182
9039
2017-02-22T17:28:49Z
Srđan
1899
[[Help:Cat-a-lot|Cat-a-lot]]: Moving from [[Category:Rod i broj šabloni]] to [[Category:Šabloni roda i broja]]
58182
wikitext
text/x-wiki
<span title="srednji rod">''s.''</span><noinclude>
[[Kategorija:Šabloni roda i broja|s]]
[[en:Template:n]]
</noinclude>
6csz7ukqueguldhlsyixc9i0a993uon
Kategorija:Šabloni
14
2779
66721
58502
2017-07-03T23:35:54Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66721
wikitext
text/x-wiki
[[Kategorija:Wikirječnik]]
8ncm0oz05e4x1zj07x94tsp8nhcxpox
Kategorija:Početna strana
14
2780
66245
58498
2017-07-03T22:03:51Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66245
wikitext
text/x-wiki
[[Kategorija:Wikirječnik]]
8ncm0oz05e4x1zj07x94tsp8nhcxpox
Kategorija:Bratski projekti
14
2812
7492
2006-06-16T18:27:16Z
Dijan
16
7492
wikitext
text/x-wiki
[[Kategorija:Šabloni]]
9xysiht31v5w9l6vcol8vebndgmjmzs
MediaWiki:Common.css
8
2905
58529
58528
2017-03-04T20:30:03Z
Srđan
1899
58529
css
text/css
/* ----------
CSS Style
* Indent with tab characters
* One line space between each declaration
* One selector per line
* Opening brace on the same line as the last selector
* Don’t omit optional semicolons
* Closing brace on its own line
* Closing brace indented to match the preceding style declarations
* Alternatively, very short style rules may be all on one line
---------- */
/* See also [[Special:Mypage/vector.css]], [[MediaWiki:Vector.css]] */
/* make headers include contained floats, so they don't wander around (yes, is
magic, it tells the browser the tag is a container) */
h1,
h2,
h3,
h4,
h5,
h6 {
width: auto;
}
sup,
sub { /* prevent odd line-height for raised and lowered characters */
line-height: 1em;
}
/* and keep links at normal font size/weight, else they inherit the header
attributes */
.editsection {
font-size: 100%;
font-weight: normal;
}
pre code, code code {
border: none;
padding: 0;
}
pre var, code var {
color: #777;
}
/* This fixes a bug where certain Tibetan terms are cut off at the bottom... */
#firstHeading { overflow: visible; }
/* Class for links with loudspeaker icon next to them */
.audiolink a {
background: url("//upload.wikimedia.org/wikipedia/commons/thumb/8/8a/Loudspeaker.svg/16px-Loudspeaker.svg.png") center left no-repeat !important;
padding-left: 20px !important;
padding-right: 0 !important;
}
.audiolink .ogg-player-options {
border: none;
white-space: pre;
}
.audiofile {
padding: 0px;
}
.audiofile button {
cursor: pointer;
border-width: 0px;
margin: 0px;
padding: 0px;
background-color: white;
width: 22px !important; /* temporary */
}
.ns-0 .timed-text {
display: none;
}
.client-js .audiometa {
display: none;
}
.client-nojs .audiofile {
display: none;
}
.translations-columm {
background-color: #FFFFE0;
width: 48%;
text-align: left;
vertical-align: top;
}
/* wikitable is part of core. prettytable is deprecated but still used in some
places, until fully replaced: */
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaaaaa solid;
border-collapse: collapse;
}
table.prettytable th,
table.prettytable td {
border: 1px #aaaaaa solid;
padding: 0.2em;
}
table.prettytable th {
background: #f2f2f2;
text-align: center;
}
table.prettytable caption {
margin-left: inherit;
margin-right: inherit;
}
/* default setting for {{qualifier}} and {{sense}}.
(Related classes that can be overridden: .qualifier-comma,
.qualifier-content, .ib-brac, .qualifier-brac, .sense-qualifier-colon.) */
.ib-comma {
font-style: normal;
}
.ib-content {
font-style: italic;
}
.ib-content i,
.ib-content em {
font-style: normal;
}
.context-qualifier-colon {
display: none;
}
/* default setting for {{seeCites}} */
.see-cites { }
/* default style for indented "see also" */
.disambig-see-also,
.disambig-see-also-2 {
text-indent: 2em;
}
.mention-tr {
font-style: italic;
}
/* non-italic and non-bold gloss */
.mention-gloss-double-quote,
.mention-gloss-paren,
.mention-tr-gloss-separator-comma,
.mention-tr-paren,
.mention-tr-gloss-separator-comma,
.mention-gloss {
font-style: normal;
font-weight: normal;
}
/* default style for "form of" definitions */
.use-with-mention,
.form-of-definition {
font-style: italic;
}
.form-of-definition-link {
font-style: normal;
}
.use-with-mention .mention,
.form-of-definition-link .mention {
font-style: normal;
font-weight: bold;
}
/* Inflection tables
----------------------------- */
/* To colour links in inflection tables (currently done with
{{notred}}) black without using #ifexist and allowing for user
override */
.inflection-table a.new { color: inherit; }
/* fill a parent NavContent collapsing box */
.NavContent table.inflection {
width: 100%;
}
/* basic inflection table styles */
table.inflection {
border-collapse: collapse;
border: 1px solid;
background: #ffffff;
}
table.inflection caption {
caption-side: bottom;
padding: 0.33em 1em;
text-align: left;
font-size: smaller;
}
/* subtle grey for alternate row backgrounds */
table.inflection tr:nth-child(odd) {
background: #fcfcfc;
}
/* and for row headers */
table.inflection tr:nth-child(odd):not(.rowgroup) th {
background: #f6f6f6;
}
table.inflection td,
table.inflection th {
padding: 0.33em 1em;
vertical-align: baseline;
}
/* but vertically center multi-row cells */
table.inflection td[rowspan] {
vertical-align: middle;
}
table.inflection td {
text-align: center;
}
/* regular row headers, in the left column */
table.inflection th {
background: #f9f9f9;
text-align: left;
}
/* rowgroup header rows */
table.inflection tr.rowgroup th {
background: #eeeeee;
text-align: center;
}
/* first-of-several rowgroup header cells is aligned left */
table.inflection tr.rowgroup th:first-child { text-align: left; }
table.inflection tr.rowgroup th:first-child:only-child { text-align: center; }
/* rows with dividers above */
table.inflection tr.divider th {
border-top: 3px solid #999999;
}
/* transliterations */
table.inflection .translit {
color: #888;
}
/* header links aren’t coloured until hover/active */
table.inflection th a:link,
table.inflection th a:visited {
color: inherit;
text-decoration: inherit;
}
table.inflection th a:hover {
color: #0645ad;
text-decoration: underline;
}
table.inflection th a:active {
color: #faa700;
text-decoration: underline;
}
/* Russian verb tables */
table.inflection-ru.inflection-verb {
background: #ffffff;
}
/* and for row headers */
table.inflection-ru.inflection-verb tr:nth-child(odd):not(.rowgroup) th {
background: #fcfcda;
}
table.inflection-ru.inflection-verb th {
background: #ffffe0;
}
table.inflection-ru.inflection-verb tr.rowgroup th {
background: #e0e0ff;
}
table.inflection-ru.inflection-verb tr.divider th {
border-top-color: #9090d0;
}
/* ----
end of Inflection tables */
/* InterProject */
.interProject {
display: none;
clear: both;
border-top: 2px dotted #AAAAAA;
margin-top: 2em;
}
/* CSS moved from various templates */
.checktrans { background-color: #f0fff0; }
.rfc-trans { background-color: #f0fff0; }
.trreq { background-color: #f0fff0; }
.ttbc { background-color: #f0fff0; }
/* t+ t t- templates: */
.tneg { vertical-align: 20%; font-size: 80%; }
.tneg a { color: #cc2200 !important; } /* monobook redlink colour, standard #ba0000 */
.tneg a:visited { color: #a55858 !important; } /* standard visited redlink colour */
.tpos { vertical-align: 20%; font-size: 80%; }
.tpos a { color: #002bb8 !important; } /* standard bluelink colour */
.tpos a:visited { color: #5a3696 !important; } /* standard visited bluelink colour */
.tpos a:active { color: #faa700 !important; } /* standard bluelink colour */
.tunk { vertical-align: 20%; font-size: 80%; }
.tunk a { color: #3366BB !important; } /* standard external interwiki colour */
.tunk a:active { color: #3366BB !important; } /* redundant */
/* for parentheses, we use .tlc and .tlcp, the latter has no definition here
(display:inline) */
.tlc { display: none; }
/* Main Page heading removal */
.action-view.page-Početna_strana #siteSub,
.action-view.page-Početna_strana #contentSub,
.action-view.page-Početna_strana h1.firstHeading {
display: none;
}
/* live ajax link checking support */
/* #002bb8 for (unvisited) blue, #ba0000 for red; so #5d155c for unknown */
a.dunno,
#p-personal a.dunno {
color: #5d155c;
}
/* #5a3696 for (visited) blue, #a55858 for red; so #744777 for unknown */
a.dunno:visited,
#p-personal a.dunno:visited {
color: #744777;
}
/* for pages which exist but lack the section we're looking for */
.partlynew:link,
#p-personal :link.partlynew,
.partlynew :link {
color: #B88D00;
}
.partlynew:visited,
#p-personal .partlynew:visited,
.partlynew :visited {
color: #826F34;
}
/* partlynew should have lower precedence than red-links... */
.partlynew .new:link {
color: #BA0000;
}
.partlynew .new:visited {
color: #a55858;
}
.accelerated:link {
color: #1fba00;
}
.accelerated:visited {
color: #66a759;
}
/* Try to make search results more obviously links */
.mw-special-Search #bodyContent li a {
font-weight: bold;
}
.mw-special-Search .searchmatch {
font-weight: normal;
color: #000000;
background-color: #FFEE77;
}
/* To give a flexible column like structure to manual indices
[[User:Conrad.Irwin]] */
ol.index,
div.index ol {
margin: 0.2em;
}
ol.index li,
div.index ol li,
div.index h3 {
float: left;
width: 20em;
list-style-type: none;
margin-left: 0;
margin-right: 0;
overflow: hidden;
}
div.index h3 {
font-size: 160%;
width: 12.5em;
margin-right: 0.2em;
}
/* Old version */
#mw-revision-info {
border: 2px solid #8888FF;
border-left: 0px;
border-right: 0px;
font-size: 110%;
margin: 5px;
margin-left: 0px;
}
#mw-editingold {
margin-left: 15px;
margin: 5px;
padding: 5px;
border: 2px solid #CC0000;
border-width: 2px 0px;
}
/* Make Recent changes look nice again */
span.newpage,
span.minor,
span.searchmatch,
span.bot,
span.unpatrolled {
font-family: sans-serif !important;
}
/* </pre> */
/* NavFrames */
div.Boxmerge,
div.NavFrame,
details.NavFrame {
margin: 0px 0px -1px 0px;
padding: 2px;
border: 1px solid #aaaaaa;
text-align: center;
border-collapse: collapse;
font-size: 95%;
overflow: auto;
width: auto;
}
div.Boxmerge div.NavFrame {
border-style: none;
border-style: hidden;
}
div.NavPic {
background-color: #ffffff;
margin: 0px;
padding: 2px;
float: left;
}
div.NavFrame div.NavHead,
details.NavFrame summary.NavHead {
min-height: 1.6em;
font-weight: bold;
font-size: 100%;
text-align: left;
background-color: #efefef;
padding-left: 10px;
background-image: -webkit-gradient(linear, left top, left bottom, from(#EFEFEF), to(#DFDFDF), color-stop(0.6, #E3E3E3));
background-image: -moz-linear-gradient(top, #EFEFEF, #E3E3E3 60%, #DFDFDF);
background-image: -o-linear-gradient(top, #EFEFEF, #E3E3E3 60%, #DFDFDF);
}
div.NavFrame div.NavHead:hover,
details.NavFrame summary.NavHead:hover {
background-color: #F6F6F6;
background-image: -webkit-gradient(linear, left top, left bottom, from(#EFEFEF), to(#F3F3F3), color-stop(0.6, #EAEAEA));
background-image: -moz-linear-gradient(top, #EFEFEF, #EAEAEA 60%, #F3F3F3);
background-image: -o-linear-gradient(top, #EFEFEF, #EAEAEA 60%, #F3F3F3);
}
div.NavFrame div.NavHead:active,
details.NavFrame summary.NavHead:active {
background-color: #E3E3E3;
background-image: -webkit-gradient(linear, left top, left bottom, from(#E3E3E3), to(#DFDFDF), color-stop(0.6, #D3D3D3));
background-image: -moz-linear-gradient(top, #E3E3E3, #D3D3D3 60%, #DFDFDF);
background-image: -o-linear-gradient(top, #E3E3E3, #D3D3D3 60%, #DFDFDF);
}
div.pseudo div.NavHead:hover { background-color: #EFEFEF; }
div.pseudo div.NavHeadpseudo:active { background-color: #EFEFEF; }
div.NavFrame p {
font-size: 100%;
}
div.NavFrame div.NavContent,
details.NavFrame div.NavContent {
font-size: 100%;
}
div.NavFrame div.NavContent p,
details.NavFrame div.NavContent p {
font-size: 100%;
}
div.NavEnd {
margin: 0px;
padding: 0px;
line-height: 1px;
clear: both;
}
span.NavToggle {
cursor: pointer;
float: right;
font-weight: normal;
font-size: smaller;
}
/* Main page fixes */
#interwiki-completelist {
font-weight: bold;
}
/* Style for horizontal UL lists */
.horizontal p,
.horizontal ul,
.horizontal li { display: inline; }
.horizontal ul { padding: 0 0 0 .2em; margin: 0; }
.horizontal li { padding: 0 0.1em 0 0.1em; }
/* [[w:CSS filter#Negation pseudo-class hack]] since IE <8 doesn't support pseudo
elements and IE 8 doesn't support :last-child pseudo-class. */
html:not([dummyparam]) .horizontal li:after { content: ","; }
html:not([dummyparam]) .horizontal li:last-child:after { content: "."; }
/* stuff visible when previewing an edit only */
.previewonly { display: none; }
#wikiPreview .previewonly { display: inline !important; }
/* senseids */
li.senseid:target { background-color: #DEF; }
/* hide optional Russian stress-marks */
.ru-stress { display: none; }
/* Gender and number templates */
.gender,
.number,
.noun-class { font-style: italic; }
abbr { border-bottom-width: 0; }
/* hide "did you mean" on Noarticletext self-links */
.did-you-mean strong {
display: none;
}
/* make script/module errors smaller */
.scribunto-error {
font-size: 75%;
}
/* formats derived terms */
.derivedterms { background: #F8F8FF; }
.derivedterms .CategoryTreeChildren { column-count: 3; -moz-column-count: 3; -webkit-column-count: 3; }
/* softer highlighting of 'updated since last visit' */
span.updatedmarker { background-color:#D0F0C0; }
/* {{side box}} */
table.mbox-small { /* For the "small=yes" option. */
clear: right;
float: right;
margin: 4px 0 4px 1em;
width: 238px;
font-size: 88%;
line-height: 1.25em;
}
table.mbox-small-left { /* For the "small=left" option. */
margin: 4px 1em 4px 0;
width: 238px;
border-collapse: collapse;
font-size: 88%;
line-height: 1.25em;
}
.HQToggle {
font-size: 0.65em;
}
/* {{TOC limit}} */
/* Allow limiting of which header levels are shown in a TOC;
<div class="toclimit-3">, for instance, will limit to showing ==headings==
and ===headings=== but no further (as long as there are no =headings= on the
page, which there shouldn't be according to the MoS). */
.toclimit-2 .toclevel-1 ul,
.toclimit-3 .toclevel-2 ul,
.toclimit-4 .toclevel-3 ul,
.toclimit-5 .toclevel-4 ul,
.toclimit-6 .toclevel-5 ul,
.toclimit-7 .toclevel-6 ul {
display: none;
}
/*
Support for scripts. See [[Wiktionary:Scripts]].
The inherit declaration resets the font for all browsers except MSIE6.
The empty comment must remain.
*/
/* Default style for headwords. */
strong.headword { }
/* Default style for mentions outside of "form of" definitions.
See [[Wiktionary:Votes/2007-10/style for mentioned terms]] */
.mention {
font-style: italic;
}
/* "Empty" script, used for languages with no script set.
This is the same as Latn in practice, but allows tagging and formatting of
such cases. */
.None,
.Imag,
.Zyyy { }
/* Latin
This is the default script, so it has no definitions. */
.Latn { }
/* This is needed to overcome the "smartness" of certain web browsers */
.Latn[lang=ja],
.Latn[lang=ko],
.Latn[lang=zh] {
font-family: inherit;
}
/* Latin Fraktur */
.Latf {
font-family: UnifrakturMaguntia, UnifrakturCook, Unifraktur, Code2001, Tahoma, Arial Unicode MS, sans-serif;
font-size: 125%;
}
/* Navajo */
.nv-Latn {
font-family: "Calibri", "Aboriginal Sans", "DejaVu Sans", "Arial Unicode MS", sans-serif !important;
}
/* Pitjantjatjara (ḻ ṉ ṟ ṯ and capitals) */
.pjt-Latn {
font-family: Microsoft Sans Serif, Tahoma, Code2000, sans-serif;
}
/* Latin extended */
.Latinx,
.unicode,
.Unicode {
font-family: Quivira, Code 2000, Junicode, Microsoft Sans Serif, TITUS Cyberbit Basic, sans-serif;
/* This was taken from the .unicode script. It should be added back if there are problems.
font-family: TITUS Cyberbit Basic, Junicode, Code2000, Doulos SIL, Chrysanthi Unicode, Bitstream Cyberbit, Bitstream CyberBase, Bitstream Vera, Thryomanes, Gentium, GentiumAlt, Visual Geez Unicode, Lucida Grande, Tahoma, Arial Unicode MS, Microsoft Sans Serif, Lucida Sans Unicode, sans-serif;
*/
font-family /**/:inherit;
}
/* Arabic */
.Arab,
.fa-Arab,
.glk-Arab,
.kk-Arab,
.ks-Arab,
.ku-Arab,
.mzn-Arab,
.ota-Arab,
.pa-Arab,
.ps-Arab,
.sd-Arab,
.tt-Arab,
.ug-Arab,
.ur-Arab {
font-family: "Iranian Sans", Arial Unicode MS, Code2000, Traditional Arabic, sans-serif;
font-size: 133%;
direction: rtl;
unicode-bidi: embed;
}
/* no italics, no bold */
.Arab, .Arab *,
.fa-Arab, .fa-Arab *,
.glk-Arab, .glk-Arab *,
.kk-Arab, .kk-Arab *,
.ks-Arab, .ks-Arab *,
.ku-Arab, .ku-Arab *,
.mzn-Arab, .mzn-Arab *,
.ota-Arab, .ota-Arab *,
.pa-Arab, .pa-Arab *,
.ps-Arab, .ps-Arab *,
.sd-Arab, .sd-Arab *,
.tt-Arab, .tt-Arab *,
.ug-Arab, .ug-Arab *,
.ur-Arab, .ur-Arab * {
font-style: normal;
font-weight: normal;
}
/* Persian, Kashmiri, Ottoman Turkish */
.fa-Arab,
.ks-Arab,
.ota-Arab {
font-family: "Iranian Sans", Geeza Pro, Tahoma, sans-serif;
}
/* Kurdish, Punjabi Shahmukhi, Urdu */
.ku-Arab,
.pa-Arab,
.ur-Arab {
font-family: "Tahoma", Arial Unicode MS, UT Cairo, UT Naskh, sans-serif;
}
/* Pashto */
.ps-Arab {
font-family: Pokhto, Pashto Kror Asiatype, "Iranian Sans", sans-serif;
}
/* Sindhi */
.sd-Arab {
font-family: MB Sindhi, Tahoma, MBSarang Sattar, MB Bhitai Sattar, MB Lateefi, Ayaz Gul, "Iranian Sans", sans-serif;
}
/* Uyghur */
.ug-Arab {
font-family: UKIJ Tuz, Microsoft Uighur, Scheherazade, "Iranian Sans", Code2000, sans-serif;
}
/* Imperial Aramaic */
.Armi {
font-family: Segoe UI Historic, Aramaic Imperial Yeb, Noto Sans Imperial Aramaic, sans-serif;
direction: rtl;
unicode-bidi: embed;
}
.Armi, .Armi * {
font-style: normal;
}
/* Armenian */
.Armn {
font-family: Mshtakan, Arial, Segoe UI, Tahoma, Arian AMU, DejaVu Sans, sans-serif;
}
.Armn * {
font-style: normal;
}
/* Avestan */
.Avst {
font-family: Avestan, Ahuramzda, Noto Sans Avestan, sans-serif;
font-size: 125%;
direction: rtl;
unicode-bidi: embed;
}
/* no italics */
.Avst, .Avst * {
font-style: normal;
}
/* Balinese */
.Bali {
font-family: Noto Sans Balinese, sans-serif;
}
.Bali, .Bali * {
font-style: normal;
}
/* Bamum */
.Bamu {
font-family: Noto Sans Bamum, sans-serif;
}
.Bamu, .Bamu * {
font-style: normal;
}
/* Batak */
.Batk {
font-family: Batak-Unicode, sans-serif;
}
.Batk, .Batk * {
font-style: normal;
}
/* Bengali */
.Beng {
font-family: Bangla Sangam MN, UniBangla, Arial Unicode MS, Code2000, Likhan, UT Bengali Dhaka, Vrinda, sans-serif;
font-family /**/:inherit;
font-size: 130%;
}
.Beng, .Beng * {
font-style: normal;
}
/* Zhuyin (Bopomofo) */
.Bopo, .Bopo * {
font-style: normal;
}
/* Brahmi */
.Brah {
font-family: Segoe UI Historic, Noto Sans Brahmi;
}
.Brah, .Brah * {
font-style: normal;
}
/* Braille */
.Brai {
font-size: 150%;
}
.Brai, .Brai * {
font-style: normal;
}
/* Buginese */
.Bugi {
font-family: Saweri, sans-serif;
}
.Bugi, .Bugi * {
font-style: normal;
}
/* Buhid */
.Buhd, .Buhd * {
font-style: normal;
}
/* Chakma */
.Cakm {
font-family: RibengUni, sans-serif;
}
.Cakm, .Cakm * {
font-style: normal;
}
/* Unified Canadian Aboriginal Syllabics */
.Cans {
font-family: Euphemia UCAS, Euphemia, Aboriginal Sans, OskiBlackfoot, Code2000, Everson Mono Unicode, sans-serif;
font-size: 110%
}
.Cans, .Cans * {
font-style: normal;
}
/* Carian, Italic, Linear B, Lycian, Lydian */
.Cari,
.Ital,
.Linb,
.Lyci,
.Lydi {
font-family: Segoe UI Historic, Aegean, Noto Sans Carian, Noto Sans Old Italic, Noto Sans Linear B, Noto Sans Lycian, Noto Sans Lydian, sans-serif;
font-size: 125%;
}
.Cari, .Cari *,
.Ital, .Ital *,
.Linb, .Linb *,
.Lyci, .Lyci *,
.Lydi, .Lydi * {
font-style: normal;
}
/* Cham */
.Cham {
font-family: Code2000, JG ChamCambodia, sans-serif;
font-size: 1.1em;
}
.Cham, .Cham * {
font-style: normal;
}
/* Cherokee */
.Cher {
font-family: Digohweli, Aboriginal Sans, Code2000, Marin, Rotinonhsonni Sans, Everson Mono Unicode, sans-serif;
font-size: 110%;
}
.Cher, .Cher * {
font-style: normal;
}
/* Coptic */
.Copt {
font-family: Quivira, New Athena Unicode, Code2000, sans-serif;
font-size: 1.3em;
}
.Copt, .Copt * {
font-style: normal;
}
/* Cypriot */
.Cprt {
font-family: Segoe UI Historic, Aegean, sans-serif;
font-size: 1.15em;
direction: rtl;
unicode-bidi: embed;
}
.Cprt, .Cprt * {
font-style: normal;
}
/* Cyrillic */
.Cyrl,
.Cyrs {
font-family: Helvetica, Geneva, Arial Unicode MS, Lucida Sans Unicode, Code2000, sans-serif;
}
.Cyrl, .Cyrl * {
font-style: normal;
}
/* Old Cyrillic (Old Church Slavonic, Old East Slavic) */
.Cyrs {
font-family: BukyVede, Kliment Std, RomanCyrillic Std, Menaion, Menaion Medieval, Lazov, Dilyana, Hirmos Ponomar, Hirmos Ponomar TT, Fedorovsk Unicode, Fedorovsk Unicode TT, Code2000, DejaVu Sans, Lucida Grande, Arial Unicode MS, Lucida Sans Unicode, sans-serif;
font-size: 125%;
}
.Cyrs, .Cyrs * {
font-style: normal;
}
/* Devanagari */
.Deva {
font-family: Devanagari Sangam MN, Devanagari MT, Mangal, Raghu, Gargi, JanaSanskrit, JanaHindi, Arial Unicode MS, Code2000, Bitstream Cyberbit, Bitstream CyberBase, Siddhanta, sans-serif;
font-size: 125%;
}
.Deva, .Deva * {
font-style: normal;
font-weight: normal;
}
/* Deseret */
.Dsrt {
font-family: Segoe UI Symbol, Code2001, 'MPH 2B Damase', Everson Mono, sans-serif;
}
.Dsrt, .Dsrt * {
font-style: normal;
}
/* Demotic (Egyptian) */
.Egyd, .Egyd * {
font-style: normal;
}
/* Egyptian hieroglyphs */
.Egyp {
font-family: Segoe UI Historic, Noto Sans Egyptian Hieroglyphs, Aegyptus, sans-serif;
font-size: 150%;
}
.Egyp, .Egyp * {
font-style: normal;
}
/* Ethiopic (Ge'ez) */
.Ethi {
font-family: AbyssinicaSIL, Nyala, Code2000, Ethiopia Jiret, GF Zemen Unicode, TITUS Cyberbit Basic, Visual Geez Unicode, Visual Geez Unicode Agazian, Visual Geez Unicode Title, sans-serif;
font-size: 120%;
}
.Ethi, .Ethi * {
font-style: normal;
}
/* Georgian */
.Geor {
font-family: DejaVu Sans, Arial Unicode MS, Sylfaen, sans-serif;
}
.Geor, .Geor * {
font-style: normal;
}
/* Glagolitic */
.Glag {
font-family: Segoe UI Historic, BukyVede, Dilyana, sans-serif;
font-size: 150%;
}
.Glag, .Glag * {
font-style: normal;
}
/* Gothic */
.Goth {
font-family: Segoe UI Historic, Code2001, Skeirs, 'MPH 2B Damase', sans-serif;
}
.Goth, .Goth * {
font-style: normal;
}
b.Goth,
strong.Goth {
font-size: larger;
}
/* Greek */
.Grek,
.polytonic {
font-family: Athena, Gentium, Palatino Linotype, Arial Unicode MS, Lucida Sans Unicode, Lucida Grande, Code2000, sans-serif;
font-family /**/:inherit;
}
.Grek, .Grek *,
.polytonic, .polytonic * {
font-style: normal;
}
/* Polytonic Greek */
.polytonic {
font-family: DejaVu Sans, Athena, Gentium, Palatino Linotype, Arial Unicode MS, Lucida Sans Unicode, Lucida Grande, Code2000, sans-serif;
font-family /**/:inherit;
}
/* Gujarati */
.Gujr {
font-family: Gujarati Sangam MN, Gujarati MT, Shruti, Lucida Grande, Arial Unicode MS, Lucida Sans Unicode, Code2000, TITUS Cyberbit Basic, Chrysanthi Unicode, Bitstream Cyberbit, Bitstream CyberBase, Bitstream Vera, Visual Geez Unicode, sans-serif;
font-size: 125%;
}
.Gujr, .Gujr * {
font-style: normal;
}
/* Gurmukhi */
.Guru {
font-family: Gurmukhi MN, Gurmukhi MT, UT Punjabi Amritsar, Lucida Grande, Arial Unicode MS, Lucida Sans Unicode, Code2000, TITUS Cyberbit Basic, Chrysanthi Unicode, Bitstream Cyberbit, Bitstream CyberBase, Bitstream Vera, Visual Geez Unicode, sans-serif;
font-size: 125%;
}
.Guru, .Guru * {
font-style: normal;
}
/* Chinese (Han) */
/* Hani: generic */
/* Hans: simplified */
/* Hant: traditional */
.Hani,
.Hans {
font-family: PingFang SC, Heiti SC, DengXian, Microsoft Yahei, SimHei, Source Han Sans CN, Noto Sans CJK SC, SimSun, NSimSun, SimSun-ExtB, Song, sans-serif;
}
.Hant {
font-family: PingFang TC, Heiti TC, Microsoft Jhenghei, Source Han Sans TW, Noto Sans CJK TC, PMingLiU, PMingLiU-ExtB, MingLiU, MingLiU-ExtB, Ming, sans-serif;
}
.Hani,
.Hans,
.Hant {
font-size: 1.2em;
}
.Hani, .Hani *,
.Hans, .Hans *,
.Hant, .Hant * {
font-style: normal;
font-weight: normal;
}
big.Hani, strong.Hani, b.Hani, b .Hani,
big.Hans, strong.Hans, b.Hans, b .Hans,
big.Hant, strong.Hant, b.Hant, b .Hant {
font-size: 137%;
}
.Hani b,
.Hans b,
.Hant b {
font-size: 125%;
}
:lang(ko).Hani {
font-family: Gulim, Dotum, Malgun Gothic, Apple SD Gothic Neo, Source Han Sans KR, Noto Sans CJK KR, MS PGothic, Arial Unicode MS, sans-serif;
}
:lang(vi).Hani {
font-family: 'Nom Na Tong', 'HAN NOM A', 'HAN NOM B', 'Sun-ExtA', 'Sun-ExtB', 'Ming-Lt-HKSCS-UNI-H', 'Ming-Lt-HKSCS-ExtB', 'HanaMinA', 'HanaMinB', 'HanaMin', 'MingLiU', 'MingLiU-ExtB', 'MingLiU_HKSCS', 'MingLiU_HKSCS-ExtB', 'SimSun', 'SimSun-ExtB', 'Arial Unicode MS', 'Lucida Sans Unicode', 'TITUS Cyberbit Basic', 'Code2000', sans-serif;
/* CJK Unified Ideographs Extension C and Extension D (U+2A700..U+2B734, U+2B740..U+2B81F)
font-family: 'Sun-ExtB', 'MingLiU_HKSCS-ExtB', 'Ming-Lt-HKSCS-ExtB', 'HanaMinB', sans-serif;
**/
}
/* Hanunoo */
.Hano {
font-family: Quivira, 'MPH 2B Damase', sans-serif;
font-size: 1.1em;
}
.Hano, .Hano * {
font-style: normal;
}
/* Hebrew */
.Hebr {
font-family: SBL Hebrew, Adobe Hebrew, Narkisim, Miriam, Kinryu, DejaVu Sans, DejaVu Sans Condensed, DejaVu Sans Light, Arial Hebrew, Arial, serif;
font-size: 115%;
direction: rtl;
unicode-bidi: embed;
}
.Hebr, .Hebr * {
font-style: normal;
font-weight: normal;
}
big.Hebr,
strong.Hebr,
b.Hebr,
b .Hebr {
font-size: 144%;
}
.Hebr b {
font-size: 125%;
}
/* Hiragana: see .Jpan */
/* Javanese */
.Java {
font-family: adjisaka, Noto Sans Javanese, sans-serif;
}
.Java, .Java * {
font-style: normal;
}
/* Japanese scripts
.Hira = Hiragana
.Kana = Katakana (used for Ainu language)
.Jpan = Hiragana + Katakana + Kanji
*/
.Hira,
.Jpan,
.Kana {
font-family: Hiragino Kaku Gothic Pro, MS PGothic, Arial Unicode MS, Code2000, sans-serif;
font-size: 110%;
}
.Hira, .Hira *,
.Jpan, .Jpan *,
.Kana, .Kana * {
font-style: normal;
font-weight: normal;
}
big.Hira, big.Jpan, big.Kana,
strong.Hira, strong.Jpan, strong.Kana,
b.Hira, b.Jpan, b.Kana,
b .Hira, b .Jpan, b .Kana {
font-size: 137%; /* Fonts are really big in Japan */
}
.Hira b, .Jpan b, .Kana b {
font-size: 125%;
}
/* Kayah Li, Ol Chiki, Rejang */
.Kali,
.Olck {
font-family: Code2000, sans-serif;
}
.Kali, .Kali *,
.Olck, .Olck *,
.Rjng, .Rjng * {
font-style: normal;
}
/* Katakana (Ainu language): see .Jpan */
/* Kharoshthi */
.Khar {
font-family: Segoe UI Historic, 'MPH 2B Damase', sans-serif;
font-size: 1.1em;
direction: rtl;
unicode-bidi: embed;
}
.Khar, .Khar * {
font-style: normal;
}
/* Khmer */
.Khmr {
font-family: Khmer OS, Khmer OS Content, Leelawadee UI, Noto Sans Khmer, Code2000, Khmer Mondulkiri U OT ls, sans-serif;
font-size: 125%;
}
.Khmr, .Khmr * {
font-style: normal;
}
/* Kannada */
.Knda {
font-family: Kannada Sangam MN, JanaKannada, Tunga, Kedage, RaghuKannada, Sampige, Arial Unicode MS, Code2000, Bitstream Cyberbit, Bitstream CyberBase, sans-serif;
font-size: 125%;
}
.Knda, .Knda * {
font-style: normal;
}
/* Korean */
.Kore,
.Hang,
.CGK {
font-family: Gulim, Dotum, Arial Unicode MS, Code2000, Malgun Gothic, UnBatang, sans-serif;
font-size: 110%;
}
.Kore, .Kore *,
.Hang, .Hang *,
.CGK, .CGK * {
font-style: normal;
}
/* Old Korean */
.CGK {
font-family: 은 자모 바탕, UnJamoBatang, 은 바탕, UnBatang, Code2002, Code2001, Code2000, serif;
}
/* Kaithi */
.Kthi {
font-family: Noto Sans Kaithi, sans-serif;
}
.Kthi, Kthi * {
font-style: normal;
}
/* Lanna */
.Lana {
font-family: Lanna Alif, Noto Sans Tai Tham, sans-serif;
}
.Lana, .Lana * {
font-style: normal;
}
/* Lao */
.Laoo {
font-family: Phetsarath OT, Saysettha OT, JG Basic Lao Opentype, JG Basic2 Lao Opentype, JG LaoTimes Opentype, Phagnoum Lao Unicode Opentype, JG Lao Old Arial Opentype, DokChampa, Code2000, JG Lao Classic Opentype, Alice0 Unicode, Alice1 Unicode, Alice2 Unicode, Alice3 Unicode, Alice4 Unicode, Alice5 Unicode, sans-serif;
font-size: 125%;
}
.Laoo, .Laoo * {
font-style: normal;
}
/* Lepcha */
.Lepc {
font-family: Noto Sans Lepcha, Mingzat, sans-serif;
}
.Lepc, .Lepc * {
font-style: normal;
}
/* Limbu */
.Limb {
font-family: Code2000, 'MPH 2B Damase', sans-serif;
}
.Limb, .Limb * {
font-style: normal;
}
/* Lisu */
.Lisu {
font-family: Noto Sans Lisu, sans-serif;
}
.Lisu, .Lisu * {
font-style: normal;
}
/* Mandaic */
.Mand {
font-family: Noto Sans Mandaic, sans-serif;
}
.Mand, .Mand * {
font-style: normal;
}
/* Manichaean */
.Mani, .Mani * {
font-style: normal;
}
/* Meroitic cursive */
.Merc {
font-family: Segoe UI Historic, Aegyptus, sans-serif;
font-size: 150%;
}
.Merc, .Merc * {
font-style: normal;
}
/* Meroitic hieroglyphs */
.Mero {
font-family: Aegyptus, sans-serif;
font-size: 150%;
}
.Mero, .Mero * {
font-style: normal;
}
/* Malayalam */
.Mlym {
font-family: Malayalam Sangam MN, Kartika, Code2000, Lucida Grande, Arial Unicode MS, Lucida Sans Unicode, TITUS Cyberbit Basic, Chrysanthi Unicode, Bitstream Cyberbit, Bitstream CyberBase, Bitstream Vera, Visual Geez Unicode, sans-serif;
font-size: 125%;
}
.Mlym, .Mlym * {
font-style: normal;
}
/* Classical Mongolian */
.Mong {
font-family: Mongolian Baiti, sans-serif;
font-size: 140%;
-webkit-writing-mode: vertical-lr;
-moz-writing-mode: vertical-lr;
writing-mode: vertical-lr;
layout-flow: vertical-ideographic;
}
.Mong, .Mong * {
font-style: normal;
}
/* Meitei Mayek */
.Mtei {
font-family: Eeyek Unicode, Noto Sans Meetei Mayek, sans-serif;
}
.Mtei, .Mtei * {
font-style: normal;
}
/* Burmese */
.Mymr {
font-family: TharLon, Padauk, Myanmar Text, Myanmar3, Myanmar2, Myanmar1, ParabaikSans, MyMyanmar sans-serif;
font-size: 130%;
}
.Mymr, .Mymr * {
font-style: normal;
font-weight: normal;
}
big.Mymr,
strong.Mymr,
b.Mymr,
b .Mymr {
font-size: 162%;
}
.Mymr b {
font-size: 130%;
}
/* N'ko */
.Nkoo, .Nkoo * {
font-style: normal;
}
/* Ogham */
.Ogam {
font-family: Segoe UI Historic, Beth-Luis-Nion, Pollach, Maigh Nuad, Craobh Ruadh, Everson Mono Ogham, Cog, Crosta, TITUS Ogham, Ragnarok Ogham, sans-serif;
font-size: 125%;
}
.Ogam, .Ogam * {
font-style: normal;
font-weight: normal;
}
big.Ogam, strong.Ogam, b.Ogam, b .Ogam {
font-size: 156%;
}
.Ogam b {
font-size: 125%;
}
/* Orkhon Runes */
.Orkh {
font-family: Segoe UI Historic, Orkun, Old Turkic, sans-serif;
}
.Orkh, .Orkh * {
font-style: normal;
}
/* Oriya */
.Orya {
font-family: Oriya Sangam MN, sans-serif;
font-size: 125%;
}
.Orya, .Orya * {
font-style: normal;
}
/* Osmanya */
.Osma, .Osma * {
font-style: normal;
}
/* Phags-pa */
.Phag {
font-family: 'BabelStone Phags-pa Book', Microsoft PhagsPa, sans-serif;
-webkit-writing-mode: vertical-lr;
-moz-writing-mode: vertical-lr;
writing-mode: vertical-lr;
layout-flow: vertical-ideographic;
}
.Phag, .Phag * {
font-style: normal;
}
/* Inscriptional Pahlavi */
.Phli {
font-family: Segoe UI Historic, Noto Sans Inscriptional Pahlavi, Shapour, ZH Mono, sans-serif;
}
.Phli, .Phli * {
font-style: normal;
}
/* Book Pahlavi */
.Phlv, .Phlv * {
font-style: normal;
}
/* Phoenician */
.Phnx {
font-family: Segoe UI Historic, ALPHABETUM Unicode, 'MPH 2B Damase', Aegean, Code2001, Free Sans, sans-serif;
font-size: 125%;
direction: rtl;
unicode-bidi: embed;
}
.Phnx, .Phnx * {
font-style: normal;
}
/* Pollard */
.Plrd, .Plrd * {
font-style: normal;
}
/* Parthian */
.Prti {
font-family: Segoe UI Historic, Noto Sans Inscriptional Parthian, ZH Mono, sans-serif;
}
.Prti, .Prti * {
font-style: normal;
}
/* Rejang */
.Rjng, .Rjng * {
font-family: Noto Sans Rejang, Code2000, sans-serif;
}
/* Runic (Germanic) */
.Runr {
font-family: Segoe UI Historic, Junicode, Free Mono, Caslon Roman, Segoe UI Symbol, Code2000, Everson Mono, TITUS Cyberbit Basic, sans-serif;
font-size: 130%;
}
.Runr, .Runr * {
font-style: normal;
}
/* Samaritan */
.Samr {
font-family: Noto Sans Samaritan, Quivira, Everson Mono, Unifont, sans-serif;
font-size: 150%;
direction: rtl;
}
.Samr, .Samr * {
font-style: normal;
}
/* South Arabian */
.Sarb {
font-family: Segoe UI Historic, Qataban, Noto Sans Old South Arabian, sans-serif;
}
.Sarb, .Sarb * {
font-style: normal;
}
/* Saurashtra */
.Saur {
font-family: Pagul, sans-serif;
}
.Saur, .Saur * {
font-style: normal;
}
/* SignWriting */
.Sgnw, .Sgnw * {
font-style: normal;
}
/* Shavian */
.Shaw {
font-family: Segoe UI Historic, Code2001, Everson Mono, sans-serif;
}
.Shaw, .Shaw * {
font-style: normal;
}
/* Sharada */
.Shrd, .Shrd * {
font-style: normal;
}
/* Sinhalese */
.Sinh {
font-family: Sinhala Sangam MN, KaputaUnicode, KandyUnicode, Dinamina, DinaminaUniWeb, Potha, Madhura, sans-serif;
font-size: 125%;
}
.Sinh, .Sinh * {
font-style: normal;
}
/* Sorang Sompeng */
.Sora, .Sora * {
font-style: normal;
}
/* Sundanese */
.Sund {
font-family: Sundanese Unicode, sans-serif;
}
.Sund, .Sund * {
font-style: normal;
}
/* Syloti Nagri */
.Sylo {
font-family: Noto Sans Syloti Nagri, sans-serif;
}
.Sylo, .Sylo * {
font-style: normal;
}
/* Syriac */
.Syrc {
font-family: Estrangelo Edessa, San Francisco, Code2000, Bitstream Cyberbit, Bitstream CyberBase, Bitstream Vera, TITUS Cyberbit Basic, sans-serif;
font-size: 1.3em;
direction: rtl;
unicode-bidi: embed;
}
.Syrc, .Syrc * {
font-style: normal;
}
/* Tagbanwa */
.Tagb {
font-family: Quivira, Tagbanwa, sans-serif;
font-size: 1.1em;
}
.Tagb, .Tagb * {
font-style: normal;
}
/* Tai Le */
.Tale {
font-family: Microsoft Tai Le, Tai Le Valentinium, 'MPH 2B Damase', sans-serif;
}
.Tale, .Tale * {
font-style: normal;
}
/* New Tai Lue */
.Talu {
font-family: Noto Sans New Tai Lue, Microsoft New Tai Lue, Dai Banna SIL Book, Husb_New_Tai_Lue_WB, sans-serif;
}
.Talu, .Talu * {
font-style: normal;
}
/* Tamil */
.Taml {
font-family: Tamil Sangam MN, InaiMathi, Vijaya, Akshar, JanaTamil, Code2000, ETTamilNew, Lohit Tamil, Arial Unicode MS, Free Serif, Latha, sans-serif;
font-size: 125%;
}
.Taml, .Taml * {
font-style: normal;
}
/* Tangut */
.Tang {
font-family: BabelStone Tangut Wenhai, 'Tangut N4694', 'Tangut Yinchuan', 'New Tangut', 'New Tangut Std', 'Tangut TWU', 'Babelstone Tangut Wenhai', sans-serif;
font-size: 1.2em;
text-orientation: upright;
-webkit-text-orientation: upright
}
.Tang, .Tang * {
font-style: normal;
font-weight: normal;
}
/* Tai Viet */
.Tavt {
font-family: 'Tai Heritage Pro', Noto Sans Tai Viet, sans-serif;
}
.Tavt, .Tavt * {
font-style: normal;
}
/* Telugu */
.Telu {
font-family: Telugu Sangam MN, sans-serif;
font-size: 125%;
}
.Telu, .Telu * {
font-style: normal;
}
/* Tifinagh (Berber) */
.Tfng {
font-family: 'Hapax Berbère', Ebrima, Code2000, DejaVu, sans-serif;
font-size: 120%;
}
.Tfng, .Tfng * {
font-style: normal;
}
/* Tagalog */
.Tglg{
font-family: Noto Sans Tagalog, sans-serif;
}
.Tglg, .Tglg * {
font-style: normal;
}
/* Thaana */
.Thaa, .Thaa * {
font-style: normal;
}
/* Thai */
.Thai {
font-family: Arial Unicode MS, Code2000, sans-serif;
font-family /**/:inherit;
font-size: 125%;
}
.Thai, .Thai * {
font-style: normal;
}
/* Tibetan */
.Tibt,
.xzh-Tibt {
font-family: Jomolhari-ID, Tibetan Machine Uni, Tibetan Machine Web, Jomolhari, Microsoft Himalaya, sans-serif;
font-size: 150%;
}
.Tibt, .Tibt *,
.xzh-Tibt, .xzh-Tibt * {
font-style: normal;
}
/* Zhang-Zhung */
.xzh-Tibt {
font-family: BabelStone Tibetan sMar-chen, sans-serif;
}
/* Ugaritic */
.Ugar {
font-family: Segoe UI Historic, Aegean, Code2001, sans-serif;
}
.Ugar, .Ugar * {
font-style: normal;
}
/* Vai */
.Vaii {
font-family: Ebrima, Code2000, sans-serif;
font-size: 1.1em;
}
.Vaii, .Vaii * {
font-style: normal;
}
/* Old Persian cuneiform */
.Xpeo {
font-family: Segoe UI Historic, Aegean, Xerxes, Code2001, sans-serif;
}
.Xpeo, .Xpeo * {
font-style: normal;
}
/* Sumero-Akkadian cuneiform */
.Xsux {
font-family: Akkadian, FreeIdgSerif, CuneiformComposite, Segoe UI Historic, sans-serif; /* Neo-Assyrian form */
/* font-family: FreeIdgSerif, Akkadian, CuneiformComposite, Segoe UI Historic, sans-serif; */ /* Old Assyrian form */
/* font-family: Akkadian, CuneiformComposite, FreeIdgSerif, Segoe UI Historic, sans-serif; /* /* Neo-Sumerian form */
/* font-family: Akkadian, CuneiformComposite, FreeIdgSerif, Segoe UI Historic, sans-serif; /* /* Classical Sumerian form */
font-size: 125%;
}
.Xsux, .Xsux * {
font-style: normal;
font-weight: normal;
}
/* Yi */
.Yiii, .Yiii * {
font-style: normal;
}
/* Mathematical notation */
.Zmth, .Zmth * {
font-style: normal;
}
/* Symbols */
.Zsym {
font-family: Symbola, sans-serif;
font-size: 150%;
}
.Zsym, .Zsym * {
font-style: normal;
}
/* Rumi (Malay) numerals */
.Ruminumerals {
font-size:1.2em;
}
/*
Multilingual writing systems and notations
*/
/* English Phonemic Representation (AHD) */
.enPR {
font-family: Arial Unicode MS, Lucida Grande, Gentium, Gentium Alternative, TITUS Cyberbit Basic, Code2000, Lucida Sans Unicode, sans-serif;
font-family /**/:inherit;
}
/* International Phonetic Alphabet */
.IPA, .IPAchar {
font-family: Gentium, GentiumAlt, DejaVu Sans, Segoe UI, Lucida Grande, Charis SIL, Doulos SIL, TITUS Cyberbit Basic, Code2000, Lucida Sans Unicode, sans-serif;
font-size: 110%;
}
.IPA, .IPA *, .IPAchar, .IPAchar * {
font-style: normal;
}
/* Musical notation */
.musical {
font-family: Musica, 'Musical Symbols', Euterpe, sans-serif;
font-size: 1.4em;
}
.musical, .musical * {
font-style: normal;
}
/* Ruby text (furigana)
The traditional value and browser default is 50%. Used in {{JAruby}}.
The child selector > is required to override Webkit’s base style.
*/
ruby > rt,
ruby > rp { font-size: 50%; }
/* A kludge that lets the members of [[:Category:Redirected combining characters]] be displayed. */
body.page-Category_Combining_characters div#mw-pages li,
body.page-Category_Redirected_combining_characters div#mw-pages li,
body.page-Category_IPA_combining_characters div#mw-pages li {
letter-spacing: 0.3em;
}
/* Tabbed Languages support */
#languageLinks .selectedTab a {
font-size: 19px;
color: #000;
padding: 6px;
display: block;
border-left: 1px solid #CCC;
border-bottom: 1px solid #CCC;
margin-bottom: -3px;
background-color: #fff;
margin-right: -6px;
position: relative;
border-top: 1px solid #CCC;
white-space: nowrap;
}
#languageLinks .unselectedTab a {
font-size: 16px;
color: #929292;
padding: 6px;
display: block;
border-left: 1px solid #CCC;
border-top: 1px solid #CCC;
border-bottom: 1px solid #CCC;
margin-bottom: -3px;
margin-left: 15px;
margin-right: -5px;
white-space: nowrap;
background-color: #F6F6F6;
}
#languageLinks tr td {
padding: 0px;
}
tr td.languageContainer {
padding-left: 8px;
padding-bottom: 10px;
padding-right: 8px;
border: 1px solid #CCC;
vertical-align: top;
width: 100%;
}
.unselectedtab {
margin-left: 5px;
}
.editlangsection {
margin-top: -13px;
margin-right: 5px;
border: 1px solid #CCC;
margin-bottom: -2px;
border-bottom-width: 0px;
-webkit-border-top-left-radius: 5px;
-webkit-border-top-right-radius: 5px;
-moz-border-radius-topleft: 5px;
-moz-border-radius-topright: 5px;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
color: white;
line-height: 14px;
font-size: 12px;
padding: 0px 7px;
text-align: center;
clear: both;
background-color: white;
float: right;
}
#languageLinks a.addLanguageButton {
font-size: 12px;
padding: 3px 6px;
}
@media screen and (max-width:36em) {
#tabstable>tbody>tr>td {
display: block;
float: left;
width: 100%;
}
#languageLinks tr {
display: block;
float: left;
margin-bottom: -3px;
margin-left: -5px;
margin-top: 5px;
}
#languageLinks .unselectedTab a {
margin-left: 0;
margin-right: 5px;
border-right: 1px solid #CCC;
}
#languageLinks .selectedTab a {
margin-left: 0;
margin-right: 5px;
border-right: 1px solid #CCC;
border-bottom: 1px solid #FFF;
}
#tabstable {
width: 100%;
}
#languageLinks a.addLanguageButton {
margin-top: 2px;
margin-bottom: 1px;
}
.editlangsection {
border-bottom-width: 1px;
}
}
/* Grease Pit edit button fix */
.page-Wiktionary_Grease_pit.skin-vector #ca-edit {
display: none;
}
/* {{zh-hanzi-box}} and [[Module:zh-hanzi-box]] */
table.zh-hanzi-box {
float: right;
margin: 0 0 1em 1em;
border-collapse: collapse;
text-align: center;
}
table.zh-hanzi-box th {
padding: 0.5em;
border: 1px solid #aaa;
background: #dfefff;
font-weight: normal;
font-size: smaller;
}
table.zh-hanzi-box td {
padding: 0.5em;
border: 1px solid #aaa;
font-size: x-large;
}
/* Romanization tables
---------- */
table.romanization {
clear: both;
background: white;
white-space: nowrap;
border-collapse: collapse;
border: 1px solid white;
vertical-align: baseline;
text-align: center;
}
table.romanization th,
table.romanization td {
padding: 0.25em;
border: 1px solid white;
}
table.romanization th {
background: rgb(87%, 91%, 96%);
}
table.romanization tr.romanization-source td {
background: rgba(87%, 91%, 96%, 0.5);
}
table.romanization td,
table.romanization tr.romanization-target td {
background: rgb(90%, 90%, 90%);
}
/* -----
end Romanization tables */
/* Definition dates, in {{defdate}} */
.defdate { font-size: smaller; }
/* unit tests filter */
table.unit-tests.unit-tests-hide-passing tr.unit-test-pass {
display: none;
}
table.unit-tests th.unit-tests-img-corner {
background: #def;
min-width: 1em;
}
table.unit-tests.unit-tests-hide-passing th.unit-tests-img-corner {
background: red;
}
/* multi-column lists */
li {
column-break-inside: avoid;
page-break-inside: avoid;
break-inside: avoid;
-webkit-column-break-inside: avoid;
-webkit-page-break-inside: avoid;
-webkit-break-inside: avoid;
-o-column-break-inside: avoid;
-o-page-break-inside: avoid;
-o-break-inside: avoid;
-moz-column-break-inside: avoid;
-moz-page-break-inside: avoid;
-moz-break-inside: avoid;
}
/* {{shortcut}} */
.shortcut-box,
.category-edit-box {
border: 1px solid #aaa;
color: black;
background: #f9f9f9;
margin: 0 0 .5em 1em;
text-align: center;
padding: 5px;
float: right;
clear: both;
font-weight: bold;
font-size: smaller;
}
/* Display tabs with 4 spaces, see [[phab:T59824]] and [[phab:T59825]] */
textarea#wpTextbox1 + div:last-child, /* workaround for [[mw:User:Remember the dot/Syntax highlighter]] */
textarea, pre, code, .mw-highlight {
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
}
b .selflink,
strong .selflink {
font-weight: inherit;
}
/* archive templates */
.archive-box {
border: 1px #AAAAAA solid;
padding: 3px 10px;
margin-bottom: 1em;
color: black;
background: #F9F9F9;
}
.archive-box.archive-passed {
color: black;
background: #F3F9FF;
}
.archive-box.archive-failed {
color: black;
background: #F9F3FF;
}
tr:target {
background: #def;
}
.character-sample {
display: inline-block;
min-width: 1em;
font-size: 300%;
text-align: center;
background: rgba(0, 0, 0, 0.1);
}
.character-sample > :only-child {
display: block;
}
.character-sample-primary{
display: inline-table;
min-width: 1.1em;
font-size: 300%;
line-height: 110%;
text-align: center;
background: rgba(0, 0, 0, 0.1);
height: 1.1em;
}
.character-sample-secondary {
display: inline-block;
min-width: 1em;
text-align: center;
}
table.symboltable td {
font-family: DejaVu Sans, Symbola, Quivira, sans-serif;
text-align: center;
}
#firstHeading var, .headword var {
color: #888;
}
body[class*="page-Template_table"] .CategoryTreeLabel {
font-style:inherit;
}
body[class*="page-Template_table"] .CategoryTreeLabel:before {
content:"•";
padding-right:0.75em;
}
/* Temporary kludge to be used because categoryTree is generating a newline. This CSS line should be removed after the developers fix it. */
.CategoryTreeTag + p br:first-child{display:none;}
.vsShow {
display: none;
}
/* Default style for hypothetical inflections -- currently italic. */
.hypothetical {
font-style: italic;
}
/* Style for entries using deprecated templates */
.deprecated {
color: olivedrab;
}
.deprecated a {
color: darkgreen;
}
/* ////////////////////////////////// */
/* ISPITATI GDJE SE DONJI CSS KORISTI */
/* ////////////////////////////////// */
/* Stil template za spajanje i dijeljenje */
.messagebox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
width: 80%;
margin: 0 auto 1em auto;
padding: .2em;
text-align: justify;
}
.messagebox.merge {
border: 1px solid #cf9fff;
background-color: #f5edf5;
text-align: center;
}
/* Stil infokutija */
.infobox {
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
color: black;
margin-bottom: 0.5em;
margin-left: 1em;
padding: 0.2em;
float: right;
clear: right;
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
.infobox.sisterproject {
width: 20em;
font-size: 90%;
}
/* Obavještenja */
.notice {
text-align: justify;
margin: 1em;
padding: 0.2em;
}
#disambig {
border-top: 3px double #cccccc;
border-bottom: 3px double #cccccc;
}
#spoiler {
border-top: 2px solid #ddd;
border-bottom:2px solid #ddd;
}
/* Metadata */
table.metadata {
border: 1px solid #aaaaaa;
display: none;
speak: none;
}
.metadata-label {
color: #aaaaaa;
}
/* ///////////////////// */
/* plainlinksneverexpand */
/* ///////////////////// */
/*Add formatting to make sure that "external references" from [[Template:Ref]] do
not get URL expansion, not even when printed. The mechanism up to MediaWiki 1.4 was
that the HTML code contained a SPAN following the anchor A; this SPAN had the class
"urlexpansion", which was not displayed on screen, but was shown when the medium was
"print". The rules below ensure (a) that there is no extra padding to the right of
the anchor (displayed as "[<number>]"), (b) that there is no "external link arrow" for
the link, and (c) that this SPAN of class "urlexpansion" is never shown.
[[Korisnik:Srdjan m|Srdjan m]] ([[Razgovor s korisnikom:Srdjan m|razgovor]]) 19:15, 4 mart 2017 (KSV)
*/
.plainlinksneverexpand {
background: none ! important;
padding: 0 ! important;
}
.plainlinksneverexpand .urlexpansion {
display : none ! important;
}
/* Make sure that ext links displayed within "plainlinksneverexpand" don't get
the arrow...
*/
.plainlinksneverexpand a {
background: none !important;
padding: 0 !important
}
/* With MediaWiki 1.5, the mechanism has changed: instead of a SPAN of class "urlexpansion"
following the anchor A, the anchor itself now has class "external autonumber" and the
expansion is inserted when printing (see the common printing style sheet at
//en.wikipedia.org/w/skins/common/commonPrint.css) using the ":after" pseudo-
element of CSS. We have to switch this off for links due to Template:Ref!
[[Korisnik:Srdjan m|Srdjan m]] ([[Razgovor s korisnikom:Srdjan m|razgovor]]) 19:15, 4 mart 2017 (KSV)
*/
.plainlinksneverexpand a.external.text:after {
display: none !important;
}
.plainlinksneverexpand a.external.autonumber:after {
display: none !important;
}
fh8v23zskr9ww89xu0m95vharq5mayn
Šablon:TopBox
10
2985
72822
8193
2025-05-01T22:29:33Z
Aca
2473
72822
wikitext
text/x-wiki
<includeonly><div style="width:{{{width|100%}}}"><div style="height:8px;border:1px solid #{{#switch:{{{1|}}}|
bleu=8898BF|vert=97BF87|jaune=AAAA66|orange=AA8833|
violet=7755AA|saumon=AA8866|sable=AA9955|vertmoyen=88BB55|
bleufoncé=1144AA|rouge=AA8866|#default=AAAAAA
}};-moz-border-radius-topright:8px;-moz-border-radius-topleft:8px;background:#{{#switch:{{{1|}}}|
bleu=C8D8FF|vert=D7FFC7|jaune=FFFFB9|orange=FFDD88|
violet=C9AEF1|saumon=FBDFBE|sable=F1E2AE|vertmoyen=99CC66|
bleufoncé=003399|rouge=FFDAB9|écarlate=FF3333|#default=E0E0E0
}};font-size:1px;"></div>
<div style="font-size:small;margin-bottom:1.5em;border:1px solid #{{#switch:{{{1|}}}|
bleu=8898BF|vert=97BF87|jaune=AAAA66|orange=AA8833|
violet=7755AA|saumon=AA8866|sable=AA9955|vertmoyen=88BB55|
bleufoncé=1144AA|rouge=AA8866|écarlate=AAAAAA|#default=AAAAAA
}};border-top:0;background:{{{fond|transparent}}};padding:5px;"></includeonly><noinclude>
[[Kategorija:Šabloni]]
</noinclude>
4i8ihi30l5n9tw4lgwtaerkkcypilmh
Šablon:BottomBox
10
2986
72818
8187
2025-05-01T22:27:59Z
Aca
2473
72818
wikitext
text/x-wiki
<includeonly></div></div></includeonly><noinclude>
[[Kategorija:Šabloni]]
</noinclude>
6pukvjpn5msprlck6edvt3yycdio6ie
Šablon:Korisnik mk-2
10
3029
8239
2006-07-18T04:12:01Z
Dijan
16
8239
wikitext
text/x-wiki
{{Babel field 2|mk|Корисникот '''[[:Kategorija:Korisnik mk-2|средно]]''' зборува '''[[:Kategorija:Korisnik mk|македонски]]'''.}}
2b0h13ey9y8inl8afhjmim96pfc3g80
Šablon:KorisniciGovore
10
3051
72798
8291
2025-05-01T22:26:25Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72798
wikitext
text/x-wiki
<div style="float:left;border:solid #99b3ff 1px;margin:1px;">
{| cellspacing="0" style="width:260px;background:#e0e8ff;"
| style="width:45px;height:45px;background:#99b3ff;text-align:center;font-size:14pt;" | '''{{{1}}}'''
| style="font-size:8pt;padding:4pt;line-height:1.25em;text-align:center;" | {{{3}}}<hr>Ovi korisnici govore '''[[{{{2}}}]]'''.
|}</div>
<br clear="all"><noinclude>
[[Kategorija:Šabloni]]
</noinclude>
92b6vq8axwo3i4m4azvy9y7d2j4iw6w
Šablon:Korisnik de
10
3052
8297
8296
2006-07-23T22:18:37Z
Dijan
16
8297
wikitext
text/x-wiki
{{Babel field|de|Dieser Benutzer spricht '''[[:Kategorija:Korisnik de|Deutsch]]''' als '''[[:Kategorija:Korisnik de-M|Muttersprache]]'''.}}
d5mvq1inhxhzrp8swj1p1a3ell1wm3k
Šablon:Korisnik de-3
10
3053
8299
8298
2006-07-23T22:20:48Z
Dijan
16
8299
wikitext
text/x-wiki
{{Babel field 3|de|Dieser Benutzer hat '''[[:Kategorija:Korisnik de-3|sehr gute]]''' '''[[:Kategorija:Korisnik de|Deutschkenntnisse]]'''.}}
8f8uap28clzjkgr6yfq9r5bdvwfodsi
Šablon:Korisnik ksh
10
3055
8302
2006-07-23T22:30:18Z
Dijan
16
8302
wikitext
text/x-wiki
{{Babel field|ksh|Hee däm Medtmaacher sing '''[[:Kategorija:Korisnik ksh-M|Mottoshprooch]]''' eß '''[[:Kategorija:Korisnik ksh|Kölsch]]'''.}}
ewfktqq5taij8mmcpkirlydzzcp18xf
Kategorija:Korisnik ksh-M
14
3056
65932
52038
2017-07-03T21:03:47Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65932
wikitext
text/x-wiki
[[Kategorija:Korisnik ksh]]
rmrgjygcow47rqrxroob9yx7a8otlre
Kategorija:Korisnik ksh
14
3057
65927
42852
2017-07-03T21:02:58Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65927
wikitext
text/x-wiki
[[Kategorija:Korisnički jezici|ksh]]
e7xf4yonqr0vkid6awoq1x5gqy9lomn
Šablon:Babel field 0
10
3058
72775
15121
2025-05-01T22:25:19Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72775
wikitext
text/x-wiki
<div style="float:left;border:solid #FFB3B3 1px;margin:1px">
{| cellspacing="0" style="width:238px;background:#FFE0E8"
| style="width:45px;height:45px;background:#FFB3B3;text-align:center;font-size:14pt" | '''{{{1}}}-0'''
| style="font-size:8pt;padding:4pt;line-height:1.25em" dir="{{{dir|ltr}}}" | {{{2}}}[[Kategorija:Korisnik {{{1}}}-0|{{PAGENAME}}]]
|}</div><noinclude>
[[Kategorija:Šabloni]]
</noinclude>
a8um1otw2er3v3ihan3zpelsd2l8d4c
Šablon:Korisnik bs-0
10
3059
8307
2006-07-23T22:43:32Z
Dijan
16
8307
wikitext
text/x-wiki
{{Babel field 0|bs|Ovaj korisnik '''[[:Kategorija:Korisnik bs-0|ne razumije]]''' '''[[:Kategorija:Korisnik bs|bosanski]]''' jezik (ili ga razumije, ali sa velikom teškoćom).}}
3f8va8zc9bqodbhrpr1bivqgfl4qay3
Kategorija:Korisnik bs-0
14
3060
65699
51818
2017-07-03T20:19:41Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65699
wikitext
text/x-wiki
[[Kategorija:Korisnik bs]]
4xxhfybcy0gl2sn8xtahv20wc1mx2i9
Kategorija:Korisnik la-2
14
3066
65947
56438
2017-07-03T21:06:15Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65947
wikitext
text/x-wiki
[[Kategorija:Korisnik la]]
2fg6vshl9c2uourr4j7ol5wqggesbp8
Šablon:Korisnik la-2
10
3069
8319
2006-07-24T08:11:49Z
Dijan
16
8319
wikitext
text/x-wiki
{{Babel field 2|la|Hic usuarius '''[[:Kategorija:Korisnik la-2|media]]''' '''[[:Kategorija:Korisnik la|latinitate]]''' contribuere potest.}}
8irsvb0lpovtko7o2eqbzk03i5ivbpc
Kategorija:Korisnik ru-1
14
3072
66072
56448
2017-07-03T21:30:05Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66072
wikitext
text/x-wiki
[[Kategorija:Korisnik ru]]
bfjvdhzoo49qchkop1pd1txndq3c73z
Kategorija:Korisnik ru-2
14
3073
66073
53392
2017-07-03T21:30:36Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66073
wikitext
text/x-wiki
[[Kategorija:Korisnik ru]]
bfjvdhzoo49qchkop1pd1txndq3c73z
Šablon:Korisnik ru-1
10
3078
8328
2006-07-24T08:25:48Z
Dijan
16
8328
wikitext
text/x-wiki
{{Babel field 1|ru|Этот участник владеет '''[[:Kategorija:Korisnik ru|русским языком]]''' на '''[[:Kategorija:Korisnik ru-1|начальном уровне]]'''.}}
r546a9rd408lsbnwri4qta5w2akclek
Šablon:Korisnik ru-2
10
3079
8329
2006-07-24T08:27:04Z
Dijan
16
8329
wikitext
text/x-wiki
{{Babel field 2|ru|Этот участник '''[[:Kategorija:Korisnik ru-2|хорошо]]''' знает '''[[:Kategorija:Korisnik ru|русский язык]]'''.}}
nfqwx7liabcv9x4e5ia3coplq27jja6
Šablon:Korisnik nds-1
10
3082
8333
2006-07-24T08:42:20Z
Dijan
16
8333
wikitext
text/x-wiki
{{Babel field 1|nds|Disse Bruker hett '''[[:Kategorija:Korisnik nds-1|grundleggen]]''' '''[[:Kategorija:Korisnik nds|Plattdüütsch]]'''-Kenntnis.}}
st4c7vgk0bdvih7hm9tl4ixr8k8a47j
Kategorija:Korisnik nds
14
3083
66017
56440
2017-07-03T21:18:54Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66017
wikitext
text/x-wiki
[[Kategorija:Korisnički jezici|nds]]
8oujzyhnqbebdbfcit7ytzhc6pfqzpt
Kategorija:Korisnik nds-1
14
3084
66018
56439
2017-07-03T21:19:04Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66018
wikitext
text/x-wiki
[[Kategorija:Korisnik nds]]
6vgo8be0vrx1ulb7xi25bcmidv61j45
Kategorija:Korisnik als
14
3093
65620
52843
2017-07-03T20:03:58Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65620
wikitext
text/x-wiki
[[Kategorija:Korisnički jezici|als]]
s8w8adeu58oph0j34mjs42gnbqaddza
Kategorija:Korisnik als-1
14
3096
65621
51994
2017-07-03T20:04:08Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65621
wikitext
text/x-wiki
[[Kategorija:Korisnik als]]
0w0inpgbfhppfipjmish96vgnyv50qy
Šablon:Korisnik als-1
10
3100
8355
2006-07-24T09:06:25Z
Dijan
16
8355
wikitext
text/x-wiki
{{Babel field 1|als|Dä User verfüegt über '''[[:Kategorija:Korisnik als-1|Basis]]'''-'''[[:Kategorija:Korisnik als|Kenntnis vom Alemannische]]'''.}}
jgzmcjp74xdhkfksatlqba85t1wjoh8
Kategorija:Korisnik lb
14
3104
65951
42872
2017-07-03T21:06:55Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65951
wikitext
text/x-wiki
[[Kategorija:Korisnički jezici|lb]]
m32nlw8v7z41qevcub54pk1cdme46ls
Kategorija:Korisnik lb-1
14
3105
65952
52042
2017-07-03T21:07:05Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65952
wikitext
text/x-wiki
[[Kategorija:Korisnik lb]]
d3jgw81esn4mrn22w1hbl17x11at9n5
Šablon:Korisnik lb-1
10
3111
8370
8368
2006-07-24T09:21:30Z
Dijan
16
8370
wikitext
text/x-wiki
{{Babel field 1|lb|Dëse Benotzer ka '''[[:Kategorija:Korisnik lb-1|mat Grondkenntnisser]]''' vun der '''[[:Kategorija:Korisnik lb|Lëtzebuerger Sprooch]]''' zum Projet bäidroen.}}
mb37mqa1xude9bv6035cbaa7mv1x6f2
Kategorija:Korisnik li-1
14
3117
65958
52048
2017-07-03T21:08:05Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65958
wikitext
text/x-wiki
[[Kategorija:Korisnik li]]
ph54esaf22jc0y59umub1ra3przh35f
Kategorija:Korisnik li
14
3121
65957
51952
2017-07-03T21:07:55Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65957
wikitext
text/x-wiki
[[Kategorija:Korisnički jezici|li]]
pte98sukvrh5ak68g743ano2ohbsocv
Šablon:Korisnik li-1
10
3122
8380
2006-07-24T09:29:11Z
Dijan
16
8380
wikitext
text/x-wiki
{{Babel field 1|li|Deze gebroeker haet 'n '''[[:Kategorija:Korisnik li-1|baziskinnes]]''' van 't '''[[:Kategorija:Korisnik li|Limburgs]]'''.}}
dthaspvjx08byygg1s5eeclcwja3p4s
Kategorija:Korisnik af-1
14
3125
65615
52849
2017-07-03T20:03:10Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65615
wikitext
text/x-wiki
[[Kategorija:Korisnik af]]
7qxm5jutvthcrn1xic1nvg6cxdwe9jw
Šablon:Korisnik af-1
10
3131
8389
2006-07-24T09:38:44Z
Dijan
16
8389
wikitext
text/x-wiki
{{Babel field 1|af|Hierdie gebruiker het 'n '''[[:Kategorija:Korisnik af-1|basiese]]''' begrip van '''[[:Kategorija:Korisnik af|Afrikaans]]'''.}}
c27nhlr5gxqdxujs2qr1chy81z4fv4e
Kategorija:Korisnik nl-1
14
3135
66030
45650
2017-07-03T21:21:05Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66030
wikitext
text/x-wiki
[[Kategorija:Korisnik nl]]
6be31yozivph94ct0n3x3xmpb29b9rr
Šablon:Korisnik nl-1
10
3141
8399
2006-07-24T09:45:28Z
Dijan
16
8399
wikitext
text/x-wiki
{{Babel field 1|nl|Deze gebruiker heeft een '''[[:Kategorija:Korisnik nl-1|beginnende kennis]]''' van het '''[[:Kategorija:Korisnik nl|Nederlands]]'''.}}
lccosyw38ge9vlo5y9wn9z9v65quvcj
Kategorija:Korisnik ar-1
14
3150
65639
53320
2017-07-03T20:07:48Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65639
wikitext
text/x-wiki
[[Kategorija:Korisnik ar]]
92m83oiou8oprqg5t4vlr8fhk7y6lzb
Šablon:Korisnik ar-1
10
3176
8453
8447
2006-07-24T11:39:23Z
Dijan
16
8453
wikitext
text/x-wiki
<div style="float:left;border:solid #C0C8FF 1px;margin:1px">
{| cellspacing="0" style="width:238px;background:#F0F8FF"
| style="width:45px;height:45px;background:#C0C8FF;text-align:center;font-size:14pt" | '''ar-1'''
| style="font-size:8pt;padding:4pt;line-height:1.25em" dir="{{{dir|rtl}}}" | {{ARkar|هذا المستخدم يعرف [[:Kategorija:Korisnik ar-1|مبادئ]] [[:Kategorija:Korisnik ar|العربية]].}}[[Kategorija:Korisnik ar|{{PAGENAME}}]][[Kategorija:Korisnik ar-1|{{PAGENAME}}]]
|}</div>
43ul3yr7xd7o02oaomblx0fb6nj7rig
Šablon:Korisnik ur-2
10
3182
8462
8458
2006-07-24T12:09:40Z
Dijan
16
Stranica "[[Šablon:Korisnik ur-2]]" je zaštićena [edit=autoconfirmed:move=autoconfirmed]
8462
wikitext
text/x-wiki
<div style="float:left;border:solid #77E0E8 1px;margin:1px">
{| cellspacing="0" style="width:238px;background:#D0F8FF"
| style="width:45px;height:45px;background:#77E0E8;text-align:center;font-size:14pt" | '''ur-2'''
| style="font-size:8pt;padding:4pt;line-height:1.25em" dir="{{{dir|rtl}}}" | {{URkar|اس کاربر کو [[:Kategorija:Korisnik ur|اردو زبان]] [[:Kategorija:Korisnik ur-2|متوسط]] طور پر معلوم ہے.}}[[Kategorija:Korisnik ur|{{PAGENAME}}]][[Kategorija:Korisnik ur-2|{{PAGENAME}}]]
|}</div>
1wggrcyswtnhurrgzp1pl71kxj7dsth
Kategorija:Korisnik el-1
14
3292
65766
52869
2017-07-03T20:30:53Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65766
wikitext
text/x-wiki
[[Kategorija:Korisnik el]]
6br3nks9k6pfcoq7h53fyl65hmzorjg
Kategorija:Korisnik fa-2
14
3313
65797
54205
2017-07-03T20:40:34Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65797
wikitext
text/x-wiki
[[Kategorija:Korisnik fa]]
p7ekthn23pl1e3tgq53ct9h03k6pagw
Kategorija:Korisnik it-1
14
3367
65880
56434
2017-07-03T20:54:56Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65880
wikitext
text/x-wiki
[[Kategorija:Korisnik it]]
31xlr1y2mrq7vcw5rvi1wh2flzem4xs
Kategorija:Korisnik it-2
14
3368
65881
53358
2017-07-03T20:55:08Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65881
wikitext
text/x-wiki
[[Kategorija:Korisnik it]]
31xlr1y2mrq7vcw5rvi1wh2flzem4xs
Kategorija:Korisnik pl-M
14
3465
66052
56444
2017-07-03T21:24:45Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66052
wikitext
text/x-wiki
[[Kategorija:Korisnik pl]]
dqykc2xgvp7o1pjjkd0eycpmgge6deg
Kategorija:Korisnik sl-2
14
3502
66105
54231
2017-07-03T21:40:15Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66105
wikitext
text/x-wiki
[[Kategorija:Korisnik sl]]
991fbp52487unsqpelonad2rn5cslxt
Šablon:Korisnik fa-2
10
3573
22740
8915
2012-03-11T18:33:47Z
Dijan
16
22740
wikitext
text/x-wiki
<div style="float:left;border:solid #77E0E8 1px;margin:1px;">
{| cellspacing="0" style="width:238px;background:#D0F8FF;"
| style="width:45px;height:45px;background:#77E0E8;text-align:center;font-size:14pt;" | '''fa-2'''
| style="font-size:8pt;padding:4pt;line-height:1.25em;" dir="{{{dir|rtl}}}" | {{FAkar|دانش [[:Kategorija:Korisnik fa|فارسی]] این کاربر درسطح [[:Kategorija:Korisnik fa-2|متوسط]] است.}}[[Kategorija:Korisnik fa|{{PAGENAME}}]][[Kategorija:Korisnik fa-2|{{PAGENAME}}]]
|}
</div>
bds3ns0j3aek5j8xs0thc0c2753ebfx
MediaWiki:Monobook.css
8
3621
9595
9587
2006-11-22T22:25:14Z
Dijan
16
Replacing page with '/*
*/'
9595
css
text/css
/*
*/
9gnui3h2y4i32g7fstzce25issl32jt
Šablon:Babel-18
10
3709
72782
58644
2025-05-01T22:25:28Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72782
wikitext
text/x-wiki
{| style="float: right; margin-left: 1em; margin-bottom: 0.5em; width: 242px; border: #99B3FF solid 1px; clear: right"
|-
| style="text-align: center" | '''[[Wikirječnik:Babel]]'''
|-
| {{Korisnik {{{1}}}}}
|-
| {{Korisnik {{{2}}}}}
|-
| {{Korisnik {{{3}}}}}
|-
| {{Korisnik {{{4}}}}}
|-
| {{Korisnik {{{5}}}}}
|-
| {{Korisnik {{{6}}}}}
|-
| {{Korisnik {{{7}}}}}
|-
| {{Korisnik {{{8}}}}}
|-
| {{Korisnik {{{9}}}}}
|-
| {{Korisnik {{{10}}}}}
|-
| {{Korisnik {{{11}}}}}
|-
| {{Korisnik {{{12}}}}}
|-
| {{Korisnik {{{13}}}}}
|-
| {{Korisnik {{{14}}}}}
|-
| {{Korisnik {{{15}}}}}
|-
| {{Korisnik {{{16}}}}}
|-
| {{Korisnik {{{17}}}}}
|-
| {{Korisnik {{{18}}}}}
|-
| style="text-align: center" | [[:Kategorija:Korisnički jezici|Pretražite korisničke jezike]]
|}<noinclude>
[[Kategorija:Šabloni]]
</noinclude>
gli3ybh99m9xqcxv8rzfzcluf3i3z0r
Šablon:Korisnik sxu-1
10
3716
9375
2006-10-07T06:14:27Z
4.154.70.193
9375
wikitext
text/x-wiki
{{Babel field 1|sxu|Dor Benutzor hior gann krad ma '''[[:Kategorija:Korisnik sxu-1|ä ganz gleenes bissl]]''' '''[[:Kategorija:Korisnik sxu|Sächs'sch]]''' spräschn, 's is awwor eing'sch nisch dor Räde wärt.}}
m9t1nttbpmxsicohovyaoi133j1230p
Kategorija:Korisnik sxu-1
14
3717
66134
43001
2017-07-03T21:45:06Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66134
wikitext
text/x-wiki
[[Kategorija:Korisnik sxu]]
e04619ph49vz8zhd64cg7ezj75rl8ew
Kategorija:Korisnik sxu
14
3718
66133
43002
2017-07-03T21:44:56Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66133
wikitext
text/x-wiki
[[Kategorija:Korisnički jezici|sxu]]
mgu4byuic11qnufiz6rxduc2b4tp375
Kategorija:Šabloni konjugacije
14
3930
58188
10312
2017-02-22T17:30:17Z
Srđan
1899
new key for [[Category:Šabloni]]: "Konjugacija" using [[Help:Gadget-HotCat|HotCat]]
58188
wikitext
text/x-wiki
[[Kategorija:Šabloni|Konjugacija]]
5auzfiqhgnecgshvk9kuupjm95ox4wf
Šablon:Konjugacija
10
3931
20674
10325
2011-11-27T11:05:43Z
Barishan
287
20674
wikitext
text/x-wiki
{| id=konjugacija style="text-align:center; border:1px solid #aaaaaa; font-size:11px"
|-
| style="height:3em" colspan=8 bgcolor=#d9ebff | '''Infinitiv: {{{infinitiv}}}'''
|- bgcolor=#d9ebff
|- bgcolor=#d5d5ff
| colspan=2 | '''broj'''
| colspan=3 | '''jednina'''
| colspan=3 | '''množina'''
|- bgcolor=#d5d5ff
| colspan=2 | '''lice'''
| width=12.5% | '''prvo'''
| width=12.5% | '''drugo'''
| width=12.5% | '''treće'''
| width=12.5% | '''prvo'''
| width=12.5% | '''drugo'''
| width=12.5% | '''treće'''
|- bgcolor=#ccddff
| colspan=2 | '''Gramatičko vrijeme / način'''
| '''ja'''
| '''ti'''
| '''on''' / '''ona'''<br/>'''ono'''
| '''mi'''
| '''vi'''
| '''oni''' / '''one'''<br/>'''ona'''
|-
| rowspan=1 bgcolor=#ccddff | '''Sadašnjost'''
| style="height=3em" bgcolor=#ccddff | '''Prezent'''
| {{{vrm.p.1j}}}
| {{{vrm.p.2j}}}
| {{{vrm.p.3j}}}
| {{{vrm.p.1mn}}}
| {{{vrm.p.2mn}}}
| {{{vrm.p.3mn}}}
|-
| rowspan=2 bgcolor=#ccddff | '''Budućnost'''
| style="height=3em" bgcolor=#ccddff | '''Futur I'''
| {{{vrm.f1.1j}}}
| {{{vrm.f1.2j}}}
| {{{vrm.f1.3j}}}
| {{{vrm.f1.1mn}}}
| {{{vrm.f1.2mn}}}
| {{{vrm.f1.3mn}}}
|-
| style="height:3em" bgcolor=#ccddff | '''Futur II'''
| {{{vrm.f2.1j}}}
| {{{vrm.f2.2j}}}
| {{{vrm.f2.3j}}}
| {{{vrm.f2.1mn}}}
| {{{vrm.f2.2mn}}}
| {{{vrm.f2.3mn}}}
|-
| rowspan=4 bgcolor=#ccddff | '''Prošlost'''
| style="height=3em" bgcolor=#ccddff | '''Perfekt'''
| {{{vrm.per.1j}}}
| {{{vrm.per.2j}}}
| {{{vrm.per.3j}}}
| {{{vrm.per.1mn}}}
| {{{vrm.per.2mn}}}
| {{{vrm.per.3mn}}}
|-
| style="height:3em" bgcolor=#ccddff | '''Pluskvamperfekt'''
| {{{vrm.pkp.1j}}}
| {{{vrm.pkp.2j}}}
| {{{vrm.pkp.3j}}}
| {{{vrm.pkp.1mn}}}
| {{{vrm.pkp.2mn}}}
| {{{vrm.pkp.3mn}}}
|-
| style="height:3em" bgcolor=#ccddff | '''Aorist'''
| {{{vrm.aor.1j}}}
| {{{vrm.aor.2j}}}
| {{{vrm.aor.3j}}}
| {{{vrm.aor.1mn}}}
| {{{vrm.aor.2mn}}}
| {{{vrm.aor.3mn}}}
|-
| style="height:3em" bgcolor=#ccddff | '''Imperfekt'''
| {{{vrm.imp.1j}}}
| {{{vrm.imp.2j}}}
| {{{vrm.imp.3j}}}
| {{{vrm.imp.1mn}}}
| {{{vrm.imp.2mn}}}
| {{{vrm.imp.3mn}}}
|-
| colspan=2 style="height:3em" bgcolor=#ccddff | '''Kondicional I'''
| {{{vrm.kn1.1j}}}
| {{{vrm.kn1.2j}}}
| {{{vrm.kn1.3j}}}
| {{{vrm.kn1.1mn}}}
| {{{vrm.kn1.2mn}}}
| {{{vrm.kn1.3mn}}}
|-
| colspan=2 style="height:3em" bgcolor=#ccddff | '''Kondicional II'''
| {{{vrm.kn2.1j}}}
| {{{vrm.kn2.2j}}}
| {{{vrm.kn2.3j}}}
| {{{vrm.kn2.1mn}}}
| {{{vrm.kn2.2mn}}}
| {{{vrm.kn2.3mn}}}
|-
| colspan=2 style="height:3em" bgcolor=#ccddff | '''Imperativ'''
| -
| {{{vrm.ipr.2j}}}
| {{{vrm.ipr.3j}}}
| {{{vrm.ipr.1mn}}}
| {{{vrm.ipr.2mn}}}
| {{{vrm.ipr.3mn}}}
|}
<noinclude>[[Kategorija:Šabloni konjugacije]]</noinclude>
tqmjng1t2zegpbxwhxhd86eqn7oddq2
Šablon:EL fontovi
10
4109
72820
10800
2025-05-01T22:28:24Z
Aca
2473
72820
wikitext
text/x-wiki
New Athena Unicode, Athena, Gentium, Code2000, Palatino Linotype, Serif<noinclude>
[[Kategorija:Šabloni]]
</noinclude>
fdnghdf6tn7y95enf745akmiah9qx3n
Šablon:EL font veličina
10
4110
72819
10802
2025-05-01T22:28:09Z
Aca
2473
72819
wikitext
text/x-wiki
110%<noinclude>
[[Kategorija:Šabloni]]
</noinclude>
h95g7unzeo64uzzrut9qgdkhng11bn6
Šablon:ELkar
10
4111
72821
10804
2025-05-01T22:28:54Z
Aca
2473
+
72821
wikitext
text/x-wiki
<span class="EL" style="font-family:{{EL fontovi}}; font-family :inherit; font-size:{{EL font veličina}}; font-size :inherit">{{{1}}}</span><noinclude>
[[Kategorija:Šabloni]]
</noinclude>
dpphleybfs828tb4eiwi8yoee67trsh
Šablon:korisnik
10
4228
72813
66883
2025-05-01T22:26:48Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72813
wikitext
text/x-wiki
{| style="text-align:center; border: 1px solid #ffc9c9; background-color:#FFFFF3"
|- padding:1em;padding-top:0.5em;"
|style="font-size: 85%"|'''Ovo je korisnička stranica na Wikirječniku.'''
Ako ste pronašli ovu stranicu na nekom drugom sajtu izvan Wikirječnika, onda gledate kopiju prave stranice. Geldajte pažnju da ova stranica može biti zastarjela i moguće je da korisnik, kome ova stranica pripada, nema nikakvog udruženja sa sajtovima izvan Wikirječnika. Originalna stranica se nalazi na
http://bs.wiktionary.org/wiki/{{NAMESPACE}}:{{PAGENAMEE}}.
|[[Image:Wiktprintable_without_text.svg|60px|none|Wiki<!---->media Foundation]]
|}<noinclude>
</noinclude><noinclude>
[[Kategorija:Šabloni]]
</noinclude>
pofhxtvmm5ca1336fnq73xowzkoy2zo
Šablon:Korisnik hi-2
10
4229
10965
2007-04-09T16:27:44Z
Dijan
16
n
10965
wikitext
text/x-wiki
{{Babel field 2|hi|यह सभ्य '''[[:Kategorija:Korisnik hi|हिन्दी]]''' भाषामें '''[[:Kategorija:Korisnik hi-1|मध्यम]]''' कक्षा का प्रदान कर सकते हैं।}}
52gzmdm67uz9hnj0bn0w8cg1n8yhzfg
Šablon:Korisnik sl-2
10
4274
11088
2007-04-22T15:07:57Z
Dijan
16
sl
11088
wikitext
text/x-wiki
{{Babel field 2|sl|Uporabnik '''[[:Kategorija:Korisnik sl-2|srednje dobro]]''' govori '''[[:Kategorija:Korisnik sl|slovenščino]]'''.}}
3nqkejv2nf74qdopgqvbtmi1vuu0t3a
Šablon:delete
10
4355
72812
72670
2025-05-01T22:26:47Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72812
wikitext
text/x-wiki
{| style="margin:0.5em; padding:0.5em; background:#FEE; border:1px solid #999;"
|-
| [[Image:Icono aviso borrar.png|60px|left]]
| <big>'''This page has been nominated for speedy deletion.'''</big><br />The reason given is "{{{1}}}". If you disagree with its speedy deletion, please explain why on [[{{TALKPAGENAME}}|its talk page]]. If this page obviously does not meet the criteria for speedy deletion, or you intend to fix it, please remove this notice, but do not remove this notice from a page that you have created yourself.
<span class="plainlinks">''Administrators, remember to check [[Special:Whatlinkshere/{{FULLPAGENAME}}|if anything links here]] and [{{fullurl:{{FULLPAGENAME}}|action=history}} the page history] ([{{fullurl:{{FULLPAGENAME}}|diff=0}} last edit]) before [{{fullurl:{{FULLPAGENAME}}|action=delete}} deletion].''</span>
|}<includeonly>{{{category|[[Category:Candidates for speedy deletion]]}}}</includeonly><noinclude>
__EXPECTUNUSEDTEMPLATE__
[[bg:Шаблон:Изтриване]]
[[no:Mal:Hurtigslett]]
</noinclude><noinclude>
[[Kategorija:Šabloni]]
</noinclude>
suthc63tshnsvgf7aw5yubn4b8ksm2o
Šablon:style/yid
10
4356
72816
66885
2025-05-01T22:26:52Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72816
wikitext
text/x-wiki
<span style="font-size:{{{size|12pt}}};padding:4pt;line-height:1.25em; font-family: {{{font-family|'Times New Roman'}}};" dir="{{{dir|rtl}}}" >{{{yid|ײִדיש לעבט}}}</span>
<noinclude>
[[ab:Шаблон:style/yid]]
[[ak:Template:style/yid]]
[[as:Template:style/yid]]
[[av:Шаблон:style/yid]]
[[ba:Ҡалып:style/yid]]
[[bh:Template:style/yid]]
[[bi:Template:style/yid]]
[[bm:Modèle:style/yid]]
[[de:Vorlage:style/yid]]
[[ko:틀:style/yid]]
[[pt:Predefinição:style/yid]]
[[scn:Template:style/yid]]
[[sv:Mall:style/yid]]
[[xh:Template:style/yid]]
[[yo:Template:style/yid]]
[[za:Template:style/yid]]
</noinclude><noinclude>
[[Kategorija:Šabloni]]
</noinclude>
jdp9wrnph84bju4ef9jkz2rwxfnl3fk
Šablon:style/IPA
10
4357
72815
66886
2025-05-01T22:26:51Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72815
wikitext
text/x-wiki
<span style="white-space: font-size:{{{size|110%}}};padding:4pt;line-height:1.25em; font-family: {{{font-family|'Lucida Sans Unicode', 'Arial Unicode MS', Gentium, GentiumAlt, tahoma, Code2000, 'Doulos SIL', Gentium, 'TITUS Cyberbit Basic', 'Lucida Grande', 'DejaVu Sans', 'Bitstream Vera Sans', 'Bitstream Cyberbit', Arial, sans-serif}}};" dir="{{{dir|ltr}}}" >{{{IPA|/jidiʃ lɛbt/}}}</span>
<noinclude>
[[ab:Шаблон:style/IPA]]
[[ak:Template:style/IPA]]
[[as:Template:style/IPA]]
[[av:Шаблон:style/IPA]]
[[ba:Ҡалып:style/IPA]]
[[bh:Template:style/IPA]]
[[bi:Template:style/IPA]]
[[bm:Modèle:style/IPA]]
[[de:Vorlage:style/IPA]]
[[ko:틀:style/IPA]]
[[ku:Şablon:style/IPA]]
[[pt:Predefinição:style/IPA]]
[[scn:Template:style/IPA]]
[[sv:Mall:style/IPA]]
[[xh:Template:style/IPA]]
[[yo:Template:style/IPA]]
[[za:Template:style/IPA]]
</noinclude><noinclude>
[[Kategorija:Šabloni]]
</noinclude>
qst5ffq4zlfcqt09nqmnsx72v7syhpq
Wikirječnik:Botovi
4
4412
72468
32274
2024-12-21T03:31:58Z
76.164.242.99
72468
wikitext
text/x-wiki
*[[special:listusers/bot]]
===[[User:SpaceBirdyBot]]===
Hello, I am running my Bot [[User:SpaceBirdyBot]] as interwikibot on [[:is:Special:Contributions/SpaceBirdyBot|is.wikt]] (and de,es,pt,ga,af,fo,nah,scn,nl,sv,ro) lately because not all links are catched by the current active bots there. If You are interested I can set my bot to run here also.
I am using SVN pywikipedia (latest) and run it using <pre>interwiki.py -wiktionary -autonomous -force -noauto -nobacklink -noshownew -neverlink:fur,ilo,nov,sco</pre>
* Botmaster: [[:is:Notandi:Spacebirdy]]
* Bot's name:[[User:SpaceBirdyBot]]
* List of bot flags on other Wiktionarys:af,ar,co,ca,oc,da,de,el,es,it,is,pt,ga,gd,af,fo,nah,scn,nl,sv,ro,yi,zh-min-nan,...
* Purpose:interwiki
* Technical details:svn pywikipediabot, latest versions
Best regards, --[[Korisnik:Spacebirdy|Spacebirdy]] 14:18, 6 juli 2008 (UTC)
===[[User:RobotGMwikt]]===
I also request botstatus for this interwiki bot, run by [[m:User:GerardM]], thanks, --[[Korisnik:Spacebirdy|Spacebirdy]] 14:18, 6 juli 2008 (UTC)
===[[user:Luckas-bot|Luckas-bot]]===
* Botmaster: [[:pt:user:Luckas Blade]]
* Bot's name: [[User:Luckas-bot]]
* List of bot flags on other Wiktionaries: [http://toolserver.org/~vvv/sulutil.php?user=Luckas-bot list]
* Purpose: interwiki
* Technical details: svn pywikipediabot, latest versions
Best regards, --[[Korisnik:Luckas Blade|Luckas Blade]] 22:48, 31 avgust 2010 (KSV)
===[[user:YS-Bot|YS-Bot]]===
* Botmaster: [[:de:user:Yoursmile|Yoursmile]]
* Bot's name: [[User:YS-Bot]]
* List of bot flags on other Wiktionaries: [http://toolserver.org/~vvv/sulutil.php?user=YS-Bot list]
* Purpose: interwiki
* Technical details: pywikipediabot, latest versions
Best regards --[[Korisnik:Yoursmile|Yoursmile]] ([[Razgovor sa korisnikom:Yoursmile|razgovor]]) 07:52, 6 septembar 2012 (KSV)
===[[user:EdinBot|EdinBot]]===
* Botmaster: [[:bs:user:Edinwiki|Edinwiki]]
* Bot's name: [[User:EdinBot|EdinBot]]
* List of bot flags on other Wiktionaries: [http://toolserver.org/~vvv/sulutil.php?user=EdinBot]
* Purpose: Welcome messages, creation of statistics pages (in the near future when implemented) similar to [[w:en:Wikipedia:Database reports|Database reports]]
* Technical details: pywikipediabot, latest versions
mhyord47h00a6cd1bmv3xh1crxgffsr
Šablon:Korisnik pl
10
4497
66887
25125
2017-11-08T17:06:58Z
YiFeiBot
2374
Bot: premještanje 14 međuwiki linkova koji su sada dostupni na stranici [[d:q5872542]] na [[d:|Wikidati]]
66887
wikitext
text/x-wiki
{{Babel field|pl|'''[[:Kategorija:Korisnik pl-M|Polski]]''' jest '''[[:Kategorija:Korisnik pl|językiem ojczystym]]''' tego użytkownika.}}
<noinclude>
[[fr:Modèle:Utilisateur pl]]
[[ja:Template:User pl]]
[[pt:Predefinição:User pl]]
[[ru:Шаблон:User pl]]
[[simple:Template:User pl]]
[[fi:Malline:User pl]]
[[sv:Mall:Användare pl]]
</noinclude>
so2fwxhjgs3szwko1jbif1zjn4c06t3
Šablon:Korisnik it-2
10
4498
12130
2008-10-12T12:32:29Z
Zu~bswiktionary
305
n.
12130
wikitext
text/x-wiki
{{Babel field 2|it|Questo utente può contribuire con un '''[[:Kategorija:Korisnik it|Italiano]]''' di livello '''[[:Kategorija:Korisnik it-2|intermedio]]'''.}}
2bfqaxfliy640d57yqs8f0d2ghbioqc
Šablon:Softredirect
10
4586
72803
66888
2025-05-01T22:26:31Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72803
wikitext
text/x-wiki
[[Image:Redirectltr.png|#REDIRECT ]]<span class="redirectText" id="softredirect">[[:{{{1}}}|{{{2|{{{1}}}}}}]]</span><br /><span style="font-size:85%; padding-left:52px;">This page is a [[m:Soft redirect|soft redirect]].</span>
<noinclude>
[[ik:Template:Softredirect]]
[[za:模板:Softredirect]]
</noinclude><noinclude>
[[Kategorija:Šabloni]]
</noinclude>
6rblg7ddyvzg6i1rptg0gluglh35xkb
Wikirječnik:Čaršija
4
4734
72838
72834
2025-06-27T20:57:53Z
MediaWiki message delivery
1685
/* Sister Projects Task Force reviews Wikispore and Wikinews */ novi odlomak
72838
wikitext
text/x-wiki
__NEWSECTIONLINK__
__FORCETOC__
{{Vrata zajednice}}
<!-- Add your comments, questions, etc. - at the bottom - please -->
==Fundraising 2010==
Hello Wikimedians,
As many of you are aware, we are now two months away from the Fundraiser for the Wikimedia Foundation, 2010. We have lofty goals, and we can meet them and exceed them!
The meta translators are already actively engaged in the annual drive to distribute our messages and we encourage you to do the same, but we would like to point everyone to the developments we've made in banner messages- from creation to commentary to the ones that will go live for test and for the drive itself in November. It's one of our goals to make sure that all volunteers know that there is a place for them in the Fundraising drive. We've started the setup on [http://meta.wikimedia.org/wiki/Fundraising_2010 meta] for both [http://meta.wikimedia.org/wiki/Fundraising_2010/Messages banner submission], [http://meta.wikimedia.org/wiki/Fundraising_2010/Banner_testing statistical analysis], and [http://meta.wikimedia.org/wiki/Fundraising_2010/Committee grouping volunteers together] that would like to find specific focus and work in that area.
This year the Wikimedia Foundation is taking a proactive stance in reaching out to each and every Wikimedia project and volunteer to find innovation, collaboration, and collation of ideas from the community driven process. The staff working on this is comprised of long-time Wikimedians with as much care and concern for the success of this drive as the volunteers, and we want you to actively participate and have a voice.
Use the talk pages on meta, talk to your local communities, talk to others, talk to us. Engagement is what we strive for, without each other we would never had made Wikimedia succeed. Everyone is welcome to contact any of us on staff at any time with a timely response to follow. We actively encourage focusing discussion on meta so we can all work together.
Please translate this message into your language if you can and post it below.
See you on the wiki! [[Korisnik:Kpeterzell|Keegan, WMF Fundraiser 2010]] 03:07, 13 septembar 2010 (KSV)
==Bot policy==
Hello. To facilitate [[m:steward|steward]] granting of bot access, I suggest implementing the [[m:Bot policy|standard bot policy]] on this wiki. In particular, this policy allows stewards to automatically flag known interlanguage linking bots (if this page says that is acceptable), which form the vast majority of such requests. The policy also enables [[m:Bot policy#Global_bots|global bots]] on this wiki (if this page says that is acceptable), which are trusted bots that will be given bot access on every wiki that allows global bots.
This policy makes bot access requesting much easier for local users, operators, and stewards. To implement it we only need to create a redirect to this page from [[Project:Bot policy]], and add a line at the top noting that it is used here. Please read the text at [[m:Bot policy]] before commenting. If you object, please say so; I hope to implement in two weeks if there is no objection, since it is particularly written to streamline bot requests on wikis with little or no community interested in bot access requests. [[Korisnik:Carsrac|Carsrac]] 15:36, 20 oktobar 2010 (KSV)
:No objections. Done. [[Korisnik:Bastique|Bastique]] 02:05, 15 januar 2011 (KSV)
== Bosnian language in English Wikipedia ==
Hello!
Bosanski jezik je uklonjen iz engleskog Wikipedia. Nije dozvoljeno da se koristi ISO 639-1 "bs" za bosanske . Znate li zašto? --[[Korisnik:Sae1962|Sae1962]] ([[Razgovor sa korisnikom:Sae1962|razgovor]]) 14:49, 13 maj 2013 (KSV)
: Thank you for information. I don't really have a clue about this and since I am not here very often, I don't know what to do. Maybe Barishan can do something more, but he's also absent for last few days. -- [[Korisnik:KWiki|KWiki]] ([[Razgovor sa korisnikom:KWiki|razgovor]]) 20:02, 13 maj 2013 (KSV)
:Hi Sae. As I understand, only wikis with 50k+ edits (that additionaly passed the "50 random articles" test) have been included on the main page on en.wiki. So unless you mean something else, everything is fine and will be. :) -- [[Korisnik:Edinwiki|Edinwiki]] ([[Razgovor sa korisnikom:Edinwiki|razgovor]]) 20:36, 13 maj 2013 (KSV)
::Zdravo. Na engleskom Wiktionary "Serbo-Croatian" (srpskohrvatski) se koristi; umjesto srpskog, hrvatskog, bosanskog ili crnogorskog odvojeno. Ima još link na bosanski Vikirječnik u "nedavnima izmjenama" :) [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 23:33, 13 maj 2013 (KSV)
::Merhaba. İngilizce Wiktionary'de ayrı ayrı Sırpça, Hırvatça, Boşnakça veya Karadağca yerine "Serbo-Croatian" (Sırp-Hırvatça) kullanılıyor. "Son değişiklikler"de hâlâ Boşnakça Vikirječnik'e bağlantı var :) [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 23:33, 13 maj 2013 (KSV)
== Global AbuseFilter ==
<div lang="en" dir="ltr" class="mw-content-ltr">Hello,
[[mw:Special:MyLanguage/Extension:AbuseFilter|AbuseFilter]] is a MediaWiki extension used to detect likely abusive behavior patterns, like pattern vandalism and spam. In 2013, [[m:Special:Mylanguage/Global AbuseFilter|Global AbuseFilters]] were enabled on a limited set of wikis including Meta-Wiki, MediaWiki.org, Wikispecies and (in early 2014) all the "[https://noc.wikimedia.org/conf/highlight.php?file=small.dblist small wikis]". Recently, global abuse filters were enabled on "[https://noc.wikimedia.org/conf/highlight.php?file=medium.dblist medium sized wikis]" as well. These filters are currently managed by stewards on Meta-Wiki and have shown to be very effective in preventing mass spam attacks across Wikimedia projects. However, there is currently no policy on how the global AbuseFilters will be managed although there are proposals. There is an ongoing [[m:Requests for comment/Global AbuseFilter|request for comment]] on policy governing the use of the global AbuseFilters. In the meantime, specific wikis can opt out of using the global AbuseFilter. These wikis can simply add a request to [[m:Global AbuseFilter/Opt-out wikis|this list]] on Meta-Wiki. More details can be found on [[m:Special:Mylanguage/Global AbuseFilter/2014 announcement|this page]] at Meta-Wiki. If you have any questions, feel free to ask on [[m:Talk:Global AbuseFilter|m:Talk:Global AbuseFilter]].
Thanks,
[[m:User:PiRSquared17|PiRSquared17]], [[m:User:Glaisher|Glaisher]]</div> — 17:34, 14 novembar 2014 (KSV)
<!-- Message sent by User:Glaisher@metawiki using the list at http://meta.wikimedia.org/w/index.php?title=Global_AbuseFilter/2014_announcement_distribution_list&oldid=10495115 -->
== Projekat: Wiktionary meets Matica srpska ==
Želimo da vas obavestimo [[meta:Grants:PEG/Interglider.ORG/Wiktionary Meets Matica Srpska|projektu]] koji ima za cilj osnaživanje pokreta za otvoreno znanje i slobodni sadržaj kroz uspostavljanje dugoročnog strateškog partnerstva sa najstarijom srpskom naučno-kulturnom institucijom [[:w:sh:Matica srpska|Maticom srpskom]], kao i povećanje kvaliteta, tačnosti i obima Vikirečnika kroz digitalizovanje dva rečnika priređena od strane Matice srpske (Srpski ornitološki rečnik i Rečnik srpskih govora Vojvodine). Ujedno želimo da razvijemo model za buduću saradnju na svim Vikirečnicima i organizovaćemo dve kampanje mobilizacije saradnika Vikirečnika.
Potrebna nam je vaša pomoć i podrška oko aktivnosti u projektu. Želeli bismo da pokušamo da motivišemo što veći broj zajednica oko Vikirečnika da nam se pridruže u prevodu Rečnika leksikografskih termina i Ornitološkog rečnika. Ukoliko uspemo da motivišemo 100 zajednica da učestvuju u projektu, korist za svaki pojedinačni Vikirečnik bit će ogromna - svaki rečnik bi bio obogaćen sa 37000 primarnih odrednica vezanih za Ornitološki rečnik i 10000 vezanih za listu leksikografskih termina.
Nadamo se da će vam projekat biti zanimljiv, jer bismo voleli da uključimo što veći broj volontera/ki. Možete da se pridružite koordinacionom timu i pomognete nam u komunikaciji sa Vikirečnicima na jezicima koje govorite, ili možete da doprinosite svojim znanjem programiranja (Python i/ili PHP).
Ukoliko ste zainteresovani, pridružite nam se na stranama za [[meta:Grants_talk:PEG/Interglider.ORG/Wiktionary Meets Matica Srpska|diskusiju]], ili pošaljite mejl Milici (milica.gudovic@yahoo.com) ili Milošu(millosh@gmail.com).
Jako nas raduje rad na ovom projektu i iskreno se nadamo da ćete se priključiti!
--[[Korisnik:Senka Latinović|Senka Latinović]] ([[Razgovor sa korisnikom:Senka Latinović|razgovor]]) 16:48, 13 januar 2015 (KSV)
[[af:Wiktionary:Community Portal]]
[[chr:Wiktionary:Community portal]]
[[fj:actualités]]
[[hr:Wječnik:Konoba]]
[[jbo:Wiktionary:Community Portal]]
[[kl:Wiktionary:Community Portal]]
[[ku:Wîkîferheng:Koma Wîkîferhengê]]
[[kw:Wiktionary:Porth an gemmynieth]]
[[li:In 't nuujs]]
[[ln:Wiktionary:Community Portal]]
[[lo:Wiktionary:Community Portal]]
[[lt:Vikižodynas:Bendruomenės portalas]]
[[lv:Vikivārdnīca:Kopienas portāls]]
[[mi:Wiktionary:Tomokanga hapori]]
[[ms:Wiktionary:Portal Masyarakat]]
[[my:Wiktionary:Community portal]]
[[nah:Wiktionary:Calīxcuātl tocalpōl]]
[[nl:WikiWoordenboek:Hulp]]
[[nn:Wiktionary:Spørsmål og svar]]
[[oc:Wikiccionari:Community Portal]]
[[om:Wiktionary:Community Portal]]
[[pl:Wikisłownik:Pomoc]]
[[ps:ويکيسيند:Community Portal]]
[[pt:Wikcionário:Portal comunitário]]
[[sa:Wiktionary:Community Portal]]
[[scn:Wikizziunariu:Porta dâ cumunitati]]
[[sh:Wiktionary:Pijaca-Пијаца]]
[[ss:Wiktionary:Likhefi leinthanethi]]
[[st:Wiktionary:Community Portal]]
[[sv:Wiktionary:Deltagarportalen]]
[[sw:Wiktionary:Community Portal]]
[[ti:Wiktionary:Community Portal]]
[[tk:Wikisözlük:Community Portal]]
[[tn:Wiktionary:Community Portal]]
[[ts:Wiktionary:Community Portal]]
[[ur:وکی لغت:باب برادری]]
== Wikimania 2016 scholarships ==
Dear Wikimedians,
As every year, Wikimedia Polska Association is accepting scholarship requests for this year’s Wikimania, to be held at the Italian town of Esino Lario, June 22-28. The scholarship encompasses travel expenses, accomodation, insurance and the possible conference fee. Please submit your requests by email to wikimania@wikimedia.pl from March 14, 00:00:01 (CET) by March 27, 23:59:59 (CET). Up to two international scholarships will be funded. The scholarship request, submitted in English or Polish, ought to contain:
* short description of your activity within the Wikimedia movement, your real name, your global username or local usernames, Wikimedia activity outside project editing (including local chapter activity), prior input into the Wikimedia conferences, especially international ones;
* information about your desired participation in the conference: planned or submitted lectures or other activities during Wikimania or its associated events;
* information about your forecast activity in pre- and post-conference activities, with the justification for participating in these non-core conference activities;
* declaration of your command of English sufficient to actively participate in the conference;
* information about the international airport closest to your place of residence;
* declaration of being 18 years or older; in case of younger applicants, 16-18, a scan of a parent’s or legal guardian’s consent to the participation in the conference;
* the information on citizenship(s) held;
* agreement to provide and process your personal data (name, address, bank account details, passport number) if the scholarship is granted. '''Please, do not provide these personal details in the application itself, apart from your real name.'''
On the behalf of the Scholarship Commitee, [[Korisnik:Wpedzich|Wpedzich]] ([[Razgovor sa korisnikom:Wpedzich|razgovor]]) 20:04, 13 mart 2016 (KSV)
== Compact Language Links enabled in this wiki today ==
{{int:Please-translate}}
<div lang="en" dir="ltr" class="mw-content-ltr">
[[File:Compact-language-links-list.png|thumb|Screenshot of Compact Language Links interlanguage list]]
[[:mw:Universal_Language_Selector/Compact_Language_Links|Compact Language Links]] has been available as a beta-feature on all Wikimedia wikis since 2014. With compact language links enabled, users are shown a much shorter list of languages on the interlanguage link section of an article (see image). Based on several factors, this shorter list of languages is expected to be more relevant for them and valuable for finding similar content in a language known to them. More information about compact language links can be found in [[:mw:Universal_Language_Selector/Compact_Language_Links|the documentation]].
From today onwards, compact language links has been enabled as the default listing of interlanguage links on this wiki. However, using the button at the bottom, you will be able to see a longer list of all the languages the article has been written in. The setting for this compact list can be changed by using the checkbox under ''User Preferences -> Appearance -> Languages''
The compact language links feature has been tested extensively by the Wikimedia Language team, which developed it. However, in case there are any problems or other feedback please let us know on the [[:mw:Talk:Universal_Language_Selector/Compact_Language_Links|project talk page]]. It is to be noted that on some wikis the presence of an existing older gadget that was used for a similar purpose may cause an interference for compact language list. We would like to bring this to the attention of the admins of this wiki. Full details are on [[phab:T131455|this phabricator ticket]] (in English).
Due to the large scale enablement of this feature, we have had to use [[:m:Global_message_delivery|MassMessage]] for this announcement and as a result it is only written in English. We will really appreciate if this message can be translated for other users of this wiki. Thank you. On behalf of the Wikimedia Language team: [[:mw:User:Runab_WMF|Runa Bhattacharjee (WMF)]] ([[mw:User talk:Runab_WMF|talk]])-03:05, 1 juli 2016 (KSV)
</div>
<!-- Message sent by User:Runab WMF@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Global_message_delivery/Targets/ULS_Compact_Links/1_July&oldid=15735887 -->
== Promjena naziva i logotipa ==
Zdravo svima! Da bi nazivi svih WMF-ovih projekata na bosanskom jeziku bili ujednačeni ('''W'''ikipedia, '''W'''ikivijesti, '''W'''ikiknjige itd.), predlažem da se ime projekta promijeni u "'''W'''ikirječnik". Budući da će biti potrebno napraviti novi logotip za novi naziv, to sam već uradio i također napravio dva HD logotipa u 1,5x i 2x originalne veličine, kao i prateći vektorski (svg) logotip. Možete ih vidjeti ispod.
<gallery widths=170 heights=206>
Wiktionary-logo-bs.png|Trenutni logotip
Wiktionary logo bs-w-1x.png|Novi logotip (1x)
Wiktionary logo bs-w-1.5x.png|Novi logotip (1.5x)
Wiktionary logo bs-w-2x.png|Novi logotip (2x)
Wiktionary logo bs-w.svg|Novi logotip (svg)
</gallery>
Ako se slažete s ove dvije promjene, dodajte {{za}} ispod i dat ću ovo na promjenu za jedno 7 dana. :-) – [[Korisnik:Srdjan m|Srdjan m]] ([[Razgovor s korisnikom:Srdjan m|razgovor]]) 15:52, 24 februar 2017 (KSV)
# {{za}} – kao predlagač. – [[Korisnik:Srdjan m|Srdjan m]] ([[Razgovor s korisnikom:Srdjan m|razgovor]]) 15:52, 24 februar 2017 (KSV)
# {{za}} – [[Korisnik:KWiki|KWiki]] ([[Razgovor s korisnikom:KWiki|razgovor]]) 17:35, 24 februar 2017 (KSV)
# {{za}} --[[Korisnik:AnToni|AnToni]] ([[Razgovor s korisnikom:AnToni|razgovor]]) 17:57, 27 februar 2017 (KSV)
# {{za}} --[[Korisnik:Munja|Munja]] ([[Razgovor s korisnikom:Munja|razgovor]]) 22:09, 3 mart 2017 (KSV)
# {{za}} --[[Korisnik:Dijan|Dijan]] ([[Razgovor s korisnikom:Dijan|razgovor]]) 02:17, 4 mart 2017 (KSV)
# {{za}}[[Korisnik:Palapa|Palapa]] ([[Razgovor s korisnikom:Palapa|razgovor]]) 23:49, 4 mart 2017 (KSV)
Povezani zahtjevi na Phabricatoru: [[:phab:T159538|T159538]], [[:phab:T159542|T159542]] i [[:phab:T159541|T159541]]. – [[Korisnik:Srdjan m|Srdjan m]] ([[Razgovor s korisnikom:Srdjan m|razgovor]]) 16:26, 3 mart 2017 (KSV)
== Columns for references ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr">''{{Int:Please-translate}}'' • ''[[:m:Special:MyLanguage/Editing/Columns for references|Read this in another language]]''
Hello,
At the request of Wikipedia editors, a new feature has been added to MediaWiki. Long lists of references (also called citations or footnotes) will automatically be displayed in columns. This will make it easier for most people to read the references, especially on narrow screens. Short lists of references will not be affected.
I plan to enable this new feature at this wiki on Monday, 11 September 2017. After that date, use the normal <code><nowiki><references /></nowiki></code> tag on any page with many references to see this feature. If you do not want columns used on that page, then use this wikitext code instead: <code><nowiki><references responsive="0" /></nowiki></code>
If you believe that this new feature is not appropriate for this wiki, or if you need help adjusting templates, then please contact me at [[mw:Contributors/Projects/Columns for references]]. --[[User:Whatamidoing (WMF)]] ([[User talk:Whatamidoing (WMF)|talk]])</div> 18:23, 1 septembar 2017 (KSV)
<!-- Message sent by User:Quiddity (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery/Wiktionary&oldid=17181867 -->
== IMPORTANT: Admin activity review ==
Hello. A policy regarding the removal of "advanced rights" (administrator, bureaucrat, etc. ) was adopted by [[:m:Requests for comment/Activity levels of advanced administrative rights holders|global community consensus]] in 2013. According to this policy, the [[:m:stewards|stewards]] are reviewing administrators' activity on all Wikimedia Foundation wikis with no inactivity policy. To the best of our knowledge, your wiki does not have a formal process for removing "advanced rights" from inactive accounts. This means that the stewards will take care of this according to the [[:m:Admin activity review|admin activity review]].
We have determined that the following users meet the inactivity criteria (no edits and no log actions for more than 2 years):
#[[user:Edinwiki|Edinwiki]] (administrator) last edit: 2015-05-19 last log action: 2014-02-06
These users will receive a notification soon, asking them to start a community discussion if they want to retain some or all of their rights. If the users do not respond, then their advanced rights will be removed by the stewards.
However, if you as a community would like to create your own activity review process superseding the global one, want to make another decision about these inactive rights holders, or already have a policy that we missed, then please notify the [[:m:Stewards' noticeboard|stewards on Meta-Wiki]] so that we know not to proceed with the rights review on your wiki. Thanks --[[Korisnik:علاء|علاء]] ([[Razgovor s korisnikom:علاء|razgovor]]) 12:37, 9 april 2018 (KSV)
== Wiktionary Cognate Dashboard ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr">
[[File:Screenshot of Hubs on Wiktionary Cognate Dashboard.png|thumb|Screenshot of the Hub view]]
''Sorry for writing this message in English. Feel free to help translate it below.''
Hello all,
A few months ago, we asked you for feedback about [[d:Wikidata:Wiktionary/Sitelinks|Cognate]], the system allowing interwikilinks between Wiktionaries (on main namespace). Several community members gave some suggestions, one of them was to provide statistics about these interwikilinks.
The Wikidata team is pleased to present you the '''[https://wdcm.wmflabs.org/Wiktionary_CognateDashboard/ Wiktionary Cognate Dashboard]''', a website presenting a lot of interesting information about how Wiktionaries are connected to each others. You can find there, for example:
* the most interlinked Wiktionary entries not having a page on your Wiktionary
* the number of interlinks between each possible pair of Wiktionaries
* visualizations of the relationships between different Wiktionaries
To learn more about the tool, you can have a look at [[m:Wiktionary Cognate Dashboard|the documentation]] (please help us translating it in your language!). The interface of the tool itself can also be translated in other languages by [[m:Wiktionary Cognate Dashboard/Interface|using this page]].
If you find a bug, please let a comment on [[phab:T166487|this Phabricator task]] or ping me onwiki. Thanks a lot, [[:d:User:Lea Lacroix (WMDE)|Lea Lacroix (WMDE)]] 13:08, 14 august 2018 (KSV)
</div>
<!-- Message sent by User:Lea Lacroix (WMDE)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery/Wiktionary&oldid=18299586 -->
== Selection of the Tremendous Wiktionary User Group representative to the Wikimedia Summit 2019 ==
Dear all,
Sorry for posting this message in English and last minute notification. The [[:m:Tremendous Wiktionary User Group|Tremendous Wiktionary User Group]] could send one representative to the [[:m:Wikimedia Summit 2019|Wikimedia Summit 2019]] (formerly "Wikimedia Conference"). The Wikimedia Summit is an yearly conference of all organizations affiliated to the Wikimedia Movement (including our Tremendous Wiktionary User Group). It is a great place to talk about Wiktionary needs to the chapters and other user groups that compose the Wikimedia movement.
For context, there is a [[:m:Wikimedia Conference 2018/Further reports/Tremendous Wiktionary User Group|short report on what happened last year]]. The deadline is very close to 24 hrs. The last date for registration is 17 December 2018. As a last minute effort, there is a '''[[:m:Tremendous Wiktionary User Group/Wikimedia Summit 2019|page on meta to decide who will be the representative of the user group to the Wikimedia Summit]]''' created.
Please feel free to ask any question on the [https://lists.wikimedia.org/mailman/listinfo/wiktionary-l wiktionary-l] mailing list or on the [[:m:Talk:Wiktionary/Tremendous Wiktionary User Group|talk page]].
For the [[:m:Tremendous Wiktionary User Group|Tremendous Wiktionary User Group]],
-- [[User:Balajijagadesh|Balajijagadesh]] 05:56, 16 decembar 2018 (KSV)
<!-- Message sent by User:KCVelaga@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery/Wiktionary&oldid=18299588 -->
== Community Wishlist 2020 ==
[[File:Magic Wand Icon 229981 Color Flipped.svg|right|48px]]
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr">
The '''[[m:Special:MyLanguage/Community Wishlist Survey 2020|2020 Community Wishlist Survey]]''' is now open! This survey is the process where communities decide what the [[m:Community Tech|Community Tech]] team should work on over the next year. We encourage everyone to submit proposals until the deadline on '''November 11, 2019''', or comment on other proposals to help make them better.
'''This year, we’re exclusively focusing on smaller projects (i.e., Wikibooks, Wiktionary, Wikiquote, Wikisource, Wikiversity, Wikispecies, Wikivoyage, and Wikinews).''' We want to help these projects and provide meaningful improvements to diverse communities. If you’re a member of any of these projects, please participate in the survey! To submit proposals, see the guidelines on the [[m:Special:MyLanguage/Community Wishlist Survey 2020#Guidelines|survey page]]. You can write proposals in any language, and we will translate them for you. Thank you, and we look forward to seeing your proposals!
</div>
[[:m:user:IFried (WMF)|IFried (WMF)]] 19:30, 4 novembar 2019 (KSV)
<!-- Message sent by User:Trizek (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:Trizek_(WMF)/sandbox/temp_MassMessage_list&oldid=19523495 -->
== IMPORTANT: Admin activity review ==
Hello. A policy regarding the removal of "advanced rights" (administrator, bureaucrat, etc. ) was adopted by [[:m:Requests for comment/Activity levels of advanced administrative rights holders|global community consensus]] in 2013. According to this policy, the [[:m:stewards|stewards]] are reviewing administrators' activity on all Wikimedia Foundation wikis with no inactivity policy. To the best of our knowledge, your wiki does not have a formal process for removing "advanced rights" from inactive accounts. This means that the stewards will take care of this according to the [[:m:Admin activity review|admin activity review]].
We have determined that the following users meet the inactivity criteria (no edits and no log actions for more than 2 years):
#Dijan (bureaucrat, administrator)
These users will receive a notification soon, asking them to start a community discussion if they want to retain some or all of their rights. If the users do not respond, then their advanced rights will be removed by the stewards.
However, if you as a community would like to create your own activity review process superseding the global one, want to make another decision about these inactive rights holders, or already have a policy that we missed, then please notify the [[:m:Stewards' noticeboard|stewards on Meta-Wiki]] so that we know not to proceed with the rights review on your wiki. Thanks, --[[Korisnik:علاء|علاء]] ([[Razgovor s korisnikom:علاء|razgovor]]) 11:56, 8 januar 2020 (KSV)
== Wiki Loves Folklore ==
[[File:WLL Subtitled Logo (transparent).svg|100px|right|frameless]]
'''Hello Folks,'''
Wiki Loves Love is back again in 2020 iteration as '''[[:c:Commons:Wiki Loves Folklore|Wiki Loves Folklore]]''' from 1 February, 2020 - 29 February, 2020. Join us to celebrate the local cultural heritage of your region with the theme of folklore in the international photography contest at [https://commons.wikimedia.org/w/index.php?title=Special:UploadWizard&campaign=wllove Wikimedia Commons]. Images, videos and audios representing different forms of folk cultures and new forms of heritage that haven’t otherwise been documented so far are welcome submissions in Wiki Loves Folklore. Learn more about the contest at [[m:Wiki Loves Folklore|Meta-Wiki]] and [[:c:Commons:Wiki Loves Folklore|Commons]].
'''Kind regards,'''<br/>
[[:c:Commons:Wiki Loves Folklore/International Team|'''Wiki Loves Folklore International Team''']]<br/>
<small>— [[User:Tulsi Bhagat|<font color="black">'''Tulsi Bhagat'''</font>]] <small>([[Special:Contributions/Tulsi Bhagat|<font color="black">contribs</font>]] | [[User talk:Tulsi Bhagat|<font color="black">talk</font>]])</small><br/>
sent using [[Korisnik:MediaWiki message delivery|MediaWiki message delivery]] ([[Razgovor s korisnikom:MediaWiki message delivery|razgovor]]) 06:14, 18 januar 2020 (KSV)</small>
<!-- Message sent by User:Tulsi Bhagat@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:Tiven2240/wll&oldid=19716850 -->
== Wiktionary sitelinks dashboard: URL update ==
Hello all, and sorry for writing in English. Feel free to translate this message below.
The [[m:Wiktionary Cognate Dashboard|Wiktionary Cognate Dashboard]] presents interesting data about the extension powering your sitelinks. I just wanted to let you know that the URL of this tool changed: it is now accessible at https://wiktionary-analytics.wmcloud.org/Wiktionary_CognateDashboard/ . The former URLs, https://wmdeanalytics.wmflabs.org/Wiktionary_CognateDashboard/ and https://wdcm.wmflabs.org/Wiktionary_CognateDashboard/ , will be disabled on September 25th. Don't forget to update your documentation pages accordingly.
If you have questions about the tool or the URL switch, feel free to ping me. Cheers, [[:m:User:Lea Lacroix (WMDE)|Lea Lacroix (WMDE)]] 11:46, 14 septembar 2020 (KSV)
<!-- Message sent by User:Lea Lacroix (WMDE)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery/Wiktionary&oldid=19900821 -->
== Global bot policy proposal: invitation to a Meta discussion ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr">
{{int:hello}}!
I apologize for sending a message in English. {{int:please-translate}}. According to [[:m:Bot_policy/Implementation#Where_it_is_policy|the list]], your wiki project currently is opted in to the [[:m:Bot_policy#Global_bots|global bot policy]]. Under this policy, bots that fix double redirects or maintain interwiki links are allowed to operate under a global bot flag that is assigned directly by the stewards.
As the Wikimedia projects developed, the need for the current global bot policy decreased, and in the past years, no bots were appointed via that policy. That is mainly given Wikidata were estabilished in 2013, and it is no longer necessary to have dozens of bots that maintain interwiki links.
A [[:m:Requests for comment/Refine global bot policy|proposal]] was made at Meta-Wiki, which proposes that the stewards will be authorized to determine whether an uncontroversial task may be assigned a global bot flag. The stewards already assign permissions that are more impactful on many wikis, namely, [[:m:GS|global sysops]] and [[:m:GR|global renamers]], and I do not think that trust should be an issue. The stewards will assign the permission only to time-proven bots that are already approved at a number of projects, like [[:m:User:ListeriaBot|ListeriaBot]].
By this message, I would like to invite you to comment [[:m:Requests for comment/Refine global bot policy|in the global RFC]], to voice your opinion about this matter.
Thank you for your time.
Best regards,<br />
[[User:Martin Urbanec|Martin Urbanec]] ([[:m:User talk:Martin Urbanec|{{int:Talkpagelinktext}}]]) 11:49, 24 novembar 2020 (KSV)
</div>
<!-- Message sent by User:Martin Urbanec@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:Martin_Urbanec/sand&oldid=20709229 -->
== Wiki Loves Folklore 2021 is back! ==
<div lang="en" dir="ltr" class="mw-content-ltr">
{{int:please-translate}}
[[File:Wiki Loves Folklore Logo.svg|right|150px|frameless]]
You are humbly invited to participate in the '''[[:c:Commons:Wiki Loves Folklore 2021|Wiki Loves Folklore 2021]]''' an international photography contest organized on Wikimedia Commons to document folklore and intangible cultural heritage from different regions, including, folk creative activities and many more. It is held every year from the 1st till the 28th of February.
You can help in enriching the folklore documentation on Commons from your region by taking photos, audios, videos, and [https://commons.wikimedia.org/w/index.php?title=Special:UploadWizard&campaign=wlf_2021 submitting] them in this commons contest.
Please support us in translating the [[:c:Commons: Wiki Loves Folklore 2021|project page]] and a [https://meta.wikimedia.org/wiki/Special:Translate?group=Centralnotice-tgroup-wikiloveslove2020&language=en&filter=%21translated&action=translate|one-line banner message] to help us spread the word in your native language.
'''Kind regards,'''
'''Wiki loves Folklore International Team'''
[[Korisnik:MediaWiki message delivery|MediaWiki message delivery]] ([[Razgovor s korisnikom:MediaWiki message delivery|razgovor]]) 13:25, 6 februar 2021 (KSV)
</div>
<!-- Message sent by User:Tiven2240@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:Tiven2240/wll&oldid=21073884 -->
== Proposal: Set two-letter project shortcuts as alias to project namespace globally ==
<div lang="en" dir="ltr">
{{int:please-translate}}
Hello everyone,
I apologize for posting in English. I would like to inform everyone that I created a new global request for comment (GRFC) at Meta Wiki, which may affect your project: [[:m:Requests for comment/Set short project namespace aliases by default globally]].
In this GRFC, I propose that two-project shortcuts for project names will become a default alias for the project namespace. For instance, on all Wikipedias, WP will be an alias to the Wikipedia: namespace (and similar for other projects). Full list is available in the GRFC.
This is already the case for Wikivoyages, and many individual projects asked for this alias to be implemented. I believe this makes it easier to access the materials in the project namespace, as well as creating shortcuts like <tt>WP:NPOV</tt>, as well as helps new projects to use this feature, without having to figure out how to request site configuration changes first.
As far as I can see, {{SITENAME}} currently does not have such an alias set. This means that such an alias will be set for you, if the GRFC is accepted by the global community.
I would like to ask all community members to participate in the request for comment at Meta-Wiki, see [[:m:Requests for comment/Set short project namespace aliases by default globally]].
Please feel free to [[:m:User talk:Martin Urbanec|ask me]] if you have any questions about this proposal.
Best regards,<br />
--[[:m:User:Martin Urbanec|Martin Urbanec]] ([[:m:User talk:Martin Urbanec|talk]]) 14:12, 18 februar 2021 (KSV)
</div>
<!-- Message sent by User:Martin Urbanec@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:Martin_Urbanec/MassMessage&oldid=21125035 -->
== Global bot policy changes ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr">
{{int:hello}}!
I apologize for sending a message in English. {{int:please-translate}}. According to [[:m:Bot_policy/Implementation#Where_it_is_policy|the list]], your wiki project is currently opted in to the [[:m:Bot_policy#Global_bots|global bot policy]]. As such, I want to let you know about some changes that were made after the [[:m:Requests for comment/Refine global bot policy|global RfC]] was closed.
*Global bots are now subject to a 2 week discussion, and it'll be publicized via a MassMessage list, available at [[:m:Bot policy/New global bot discussion|Bot policy/New global bot discussion]] on Meta. Please subscribe yourself or your wiki if you are interested in new global bots proposals.
*For a bot to be considered for approval, it must demonstrate it is welcomed in multiple projects, and a good way to do that is to have the bot flag on at least 5 wikis for a single task.
*The bot operator should make sure to adhere to the wiki's preference as related to the use of the bot flag (i.e., if a wiki doesn't want a bot to use the flag as it edits, that should be followed).
Thank you for your time.
Best regards,<br />
—'''''<span style="font-family:Candara">[[User:Tks4Fish|<span style="color:black">Thanks for the fish!</span>]] <sup>[[User Talk:Tks4Fish|<span style="color:blue">talk</span>]]•[[Special:Contribs/Tks4Fish|contribs]]</sup></span>''''' 18:48, 6 april 2021 (KSV)
</div>
<!-- Message sent by User:Tks4Fish@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:Tks4Fish/temp&oldid=21306363 -->
== Wikimania 2021: Individual Program Submissions ==
[[File:Wikimania logo with text 2.svg|right|200px]]
Dear all,
Wikimania 2021 will be [[:wikimania:2021:Save the date and the Core Organizing Team|hosted virtually]] for the first time in the event's 15-year history. Since there is no in-person host, the event is being organized by a diverse group of Wikimedia volunteers that form the [[:wikimania:2021:Organizers|Core Organizing Team]] (COT) for Wikimania 2021.
'''Event Program''' - Individuals or a group of individuals can submit their session proposals to be a part of the program. There will be translation support for sessions provided in a number of languages. See more information [[:wikimania:2021:Submissions/Guidelines#Language Accessibility|here]].
Below are some links to guide you through;
* [[:wikimania:2021:Submissions|Program Submissions]]
* [[:wikimania:2021:Submissions/Guidelines|Session Submission Guidelines]]
* [[:wikimania:2021:FAQ|FAQ]]
Please note that the deadline for submission is 18th June 2021.
'''Announcements'''- To keep up to date with the developments around Wikimania, the COT sends out weekly updates. You can view them in the Announcement section [[:wikimania:2021:Announcements|here]].
'''Office Hour''' - If you are left with questions, the COT will be hosting some office hours (in multiple languages), in multiple time-zones, to answer any programming questions that you might have. Details can be found [[:wikimania:2021:Organizers#Office hours schedule|here.]]
Best regards,
[[Korisnik:MediaWiki message delivery|MediaWiki message delivery]] ([[Razgovor s korisnikom:MediaWiki message delivery|razgovor]]) 04:18, 16 juni 2021 (KSV)
On behalf of Wikimania 2021 Core Organizing Team
<!-- Message sent by User:Bodhisattwa@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Global_message_delivery/Targets/VisualEditor/Newsletter/Wikis_with_VE&oldid=21597568 -->
== Editing news 2021 #2 ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr">
<em>[[m:Special:MyLanguage/VisualEditor/Newsletter/2021/June|Read this in another language]] • [[m:VisualEditor/Newsletter|Subscription list for this multilingual newsletter]]</em>
[[File:Reply Tool A-B test comment completion.png|alt=Junior contributors comment completion rate across all participating Wikipedias|thumb|296x296px|When newcomers had the Reply tool and tried to post on a talk page, they were more successful at posting a comment. ([https://wikimedia-research.github.io/Reply-tools-analysis-2021/ Source])]]
Earlier this year, the Editing team ran a large study of [[mw:Talk pages project/Replying|the Reply Tool]]. The main goal was to find out whether the Reply Tool helped [[mw:Talk pages project/Glossary|newer editors]] communicate on wiki. The second goal was to see whether the comments that newer editors made using the tool needed to be reverted more frequently than comments newer editors made with the existing wikitext page editor.
The key results were:
* Newer editors who had automatic ("default on") access to the Reply tool were [https://wikimedia-research.github.io/Reply-tools-analysis-2021/ more likely] to post a comment on a talk page.
* The comments that newer editors made with the Reply Tool were also [https://wikimedia-research.github.io/Reply-tools-analysis-2021/ less likely] to be reverted than the comments that newer editors made with page editing.
These results give the Editing team confidence that the tool is helpful.
<strong>Looking ahead</strong>
The team is planning to make the Reply tool available to everyone as an opt-out preference in the coming months. This has already happened at the Arabic, Czech, and Hungarian Wikipedias.
The next step is to [[phab:T280599|resolve a technical challenge]]. Then, they will deploy the Reply tool first to the [[phab:T267379|Wikipedias that participated in the study]]. After that, they will deploy it, in stages, to the other Wikipedias and all WMF-hosted wikis.
You can turn on "{{int:discussiontools-preference-label}}" [[Special:Preferences#mw-prefsection-betafeatures|in Beta Features]] now. After you get the Reply tool, you can change your preferences at any time in [[Special:Preferences#mw-prefsection-editing-discussion]].
–[[User:Whatamidoing (WMF)|Whatamidoing (WMF)]] ([[User talk:Whatamidoing (WMF)|talk]])
</div> 14:15, 24 juni 2021 (KSV)
<!-- Message sent by User:Elitre (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Global_message_delivery/Targets/VisualEditor/Newsletter/Wikis_with_VE&oldid=21624491 -->
== Wiki Loves Folklore is back! ==
<div lang="en" dir="ltr" class="mw-content-ltr">
{{int:please-translate}}
[[File:Wiki Loves Folklore Logo.svg|right|150px|frameless]]
You are humbly invited to participate in the '''[[:c:Commons:Wiki Loves Folklore 2022|Wiki Loves Folklore 2022]]''' an international photography contest organized on Wikimedia Commons to document folklore and intangible cultural heritage from different regions, including, folk creative activities and many more. It is held every year from the '''1st till the 28th''' of February.
You can help in enriching the folklore documentation on Commons from your region by taking photos, audios, videos, and [https://commons.wikimedia.org/w/index.php?title=Special:UploadWizard&campaign=wlf_2022 submitting] them in this commons contest.
You can also [[:c:Commons:Wiki Loves Folklore 2022/Organize|organize a local contest]] in your country and support us in translating the [[:c:Commons:Wiki Loves Folklore 2022/Translations|project pages]] to help us spread the word in your native language.
Feel free to contact us on our [[:c:Commons talk:Wiki Loves Folklore 2022|project Talk page]] if you need any assistance.
'''Kind regards,'''
'''Wiki loves Folklore International Team'''
--[[Korisnik:MediaWiki message delivery|MediaWiki message delivery]] ([[Razgovor s korisnikom:MediaWiki message delivery|razgovor]]) 13:14, 9 januar 2022 (KSV)
</div>
<!-- Message sent by User:Tiven2240@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:Tiven2240/wlf&oldid=22560402 -->
== Subscribe to the This Month in Education newsletter - learn from others and share your stories ==
<div lang="en" dir="ltr" class="mw-content-ltr">
Dear community members,
Greetings from the EWOC Newsletter team and the education team at Wikimedia Foundation. We are very excited to share that we on tenth years of Education Newsletter ([[m:Education/News|This Month in Education]]) invite you to join us by [[m:Global message delivery/Targets/This Month in Education|subscribing to the newsletter on your talk page]] or by [[m:Education/News/Newsroom|sharing your activities in the upcoming newsletters]]. The Wikimedia Education newsletter is a monthly newsletter that collects articles written by community members using Wikimedia projects in education around the world, and it is published by the EWOC Newsletter team in collaboration with the Education team. These stories can bring you new ideas to try, valuable insights about the success and challenges of our community members in running education programs in their context.
If your affiliate/language project is developing its own education initiatives, please remember to take advantage of this newsletter to publish your stories with the wider movement that shares your passion for education. You can submit newsletter articles in your own language or submit bilingual articles for the education newsletter. For the month of January the deadline to submit articles is on the 20th January. We look forward to reading your stories.
Older versions of this newsletter can be found in the [[outreach:Education/Newsletter/Archives|complete archive]].
More information about the newsletter can be found at [[m:Education/News/Publication Guidelines|Education/Newsletter/About]].
For more information, please contact spatnaik{{@}}wikimedia.org.
------
<div style="text-align: center;"><div style="margin-top:10px; font-size:90%; padding-left:5px; font-family:Georgia, Palatino, Palatino Linotype, Times, Times New Roman, serif;">[[m:Education/Newsletter/About|About ''This Month in Education'']] · [[m:Global message delivery/Targets/This Month in Education|Subscribe/Unsubscribe]] · [[m:MassMessage|Global message delivery]] · For the team: [[User:ZI Jony|<span style="color:#8B0000">'''ZI Jony'''</span>]] [[User talk:ZI Jony|<sup><span style="color:Green"><i>(Talk)</i></span></sup>]], {{<includeonly>subst:</includeonly>#time:l G:i, d F Y|}} (UTC)</div></div>
</div>
<!-- Message sent by User:ZI Jony@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:ZI_Jony/MassMessage/Awareness_of_Education_Newsletter/List_of_Village_Pumps&oldid=21244129 -->
== <span lang="en" dir="ltr" class="mw-content-ltr">Editing news 2022 #1</span> ==
<div lang="en" dir="ltr" class="mw-content-ltr">
<section begin="message"/><i>[[metawiki:VisualEditor/Newsletter/2022/April|Read this in another language]] • [[m:VisualEditor/Newsletter|Subscription list for this multilingual newsletter]]</i>
[[File:Junior Contributor New Topic Tool Completion Rate.png|thumb|New editors were more successful with this new tool.]]
The [[mw:Special:MyLanguage/Help:DiscussionTools#New discussion tool|New topic tool]] helps editors create new ==Sections== on discussion pages. New editors are more successful with this new tool. You can [[mw:Talk pages project/New topic#21 April 2022|read the report]]. Soon, the Editing team will offer this to all editors at the 20 Wikipedias that participated in the test. You will be able to turn it off at [[Special:Preferences#mw-prefsection-editing-discussion]].<section end="message"/>
</div>
[[User:Whatamidoing (WMF)|Whatamidoing (WMF)]] 18:55, 2 maj 2022 (KSV)
<!-- Message sent by User:Quiddity (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Global_message_delivery/Targets/VisualEditor/Newsletter/Wikis_with_VE&oldid=22019984 -->
== The Vector 2022 skin as the default in two weeks? ==
<div lang="en" dir="ltr" class="mw-content-ltr">
[[File:Wikimania 2022 Vector (2022) Presentation.pdf|thumb|The slides for our presentation at Wikimania 2022|page=26]]
Hello. I'm writing on behalf of the [[mw:Reading/Web|Wikimedia Foundation Web team]]. '''In two weeks, we would like to make the Vector 2022 skin the default on this wiki.'''
We have been working on it for the past three years. So far, it has been the default on more than 30 wikis, including sister projects, all accounting for more than 1 billion pageviews per month. On average [[phab:T317529#8246686|87% of active logged-in users]] of those wikis use Vector 2022.
It would become the default for all logged-out users, and also all logged-in users who currently use Vector legacy. Logged-in users can at any time switch to [[Special:Preferences#mw-prefsection-rendering|any other skins]]. No changes are expected for users of these skins.
<div style="width:100%; margin:auto;"><gallery widths="220" heights="150" mode="packed" caption="Top of an article">
Screenshot Historia da moeda do Tíbet - 2022-09-22 - Vector 2010 top.png|Vector legacy (current default)
Screenshot Historia da moeda do Tíbet - 2022-09-22 - Vector 2022 top.png|Vector 2022
</gallery><gallery widths="220" heights="150" mode="packed" caption="A section of an article">
Screenshot Historia da moeda do Tíbet - 2022-09-22 - Vector 2010 scrolled.png|Vector legacy (current default)
Screenshot Historia da moeda do Tíbet - 2022-09-22 - Vector 2022 scrolled.png|Vector 2022
</gallery></div>
=== About the skin ===
'''[Why is a change necessary]''' The current default skin meets the needs of the readers and editors as these were 13 years ago. Since then, new users have begun using Wikimedia projects. [https://diff.wikimedia.org/2022/08/18/prioritizing-equity-within-wikipedias-new-desktop/ The old Vector doesn't meet their needs.]
'''[Objective]''' The objective for the new skin is to make the interface more welcoming and comfortable for readers and useful for advanced users. It draws inspiration from previous requests, the [[metawiki:Special:MyLanguage/Community_Wishlist_Survey|Community Wishlist Surveys]], and gadgets and scripts. The work helped our code follow the standards and improve all other skins. [[phab:phame/post/view/290/how_and_why_we_moved_our_skins_to_mustache/|We reduced PHP code in Wikimedia deployed skins by 75%]]. The project has also focused on making it easier to support gadgets and use APIs.
'''[Changes and test results]''' The skin introduces a [[mw:Special:MyLanguage/Reading/Web/Desktop Improvements/Features|series of changes]] that improve readability and usability. The new skin does not remove any functionality currently available on the Vector skin.
* The sticky header makes it easier to find tools that editors use often. It decreases scrolling to the top of the page by 16%.
* The new table of contents makes it easier to navigate to different sections. Readers and editors jumped to different sections of the page 50% more than with the old table of contents. It also looks a bit different on talk pages.
* The new search bar is easier to find and makes it easier to find the correct search result from the list. This increased the amount of searches started by 30% on the wikis we tested on.
* The skin does not negatively affect pageviews, edit rates, or account creation. There is evidence of increases in pageviews and account creation across partner communities.
'''[Try it out]''' Try out the new skin by going to the appearance tab in [[Special:Preferences#mw-prefsection-rendering|your preferences]] and selecting Vector 2022 from the list of skins.
=== How can editors change and customize this skin? ===
It's possible to configure and personalize our changes. We support volunteers who create new gadgets and user scripts. Check out [[mw:Special:MyLanguage/Reading/Web/Desktop Improvements/Repository|our repository]] for a list of currently available customizations, or add your own.
=== Our plan ===
'''If no large concerns are raised, we plan on deploying in the week of October 3, 2022'''. If your community would like to request more time to discuss the changes, hit the button and write to us. We can adjust the calendar.
<div style="text-align: center;">[[mw:Talk:Reading/Web/Desktop Improvements|<span class="plainlinks mw-ui-button">Request for more time to discuss the change</span>]]</div>
If you'd like ask our team anything, if you have questions, concerns, or additional thoughts, please ping me here or write on the [[mw:Talk:Reading/Web/Desktop Improvements|talk page of the project]]. We will gladly answer! Also, [[mw:Reading/Web/Desktop Improvements/Frequently asked questions|see our FAQ]]. Thank you! [[mw:User:SGrabarczuk (WMF)|SGrabarczuk (WMF)]] ([[mw:User talk:SGrabarczuk (WMF)|talk]]) 04:15, 22 septembar 2022 (KSV)
</div>
<!-- Message sent by User:SGrabarczuk (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:SGrabarczuk_(WMF)/sandbox/MM/Varia&oldid=23838600 -->
== Community Wishlist Survey 2023 opens in January ==
<div lang="en" dir="ltr" class="mw-content-ltr">
''{{int:Please-translate}}''
(There is [[m:Community Wishlist Survey 2023 opens in January|a translatable version of this message on MetaWiki]])
{{int:Hello}}
The [[m:Community Wishlist Survey 2023|'''Community Wishlist Survey (CWS) 2023''']], which lets contributors propose and vote for tools and improvements, starts next month on Monday, [https://zonestamp.toolforge.org/1674496831 23 January 2023, at 18:00 UTC] and will continue annually.
We are inviting you to share your ideas for technical improvements to our tools and platforms. Long experience in editing or technical skills is not required. If you have ever used our software and thought of an idea to improve it, this is the place to come share those ideas!
The dates for the phases of the Survey will be as follows:
* Phase 1: Submit, discuss, and revise proposals – Monday, Jan 23, 2023 to Sunday, Feb 6, 2023
* Phase 2: WMF/Community Tech reviews and organizes proposals – Monday, Jan 30, 2023 to Friday, Feb 10, 2023
* Phase 3: Vote on proposals – Friday, Feb 10, 2023 to Friday, Feb 24, 2023
* Phase 4: Results posted – Tuesday, Feb 28, 2023
If you want to start writing out your ideas ahead of the Survey, you can start thinking about your proposals and draft them in [[m:Community Wishlist Survey/Sandbox|the CWS sandbox]].
We are grateful to all who participated last year. See you in January 2023!
</div>
{{int:Feedback-thanks-title}} <bdi lang="en" dir="ltr">Community Tech, [[m:User:STei (WMF)|STei (WMF)]]</bdi> 16:44, 15 decembar 2022 (KSV)
<!-- Message sent by User:Sannita (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Community_Wishlist_list_for_non-Wikipedias&oldid=24239678 -->
== Global ban for PlanespotterA320/RespectCE ==
Per the [[m:Global bans|Global bans]] policy, I'm informing the project of this request for comment: [[m:Requests for comment/Global ban for PlanespotterA320 (2) ]] about banning a member from your community. Thank you.--[[User:Lemonaka|Lemonaka]] ([[User talk:Lemonaka|talk]]) 21:40, 6 February 2023 (UTC)
<!-- Message sent by User:Zabe@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:Lemonaka/Massmessagelist&oldid=24501599 -->
== Editing news 2023 #1 ==
<div lang="en" dir="ltr" class="mw-content-ltr">
<section begin="message"/><i>[[m:Special:MyLanguage/VisualEditor/Newsletter/2023/February|Read this in another language]] • [[m:Special:MyLanguage/VisualEditor/Newsletter|Subscription list for this multilingual newsletter]]</i>
This newsletter includes two key updates about the [[mw:Special:MyLanguage/Editing team|Editing]] team's work:
# The Editing team will finish adding new features to the [[mw:Special:MyLanguage/Talk pages project|Talk pages project]] and deploy it.
# They are beginning a new project, [[mw:Special:MyLanguage/Edit check|Edit check]].
<strong>Talk pages project</strong>
[[File:Page Frame Features on desktop.png|alt=Screenshot showing the talk page design changes that are currently available as beta features at all Wikimedia wikis. These features include information about the number of people and comments within each discussion.|thumb|300px|Some of the upcoming changes]]
The Editing team is nearly finished with this first phase of the [[mw:Special:MyLanguage/Talk_pages_project|Talk pages project]]. Nearly all [[mw:Special:MyLanguage/Talk pages project/Usability|new features]] are available now in the [[Special:Preferences#mw-prefsection-betafeatures|Beta Feature for {{int:discussiontools-preference-label}}]].
It will show information about how active a discussion is, such as the date of the most recent comment. There will soon be a new "{{int:skin-action-addsection}}" button. You will be able to turn them off at [[Special:Preferences#mw-prefsection-editing-discussion]]. Please [[mw:Special:MyLanguage/Talk:Talk_pages_project/Usability#c-PPelberg_(WMF)-20230215001000-Feedback:_Proposed_Revisions_to_%22Add_topic%22_button|tell them what you think]].
[[File:Daily edit completion rates mobile talk pages.png|thumb|300px|Daily edit completion rate by test group: DiscussionTools (test group) and MobileFrontend overlay (control group)]]
An A/B test for [[mw:Special:MyLanguage/Talk pages project/Mobile|{{int:discussiontools-preference-label}} on the mobile site]] has finished. Editors were [[mw:Special:MyLanguage/Talk_pages_project/Mobile#Status_Updates|more successful with {{int:discussiontools-preference-label}}]]. The Editing team is enabling these features for all editors on the mobile site.
<strong>New Project: Edit Check</strong>
The Editing team is beginning [[mw:Special:MyLanguage/Edit check|a project to help new editors of Wikipedia]]. It will help people identify some problems before they click "{{int:publishchanges}}". The first tool will encourage people to add references when they add new content. Please [[mw:Special:MyLanguage/Help:Watchlist|watch]] that page for more information. You can [[mw:Special:MyLanguage/Editing_team/Community_Conversations#20230303|join a conference call on 3 March 2023]] to learn more.<section end="message"/>
</div>
–[[User:Whatamidoing (WMF)|Whatamidoing (WMF)]] ([[User talk:Whatamidoing (WMF)|{{int:Talkpagelinktext}}]]) 23:25, 22 februar 2023 (KSV)
<!-- Message sent by User:Quiddity (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Global_message_delivery/Targets/VisualEditor/Newsletter/Wikis_with_VE&oldid=24611966 -->
== <span lang="en" dir="ltr" class="mw-content-ltr">Your wiki will be in read only soon</span> ==
<div lang="en" dir="ltr" class="mw-content-ltr">
<section begin="server-switch"/><div class="plainlinks">
[[:m:Special:MyLanguage/Tech/Server switch|Read this message in another language]] • [https://meta.wikimedia.org/w/index.php?title=Special:Translate&group=page-Tech%2FServer+switch&language=&action=page&filter= {{int:please-translate}}]
The [[foundation:|Wikimedia Foundation]] tests the switch between its first and secondary data centers. This will make sure that Wikipedia and the other Wikimedia wikis can stay online even after a disaster. To make sure everything is working, the Wikimedia Technology department needs to do a planned test. This test will show if they can reliably switch from one data centre to the other. It requires many teams to prepare for the test and to be available to fix any unexpected problems.
All traffic will switch on '''{{#time:j xg|2023-03-01|en}}'''. The test will start at '''[https://zonestamp.toolforge.org/{{#time:U|2023-03-01T14:00|en}} {{#time:H:i e|2023-03-01T14:00}}]'''.
Unfortunately, because of some limitations in [[mw:Manual:What is MediaWiki?|MediaWiki]], all editing must stop while the switch is made. We apologize for this disruption, and we are working to minimize it in the future.
'''You will be able to read, but not edit, all wikis for a short period of time.'''
*You will not be able to edit for up to an hour on {{#time:l j xg Y|2023-03-01|en}}.
*If you try to edit or save during these times, you will see an error message. We hope that no edits will be lost during these minutes, but we can't guarantee it. If you see the error message, then please wait until everything is back to normal. Then you should be able to save your edit. But, we recommend that you make a copy of your changes first, just in case.
''Other effects'':
*Background jobs will be slower and some may be dropped. Red links might not be updated as quickly as normal. If you create an article that is already linked somewhere else, the link will stay red longer than usual. Some long-running scripts will have to be stopped.
* We expect the code deployments to happen as any other week. However, some case-by-case code freezes could punctually happen if the operation require them afterwards.
* [[mw:Special:MyLanguage/GitLab|GitLab]] will be unavailable for about 90 minutes.
This project may be postponed if necessary. You can [[wikitech:Switch_Datacenter|read the schedule at wikitech.wikimedia.org]]. Any changes will be announced in the schedule. There will be more notifications about this. A banner will be displayed on all wikis 30 minutes before this operation happens. '''Please share this information with your community.'''</div><section end="server-switch"/>
</div>
<span dir=ltr>[[m:User:Trizek (WMF)|Trizek (WMF)]] ([[m:User talk:Trizek (WMF)|{{int:talk}}]])</span> 21:21, 27 februar 2023 (KSV)
<!-- Message sent by User:Trizek (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=24390465 -->
== <span lang="en" dir="ltr" class="mw-content-ltr">Wikimania 2023 Welcoming Program Submissions</span> ==
<div lang="en" dir="ltr" class="mw-content-ltr">
<section begin="wikimania-program-submissions"/>[[File:Wikimania Singapore Logo.svg|right|frameless]]Do you want to host an in-person or virtual session at Wikimania 2023? Maybe a hands-on workshop, a lively discussion, a fun performance, a catchy poster, or a memorable lightning talk? [[wmania:Special:MyLanguage/2023:Program/Submissions|'''Submissions are open until March 28''']]. The event will have dedicated hybrid blocks, so virtual submissions and pre-recorded content are also welcome. If you have any questions, please join us at an upcoming conversation on March 12 or 19, or reach out by email at wikimania@wikimedia.org or on Telegram. More information on-wiki.<section end="wikimania-program-submissions"/>
</div>
<!-- Message sent by User:CKoerner (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=24390465 -->
== <span lang="en" dir="ltr" class="mw-content-ltr">Seeking volunteers for the next step in the Universal Code of Conduct process</span> ==
<div lang="en" dir="ltr" class="mw-content-ltr">
<section begin="announcement-content" />
:''<div class="plainlinks">[[m:Special:MyLanguage/Universal Code of Conduct/U4C Building Committee/Nominations/Announcement|{{int:interlanguage-link-mul}}]] • [https://meta.wikimedia.org/w/index.php?title=Special:Translate&group=page-{{urlencode:Universal Code of Conduct/U4C Building Committee/Nominations/Announcement}}&language=&action=page&filter= {{int:please-translate}}]</div>''
Hello,
As follow-up to [https://lists.wikimedia.org/hyperkitty/list/wikimedia-l@lists.wikimedia.org/message/IOMVS7W75ZYMABQGOQ2QH2JAURC3CHGH/ the message about the Universal Code of Conduct Enforcement Guidelines] by Wikimedia Foundation Board of Trustees Vice Chair, Shani Evenstein Sigalov, I am reaching out about the next steps. I want to bring your attention to the next stage of the Universal Code of Conduct process, which is forming a building committee for the Universal Code of Conduct Coordinating Committee (U4C). I invite community members with experience and deep interest in community health and governance to nominate themselves to be part of the U4C building committee, which needs people who are:
* Community members in good standing
* Knowledgeable about movement community processes, such as, but not limited to, policy drafting, participatory decision making, and application of existing rules and policies on Wikimedia projects
* Aware and appreciative of the diversity of the movement, such as, but not limited to, languages spoken, identity, geography, and project type
* Committed to participate for the entire U4C Building Committee period from mid-May - December 2023
* Comfortable with engaging in difficult, but productive conversations
* Confidently able to communicate in English
The Building Committee shall consist of volunteer community members, affiliate board or staff, and Wikimedia Foundation staff.
The Universal Code of Conduct has been a process strengthened by the skills and knowledge of the community and I look forward to what the U4C Building Committee creates. If you are interested in joining the Building Committee, please either [[m:Special:MyLanguage/Universal_Code_of_Conduct/U4C_Building_Committee/Nominations|sign up on the Meta-Wiki page]], or contact ucocproject[[File:At sign.svg|16x16px|link=|(_AT_)]]wikimedia.org by May 12, 2023. '''[[m:Special:MyLanguage/Universal_Code_of_Conduct/U4C_Building_Committee|Read more on Meta-Wiki]]'''.
Best regards,<br /><section end="announcement-content" />
</div>
[[User:Xeno (WMF)|Xeno (WMF)]] 19:01, 26 april 2023 (KSV)
<!-- Message sent by User:Xeno (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=24941045 -->
== <span lang="en" dir="ltr" class="mw-content-ltr">Selection of the U4C Building Committee</span> ==
<div lang="en" dir="ltr" class="mw-content-ltr">
<section begin="announcement-content" />
The next stage in the Universal Code of Conduct process is establishing a Building Committee to create the charter for the Universal Code of Conduct Coordinating Committee (U4C). The Building Committee has been selected. [[m:Special:MyLanguage/Universal_Code_of_Conduct/U4C_Building_Committee|Read about the members and the work ahead on Meta-wiki]].<section end="announcement-content" />
</div>
-- [[m:Special:MyLanguage/Universal_Code_of_Conduct/Project|UCoC Project Team]], 04:21, 27 maj 2023 (KSV)
<!-- Message sent by User:RamzyM (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=25018085 -->
== <span lang="en" dir="ltr" class="mw-content-ltr"> Announcing the new Elections Committee members</span> ==
<div lang="en" dir="ltr" class="mw-content-ltr">
<section begin="announcement-content" />
:''[[m:Special:MyLanguage/Wikimedia Foundation elections committee/Nominatons/2023/Announcement - new members|You can find this message translated into additional languages on Meta-wiki.]]''
:''<div class="plainlinks">[[m:Special:MyLanguage/Wikimedia Foundation elections committee/Nominatons/2023/Announcement - new members|{{int:interlanguage-link-mul}}]] • [https://meta.wikimedia.org/w/index.php?title=Special:Translate&group=page-{{urlencode:Wikimedia Foundation elections committee/Nominatons/2023/Announcement - new members}}&language=&action=page&filter= {{int:please-translate}}]</div>''
Hello there,
We are glad to announce [[listarchive:list/wikimedia-l@lists.wikimedia.org/message/4TALOUFPAP2VDBR27GKRVOP7IGQYU3DB/|the new members and advisors of the Elections Committee]]. The [[m:Special:MyLanguage/Wikimedia_Foundation_elections_committee|Elections Committee]] assists with the design and implementation of the process to select Community- and Affiliate-Selected trustees for the Wikimedia Foundation Board of Trustees. After an open nomination process, the strongest candidates spoke with the Board and four candidates were asked to join the Elections Committee. Four other candidates were asked to participate as advisors.
Thank you to all the community members who submitted their names for consideration. We look forward to working with the Elections Committee in the near future.
On behalf of the Wikimedia Foundation Board of Trustees,<br /><section end="announcement-content" />
</div>
[[m:User:RamzyM (WMF)|RamzyM (WMF)]] 18:00, 28 juni 2023 (KSV)
<!-- Message sent by User:RamzyM (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=25018085 -->
== Deploying the Phonos in-line audio player to your Wiki ==
<div lang="en" dir="ltr" class="mw-content-ltr">
<div lang="en" dir="ltr" class="mw-content-ltr">
{{int:Hello}}!
Apologies if this message is not in your language, {{int:Please help translate}} to your language.
This wiki will soon be able to use the [[mw:Help:Extension:Phonos#Inline_audio_player_mode|inline audio player]] implemented by the [[mw:Extension:Phonos|Phonos]] extension. This is part of fulfilling a wishlist proposal of providing [[m:Community_Wishlist_Survey_2022/Multimedia_and_Commons/Audio_links_that_play_on_click|audio links that play on click]].
With the inline audio player, you can add text-to-speech audio snippets to wiki pages by simply using a tag:
<syntaxhighlight lang="wikitext">
<phonos file="audio file" label="Listen"/>
</syntaxhighlight>
The above tag will show the text next to a speaker icon, and clicking on it will play the audio instantly without taking you to another page. A common example where you can use this feature is in adding pronunciation to words as illustrated on the [[wikt:en:English#Pronunciation|English Wiktionary]] below.
<syntaxhighlight lang="wikitext">
{{audio|en|En-uk-English.oga|Audio (UK)}}
</syntaxhighlight>
Could become:
<syntaxhighlight lang="wikitext">
<phonos file="En-uk-English.oga" label="Audio (UK)"/>
</syntaxhighlight>
The inline audio player will be available in your wiki in 2 weeks time; in the meantime, we would like you to [[mw:Special:MyLanguage/Help:Extension:Phonos|read about the features]] and give us feedback or ask questions about it in this [[mw:Help_talk:Extension:Phonos|talk page]].
Thank you!</div>
<bdi lang="en" dir="ltr">[[m:User:UOzurumba (WMF)|UOzurumba (WMF)]], on behalf of the Foundation's Language team</bdi>
</div>
02:26, 27 juli 2023 (KSV)
<!-- Message sent by User:UOzurumba (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:UOzurumba_(WMF)/sandbox_announcement_list_(In-line_audio_player)&oldid=25350821 -->
== <span lang="en" dir="ltr" class="mw-content-ltr">Review the Charter for the Universal Code of Conduct Coordinating Committee</span> ==
<div lang="en" dir="ltr" class="mw-content-ltr">
<section begin="announcement-content" />
:''<div class="plainlinks">[[m:Special:MyLanguage/Universal Code of Conduct/U4C Building Committee/Announcement - Review|{{int:interlanguage-link-mul}}]] • [https://meta.wikimedia.org/w/index.php?title=Special:Translate&group=page-{{urlencode:Universal Code of Conduct/U4C Building Committee/Announcement - Review}}&language=&action=page&filter= {{int:please-translate}}]</div>''
Hello all,
I am pleased to share the next step in the [[foundation:Special:MyLanguage/Policy:Universal Code of Conduct|Universal Code of Conduct]] work. The [[m:Special:MyLanguage/Universal Code of Conduct/Coordinating Committee/Charter|Universal Code of Conduct Coordinating Committee (U4C) draft charter]] is now ready for your review.
The [[foundation:Special:MyLanguage/Policy:Universal Code of Conduct/Enforcement guidelines|Enforcement Guidelines]] require a [[foundation:Special:MyLanguage/Policy:Universal_Code_of_Conduct/Enforcement_guidelines#4.5_U4C_Building_Committee|Building Committee]] form to draft a charter that outlines procedures and details for a global committee to be called the [[foundation:Special:MyLanguage/Policy:Universal_Code_of_Conduct/Enforcement_guidelines#4._UCoC_Coordinating_Committee_(U4C)|Universal Code of Conduct Coordinating Committee (U4C)]]. Over the past few months, the U4C Building Committee worked together as a group to discuss and draft the U4C charter. The U4C Building Committee welcomes feedback about the draft charter now through 22 September 2023. After that date, the U4C Building Committee will revise the charter as needed and a community vote will open shortly afterward.
Join the conversation during the [[m:Special:MyLanguage/Universal Code of Conduct/U4C Building Committee#Conversation hours|conversation hours]] or on [[m:Talk:Universal Code of Conduct/Coordinating Committee/Charter|Meta-wiki]].
Best,<br /><section end="announcement-content" />
</div>
[[m:User:RamzyM (WMF)|RamzyM (WMF)]], on behalf of the U4C Building Committee, 15:35, 28 august 2023 (KSV)
<!-- Message sent by User:RamzyM (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=25392152 -->
== <span lang="en" dir="ltr" class="mw-content-ltr">== Opportunities open for the Affiliations Committee, Ombuds commission, and the Case Review Committee ==</span> ==
<div lang="en" dir="ltr" class="mw-content-ltr">
<section begin="announcement-content" />
<div style="margin:.2em 0 .5em;margin-{{#switch:{{PAGELANGUAGE}}|ar|arc|ary|arz|azb|bcc|bgn|ckb|bqi|dv|fa|fa-af|glk|ha-arab|he|kk-arab|kk-cn|ks|ku-arab|ms-arab|mzn|pnb|prd|ps|sd|ug|ur|ydd|yi=right|left}}:3ex;">
[[m:Special:MyLanguage/Wikimedia Foundation Legal department/Committee appointments/Announcement/Short|''You can find this message translated into additional languages on Meta-wiki.'']]
''<span class="plainlinks">[[m:Special:MyLanguage/Wikimedia Foundation Legal department/Committee appointments/Announcement/Short|{{int:interlanguage-link-mul}}]] • [https://meta.wikimedia.org/w/index.php?title=Special:Translate&group=page-{{urlencode:Wikimedia Foundation Legal department/Committee appointments/Announcement/Short}}&language=&action=page&filter= {{int:please-translate}}]</span>''</div>
Hi everyone! The [[m:Special:MyLanguage/Affiliations Committee|Affiliations Committee]] (AffCom), [[m:Special:MyLanguage/Ombuds_commission|Ombuds commission]] (OC), and the [[m:Special:MyLanguage/Trust_and_Safety/Case_Review_Committee|Case Review Committee]] (CRC) are looking for new members. These volunteer groups provide important structural and oversight support for the community and movement. People are encouraged to nominate themselves or encourage others they feel would contribute to these groups to apply. There is more information about the roles of the groups, the skills needed, and the opportunity to apply on the [[m:Special:MyLanguage/Wikimedia Foundation Legal department/Committee appointments|'''Meta-wiki page''']].
On behalf of the Committee Support team,<br /><section end="announcement-content" />
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
~ [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]]) 16:41, 9 oktobar 2023 (KSV) </div>
<!-- Message sent by User:Keegan (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=25570445 -->
== <span lang="en" dir="ltr" class="mw-content-ltr">Review and comment on the 2024 Wikimedia Foundation Board of Trustees selection rules package</span> ==
<div lang="en" dir="ltr" class="mw-content-ltr">
<section begin="announcement-content" />
:''[[m:Special:MyLanguage/wiki/Wikimedia Foundation elections/2024/Announcement/Rules package review - short| You can find this message translated into additional languages on Meta-wiki.]]''
:''<div class="plainlinks">[[m:Special:MyLanguage/wiki/Wikimedia Foundation elections/2024/Announcement/Rules package review - short|{{int:interlanguage-link-mul}}]] • [https://meta.wikimedia.org/w/index.php?title=Special:Translate&group=page-{{urlencode:wiki/Wikimedia Foundation elections/2024/Announcement/Rules package review - short}}&language=&action=page&filter= {{int:please-translate}}]</div>''
Dear all,
Please review and comment on the Wikimedia Foundation Board of Trustees selection rules package from now until 29 October 2023. The selection rules package was based on older versions by the Elections Committee and will be used in the 2024 Board of Trustees selection. Providing your comments now will help them provide a smoother, better Board selection process. [[m:Special:MyLanguage/Wikimedia Foundation elections/2024|More on the Meta-wiki page]].
Best,
Katie Chan <br>
Chair of the Elections Committee<br /><section end="announcement-content" />
</div>
01:13, 17 oktobar 2023 (KSV)
<!-- Message sent by User:RamzyM (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=25570445 -->
== The Vector 2022 skin as the default in three weeks? ==
<div lang="en" dir="ltr" class="mw-content-ltr">
''[[mw:Special:MyLanguage/Reading/Web/Desktop Improvements/Updates/2023-10 for sister projects|Read this in your language]] • <span class=plainlinks>[https://mediawiki.org/w/index.php?title=Special:Translate&group=page-Reading%2FWeb%2FDesktop+Improvements%2FUpdates%2F2023-10+for+sister+projects&language=&action=page&filter= {{Int:please-translate}}]</span> • Please tell other users about these changes''
Hello. I'm writing on behalf of the [[mw:Reading/Web|Wikimedia Foundation Web team]]. '''In two weeks, we would like to make the Vector 2022 skin the default on this wiki.'''
[[File:Desktop Improvements - how to enable globally.png|thumb|[[Special:GlobalPreferences|{{int:globalpreferences}}]]]]
'''If you prefer keeping the current skin''' select "Vector legacy (2010)" on [[Special:GlobalPreferences#mw-prefsection-rendering|the appearance tab of the global preferences]] and save the change. We encourage you to give the new skin a try, though.
Since I last came to you with this question, many things have changed. The skin is now the default on most Wikipedias, and all logos are done! We have also made some tweaks in the skin itself. Below is the text I've sent to you once, but I'm sending it again, just slightly edited, for those who haven't seen it.
If you know what this is about, jump straight to the section "Our plan":
<div style="margin-left:.5em; border-left:3px dotted #a2a9b1; padding-left:.5em;">
It would become the default for all logged-out users, and also all logged-in users who currently use Vector legacy as a [[Special:Preferences#mw-prefsection-rendering|local]] (but not global) preference. Logged-in users can at any time switch to any other skin. No changes are expected for these skins.
<div style="width:100%; margin:auto;"><gallery widths="250" heights="180" mode="packed" caption="Top of an article">
Screenshot Historia da moeda do Tíbet - 2022-09-22 - Vector 2010 top.png|Vector legacy (current default)
Screenshot Historia da moeda do Tíbet - 2022-09-22 - Vector 2022 top.png|Vector 2022
</gallery><gallery widths="250" heights="180" mode="packed" caption="A section of an article">
Screenshot Historia da moeda do Tíbet - 2022-09-22 - Vector 2010 scrolled.png|Vector legacy (current default)
Screenshot Historia da moeda do Tíbet - 2022-09-22 - Vector 2022 scrolled.png|Vector 2022
</gallery></div>
=== About the skin ===
[[File:Wikimania 2022 Vector (2022) Presentation.pdf|thumb|Slides to our Wikimania 2022 presentation. [https://www.youtube.com/watch?v=yC-ItaXDe2A You may also listen to the recording on YouTube (in English)].]]
'''[Why is a change necessary]''' When the current default skin was created, it reflected the needs of the readers and editors as these were 14 years ago. Since then, new users have begun using the Internet and Wikimedia projects in different ways. [[wmfblog:2022/08/18/prioritizing-equity-within-wikipedias-new-desktop/|The old Vector does not meet their needs]].
'''[Objective]''' The objective for the Vector 2022 skin is to make the interface more welcoming and comfortable for readers and useful for advanced users. It introduces a series of changes that aim to improve problems new and existing readers and editors were having with the old skin. It draws inspiration from previous user requests, the [[metawiki:Special:MyLanguage/Community_Wishlist_Survey|Community Wishlist Surveys]], and gadgets and scripts. The work helped our code follow the standards and improve all other skins. [[phab:phame/post/view/290/how_and_why_we_moved_our_skins_to_mustache/|The PHP code in the other available skins has been reduced by 75%]]. The project has also focused on making it easier to support gadgets and use APIs.
[[File:Screenshot of the Vector-2022 skin's fullscreen toggle.png|thumb]]
'''[Changes in a nutshell]''' The skin introduces changes that improve readability and usability. The new skin does not remove any functionality currently available on the Vector skin.
* The limited width and pin-able menus allow to adjust the interface to the screen size, and focus on editing or reading. Logged-in and logged-out users may use a toggle button to keep the full width, though.
* The sticky header makes it easier to find tools that editors use often. It decreases scrolling to the top of the page by 16%.
* The new table of contents makes it easier to navigate to different sections. Readers and editors jump to different sections of the page 50% more than with the old table of contents. It also looks a bit different on talk pages.
* The new search bar is easier to find and makes it easier to find the correct search result from the list. This increased the amount of searches started by 30% on the tested wikis.
* The skin does not negatively affect pageviews, edit rates, or account creation. There is evidence of increases in pageviews and account creation across partner communities.
'''[Customize this skin]''' It's possible to configure and personalize our changes. We support volunteers who create new gadgets and user scripts. Check out [[mw:Special:MyLanguage/Reading/Web/Desktop Improvements/Repository|the repository]] for a list of currently available customizations and changes, or add your own.
</div>
=== Our plan ===
'''If no large concerns are raised, we plan on deploying on 14 November'''. If you'd like to ask our team anything, if you have questions, concerns, or additional thoughts, please comment in any language. If this is the first comment to my message, make sure to ping me. We will gladly answer! Also, check out [[mw:Reading/Web/Desktop Improvements/Frequently asked questions|our FAQ]]. Thank you! [[User:SGrabarczuk (WMF)|SGrabarczuk (WMF)]] ([[User talk:SGrabarczuk (WMF)|<span class="signature-talk">razgovor</span>]]) 01:09, 26 oktobar 2023 (KSV)
</div>
<!-- Message sent by User:SGrabarczuk (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:SGrabarczuk_(WMF)/sandbox/MM/Varia&oldid=25791651 -->
== <span lang="en" dir="ltr" class="mw-content-ltr">Vote on the Charter for the Universal Code of Conduct Coordinating Committee</span> ==
<div lang="en" dir="ltr" class="mw-content-ltr">
<section begin="announcement-content" />
:''[[m:Special:MyLanguage/wiki/Universal Code of Conduct/Coordinating Committee/Charter/Announcement - voting opens|You can find this message translated into additional languages on Meta-wiki.]] [https://meta.wikimedia.org/w/index.php?title=Special:Translate&group=page-{{urlencode:wiki/Universal Code of Conduct/Coordinating Committee/Charter/Announcement - voting opens}}&language=&action=page&filter= {{int:please-translate}}]''
Hello all,
I am reaching out to you today to announce that the voting period for the [[m:Special:MyLanguage/Universal Code of Conduct/Coordinating Committee|Universal Code of Conduct Coordinating Committee]] (U4C) Charter is now open. Community members may [[m:Special:MyLanguage/Universal_Code_of_Conduct/Coordinating_Committee/Charter/Voter_information|cast their vote and provide comments about the charter via SecurePoll]] now through '''2 February 2024'''. Those of you who voiced your opinions during the development of the [[foundation:Special:MyLanguage/Policy:Universal_Code_of_Conduct/Enforcement_guidelines|UCoC Enforcement Guidelines]] will find this process familiar.
The [[m:Special:MyLanguage/Universal Code of Conduct/Coordinating Committee/Charter|current version of the U4C Charter]] is on Meta-wiki with translations available.
Read the charter, go vote and share this note with others in your community. I can confidently say the U4C Building Committee looks forward to your participation.
On behalf of the UCoC Project team,<section end="announcement-content" />
</div>
[[m:User:RamzyM (WMF)|RamzyM (WMF)]] 18:09, 19 januar 2024 (KSV)
<!-- Message sent by User:RamzyM (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=25853527 -->
== <span lang="en" dir="ltr" class="mw-content-ltr">Last days to vote on the Charter for the Universal Code of Conduct Coordinating Committee</span> ==
<div lang="en" dir="ltr" class="mw-content-ltr">
<section begin="announcement-content" />
:''[[m:Special:MyLanguage/wiki/Universal Code of Conduct/Coordinating Committee/Charter/Announcement - voting reminder|You can find this message translated into additional languages on Meta-wiki.]] [https://meta.wikimedia.org/w/index.php?title=Special:Translate&group=page-{{urlencode:wiki/Universal Code of Conduct/Coordinating Committee/Charter/Announcement - voting reminder}}&language=&action=page&filter= {{int:please-translate}}]''
Hello all,
I am reaching out to you today to remind you that the voting period for the [[m:Special:MyLanguage/Universal Code of Conduct/Coordinating Committee|Universal Code of Conduct Coordinating Committee]] (U4C) charter will close on '''2 February 2024'''. Community members may [[m:Special:MyLanguage/Universal_Code_of_Conduct/Coordinating_Committee/Charter/Voter_information|cast their vote and provide comments about the charter via SecurePoll]]. Those of you who voiced your opinions during the development of the [[foundation:Special:MyLanguage/Policy:Universal_Code_of_Conduct/Enforcement_guidelines|UCoC Enforcement Guidelines]] will find this process familiar.
The [[m:Special:MyLanguage/Universal Code of Conduct/Coordinating Committee/Charter|current version of the U4C charter]] is on Meta-wiki with translations available.
Read the charter, go vote and share this note with others in your community. I can confidently say the U4C Building Committee looks forward to your participation.
On behalf of the UCoC Project team,<section end="announcement-content" />
</div>
[[m:User:RamzyM (WMF)|RamzyM (WMF)]] 17:01, 31 januar 2024 (KSV)
<!-- Message sent by User:RamzyM (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=25853527 -->
== IMPORTANT: Admin activity review ==
Hello. A policy regarding the removal of "advanced rights" (administrator, bureaucrat, interface administrator, etc.) was adopted by [[:m:Requests for comment/Activity levels of advanced administrative rights holders|global community consensus]] in 2013. According to this policy, the [[:m:stewards|stewards]] are reviewing administrators' activity on all Wikimedia Foundation wikis with no inactivity policy. To the best of our knowledge, your wiki does not have a formal process for removing "advanced rights" from inactive accounts. This means that the stewards will take care of this according to the [[:m:Admin activity review|admin activity review]].
We have determined that the following users meet the inactivity criteria (no edits and no logged actions for more than 2 years):
# [[Special:Contributions/Srđan|Srđan]] (administrator)
These users will receive a notification soon, asking them to start a community discussion if they want to retain some or all of their rights. If the users do not respond, then their advanced rights will be removed by the stewards.
However, if you as a community would like to create your own activity review process superseding the global one, want to make another decision about these inactive rights holders, or already have a policy that we missed, then please notify the [[:m:Stewards' noticeboard|stewards on Meta-Wiki]] so that we know not to proceed with the rights review on your wiki.
Thanks, [[Korisnik:Superpes15|Superpes15]] ([[Razgovor s korisnikom:Superpes15|razgovor]]) 15:03, 7 februar 2024 (KSV)
== <span lang="en" dir="ltr" class="mw-content-ltr">Announcing the results of the UCoC Coordinating Committee Charter ratification vote</span> ==
<div lang="en" dir="ltr" class="mw-content-ltr">
<section begin="announcement-content" />
:''[[m:Special:MyLanguage/wiki/Universal Code of Conduct/Coordinating Committee/Charter/Announcement - results|You can find this message translated into additional languages on Meta-wiki.]] [https://meta.wikimedia.org/w/index.php?title=Special:Translate&group=page-{{urlencode:wiki/Universal Code of Conduct/Coordinating Committee/Charter/Announcement - results}}&language=&action=page&filter= {{int:please-translate}}]''
Dear all,
Thank you everyone for following the progress of the Universal Code of Conduct. I am writing to you today to announce the outcome of the [[m:Special:MyLanguage/Universal_Code_of_Conduct/Coordinating_Committee/Charter/Voter_information|ratification vote]] on the [[m:Special:MyLanguage/Universal Code of Conduct/Coordinating Committee/Charter|Universal Code of Conduct Coordinating Committee Charter]]. 1746 contributors voted in this ratification vote with 1249 voters supporting the Charter and 420 voters not. The ratification vote process allowed for voters to provide comments about the Charter.
A report of voting statistics and a summary of voter comments will be published on Meta-wiki in the coming weeks.
Please look forward to hearing about the next steps soon.
On behalf of the UCoC Project team,<section end="announcement-content" />
</div>
[[m:User:RamzyM (WMF)|RamzyM (WMF)]] 18:24, 12 februar 2024 (KSV)
<!-- Message sent by User:RamzyM (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=26160150 -->
== <span lang="en" dir="ltr" class="mw-content-ltr"> Report of the U4C Charter ratification and U4C Call for Candidates now available</span> ==
<div lang="en" dir="ltr" class="mw-content-ltr">
<section begin="announcement-content" />
:''[[m:Special:MyLanguage/Universal Code of Conduct/Coordinating Committee/Election/2024/Announcement – call for candidates| You can find this message translated into additional languages on Meta-wiki.]] [https://meta.wikimedia.org/w/index.php?title=Special:Translate&group=page-{{urlencode:Universal Code of Conduct/Coordinating Committee/Election/2024/Announcement – call for candidates}}&language=&action=page&filter= {{int:please-translate}}]''
Hello all,
I am writing to you today with two important pieces of information. First, the [[m:Special:MyLanguage/Universal Code of Conduct/Coordinating Committee/Charter/Vote results|report of the comments from the Universal Code of Conduct Coordinating Committee (U4C) Charter ratification]] is now available. Secondly, the call for candidates for the U4C is open now through April 1, 2024.
The [[m:Special:MyLanguage/Universal Code of Conduct/Coordinating Committee|Universal Code of Conduct Coordinating Committee]] (U4C) is a global group dedicated to providing an equitable and consistent implementation of the UCoC. Community members are invited to submit their applications for the U4C. For more information and the responsibilities of the U4C, please [[m:Special:MyLanguage/Universal Code of Conduct/Coordinating Committee/Charter|review the U4C Charter]].
Per the charter, there are 16 seats on the U4C: eight community-at-large seats and eight regional seats to ensure the U4C represents the diversity of the movement.
Read more and submit your application on [[m:Special:MyLanguage/Universal Code of Conduct/Coordinating Committee/Election/2024|Meta-wiki]].
On behalf of the UCoC project team,<section end="announcement-content" />
</div>
[[m:User:RamzyM (WMF)|RamzyM (WMF)]] 16:25, 5 mart 2024 (KSV)
<!-- Message sent by User:RamzyM (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=26276337 -->
== <span lang="en" dir="ltr" class="mw-content-ltr"> Wikimedia Foundation Board of Trustees 2024 Selection</span> ==
<div lang="en" dir="ltr" class="mw-content-ltr">
<section begin="announcement-content" />
: ''[[m:Special:MyLanguage/Wikimedia Foundation elections/2024/Announcement/Selection announcement| You can find this message translated into additional languages on Meta-wiki.]]''
: ''<div class="plainlinks">[[m:Special:MyLanguage/Wikimedia Foundation elections/2024/Announcement/Selection announcement|{{int:interlanguage-link-mul}}]] • [https://meta.wikimedia.org/w/index.php?title=Special:Translate&group=page-{{urlencode:Wikimedia Foundation elections/2024/Announcement/Selection announcement}}&language=&action=page&filter= {{int:please-translate}}]</div>''
Dear all,
This year, the term of 4 (four) Community- and Affiliate-selected Trustees on the Wikimedia Foundation Board of Trustees will come to an end [1]. The Board invites the whole movement to participate in this year’s selection process and vote to fill those seats.
The [[m:Special:MyLanguage/Wikimedia Foundation elections committee|Elections Committee]] will oversee this process with support from Foundation staff [2]. The Board Governance Committee created a Board Selection Working Group from Trustees who cannot be candidates in the 2024 community- and affiliate-selected trustee selection process composed of Dariusz Jemielniak, Nataliia Tymkiv, Esra'a Al Shafei, Kathy Collins, and Shani Evenstein Sigalov [3]. The group is tasked with providing Board oversight for the 2024 trustee selection process, and for keeping the Board informed. More details on the roles of the Elections Committee, Board, and staff are here [4].
Here are the key planned dates:
* May 2024: Call for candidates and call for questions
* June 2024: Affiliates vote to shortlist 12 candidates (no shortlisting if 15 or less candidates apply) [5]
* June-August 2024: Campaign period
* End of August / beginning of September 2024: Two-week community voting period
* October–November 2024: Background check of selected candidates
* Board's Meeting in December 2024: New trustees seated
Learn more about the 2024 selection process - including the detailed timeline, the candidacy process, the campaign rules, and the voter eligibility criteria - on [[m:Special:MyLanguage/Wikimedia Foundation elections/2024|this Meta-wiki page]], and make your plan.
'''Election Volunteers'''
Another way to be involved with the 2024 selection process is to be an Election Volunteer. Election Volunteers are a bridge between the Elections Committee and their respective community. They help ensure their community is represented and mobilize them to vote. Learn more about the program and how to join on this [[m:Special:MyLanguage/Wikimedia Foundation elections/2024/Election Volunteers|Meta-wiki page]].
Best regards,
[[m:Special:MyLanguage/User:Pundit|Dariusz Jemielniak]] (Governance Committee Chair, Board Selection Working Group)
[1] https://meta.wikimedia.org/wiki/Special:MyLanguage/Wikimedia_Foundation_elections/2021/Results#Elected
[2] https://foundation.wikimedia.org/wiki/Committee:Elections_Committee_Charter
[3] https://foundation.wikimedia.org/wiki/Minutes:2023-08-15#Governance_Committee
[4] https://meta.wikimedia.org/wiki/Wikimedia_Foundation_elections_committee/Roles
[5] Even though the ideal number is 12 candidates for 4 open seats, the shortlisting process will be triggered if there are more than 15 candidates because the 1-3 candidates that are removed might feel ostracized and it would be a lot of work for affiliates to carry out the shortlisting process to only eliminate 1-3 candidates from the candidate list.<section end="announcement-content" />
</div>
[[User:MPossoupe_(WMF)|MPossoupe_(WMF)]]19:57, 12 mart 2024 (KSV)
<!-- Message sent by User:MPossoupe (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=26349432 -->
== <span lang="en" dir="ltr" class="mw-content-ltr">Vote now to select members of the first U4C</span> ==
<div lang="en" dir="ltr" class="mw-content-ltr">
<section begin="announcement-content" />
:''[[m:Special:MyLanguage/Universal Code of Conduct/Coordinating Committee/Election/2024/Announcement – vote opens|You can find this message translated into additional languages on Meta-wiki.]] [https://meta.wikimedia.org/w/index.php?title=Special:Translate&group=page-{{urlencode:Universal Code of Conduct/Coordinating Committee/Election/2024/Announcement – vote opens}}&language=&action=page&filter= {{int:please-translate}}]''
Dear all,
I am writing to you to let you know the voting period for the Universal Code of Conduct Coordinating Committee (U4C) is open now through May 9, 2024. Read the information on the [[m:Special:MyLanguage/Universal Code of Conduct/Coordinating Committee/Election/2024|voting page on Meta-wiki]] to learn more about voting and voter eligibility.
The Universal Code of Conduct Coordinating Committee (U4C) is a global group dedicated to providing an equitable and consistent implementation of the UCoC. Community members were invited to submit their applications for the U4C. For more information and the responsibilities of the U4C, please [[m:Special:MyLanguage/Universal Code of Conduct/Coordinating Committee/Charter|review the U4C Charter]].
Please share this message with members of your community so they can participate as well.
On behalf of the UCoC project team,<section end="announcement-content" />
</div>
[[m:User:RamzyM (WMF)|RamzyM (WMF)]] 20:21, 25 april 2024 (KSV)
<!-- Message sent by User:RamzyM (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=26390244 -->
== <span lang="en" dir="ltr" class="mw-content-ltr">Sign up for the language community meeting on May 31st, 16:00 UTC</span> ==
<div lang="en" dir="ltr" class="mw-content-ltr">
<section begin="message"/>Hello all,
The next language community meeting is scheduled in a few weeks - May 31st at 16:00 UTC. If you're interested, you can [https://www.mediawiki.org/w/index.php?title=Wikimedia_Language_engineering/Community_meetings#31_May_2024 sign up on this wiki page].
This is a participant-driven meeting, where we share language-specific updates related to various projects, collectively discuss technical issues related to language wikis, and work together to find possible solutions. For example, in the last meeting, the topics included the machine translation service (MinT) and the languages and models it currently supports, localization efforts from the Kiwix team, and technical challenges with numerical sorting in files used on Bengali Wikisource.
Do you have any ideas for topics to share technical updates related to your project? Any problems that you would like to bring for discussion during the meeting? Do you need interpretation support from English to another language? Please reach out to me at ssethi(__AT__)wikimedia.org and [[etherpad:p/language-community-meeting-may-2024|add agenda items to the document here]].
We look forward to your participation!
<section end="message"/>
</div>
<bdi lang="en" dir="ltr">[[User:MediaWiki message delivery|MediaWiki message delivery]]</bdi> 21:23, 14 maj 2024 (KSV)
<!-- Message sent by User:SSethi (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=26390244 -->
== <span lang="en" dir="ltr" class="mw-content-ltr"> Feedback invited on Procedure for Sibling Project Lifecycle</span> ==
<div lang="en" dir="ltr" class="mw-content-ltr">
<section begin="announcement-content" />
:''[[m:Special:MyLanguage/Wikimedia Foundation Community Affairs Committee/Procedure for Sibling Project Lifecycle/Invitation for feedback (MM)|You can find this message translated into additional languages on Meta-wiki.]] [https://meta.wikimedia.org/w/index.php?title=Special:Translate&group=page-{{urlencode:Wikimedia Foundation Community Affairs Committee/Procedure for Sibling Project Lifecycle/Invitation for feedback (MM)}}&language=&action=page&filter= {{int:please-translate}}]''
[[File:Sibling Project Lifecycle Conversation 3.png|150px|right|link=:m:Special:MyLanguage/Wikimedia Foundation Community Affairs Committee/Procedure for Sibling Project Lifecycle]]
Dear community members,
The [[:m:Special:MyLanguage/Wikimedia Foundation Community Affairs Committee|Community Affairs Committee]] (CAC) of the [[:m:Special:MyLanguage/Wikimedia Foundation Board of Trustees|Wikimedia Foundation Board of Trustees]] invites you to give feedback on a '''[[:m:Special:MyLanguage/Wikimedia Foundation Community Affairs Committee/Procedure for Sibling Project Lifecycle|draft Procedure for Sibling Project Lifecycle]]'''. This draft Procedure outlines proposed steps and requirements for opening and closing Wikimedia Sibling Projects, and aims to ensure any newly approved projects are set up for success. This is separate from the procedures for opening or closing language versions of projects, which is handled by the [[:m:Special:MyLanguage/Language committee|Language Committee]] or [[m:Special:MyLanguage/Closing_projects_policy|closing projects policy]].
You can find the details on [[:m:Special:MyLanguage/Talk:Wikimedia Foundation Community Affairs Committee/Procedure for Sibling Project Lifecycle#Review|this page]], as well as the ways to give your feedback from today until the end of the day on '''June 23, 2024''', anywhere on Earth.
You can also share information about this with the interested project communities you work with or support, and you can also help us translate the procedure into more languages, so people can join the discussions in their own language.
On behalf of the CAC,<section end="announcement-content" />
</div>
[[m:User:RamzyM (WMF)|RamzyM (WMF)]] 02:26, 22 maj 2024 (KSV)
<!-- Message sent by User:RamzyM (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=26390244 -->
== <span lang="en" dir="ltr" class="mw-content-ltr">Announcing the first Universal Code of Conduct Coordinating Committee</span> ==
<div lang="en" dir="ltr" class="mw-content-ltr">
<section begin="announcement-content" />
:''[[m:Special:MyLanguage/Universal Code of Conduct/Coordinating Committee/Election/2024/Announcement – results|You can find this message translated into additional languages on Meta-wiki.]] [https://meta.wikimedia.org/w/index.php?title=Special:Translate&group=page-{{urlencode:Universal Code of Conduct/Coordinating Committee/Election/2024/Announcement – results}}&language=&action=page&filter= {{int:please-translate}}]''
Hello,
The scrutineers have finished reviewing the vote results. We are following up with the results of the first [[m:Special:MyLanguage/Universal Code of Conduct/Coordinating Committee/Election/2024|Universal Code of Conduct Coordinating Committee (U4C) election]].
We are pleased to announce the following individuals as regional members of the U4C, who will fulfill a two-year term:
* North America (USA and Canada)
** –
* Northern and Western Europe
** [[m:Special:MyLanguage/User:Ghilt|Ghilt]]
* Latin America and Caribbean
** –
* Central and East Europe (CEE)
** —
* Sub-Saharan Africa
** –
* Middle East and North Africa
** [[m:Special:MyLanguage/User:Ibrahim.ID|Ibrahim.ID]]
* East, South East Asia and Pacific (ESEAP)
** [[m:Special:MyLanguage/User:0xDeadbeef|0xDeadbeef]]
* South Asia
** –
The following individuals are elected to be community-at-large members of the U4C, fulfilling a one-year term:
* [[m:Special:MyLanguage/User:Barkeep49|Barkeep49]]
* [[m:Special:MyLanguage/User:Superpes15|Superpes15]]
* [[m:Special:MyLanguage/User:Civvì|Civvì]]
* [[m:Special:MyLanguage/User:Luke081515|Luke081515]]
* –
* –
* –
* –
Thank you again to everyone who participated in this process and much appreciation to the candidates for your leadership and dedication to the Wikimedia movement and community.
Over the next few weeks, the U4C will begin meeting and planning the 2024-25 year in supporting the implementation and review of the UCoC and Enforcement Guidelines. Follow their work on [[m:Special:MyLanguage/Universal Code of Conduct/Coordinating Committee|Meta-wiki]].
On behalf of the UCoC project team,<section end="announcement-content" />
</div>
[[m:User:RamzyM (WMF)|RamzyM (WMF)]] 08:15, 3 juni 2024 (KSV)
<!-- Message sent by User:RamzyM (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=26390244 -->
== <span lang="en" dir="ltr" class="mw-content-ltr">The final text of the Wikimedia Movement Charter is now on Meta</span> ==
<div lang="en" dir="ltr" class="mw-content-ltr">
<section begin="announcement-content" />
:''[[m:Special:MyLanguage/Movement Charter/Drafting Committee/Announcement - Final draft available|You can find this message translated into additional languages on Meta-wiki.]] [https://meta.wikimedia.org/w/index.php?title=Special:Translate&group=page-{{urlencode:Movement Charter/Drafting Committee/Announcement - Final draft available}}&language=&action=page&filter= {{int:please-translate}}]''
Hi everyone,
The final text of the [[m:Special:MyLanguage/Movement Charter|Wikimedia Movement Charter]] is now up on Meta in more than 20 languages for your reading.
'''What is the Wikimedia Movement Charter?'''
The Wikimedia Movement Charter is a proposed document to define roles and responsibilities for all the members and entities of the Wikimedia movement, including the creation of a new body – the Global Council – for movement governance.
'''Join the Wikimedia Movement Charter “Launch Party”'''
Join the [[m:Special:MyLanguage/Event:Movement Charter Launch Party|“Launch Party”]] on '''June 20, 2024''' at '''14.00-15.00 UTC''' ([https://zonestamp.toolforge.org/1718892000 your local time]). During this call, we will celebrate the release of the final Charter and present the content of the Charter. Join and learn about the Charter before casting your vote.
'''Movement Charter ratification vote'''
Voting will commence on SecurePoll on '''June 25, 2024''' at '''00:01 UTC''' and will conclude on '''July 9, 2024''' at '''23:59 UTC.''' You can read more about the [[m:Special:MyLanguage/Movement Charter/Ratification/Voting|voting process, eligibility criteria, and other details]] on Meta.
If you have any questions, please leave a comment on the [[m:Special:MyLanguage/Talk:Movement Charter|Meta talk page]] or email the MCDC at [mailto:mcdc@wikimedia.org mcdc@wikimedia.org].
On behalf of the MCDC,<section end="announcement-content" />
</div>
[[m:User:RamzyM (WMF)|RamzyM (WMF)]] 08:45, 11 juni 2024 (KSV)
<!-- Message sent by User:RamzyM (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=26390244 -->
== <span lang="en" dir="ltr" class="mw-content-ltr">Voting to ratify the Wikimedia Movement Charter is now open – cast your vote</span> ==
<div lang="en" dir="ltr" class="mw-content-ltr">
<section begin="announcement-content" />
:''[[m:Special:MyLanguage/Movement Charter/Drafting Committee/Announcement - Ratification vote opens|You can find this message translated into additional languages on Meta-wiki.]] [https://meta.wikimedia.org/w/index.php?title=Special:Translate&group=page-{{urlencode:Movement Charter/Drafting Committee/Announcement - Ratification vote opens}}&language=&action=page&filter= {{int:please-translate}}]''
Hello everyone,
The voting to ratify the [[m:Special:MyLanguage/Movement Charter|'''Wikimedia Movement Charter''']] is now open. The Wikimedia Movement Charter is a document to define roles and responsibilities for all the members and entities of the Wikimedia movement, including the creation of a new body – the Global Council – for movement governance.
The final version of the Wikimedia Movement Charter is [[m:Special:MyLanguage/Movement Charter|available on Meta in different languages]] and attached [https://commons.wikimedia.org/wiki/File:Wikimedia_Movement_Charter_(June_2024).pdf here in PDF format] for your reading.
Voting commenced on SecurePoll on '''June 25, 2024''' at '''00:01 UTC''' and will conclude on '''July 9, 2024''' at '''23:59 UTC'''. Please read more on the [[m:Special:MyLanguage/Movement Charter/Ratification/Voting|voter information and eligibility details]].
After reading the Charter, please [[Special:SecurePoll/vote/398|'''vote here''']] and share this note further.
If you have any questions about the ratification vote, please contact the Charter Electoral Commission at [mailto:cec@wikimedia.org '''cec@wikimedia.org'''].
On behalf of the CEC,<section end="announcement-content" />
</div>
[[m:User:RamzyM (WMF)|RamzyM (WMF)]] 10:52, 25 juni 2024 (KSV)
<!-- Message sent by User:RamzyM (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=26989444 -->
== <span lang="en" dir="ltr" class="mw-content-ltr">Voting to ratify the Wikimedia Movement Charter is ending soon</span> ==
<div lang="en" dir="ltr" class="mw-content-ltr">
<section begin="announcement-content" />
:''[[m:Special:MyLanguage/Movement Charter/Drafting Committee/Announcement - Final reminder|You can find this message translated into additional languages on Meta-wiki.]] [https://meta.wikimedia.org/w/index.php?title=Special:Translate&group=page-{{urlencode:Movement Charter/Drafting Committee/Announcement - Final reminder}}&language=&action=page&filter= {{int:please-translate}}]''
Hello everyone,
This is a kind reminder that the voting period to ratify the [[m:Special:MyLanguage/Movement Charter|Wikimedia Movement Charter]] will be closed on '''July 9, 2024''', at '''23:59 UTC'''.
If you have not voted yet, please vote [[m:Special:SecurePoll/vote/398|on SecurePoll]].
On behalf of the [[m:Special:MyLanguage/Movement_Charter/Ratification/Voting#Electoral_Commission|Charter Electoral Commission]],<section end="announcement-content" />
</div>
[[m:User:RamzyM (WMF)|RamzyM (WMF)]] 03:47, 8 juli 2024 (KSV)
<!-- Message sent by User:RamzyM (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=26989444 -->
== <span lang="en" dir="ltr" class="mw-content-ltr">U4C Special Election - Call for Candidates</span> ==
<div lang="en" dir="ltr" class="mw-content-ltr">
<section begin="announcement-content" />
:''[[m:Special:MyLanguage/Universal Code of Conduct/Coordinating Committee/Election/2024 Special Election/Announcement – call for candidates|You can find this message translated into additional languages on Meta-wiki.]] [https://meta.wikimedia.org/w/index.php?title=Special:Translate&group=page-{{urlencode:Universal Code of Conduct/Coordinating Committee/Election/2024 Special Election/Announcement – call for candidates}}&language=&action=page&filter= {{int:please-translate}}]''
Hello all,
A special election has been called to fill additional vacancies on the U4C. The call for candidates phase is open from now through July 19, 2024.
The [[:m:Special:MyLanguage/Universal Code of Conduct/Coordinating Committee|Universal Code of Conduct Coordinating Committee]] (U4C) is a global group dedicated to providing an equitable and consistent implementation of the [[:foundation:Wikimedia Foundation Universal Code of Conduct|UCoC]]. Community members are invited to submit their applications in the special election for the U4C. For more information and the responsibilities of the U4C, please review the [[m:Special:MyLanguage/Universal Code of Conduct/Coordinating Committee/Charter|U4C Charter]].
In this special election, according to [[Special:MyLanguage/Universal Code of Conduct/Coordinating Committee/Charter#2. Elections and Terms|chapter 2 of the U4C charter]], there are 9 seats available on the U4C: '''four''' community-at-large seats and '''five''' regional seats to ensure the U4C represents the diversity of the movement. [[Special:MyLanguage/Universal Code of Conduct/Coordinating Committee/Charter#5. Glossary|No more than two members of the U4C can be elected from the same home wiki]]. Therefore, candidates must not have English Wikipedia, German Wikipedia, or Italian Wikipedia as their home wiki.
Read more and submit your application on [[m:Special:MyLanguage/Universal Code of Conduct/Coordinating Committee/Election/2024 Special Election|Meta-wiki]].
In cooperation with the U4C,<section end="announcement-content" />
</div>
-- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]]) 00:03, 10 juli 2024 (KSV)
<!-- Message sent by User:Keegan (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=26989444 -->
== <span lang="en" dir="ltr" class="mw-content-ltr">Wikimedia Movement Charter ratification voting results</span> ==
<div lang="en" dir="ltr" class="mw-content-ltr">
<section begin="announcement-content" />
:''[[m:Special:MyLanguage/Movement Charter/Drafting Committee/Announcement - Results of the ratification vote|You can find this message translated into additional languages on Meta-wiki.]] [https://meta.wikimedia.org/w/index.php?title=Special:Translate&group=page-{{urlencode:Movement Charter/Drafting Committee/Announcement - Results of the ratification vote}}&language=&action=page&filter= {{int:please-translate}}]''
Hello everyone,
After carefully tallying both individual and affiliate votes, the [[m:Special:MyLanguage/Movement Charter/Ratification/Voting#Electoral Commission|Charter Electoral Commission]] is pleased to announce the final results of the Wikimedia Movement Charter voting.
As [[m:Special:MyLanguage/Talk:Movement Charter#Thank you for your participation in the Movement Charter ratification vote!|communicated]] by the Charter Electoral Commission, we reached the quorum for both Affiliate and individual votes by the time the vote closed on '''July 9, 23:59 UTC'''. We thank all 2,451 individuals and 129 Affiliate representatives who voted in the ratification process. Your votes and comments are invaluable for the future steps in Movement Strategy.
The final results of the [[m:Special:MyLanguage/Movement Charter|Wikimedia Movement Charter]] ratification voting held between 25 June and 9 July 2024 are as follows:
'''Individual vote:'''
Out of 2,451 individuals who voted as of July 9 23:59 (UTC), 2,446 have been accepted as valid votes. Among these, '''1,710''' voted “yes”; '''623''' voted “no”; and '''113''' selected “–” (neutral). Because the neutral votes don’t count towards the total number of votes cast, 73.30% voted to approve the Charter (1710/2333), while 26.70% voted to reject the Charter (623/2333).
'''Affiliates vote:'''
Out of 129 Affiliates designated voters who voted as of July 9 23:59 (UTC), 129 votes are confirmed as valid votes. Among these, '''93''' voted “yes”; '''18''' voted “no”; and '''18''' selected “–” (neutral). Because the neutral votes don’t count towards the total number of votes cast, 83.78% voted to approve the Charter (93/111), while 16.22% voted to reject the Charter (18/111).
'''Board of Trustees of the Wikimedia Foundation:'''
The Wikimedia Foundation Board of Trustees voted '''not to ratify''' the proposed Charter during their special Board meeting on July 8, 2024. The Chair of the Wikimedia Foundation Board of Trustees, Nataliia Tymkiv, [[m:Special:MyLanguage/Wikimedia_Foundation_Board_noticeboard/Board_resolution_and_vote_on_the_proposed_Movement_Charter|shared the result of the vote, the resolution, meeting minutes and proposed next steps]].
With this, the Wikimedia Movement Charter in its current revision is '''not ratified'''.
We thank you for your participation in this important moment in our movement’s governance.
The Charter Electoral Commission,
[[m:User:Abhinav619|Abhinav619]], [[m:User:Borschts|Borschts]], [[m:User:Iwuala Lucy|Iwuala Lucy]], [[m:User:Tochiprecious|Tochiprecious]], [[m:User:Der-Wir-Ing|Der-Wir-Ing]]<section end="announcement-content" />
</div>
[[Korisnik:MediaWiki message delivery|MediaWiki message delivery]] ([[Razgovor s korisnikom:MediaWiki message delivery|razgovor]]) 17:53, 18 juli 2024 (KSV)
<!-- Message sent by User:RamzyM (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=26989444 -->
== <span lang="en" dir="ltr" class="mw-content-ltr">Vote now to fill vacancies of the first U4C</span> ==
<div lang="en" dir="ltr" class="mw-content-ltr">
<section begin="announcement-content" />
:''[[m:Special:MyLanguage/Universal Code of Conduct/Coordinating Committee/Election/2024 Special Election/Announcement – voting opens|You can find this message translated into additional languages on Meta-wiki.]] [https://meta.wikimedia.org/w/index.php?title=Special:Translate&group=page-{{urlencode:Universal Code of Conduct/Coordinating Committee/Election/2024 Special Election/Announcement – voting opens}}&language=&action=page&filter= {{int:please-translate}}]''
Dear all,
I am writing to you to let you know the voting period for the Universal Code of Conduct Coordinating Committee (U4C) is open now through '''August 10, 2024'''. Read the information on the [[m:Special:MyLanguage/Universal Code of Conduct/Coordinating Committee/Election/2024 Special Election|voting page on Meta-wiki]] to learn more about voting and voter eligibility.
The Universal Code of Conduct Coordinating Committee (U4C) is a global group dedicated to providing an equitable and consistent implementation of the UCoC. Community members were invited to submit their applications for the U4C. For more information and the responsibilities of the U4C, please [[m:Special:MyLanguage/Universal Code of Conduct/Coordinating Committee/Charter|review the U4C Charter]].
Please share this message with members of your community so they can participate as well.
In cooperation with the U4C,<section end="announcement-content" />
</div>
[[m:User:RamzyM (WMF)|RamzyM (WMF)]] 02:47, 27 juli 2024 (KSV)
<!-- Message sent by User:RamzyM (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=26989444 -->
== <span lang="en" dir="ltr" class="mw-content-ltr">Reminder! Vote closing soon to fill vacancies of the first U4C</span> ==
<div lang="en" dir="ltr" class="mw-content-ltr">
<section begin="announcement-content" />
:''[[m:Special:MyLanguage/Universal Code of Conduct/Coordinating Committee/Election/2024 Special Election/Announcement – reminder to vote|You can find this message translated into additional languages on Meta-wiki.]] [https://meta.wikimedia.org/w/index.php?title=Special:Translate&group=page-{{urlencode:Universal Code of Conduct/Coordinating Committee/Election/2024 Special Election/Announcement – reminder to vote}}&language=&action=page&filter= {{int:please-translate}}]''
Dear all,
The voting period for the Universal Code of Conduct Coordinating Committee (U4C) is closing soon. It is open through 10 August 2024. Read the information on [[m:Special:MyLanguage/Universal_Code_of_Conduct/Coordinating_Committee/Election/2024_Special_Election#Voting|the voting page on Meta-wiki to learn more about voting and voter eligibility]]. If you are eligible to vote and have not voted in this special election, it is important that you vote now.
'''Why should you vote?''' The U4C is a global group dedicated to providing an equitable and consistent implementation of the UCoC. Community input into the committee membership is critical to the success of the UCoC.
Please share this message with members of your community so they can participate as well.
In cooperation with the U4C,<section end="announcement-content" />
</div>
-- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]]) 15:30, 6 august 2024 (KSV)
<!-- Message sent by User:Keegan (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=27183190 -->
== <span lang="en" dir="ltr">Coming soon: A new sub-referencing feature – try it!</span> ==
<div lang="en" dir="ltr">
<section begin="Sub-referencing"/>
[[File:Sub-referencing reuse visual.png|{{#ifeq:{{#dir}}|ltr|right|left}}|400px]]
Hello. For many years, community members have requested an easy way to re-use references with different details. Now, a MediaWiki solution is coming: The new sub-referencing feature will work for wikitext and Visual Editor and will enhance the existing reference system. You can continue to use different ways of referencing, but you will probably encounter sub-references in articles written by other users. More information on [[m:Special:MyLanguage/WMDE Technical Wishes/Sub-referencing|the project page]].
'''We want your feedback''' to make sure this feature works well for you:
* [[m:Special:MyLanguage/WMDE Technical Wishes/Sub-referencing#Test|Please try]] the current state of development on beta wiki and [[m:Talk:WMDE Technical Wishes/Sub-referencing|let us know what you think]].
* [[m:WMDE Technical Wishes/Sub-referencing/Sign-up|Sign up here]] to get updates and/or invites to participate in user research activities.
[[m:Special:MyLanguage/Wikimedia Deutschland|Wikimedia Deutschland]]’s [[m:Special:MyLanguage/WMDE Technical Wishes|Technical Wishes]] team is planning to bring this feature to Wikimedia wikis later this year. We will reach out to creators/maintainers of tools and templates related to references beforehand.
Please help us spread the message. --[[m:User:Johannes Richter (WMDE)|Johannes Richter (WMDE)]] ([[m:User talk:Johannes Richter (WMDE)|talk]]) 10:36, 19 August 2024 (UTC)
<section end="Sub-referencing"/>
</div>
<!-- Message sent by User:Johannes Richter (WMDE)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:Johannes_Richter_(WMDE)/Sub-referencing/massmessage_list&oldid=27309345 -->
== Sign up for the language community meeting on August 30th, 15:00 UTC ==
Hi all,
The next language community meeting is scheduled in a few weeks—on August 30th at 15:00 UTC. If you're interested in joining, you can [https://www.mediawiki.org/wiki/Wikimedia_Language_and_Product_Localization/Community_meetings#30_August_2024 sign up on this wiki page].
This participant-driven meeting will focus on sharing language-specific updates related to various projects, discussing technical issues related to language wikis, and working together to find possible solutions. For example, in the last meeting, topics included the Language Converter, the state of language research, updates on the Incubator conversations, and technical challenges around external links not working with special characters on Bengali sites.
Do you have any ideas for topics to share technical updates or discuss challenges? Please add agenda items to the document [https://etherpad.wikimedia.org/p/language-community-meeting-aug-2024 here] and reach out to ssethi(__AT__)wikimedia.org. We look forward to your participation!
[[Korisnik:MediaWiki message delivery|MediaWiki message delivery]] ([[Razgovor s korisnikom:MediaWiki message delivery|razgovor]]) 23:20, 22 august 2024 (KSV)
<!-- Message sent by User:SSethi (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=27183190 -->
== <span lang="en" dir="ltr">Announcing the Universal Code of Conduct Coordinating Committee</span> ==
<div lang="en" dir="ltr">
<section begin="announcement-content" />
:''[https://lists.wikimedia.org/hyperkitty/list/board-elections@lists.wikimedia.org/thread/OKCCN2CANIH2K7DXJOL2GPVDFWL27R7C/ Original message at wikimedia-l]. [[m:Special:MyLanguage/Universal Code of Conduct/Coordinating Committee/Election/2024 Special Election/Announcement - results|You can find this message translated into additional languages on Meta-wiki.]] [https://meta.wikimedia.org/w/index.php?title=Special:Translate&group=page-{{urlencode:Universal Code of Conduct/Coordinating Committee/Election/2024 Special Election/Announcement - results}}&language=&action=page&filter= {{int:please-translate}}]''
Hello all,
The scrutineers have finished reviewing the vote and the [[m:Special:MyLanguage/Elections Committee|Elections Committee]] have certified the [[m:Special:MyLanguage/Universal Code of Conduct/Coordinating Committee/Election/2024 Special Election/Results|results]] for the [[m:Special:MyLanguage/Universal Code of Conduct/Coordinating Committee/Election/2024 Special Election|Universal Code of Conduct Coordinating Committee (U4C) special election]].
I am pleased to announce the following individual as regional members of the U4C, who will fulfill a term until 15 June 2026:
* North America (USA and Canada)
** Ajraddatz
The following seats were not filled during this special election:
* Latin America and Caribbean
* Central and East Europe (CEE)
* Sub-Saharan Africa
* South Asia
* The four remaining Community-At-Large seats
Thank you again to everyone who participated in this process and much appreciation to the candidates for your leadership and dedication to the Wikimedia movement and community.
Over the next few weeks, the U4C will begin meeting and planning the 2024-25 year in supporting the implementation and review of the UCoC and Enforcement Guidelines. You can follow their work on [[m:Special:MyLanguage/Universal Code of Conduct/Coordinating Committee|Meta-Wiki]].
On behalf of the U4C and the Elections Committee,<section end="announcement-content" />
</div>
[[m:User:RamzyM (WMF)|RamzyM (WMF)]] 14:07, 2 septembar 2024 (KSV)
<!-- Message sent by User:RamzyM (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=27183190 -->
== <span lang="en" dir="ltr">Have your say: Vote for the 2024 Board of Trustees!</span> ==
<div lang="en" dir="ltr">
<section begin="announcement-content" />
Hello all,
The voting period for the [[m:Special:MyLanguage/Wikimedia Foundation elections/2024|2024 Board of Trustees election]] is now open. There are twelve (12) candidates running for four (4) seats on the Board.
Learn more about the candidates by [[m:Special:MyLanguage/Wikimedia Foundation elections/2024/Candidates|reading their statements]] and their [[m:Special:MyLanguage/Wikimedia_Foundation_elections/2024/Questions_for_candidates|answers to community questions]].
When you are ready, go to the [[m:Special:SecurePoll/vote/400|SecurePoll]] voting page to vote. '''The vote is open from September 3rd at 00:00 UTC to September 17th at 23:59 UTC'''.
To check your voter eligibility, please visit the [[m:Special:MyLanguage/Wikimedia_Foundation_elections/2024/Voter_eligibility_guidelines|voter eligibility page]].
Best regards,
The Elections Committee and Board Selection Working Group<section end="announcement-content" />
</div>
[[Korisnik:MediaWiki message delivery|MediaWiki message delivery]] ([[Razgovor s korisnikom:MediaWiki message delivery|razgovor]]) 12:15, 3 septembar 2024 (KSV)
<!-- Message sent by User:RamzyM (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=27183190 -->
== 'Wikidata item' link is moving. Find out where... ==
<div lang="en" dir="ltr" class="mw-content-ltr"><i>Apologies for cross-posting in English. Please consider translating this message.</i>{{tracked|T66315}}
Hello everyone, a small change will soon be coming to the user-interface of your Wikimedia project.
The [[d:Q16222597|Wikidata item]] [[w:|sitelink]] currently found under the <span style="color: #54595d;"><u>''General''</u></span> section of the '''Tools''' sidebar menu will move into the <span style="color: #54595d;"><u>''In Other Projects''</u></span> section.
We would like the Wiki communities feedback so please let us know or ask questions on the [[m:Talk:Wikidata_For_Wikimedia_Projects/Projects/Move_Wikidata_item_link|Discussion page]] before we enable the change which can take place October 4 2024, circa 15:00 UTC+2.
More information can be found on [[m:Wikidata_For_Wikimedia_Projects/Projects/Move_Wikidata_item_link|the project page]].<br><br>We welcome your feedback and questions.<br> [[Korisnik:MediaWiki message delivery|MediaWiki message delivery]] ([[Razgovor s korisnikom:MediaWiki message delivery|razgovor]]) 18:58, 27 septembar 2024 (KSV)
</div>
<!-- Message sent by User:Danny Benjafield (WMDE)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:Danny_Benjafield_(WMDE)/MassMessage_Test_List&oldid=27524260 -->
== <span lang="en" dir="ltr">Preliminary results of the 2024 Wikimedia Foundation Board of Trustees elections</span> ==
<div lang="en" dir="ltr">
<section begin="announcement-content" />
Hello all,
Thank you to everyone who participated in the [[m:Special:MyLanguage/Wikimedia Foundation elections/2024|2024 Wikimedia Foundation Board of Trustees election]]. Close to 6000 community members from more than 180 wiki projects have voted.
The following four candidates were the most voted:
# [[User:Kritzolina|Christel Steigenberger]]
# [[User:Nadzik|Maciej Artur Nadzikiewicz]]
# [[User:Victoria|Victoria Doronina]]
# [[User:Laurentius|Lorenzo Losa]]
While these candidates have been ranked through the vote, they still need to be appointed to the Board of Trustees. They need to pass a successful background check and meet the qualifications outlined in the Bylaws. New trustees will be appointed at the next Board meeting in December 2024.
[[m:Special:MyLanguage/Wikimedia_Foundation_elections/2024/Results|Learn more about the results on Meta-Wiki.]]
Best regards,
The Elections Committee and Board Selection Working Group
<section end="announcement-content" />
</div>
[[User:MPossoupe_(WMF)|MPossoupe_(WMF)]] 08:26, 14 oktobar 2024 (KSV)
<!-- Message sent by User:MPossoupe (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=27183190 -->
== <span lang="en" dir="ltr">Seeking volunteers to join several of the movement’s committees</span> ==
<div lang="en" dir="ltr">
<section begin="announcement-content" />
Each year, typically from October through December, several of the movement’s committees seek new volunteers.
Read more about the committees on their Meta-wiki pages:
* [[m:Special:MyLanguage/Affiliations_Committee|Affiliations Committee (AffCom)]]
* [[m:Special:MyLanguage/Ombuds_commission|Ombuds commission (OC)]]
* [[m:Special:MyLanguage/Wikimedia Foundation/Legal/Community Resilience and Sustainability/Trust and Safety/Case Review Committee|Case Review Committee (CRC)]]
Applications for the committees open on 16 October 2024. Applications for the Affiliations Committee close on 18 November 2024, and applications for the Ombuds commission and the Case Review Committee close on 2 December 2024. Learn how to apply by [[m:Special:MyLanguage/Wikimedia_Foundation/Legal/Committee_appointments|visiting the appointment page on Meta-wiki]]. Post to the talk page or email [mailto:cst@wikimedia.org cst@wikimedia.org] with any questions you may have.
For the Committee Support team,
<section end="announcement-content" />
</div>
-- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]]) 23:08, 16 oktobar 2024 (KSV)
<!-- Message sent by User:Keegan (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=27601062 -->
== 'Wikidata item' link is moving, finally. ==
Hello everyone, I previously wrote on the 27th September to advise that the ''Wikidata item'' sitelink will change places in the sidebar menu, moving from the '''General''' section into the '''In Other Projects''' section. The scheduled rollout date of 04.10.2024 was delayed due to a necessary request for Mobile/MinervaNeue skin. I am happy to inform that the global rollout can now proceed and will occur later today, 22.10.2024 at 15:00 UTC-2. [[m:Talk:Wikidata_For_Wikimedia_Projects/Projects/Move_Wikidata_item_link|Please let us know]] if you notice any problems or bugs after this change. There should be no need for null-edits or purging cache for the changes to occur. Kind regards, -[[m:User:Danny Benjafield (WMDE)|Danny Benjafield (WMDE)]] 11:30, 22 oktobar 2024 (KSV)
<!-- Message sent by User:Danny Benjafield (WMDE)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:Danny_Benjafield_(WMDE)/MassMessage_Test_List&oldid=27535421 -->
== Sign up for the language community meeting on November 29th, 16:00 UTC ==
Hello everyone,
The next language community meeting is coming up next week, on November 29th, at 16:00 UTC (Zonestamp! For your timezone <https://zonestamp.toolforge.org/1732896000>). If you're interested in joining, you can sign up on this wiki page: <https://www.mediawiki.org/wiki/Wikimedia_Language_and_Product_Localization/Community_meetings#29_November_2024>.
This participant-driven meeting will be organized by the Wikimedia Foundation’s Language Product Localization team and the Language Diversity Hub. There will be presentations on topics like developing language keyboards, the creation of the Moore Wikipedia, and the language support track at Wiki Indaba. We will also have members from the Wayuunaiki community joining us to share their experiences with the Incubator and as a new community within our movement. This meeting will have a Spanish interpretation.
Looking forward to seeing you at the language community meeting! Cheers, [[User:SSethi (WMF)|Srishti]] 19:55, 21 novembar 2024 (KSV)
<!-- Message sent by User:SSethi (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=27746256 -->
== Universal Code of Conduct annual review: provide your comments on the UCoC and Enforcement Guidelines ==
<div lang="en" dir="ltr" class="mw-content-ltr">
My apologies for writing in English.
{{Int:Please-translate}}.
I am writing to you to let you know the annual review period for the Universal Code of Conduct and Enforcement Guidelines is open now. You can make suggestions for changes through 3 February 2025. This is the first step of several to be taken for the annual review.
[[m:Special:MyLanguage/Universal_Code_of_Conduct/Annual_review|Read more information and find a conversation to join on the UCoC page on Meta]].
The [[m:Special:MyLanguage/Universal_Code_of_Conduct/Coordinating_Committee|Universal Code of Conduct Coordinating Committee]] (U4C) is a global group dedicated to providing an equitable and consistent implementation of the UCoC. This annual review was planned and implemented by the U4C. For more information and the responsibilities of the U4C, [[m:Special:MyLanguage/Universal_Code_of_Conduct/Coordinating_Committee/Charter|you may review the U4C Charter]].
Please share this information with other members in your community wherever else might be appropriate.
-- In cooperation with the U4C, [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]]) 01:12, 24 januar 2025 (KSV)
</div>
<!-- Message sent by User:Keegan (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=27746256 -->
== Reminder: first part of the annual UCoC review closes soon ==
<div lang="en" dir="ltr" class="mw-content-ltr">
My apologies for writing in English.
{{Int:Please-translate}}.
This is a reminder that the first phase of the annual review period for the Universal Code of Conduct and Enforcement Guidelines will be closing soon. You can make suggestions for changes through [[d:Q614092|the end of day]], 3 February 2025. This is the first step of several to be taken for the annual review.
[[m:Special:MyLanguage/Universal_Code_of_Conduct/Annual_review|Read more information and find a conversation to join on the UCoC page on Meta]]. After review of the feedback, proposals for updated text will be published on Meta in March for another round of community review.
Please share this information with other members in your community wherever else might be appropriate.
-- In cooperation with the U4C, [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]]) 00:49, 3 februar 2025 (KSV)
</div>
<!-- Message sent by User:Keegan (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=28198931 -->
== <span lang="en" dir="ltr"> Upcoming Language Community Meeting (Feb 28th, 14:00 UTC) and Newsletter</span> ==
<div lang="en" dir="ltr">
<section begin="message"/>
Hello everyone!
[[File:WP20Symbols WIKI INCUBATOR.svg|right|frameless|150x150px|alt=An image symbolising multiple languages]]
We’re excited to announce that the next '''Language Community Meeting''' is happening soon, '''February 28th at 14:00 UTC'''! If you’d like to join, simply sign up on the '''[[mw:Wikimedia_Language_and_Product_Localization/Community_meetings#28_February_2025|wiki page]]'''.
This is a participant-driven meeting where we share updates on language-related projects, discuss technical challenges in language wikis, and collaborate on solutions. In our last meeting, we covered topics like developing language keyboards, creating the Moore Wikipedia, and updates from the language support track at Wiki Indaba.
'''Got a topic to share?''' Whether it’s a technical update from your project, a challenge you need help with, or a request for interpretation support, we’d love to hear from you! Feel free to '''reply to this message''' or add agenda items to the document '''[[etherpad:p/language-community-meeting-feb-2025|here]]'''.
Also, we wanted to highlight that the sixth edition of the Language & Internationalization newsletter (January 2025) is available here: [[:mw:Special:MyLanguage/Wikimedia Language and Product Localization/Newsletter/2025/January|Wikimedia Language and Product Localization/Newsletter/2025/January]]. This newsletter provides updates from the October–December 2024 quarter on new feature development, improvements in various language-related technical projects and support efforts, details about community meetings, and ideas for contributing to projects. To stay updated, you can subscribe to the newsletter on its wiki page: [[:mw:Wikimedia Language and Product Localization/Newsletter|Wikimedia Language and Product Localization/Newsletter]].
We look forward to your ideas and participation at the language community meeting, see you there!
<section end="message"/>
</div>
<bdi lang="en" dir="ltr">[[User:MediaWiki message delivery|MediaWiki message delivery]]</bdi> 08:30, 22 februar 2025 (KSV)
<!-- Message sent by User:SSethi (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=28217779 -->
== <span lang="en" dir="ltr">Migration to Parsoid</span> ==
<div lang="en" dir="ltr">
<section begin="announcement-content" />
Hello everyone! I am glad to inform you that as the next step in the [[mw:Special:MyLanguage/Parsoid/Parser Unification|Parser Unification]] project, Parsoid will soon be turned on as the default article renderer on your Wiktionary. We are gradually increasing the number of wikis using Parsoid, with the intention of making it the default wikitext parser for MediaWiki's next long-term support release. This will make our wikis more reliable and consistent for editors, readers, and tools to use, as well as making the development of future wikitext features easier.
If this transition disrupts your workflow, don’t worry! You can still opt out through a user preference or turn Parsoid off on the current page using the Tools submenu, as described in the [[mw:Special:MyLanguage/Help:Extension:ParserMigration|Extension:ParserMigration]] documentation.
There is [[mw:Special:MyLanguage/Parsoid/Parser_Unification/Confidence_Framework|more information about our roll-out strategy]] available, including the testing done before we turn on Parsoid for a new wiki.
To report bugs and issues, please look at our [[mw:Special:MyLanguage/Parsoid/Parser Unification/Known Issues|known issues]] documentation and if you found a new bug please create a phab ticket and tag the [[phab:project/view/5846|Content Transform Team in Phabricator]].
<section end="announcement-content" />
</div>
<em>[[m:Special:MyLanguage/Wikimedia Foundation/Product and Technology/Parsoid Read Views/Wiktionary Announcement|{{MediaWiki:Please-translate}}]]</em>
<bdi lang="en" dir="ltr">[[mw:User:ABreault (WMF)|Content Transform Team]]</bdi> 17:24, 26 februar 2025 (KSV)
<!-- Message sent by User:ABreault (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Wikimedia_Foundation/Product_and_Technology/Parsoid_Read_Views/2025-02-27_Wiktionaries&oldid=28314348 -->
== Universal Code of Conduct annual review: proposed changes are available for comment ==
<div lang="en" dir="ltr" class="mw-content-ltr">
My apologies for writing in English.
{{Int:Please-translate}}.
I am writing to you to let you know that [[m:Special:MyLanguage/Universal_Code_of_Conduct/Annual_review/Proposed_Changes|proposed changes]] to the [[foundation:Special:MyLanguage/Policy:Universal_Code_of_Conduct/Enforcement_guidelines|Universal Code of Conduct (UCoC) Enforcement Guidelines]] and [[m:Special:MyLanguage/Universal_Code_of_Conduct/Coordinating_Committee/Charter|Universal Code of Conduct Coordinating Committee (U4C) Charter]] are open for review. '''[[m:Special:MyLanguage/Universal_Code_of_Conduct/Annual_review/Proposed_Changes|You can provide feedback on suggested changes]]''' through the [[d:Q614092|end of day]] on Tuesday, 18 March 2025. This is the second step in the annual review process, the final step will be community voting on the proposed changes.
[[m:Special:MyLanguage/Universal_Code_of_Conduct/Annual_review|Read more information and find relevant links about the process on the UCoC annual review page on Meta]].
The [[m:Special:MyLanguage/Universal_Code_of_Conduct/Coordinating_Committee|Universal Code of Conduct Coordinating Committee]] (U4C) is a global group dedicated to providing an equitable and consistent implementation of the UCoC. This annual review was planned and implemented by the U4C. For more information and the responsibilities of the U4C, [[m:Special:MyLanguage/Universal_Code_of_Conduct/Coordinating_Committee/Charter|you may review the U4C Charter]].
Please share this information with other members in your community wherever else might be appropriate.
-- In cooperation with the U4C, [[m:User:Keegan (WMF)|Keegan (WMF)]] 18:52, 7 mart 2025 (KSV)
</div>
<!-- Message sent by User:Keegan (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=28307738 -->
== Final proposed modifications to the Universal Code of Conduct Enforcement Guidelines and U4C Charter now posted ==
<div lang="en" dir="ltr" class="mw-content-ltr">
The proposed modifications to the [[foundation:Special:MyLanguage/Policy:Universal_Code_of_Conduct/Enforcement_guidelines|Universal Code of Conduct Enforcement Guidelines]] and the U4C Charter [[m:Universal_Code_of_Conduct/Annual_review/2025/Proposed_Changes|are now on Meta-wiki for community notice]] in advance of the voting period. This final draft was developed from the previous two rounds of community review. Community members will be able to vote on these modifications starting on 17 April 2025. The vote will close on 1 May 2025, and results will be announced no later than 12 May 2025. The U4C election period, starting with a call for candidates, will open immediately following the announcement of the review results. More information will be posted on [[m:Special:MyLanguage//Universal_Code_of_Conduct/Coordinating_Committee/Election|the wiki page for the election]] soon.
Please be advised that this process will require more messages to be sent here over the next two months.
The [[m:Special:MyLanguage/Universal_Code_of_Conduct/Coordinating_Committee|Universal Code of Conduct Coordinating Committee (U4C)]] is a global group dedicated to providing an equitable and consistent implementation of the UCoC. This annual review was planned and implemented by the U4C. For more information and the responsibilities of the U4C, you may [[m:Special:MyLanguage/Universal_Code_of_Conduct/Coordinating_Committee/Charter|review the U4C Charter]].
Please share this message with members of your community so they can participate as well.
-- In cooperation with the U4C, [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User_talk:Keegan (WMF)|talk]]) 02:05, 4 april 2025 (KSV)
</div>
<!-- Message sent by User:Keegan (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=28469465 -->
== Zahtjev za dodjelu statusa administratora: Aca ==
Poštovane kolegice i kolege, pokrećem ovaj zahtjev za dodjelu statusa administratora. Naime, nedavno su [[:bs:w:Wikipedia:Čaršija#Alternativni prijedlog o budućnosti srodnih projekata na bosanskom jeziku|bosanska]] i [[:w:Wikipedija:Pijaca#Prijedlog o budućnosti srodnih projekata na bosanskom jeziku|srpskohrvatska zajednica]] odlučile da svoje Wikirječnike stave pod zajednički domen. Uoči ovog značajnog događaja želio bih steći administratorska prava kako bih pripremio projekte za saradnju i prenio rječničke natuknice. Unaprijed sam zahvalan na svim komentarima i sugestijama. – [[Korisnik:Aca|Aca]] ([[Razgovor s korisnikom:Aca|razgovor]]) 11:59, 4 april 2025 (KSV)
:Pod kojim domenom ce to biti sada, kad se spoje bs i sh? Nadalje, ne vidim aktivnost nikoga ovdje, zasto bi kolege koje nemaju dovoljan broj izmjena u odredjenom broju dana imali pravo odlucivati o ovome? Je li iko ista pitao redovne korisnike bs.wikirjecnika o ovome? [[Posebno:Doprinosi/77.77.216.71|77.77.216.71]] 16:14, 4 april 2025 (KSV)
::Zahvaljujem na Vašem komentaru i postavljenim pitanjima! ''A propos'' domena, ideja je služiti se zajedničkim domenom. Upravo zbog slabe aktivnosti Wikirječnika na bosanskom jeziku, rasprava o temi provedena je na Wikipediji kao centralnom mjestu za diskusiju. U raspravi su sudjelovali i administratori ovoga projekta koji govore bosanski jezik, tako da tu nema dvojbe. Srdačan pozdrav! – [[Korisnik:Aca|Aca]] ([[Razgovor s korisnikom:Aca|razgovor]]) 23:39, 4 april 2025 (KSV)
:Saglasan. [[Korisnik:Panasko|Panasko]] ([[Razgovor s korisnikom:Panasko|razgovor]]) 08:45, 10 april 2025 (KSV)
:Prije svega bih pohvalio ideju za spajanje bs i sh Wikirječnika, te iako mi ovo nije primarna adresa za doprinose drago mi je da ima neko ko se interesuje za budućnost ovakvog i sličnih Wikiprojekata. Zbog toga sam za to da dobiješ administratorski status onda kada se projekat prenese na novu domenu.
:Ono što bi bilo lijepo je napraviti plan narednih koraka kako bi se sa mrtve tačke pokrenuli svi projekti, npr. stupiti u kontakt sa hr.wiki zajednicom, čuti njihovo mišljenje budući da dijelimo isti govorni prostor. Ukoliko ne može postojati jedna Wikipedija radi različitih tumačenja historije i različitih prioritetnih ciljeva, moje je mišljenje da je jedan Wikirječnik dovoljan za narod sa prostora Balkana i da tu ima veoma malo prostora za bilo kakve malverzacije. Sretno! [[Korisnik:Tulum387|Tulum387]] ([[Razgovor s korisnikom:Tulum387|razgovor]]) 15:00, 10 april 2025 (KSV)
::Hvala na iscrpnom komentaru! Plan narednih koraka sjajna je ideja i apsolutno ću se založiti za to. Ideja je naprije da se ovo spajanje provede ''as smooth as possible'', nadajući se da će to započeti mociju u regiji i poslužiti kao primjer dobre prakse. – [[Korisnik:Aca|Aca]] ([[Razgovor s korisnikom:Aca|razgovor]]) 20:17, 10 april 2025 (KSV)
----
Prava dodijeljena. Zahvaljujem zajednici na povjerenju. – [[Korisnik:Aca|Aca]] ([[Razgovor s korisnikom:Aca|razgovor]]) 12:21, 12 april 2025 (KSV)
== Vote now on the revised UCoC Enforcement Guidelines and U4C Charter ==
<div lang="en" dir="ltr" class="mw-content-ltr">
The voting period for the revisions to the Universal Code of Conduct Enforcement Guidelines ("UCoC EG") and the UCoC's Coordinating Committee Charter is open now through the end of 1 May (UTC) ([https://zonestamp.toolforge.org/1746162000 find in your time zone]). [[m:Special:MyLanguage/Universal_Code_of_Conduct/Annual_review/2025/Voter_information|Read the information on how to participate and read over the proposal before voting]] on the UCoC page on Meta-wiki.
The [[m:Special:MyLanguage/Universal_Code_of_Conduct/Coordinating_Committee|Universal Code of Conduct Coordinating Committee (U4C)]] is a global group dedicated to providing an equitable and consistent implementation of the UCoC. This annual review of the EG and Charter was planned and implemented by the U4C. Further information will be provided in the coming months about the review of the UCoC itself. For more information and the responsibilities of the U4C, you may [[m:Special:MyLanguage/Universal_Code_of_Conduct/Coordinating_Committee/Charter|review the U4C Charter]].
Please share this message with members of your community so they can participate as well.
In cooperation with the U4C -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User_talk:Keegan (WMF)|talk]]) 00:35, 17 april 2025 (KSV)
</div>
<!-- Message sent by User:Keegan (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=28469465 -->
== <span lang="en" dir="ltr">Vote on proposed modifications to the UCoC Enforcement Guidelines and U4C Charter</span> ==
<div lang="en" dir="ltr">
<section begin="announcement-content" />
The voting period for the revisions to the Universal Code of Conduct Enforcement Guidelines and U4C Charter closes on 1 May 2025 at 23:59 UTC ([https://zonestamp.toolforge.org/1746162000 find in your time zone]). [[m:Special:MyLanguage/Universal Code of Conduct/Annual review/2025/Voter information|Read the information on how to participate and read over the proposal before voting]] on the UCoC page on Meta-wiki.
The [[m:Special:MyLanguage/Universal Code of Conduct/Coordinating Committee|Universal Code of Conduct Coordinating Committee (U4C)]] is a global group dedicated to providing an equitable and consistent implementation of the UCoC. This annual review was planned and implemented by the U4C. For more information and the responsibilities of the U4C, you may [[m:Special:MyLanguage/Universal Code of Conduct/Coordinating Committee/Charter|review the U4C Charter]].
Please share this message with members of your community in your language, as appropriate, so they can participate as well.
In cooperation with the U4C -- <section end="announcement-content" />
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
[[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]]) 03:42, 29 april 2025 (KSV)</div>
<!-- Message sent by User:Keegan (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=28618011 -->
== Prijedlog za zatvaranje projekta ==
Nakon izvoza stranica, na Meta-Wikiju je pokrenut [[:m:Proposals for closing projects/Closure of Bosnian Wiktionary|prijedlog za zatvaranje Wikirječnika na bosanskom jeziku]]. Pozivam sve zainteresirane kolege i kolegice da se izjasne. – [[Korisnik:Aca|Aca]] ([[Razgovor s korisnikom:Aca|razgovor]]) 19:25, 14 maj 2025 (KSV)
== <span lang="en" dir="ltr">Call for Candidates for the Universal Code of Conduct Coordinating Committee (U4C)</span> ==
<div lang="en" dir="ltr">
<section begin="announcement-content" />
The results of voting on the Universal Code of Conduct Enforcement Guidelines and Universal Code of Conduct Coordinating Committee (U4C) Charter is [[m:Special:MyLanguage/Universal Code of Conduct/Annual review/2025#Results|available on Meta-wiki]].
You may now [[m:Special:MyLanguage/Universal Code of Conduct/Coordinating Committee/Election/2025/Candidates|submit your candidacy to serve on the U4C]] through 29 May 2025 at 12:00 UTC. Information about [[m:Special:MyLanguage/Universal Code of Conduct/Coordinating Committee/Election/2025|eligibility, process, and the timeline are on Meta-wiki]]. Voting on candidates will open on 1 June 2025 and run for two weeks, closing on 15 June 2025 at 12:00 UTC.
If you have any questions, you can ask on [[m:Talk:Universal Code of Conduct/Coordinating Committee/Election/2025|the discussion page for the election]]. -- in cooperation with the U4C, </div><section end="announcement-content" />
</div>
<bdi lang="en" dir="ltr">[[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User_talk:Keegan (WMF)|razgovor]])</bdi> 22:08, 15 maj 2025 (KSV)
<!-- Message sent by User:Keegan (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=28618011 -->
== RfC ongoing regarding Abstract Wikipedia (and your project) ==
<div lang="en" dir="ltr" class="mw-content-ltr">
''(Apologies for posting in English, if this is not your first language)''
Hello all! We opened a discussion on Meta about a very delicate issue for the development of [[:m:Special:MyLanguage/Abstract Wikipedia|Abstract Wikipedia]]: where to store the abstract content that will be developed through functions from Wikifunctions and data from Wikidata. Since some of the hypothesis involve your project, we wanted to hear your thoughts too.
We want to make the decision process clear: we do not yet know which option we want to use, which is why we are consulting here. We will take the arguments from the Wikimedia communities into account, and we want to consult with the different communities and hear arguments that will help us with the decision. The decision will be made and communicated after the consultation period by the Foundation.
You can read the various hypothesis and have your say at [[:m:Abstract Wikipedia/Location of Abstract Content|Abstract Wikipedia/Location of Abstract Content]]. Thank you in advance! -- [[User:Sannita (WMF)|Sannita (WMF)]] ([[User talk:Sannita (WMF)|<span class="signature-talk">{{int:Talkpagelinktext}}</span>]]) 15:27, 22 maj 2025 (KSV)
</div>
<!-- Message sent by User:Sannita (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:Sannita_(WMF)/Mass_sending_test&oldid=28768453 -->
== <span lang="en" dir="ltr">Wikimedia Foundation Board of Trustees 2025 Selection & Call for Questions</span> ==
<div lang="en" dir="ltr">
<section begin="announcement-content" />
:''[[m:Special:MyLanguage/Wikimedia Foundation elections/2025/Announcement/Selection announcement|{{int:interlanguage-link-mul}}]] • [https://meta.wikimedia.org/w/index.php?title=Special:Translate&group=page-{{urlencode:Wikimedia Foundation elections/2025/Announcement/Selection announcement}}&language=&action=page&filter= {{int:please-translate}}]''
Dear all,
This year, the term of 2 (two) Community- and Affiliate-selected Trustees on the Wikimedia Foundation Board of Trustees will come to an end [1]. The Board invites the whole movement to participate in this year’s selection process and vote to fill those seats.
The Elections Committee will oversee this process with support from Foundation staff [2]. The Governance Committee, composed of trustees who are not candidates in the 2025 community-and-affiliate-selected trustee selection process (Raju Narisetti, Shani Evenstein Sigalov, Lorenzo Losa, Kathy Collins, Victoria Doronina and Esra’a Al Shafei) [3], is tasked with providing Board oversight for the 2025 trustee selection process and for keeping the Board informed. More details on the roles of the Elections Committee, Board, and staff are here [4].
Here are the key planned dates:
* May 22 – June 5: Announcement (this communication) and call for questions period [6]
* June 17 – July 1, 2025: Call for candidates
* July 2025: If needed, affiliates vote to shortlist candidates if more than 10 apply [5]
* August 2025: Campaign period
* August – September 2025: Two-week community voting period
* October – November 2025: Background check of selected candidates
* Board’s Meeting in December 2025: New trustees seated
Learn more about the 2025 selection process - including the detailed timeline, the candidacy process, the campaign rules, and the voter eligibility criteria - on this Meta-wiki page [[m:Special:MyLanguage/Wikimedia_Foundation_elections/2025|[link]]].
'''Call for Questions'''
In each selection process, the community has the opportunity to submit questions for the Board of Trustees candidates to answer. The Election Committee selects questions from the list developed by the community for the candidates to answer. Candidates must answer all the required questions in the application in order to be eligible; otherwise their application will be disqualified. This year, the Election Committee will select 5 questions for the candidates to answer. The selected questions may be a combination of what’s been submitted from the community, if they’re alike or related. [[m:Special:MyLanguage/Wikimedia_Foundation_elections/2025/Questions_for_candidates|[link]]]
'''Election Volunteers'''
Another way to be involved with the 2025 selection process is to be an Election Volunteer. Election Volunteers are a bridge between the Elections Committee and their respective community. They help ensure their community is represented and mobilize them to vote. Learn more about the program and how to join on this Meta-wiki page [[m:Wikimedia_Foundation_elections/2025/Election_volunteers|[link].]]
Thank you!
[1] https://meta.wikimedia.org/wiki/Wikimedia_Foundation_elections/2022/Results
[2] https://foundation.wikimedia.org/wiki/Committee:Elections_Committee_Charter
[3] https://foundation.wikimedia.org/wiki/Resolution:Committee_Membership,_December_2024
[4] https://meta.wikimedia.org/wiki/Wikimedia_Foundation_elections_committee/Roles
[5] https://meta.wikimedia.org/wiki/Wikimedia_Foundation_elections/2025/FAQ
[6] https://meta.wikimedia.org/wiki/Wikimedia_Foundation_elections/2025/Questions_for_candidates
Best regards,
Victoria Doronina
Board Liaison to the Elections Committee
Governance Committee<section end="announcement-content" />
</div>
[[Korisnik:MediaWiki message delivery|MediaWiki message delivery]] ([[Razgovor s korisnikom:MediaWiki message delivery|razgovor]]) 03:08, 28 maj 2025 (KSV)
<!-- Message sent by User:RamzyM (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=28618011 -->
== Vote now in the 2025 U4C Election ==
<div lang="en" dir="ltr" class="mw-content-ltr">
Apologies for writing in English.
{{Int:Please-translate}}
Eligible voters are asked to participate in the 2025 [[m:Special:MyLanguage/Universal_Code_of_Conduct/Coordinating_Committee|Universal Code of Conduct Coordinating Committee]] election. More information–including an eligibility check, voting process information, candidate information, and a link to the vote–are available on Meta at the [[m:Special:MyLanguage/Universal_Code_of_Conduct/Coordinating_Committee/Election/2025|2025 Election information page]]. The vote closes on 17 June 2025 at [https://zonestamp.toolforge.org/1750161600 12:00 UTC].
Please vote if your account is eligible. Results will be available by 1 July 2025. -- In cooperation with the U4C, [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]]) 23:01, 13 juni 2025 (KSV) </div>
<!-- Message sent by User:Keegan (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=28848819 -->
== <span lang="en" dir="ltr">Wikimedia Foundation Board of Trustees 2025 - Call for Candidates</span> ==
<div lang="en" dir="ltr">
<section begin="announcement-content" />
:''<div class="plainlinks">[[m:Special:MyLanguage/Wikimedia Foundation elections/2025/Announcement/Call for candidates|{{int:interlanguage-link-mul}}]] • [https://meta.wikimedia.org/w/index.php?title=Special:Translate&group=page-{{urlencode:Wikimedia Foundation elections/2025/Announcement/Call for candidates}}&language=&action=page&filter= {{int:please-translate}}]</div>
Hello all,
The [[m:Special:MyLanguage/Wikimedia Foundation elections/2025|call for candidates for the 2025 Wikimedia Foundation Board of Trustees selection is now open]] from June 17, 2025 – July 2, 2025 at 11:59 UTC [1]. The Board of Trustees oversees the Wikimedia Foundation's work, and each Trustee serves a three-year term [2]. This is a volunteer position.
This year, the Wikimedia community will vote in late August through September 2025 to fill two (2) seats on the Foundation Board. Could you – or someone you know – be a good fit to join the Wikimedia Foundation's Board of Trustees? [3]
Learn more about what it takes to stand for these leadership positions and how to submit your candidacy on [[m:Special:MyLanguage/Wikimedia Foundation elections/2025/Candidate application|this Meta-wiki page]] or encourage someone else to run in this year's election.
Best regards,
Abhishek Suryawanshi<br />
Chair of the Elections Committee
On behalf of the Elections Committee and Governance Committee
[1] https://meta.wikimedia.org/wiki/Special:MyLanguage/Wikimedia_Foundation_elections/2025/Call_for_candidates
[2] https://foundation.wikimedia.org/wiki/Legal:Bylaws#(B)_Term.
[3] https://meta.wikimedia.org/wiki/Special:MyLanguage/Wikimedia_Foundation_elections/2025/Resources_for_candidates<section end="announcement-content" />
</div>
[[Korisnik:MediaWiki message delivery|MediaWiki message delivery]] ([[Razgovor s korisnikom:MediaWiki message delivery|razgovor]]) 17:44, 17 juni 2025 (KSV)
<!-- Message sent by User:RamzyM (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=28866958 -->
== <span lang="en" dir="ltr">Sister Projects Task Force reviews Wikispore and Wikinews</span> ==
<div lang="en" dir="ltr">
<section begin="message"/>
Dear Wikimedia Community,
The [[m:Wikimedia Foundation Community Affairs Committee|Community Affairs Committee (CAC)]] of the Wikimedia Foundation Board of Trustees assigned [[m:Wikimedia Foundation Community Affairs Committee/Sister Projects Task Force|the Sister Projects Task Force (SPTF)]] to update and implement a procedure for assessing the lifecycle of Sister Projects – wiki [[m:Wikimedia projects|projects supported by Wikimedia Foundation (WMF)]].
A vision of relevant, accessible, and impactful free knowledge has always guided the Wikimedia Movement. As the ecosystem of Wikimedia projects continues to evolve, it is crucial that we periodically review existing projects to ensure they still align with our goals and community capacity.
Despite their noble intent, some projects may no longer effectively serve their original purpose. '''Reviewing such projects is not about giving up – it's about responsible stewardship of shared resources'''. Volunteer time, staff support, infrastructure, and community attention are finite, and the non-technical costs tend to grow significantly as our ecosystem has entered a different age of the internet than the one we were founded in. Supporting inactive projects or projects that didn't meet our ambitions can unintentionally divert these resources from areas with more potential impact.
Moreover, maintaining projects that no longer reflect the quality and reliability of the Wikimedia name stands for, involves a reputational risk. An abandoned or less reliable project affects trust in the Wikimedia movement.
Lastly, '''failing to sunset or reimagine projects that are no longer working can make it much harder to start new ones'''. When the community feels bound to every past decision – no matter how outdated – we risk stagnation. A healthy ecosystem must allow for evolution, adaptation, and, when necessary, letting go. If we create the expectation that every project must exist indefinitely, we limit our ability to experiment and innovate.
Because of this, SPTF reviewed two requests concerning the lifecycle of the Sister Projects to work through and demonstrate the review process. We chose Wikispore as a case study for a possible new Sister Project opening and Wikinews as a case study for a review of an existing project. Preliminary findings were discussed with the CAC, and a community consultation on both proposals was recommended.
=== Wikispore ===
The [[m:Wikispore|application to consider Wikispore]] was submitted in 2019. SPTF decided to review this request in more depth because rather than being concentrated on a specific topic, as most of the proposals for the new Sister Projects are, Wikispore has the potential to nurture multiple start-up Sister Projects.
After careful consideration, the SPTF has decided '''not to recommend''' Wikispore as a Wikimedia Sister Project. Considering the current activity level, the current arrangement allows '''better flexibility''' and experimentation while WMF provides core infrastructural support.
We acknowledge the initiative's potential and seek community input on what would constitute a sufficient level of activity and engagement to reconsider its status in the future.
As part of the process, we shared the decision with the Wikispore community and invited one of its leaders, Pharos, to an SPTF meeting.
Currently, we especially invite feedback on measurable criteria indicating the project's readiness, such as contributor numbers, content volume, and sustained community support. This would clarify the criteria sufficient for opening a new Sister Project, including possible future Wikispore re-application. However, the numbers will always be a guide because any number can be gamed.
=== Wikinews ===
We chose to review Wikinews among existing Sister Projects because it is the one for which we have observed the highest level of concern in multiple ways.
Since the SPTF was convened in 2023, its members have asked for the community's opinions during conferences and community calls about Sister Projects that did not fulfil their promise in the Wikimedia movement.[https://commons.wikimedia.org/wiki/File:WCNA_2024._Sister_Projects_-_opening%3F_closing%3F_merging%3F_splitting%3F.pdf <nowiki>[1]</nowiki>][https://meta.wikimedia.org/wiki/Wikimedia_Foundation_Community_Affairs_Committee/Sister_Projects_Task_Force#Wikimania_2023_session_%22Sister_Projects:_past,_present_and_the_glorious_future%22 <nowiki>[2]</nowiki>][https://meta.wikimedia.org/wiki/WikiConvention_francophone/2024/Programme/Quelle_proc%C3%A9dure_pour_ouvrir_ou_fermer_un_projet_%3F <nowiki>[3]</nowiki>] Wikinews was the leading candidate for an evaluation because people from multiple language communities proposed it. Additionally, by most measures, it is the least active Sister Project, with the greatest drop in activity over the years.
While the Language Committee routinely opens and closes language versions of the Sister Projects in small languages, there has never been a valid proposal to close Wikipedia in major languages or any project in English. This is not true for Wikinews, where there was a proposal to close English Wikinews, which gained some traction but did not result in any action[https://meta.wikimedia.org/wiki/Proposals_for_closing_projects/Closure_of_English_Wikinews <nowiki>[4]</nowiki>][https://meta.wikimedia.org/wiki/WikiConvention_francophone/2024/Programme/Quelle_proc%C3%A9dure_pour_ouvrir_ou_fermer_un_projet_%3F <nowiki>[5]</nowiki>, see section 5] as well as a draft proposal to close all languages of Wikinews[https://meta.wikimedia.org/wiki/Talk:Proposals_for_closing_projects/Archive_2#Close_Wikinews_completely,_all_languages? <nowiki>[6]</nowiki>].
[[:c:File:Sister Projects Taskforce Wikinews review 2024.pdf|Initial metrics]] compiled by WMF staff also support the community's concerns about Wikinews.
Based on this report, SPTF recommends a community reevaluation of Wikinews. We conclude that its current structure and activity levels are the lowest among the existing sister projects. SPTF also recommends pausing the opening of new language editions while the consultation runs.
SPTF brings this analysis to a discussion and welcomes discussions of alternative outcomes, including potential restructuring efforts or integration with other Wikimedia initiatives.
'''Options''' mentioned so far (which might be applied to just low-activity languages or all languages) include but are not limited to:
*Restructure how Wikinews works and is linked to other current events efforts on the projects,
*Merge the content of Wikinews into the relevant language Wikipedias, possibly in a new namespace,
*Merge content into compatibly licensed external projects,
*Archive Wikinews projects.
Your insights and perspectives are invaluable in shaping the future of these projects. We encourage all interested community members to share their thoughts on the relevant discussion pages or through other designated feedback channels.
=== Feedback and next steps ===
We'd be grateful if you want to take part in a conversation on the future of these projects and the review process. We are setting up two different project pages: [[m:Public consultation about Wikispore|Public consultation about Wikispore]] and [[m:Public consultation about Wikinews|Public consultation about Wikinews]]. Please participate between 27 June 2025 and 27 July 2025, after which we will summarize the discussion to move forward. You can write in your own language.
I will also host a community conversation 16th July Wednesday 11.00 UTC and 17th July Thursday 17.00 UTC (call links to follow shortly) and will be around at Wikimania for more discussions.
<section end="message"/>
</div>
-- [[User:Victoria|Victoria]] on behalf of the Sister Project Task Force, 20:57, 27 juni 2025 (KSV)
<!-- Message sent by User:Johan (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:Johan_(WMF)/Sister_project_MassMassage_on_behalf_of_Victoria/Target_list&oldid=28911188 -->
nr4d9hhza8fdu6oox1y49yvthavnsn9
Šablon:Korisnik tr
10
5628
16638
2011-07-30T22:16:08Z
Barishan
287
Nova stranica: {{Babel field|tr|Bu kullanıcının '''[[:Kategorija:Korisnik tr-M|ana dili]]''' '''[[:Kategorija:Korisnik tr|Türkçe]]dir.'''}}
16638
wikitext
text/x-wiki
{{Babel field|tr|Bu kullanıcının '''[[:Kategorija:Korisnik tr-M|ana dili]]''' '''[[:Kategorija:Korisnik tr|Türkçe]]dir.'''}}
7dfik8ohezjgxxy0wlsrwjiy1prz0an
Šablon:Korisnik fr-1
10
5629
16639
2011-07-30T22:17:48Z
Barishan
287
Nova stranica: {{Babel field 1|fr|Cet utilisateur peut contribuer avec un niveau '''[[:Kategorija:Korisnik fr-1|élémentaire]]''' de '''[[:Kategorija:Korisnik fr|français]].'''}}
16639
wikitext
text/x-wiki
{{Babel field 1|fr|Cet utilisateur peut contribuer avec un niveau '''[[:Kategorija:Korisnik fr-1|élémentaire]]''' de '''[[:Kategorija:Korisnik fr|français]].'''}}
7nfc4624gbaneoc6rqd3zi7c32v7f6h
Šablon:Korisnik el-1
10
5631
16641
2011-07-30T22:21:57Z
Barishan
287
Nova stranica: {{Babel field 1|el|Αυτός ο χρήστης έχει '''[[:Kategorija:Korisnik el-1|μικρή]]''' κατανόηση της '''[[:Kategorija:Korisnik el|Ελληνικής]]''' ...
16641
wikitext
text/x-wiki
{{Babel field 1|el|Αυτός ο χρήστης έχει '''[[:Kategorija:Korisnik el-1|μικρή]]''' κατανόηση της '''[[:Kategorija:Korisnik el|Ελληνικής]]''' γλώσσας.}}
38gscp4obaf5t2lulowqprz6ve0q21y
Šablon:Hebr
10
5797
72795
72149
2025-05-01T22:26:21Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72795
wikitext
text/x-wiki
<span class="HE" style="font-family:{{HE fontovi}}; font-family :inherit; font-size:150%; font-size :150%">{{{1}}}</span><noinclude>
[[Kategorija:Šabloni]]
</noinclude>
j9x1e22ym0aceggmqbl1m4x52m3wblo
Šablon:HE fontovi
10
5799
72792
16931
2025-05-01T22:26:17Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72792
wikitext
text/x-wiki
Narkisim<noinclude>
[[Kategorija:Šabloni]]
</noinclude>
lr9snxe2yb2xta5204twkkzhyrx8c9v
Šablon:Gru
10
5801
72791
72159
2025-05-01T22:25:55Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72791
wikitext
text/x-wiki
<span class="KA" style="font-family:{{KA fontovi}}; font-family :inherit; font-size:125%; font-size :125%">{{{1}}}</span><noinclude>
[[Kategorija:Šabloni]]
</noinclude>
tqlsrtcxl2s9uprbyaet9r2b8iz04jx
Šablon:KA fontovi
10
5802
72796
16925
2025-05-01T22:26:22Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72796
wikitext
text/x-wiki
Sylfaen<noinclude>
[[Kategorija:Šabloni]]
</noinclude>
a11rlo9hkl7s4u4bgshg7rvv29b2jn0
Šablon:Dobrodošlica
10
6340
72719
66946
2025-04-26T00:47:34Z
Minorax
2705
72719
wikitext
text/x-wiki
<noinclude>
Način postavljanja:
<nowiki>{{Dobrodošlica|1= -- ~~~~}}</nowiki>
</noinclude>
<div style="border:1px solid #999999;background-color:#F5F5F5;padding:10px;">
[[Datoteka:Wiktionary-logo.svg|100px|lijevo]]<big>'''Dobro došli na Wikirječnik na [[w:Bosanski jezik|bosanskom jeziku]] – slobodan rječnik, leksikon i tesaurus!'''</big><br>
<div style="border:1px solid #999999;background-color:#B0E0E6;padding:8px;">Zdravo i dobro došli.<br>
Stranice '''[[Pomoć:Sadržaj|Pomoć]]''' i '''[[w:Wikipedia:Najčešća pitanja|Najčešća pitanja]]''' olakšat će Vam da se snađete nakon registracije. Na njima se nalaze objašnjenja kako koristiti Wikirječnik, [[Pomoć:Kako započeti članak|kako kreirati članke]] i [[Wikirječnik:Uređivanje|kako članci trebaju izgledati]]. '''Slobodno''' radite na Wikirječniku i '''razgovarajte''' sa drugima.
Više informacija dostupno je na '''[[Wikirječnik:Vrata zajednice|Vratima zajednice]]''', gdje možete razgovarati sa drugim korisnicima. Možete kontaktirati i s nekima od ''[[w:Administratori|administratora]]'' ako imate neko posebno pitanje.
Na svoju [[Posebno:Mypage|korisničku stranicu]] možete staviti odgovarajuće ''[[w:Wikipedia:Babel|Babel]]'' okvire i [[w:Wikipedia:Korisnički šabloni|korisničke šablone]] tako da drugi znaju koje jezike poznajete, šta vas zanima, čime se bavite i slično. Molimo Vas da se potpisujete na stranicama za razgovor korištenjem '''<code><nowiki>~~~~</nowiki></code>''' (4 znaka ''tilda'').
Radite zajedno sa drugim korisnicima, dijelite ideje i rješavajte probleme. Možete se upisati i na [[w:Wikipedia:Wiki karta|Wikikartu]], tako da i drugi znaju gdje živite.
S vremena na vrijeme pogledajte [[Posebno:NedavneIzmjene|nedavne izmjene]], gdje možete vidjeti nedavne aktivnosti na Wikirječniku.
Prilikom [[Posebno:Upload|postavljanja]] slika koristite ispravne [[w:Wikipedia:Šabloni za slike|šablone za licencu]] i vodite računa o '''[[Wikirječnik:Autorska prava|autorskim pravima]]''' prilikom pisanja članaka. Članci ili slike koje krše autorska prava bit će obrisani. Još jednom Vas srdačno pozdravljamo. {{#if:{{{1|}}}|{{{1}}}}}
{|- style="background-color:#B0E0E6; text-align:center;"
| style="background: #F0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Datoteka:Icona de la Pluja d'Idees de la Taverna de la Viquipèdia.png|18px]] <br/>[[w:Wikipedia:Čaršija|Čaršija]]
| style="background: #E0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Datoteka:View-refresh.svg|18px]] <br/>[[Posebno:Recentchanges|Nedavne izmjene]]
| style="background: #F0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Datoteka:Wiktionary-logo.svg|18px]] <br/>[[w:Pravopis bosanskog jezika|Pravopis]]
| style="background: #E0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Datoteka:Crystal128-kanagram.svg|18px]] <br/>[[w:Wikipedia:Jezički standardi Wikipedije na bosanskom jeziku|Jezički standardi]]
| style="background: #F0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Datoteka:čć.png|18px]] <br/>[[w:Wikipedia:Pravilno-nepravilno u bosanskom jeziku|Pravilno-nepravilno]]
| style="background: #E0FFFF; border:1px solid silver; 18px; font: 90% Verdana; width:16%; height:30;" | [[Datoteka:Help-browser.svg|18px]] <br/>[[w:Wikipedia:Najčešća pitanja|Najčešća pitanja]]
|}
<div style="border-bottom:1px solid #eeeeee;padding-top:0.17em;padding-bottom:0.5em;"></div>
{| width=100% style="background-color:#B0E0E6"
| width=50% align="left" | '''[[w:Wikipedia:Babel#Mark_bs|Don't speak Bosnian? Bs-0?]]'''<br />[[w:Wikipedia:Ambasada|Talk to us via our village pump in English]]
| width=50% align="right" | P. S. Imate li primjedbe ili komentare na ovu poruku?<br />Kliknite [[Razgovor o šablonu:Dobrodošlica|ovdje]].
|}</div></div>
<noinclude>
[[Kategorija:Šabloni]]
</noinclude>
e19gb3viyaxxl77sbm24vi0wgz9b4qf
Šablon:Stranica za razgovor
10
6341
37689
17847
2013-10-04T01:01:44Z
KWiki
1197
37689
wikitext
text/x-wiki
{| class="messagebox" align="center" style="background-color: #RRRRRR;"
|-
! colspan="3" style="border: 1px solid #C0C090; background-color:#F8EABA; text-align:center;" |
{{#ifeq:{{NAMESPACE}}|User talk|
|[[Slika:Nuvola apps important.svg|50px]]
Ovo je [[w:Wikipedia:Pravila korištenja stranice za razgovor|stranica za razgovor]] na kojoj možete predlagati izmjene na članku.
|
Ovo je [[w:Wikipedia:Pravila korištenja stranice za razgovor|stranica za razgovor]] na kojoj možete predlagati izmjene na članku.
}}
|-
| style="background-color: #FFFFFF;" |
* '''Pogledajte [[w:Wikipedia:Pravila korištenja stranice za razgovor|pravila korištenja stranice za razgovor]]'''
* '''Potpisujte svoje komentare sa 4 tilde''' (<tt><nowiki>~~~~</nowiki></tt>).
* '''Novi komentar stavljajte na dno stranice'''. <span class="plainlinks">[http://bs.wikipedia.org/w/index.php?title={{TALKPAGENAMEE}}&action=edit§ion=new Započnite novu temu]</span>.
* '''Stranice za razgovor ne smiju se koristiti za iznošenje vlastitih teorija.'''
| style="margin: 0px; background-color: #F8EABA; border: 1px solid #C0C090; " |
*[[w:Wikipedia:Opća pitanja|Opća pitanja]]
*[[w:Wikipedia:Tehnička pitanja|Tehnička pitanja]]
*[[w:Wikipedia:Neutralno gledište|Neutralno gledište]]
|}<noinclude>
[[Kategorija:Šabloni]]
<!-- interwiki -->
</noinclude>
le61i48n6qpky65frdxg7njvs990mev
Šablon:Kin
10
6499
72797
72242
2025-05-01T22:26:23Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72797
wikitext
text/x-wiki
<span class="KA" style="font-family:{{ZH fontovi}}; font-family :inherit; font-size:130%; font-size :130%">{{{1}}}</span><noinclude>
[[Kategorija:Šabloni]]
</noinclude>
60fz90vzpuj6m0psnm94ouvkt922pb9
Šablon:Vrata zajednice
10
7042
72810
19303
2025-05-01T22:26:41Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72810
wikitext
text/x-wiki
<!-- interwiki -->
[[ar:ويكاموس:بوابة المجتمع]]
[[br:Wikeriadur:Porched ar gumuniezh]]
[[cy:Wiciadur:Portal cymunedol]]
[[cs:Wikislovník:Pod lípou]]
[[de:Wiktionary:Portal]]
[[en:Wiktionary:Community Portal]]
[[fr:Wiktionnaire:Accueil]]
[[hr:Wječnik:Konoba]]
[[it:Wikizionario:Portale Comunità]]
[[ja:Wiktionary:コミュニティ・ポータル]]
[[io:Wikivortaro:Komuneso-portalo]]
[[lt:Vikižodynas:Bendruomenės portalas]]
[[ko:위키낱말사전:편집실]]
[[mk:Wiktionary:Портал на заедницата]]
[[ms:Wiktionary:Portal Masyarakat]]
[[nl:WikiWoordenboek:De Kroeg]]
[[oc:Wikiccionari:Wikidèmia]]
[[pl:Wikisłownik:Pomoc]]
[[pt:Wikcionário:Portal Comunitário]]
[[ru:Викисловарь:Портал сообщества]]
[[simple:Wiktionary:Community Portal]]
[[sl:Wikislovar:Pod lipo]]
[[sr:Викиречник:Трг]]
[[sh:Wiktionary:Community Portal]]
[[sv:Wiktionary:Bybrunnen]]
[[ta:விக்சனரி:சமுதாய வலைவாசல்]]
[[tr:Vikisözlük:Topluluk portalı]]
[[vi:Wiktionary:Cộng đồng]]
[[zh:Wiktionary:社区主页]]
* '''en:''' This is the community discussion page. Requests for the [[m:bot|bot]] flag should be made on this page. This wiki uses the [[m:bot policy|standard bot policy]], and allows [[m:bot policy#Global_bots|global bots]] and [[m:bot policy#Automatic_approval|automatic approval of certain types of bots]]. Other bots should apply below, and then [[m:Steward requests/Bot status|request access]] from a steward if there is no objection.<noinclude>
[[Kategorija:Šabloni]]
</noinclude>
dikeeepjf22oo255j5mvs27jtljmdcl
Šablon:Bot
10
7088
72788
66849
2025-05-01T22:25:41Z
AcaBot
3889
/* Documentation */ dodavanje kat using [[Project:AWB|AWB]]
72788
wikitext
text/x-wiki
{| align="center" class="plainlinks" style="padding: 8px; border: 2px solid #000; width: 80%; text-align: justify;"
|- valign="center"
| [[Datoteka:Crystal Clear action run.svg|90px|left|link=]] || '''This user account is a [[m:en:Wikipedia:Bots|bot]], operated by [[User:{{{1}}}|{{{1}}}]] ([[User talk:{{{1}}}|talk]]).'''<br />It is not a [[m:en:Wikipedia:Sock puppetry|sock-puppet]], but rather an automated or semi-automated account for making repetitive edits that would be extremely tedious to do manually.<br />''Administrators: if this bot is malfunctioning or causing harm, please [{{fullurl:Special:Blockip|wpBlockAddress={{PAGENAMEE}}&wpBlockExpiry=indefinite&wpAnonOnly=0&wpEnableAutoblock=0&wpCreateAccount=0&wpBlockReason=Bot%20malfunctioning:%20}} block it].''
|}<noinclude>
== Documentation ==
* Replace "Example" with your bot's username.
{| class="wikitable" width="100%"
|-
! width="150px" | Code
! Result
|-
| <code><nowiki>{{Bot|Example}}</nowiki></code>
| {{Bot|Example}}
|}</noinclude><noinclude>
[[Kategorija:Šabloni]]
</noinclude>
gsdp23w2rb8ho5izjlhdvpeezhij3b4
Šablon:Korisnik it-1
10
8237
25127
2012-06-23T20:31:12Z
Barishan
287
Nova stranica: {{Babel field 1|it|Questo utente può contribuire con un livello '''[[:Kategorija:User it-1|semplice]]''' di '''[[:Kategorija:User it|italiano]]'''.}}
25127
wikitext
text/x-wiki
{{Babel field 1|it|Questo utente può contribuire con un livello '''[[:Kategorija:User it-1|semplice]]''' di '''[[:Kategorija:User it|italiano]]'''.}}
oyxc3gwm9lmzvbudstz7cn5btzxi394
Šablon:Sin
10
8864
72802
26872
2025-05-01T22:26:30Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72802
wikitext
text/x-wiki
<span class="KA" style="font-family:{{ZH fontovi}}; font-family :inherit; font-size:{{BN font veličina}}; font-size :inherit">{{{1}}}</span><noinclude>
[[Kategorija:Šabloni]]
</noinclude>
2po5qoqmet577hsg3nbi52jb8a3by2g
Šablon:HYkar
10
9620
72794
29178
2025-05-01T22:26:19Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72794
wikitext
text/x-wiki
<span class="EL" style="font-family:{{HY fontovi}}; font-family :inherit; font-size:{{HY font veličina}}; font-size :inherit">{{{1}}}</span><noinclude>
[[Kategorija:Šabloni]]
</noinclude>
0lzp5ohuoey3yk0jivu6yanvz9st5bb
Šablon:HY font veličina
10
9622
72793
29181
2025-05-01T22:26:18Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72793
wikitext
text/x-wiki
125%<noinclude>
[[Kategorija:Šabloni]]
</noinclude>
3tb18ezqgjdh74ruknmby37b2xb0xr8
Wikirječnik:Vrata zajednice
4
11722
39141
2014-02-06T11:03:25Z
Edinwiki
523
Edinwiki je premjestio stranicu [[Vikirječnik:Vrata zajednice]] na [[Vikirječnik:Čaršija]]
39141
wikitext
text/x-wiki
#PREUSMJERI [[Vikirječnik:Čaršija]]
4of1t9shbnrp1wsd4v88k9t6f10rc8m
Šablon:softredirect
10
11835
41198
2014-10-16T10:16:37Z
Conquistador
1793
Preusmjereno na [[Šablon:Softredirect]]
41198
wikitext
text/x-wiki
#REDIRECT [[Template:Softredirect]]
e3seyzdad101twwwboft021dw04ej42
Kategorija:Stranice sa istim argumentima kod poziva šablona
14
12184
72651
66267
2025-04-13T20:51:35Z
Aca
2473
+
72651
wikitext
text/x-wiki
[[Kategorija:Wikirječnik]]
8ncm0oz05e4x1zj07x94tsp8nhcxpox
Kategorija:Neindeksirane stranice
14
12186
72650
66229
2025-04-13T20:50:32Z
Aca
2473
+
72650
wikitext
text/x-wiki
[[Kategorija:Wikirječnik]]
8ncm0oz05e4x1zj07x94tsp8nhcxpox
Kategorija:Stranice sa neispravnim linkovima do datoteka
14
12187
72652
66268
2025-04-13T20:51:59Z
Aca
2473
+
72652
wikitext
text/x-wiki
[[Kategorija:Wikirječnik]]
8ncm0oz05e4x1zj07x94tsp8nhcxpox
Kategorija:Šabloni roda i broja
14
12486
58186
2017-02-22T17:29:11Z
Srđan
1899
Nova stranica: [[Kategorija:Šabloni|Rod i broj]]
58186
wikitext
text/x-wiki
[[Kategorija:Šabloni|Rod i broj]]
towmc1je6q84ezfbd2xn5t0azggjrqj
Šablon:za
10
12487
72817
58211
2025-05-01T22:26:54Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72817
wikitext
text/x-wiki
[[Datoteka:Symbol support vote.svg|15px|Za|link=]] <noinclude>
[[Kategorija:Šabloni]]
</noinclude>
kqgvozncxzglkmqqrnil3clfubpmxmv
Šablon:protiv
10
12488
72814
72671
2025-05-01T22:26:50Z
AcaBot
3889
/* top */ dodavanje kat using [[Project:AWB|AWB]]
72814
wikitext
text/x-wiki
[[Datoteka:Symbol oppose vote.svg|15px|Protiv|link=]] <noinclude>
__EXPECTUNUSEDTEMPLATE__
</noinclude><noinclude>
[[Kategorija:Šabloni]]
</noinclude>
0bploh1sewi8fk34kbj3itz8w223h3r
MediaWiki:Gadget-legacy.js
8
12497
68441
58525
2022-08-31T15:17:23Z
Krinkle
617
Maintenance: Avoid deprecated global 'loadedScripts'. Delegate to importScriptURI instead, which handles this already.
68441
javascript
text/javascript
/** LegacyScripts **/
/*jshint maxerr:1048576, strict:true, undef:true, latedef:true, es3:true */
/*global mw, jQuery, importScript */
/*</pre>
===importScript===
<pre>*/
/**
* importScript inserts a javascript page either
* from Wiktionary: importScript('User:Connel MacKensie/yetanother.js');
* from another Wikimedia wiki: importScript('User:Lupin/insane.js', 'en.wikipedia.org');
*
* by specifying the third argument, an oldid can be passed to ensure that updates to the script are not included.
* by specifying the fourth argument, a specific version of JavaScript can be declared.
*
* based on [[w:MediaWiki:Common.js]] 2007-11-29
**/
window.importScript = function (page, wiki, oldid, jsver) {
var url = ( wiki ? encodeURIComponent(wiki) : mw.config.get('wgScript')) + '?title='
+ mw.util.wikiUrlencode(page)
+ (oldid ? '&oldid=' + encodeURIComponent(oldid) : '')
+ '&action=raw&ctype=text/javascript';
if (wiki || oldid || jsver) {
mw.log.warn("importScript called with more than one argument. This is deprecated and may be unreliable. Please use mw.loader.load('" + url + "') directly");
}
if (window.importScriptURI) {
// Only include scripts once
return window.importScriptURI(url) ? true : false;
}
var scriptElem = document.createElement("script");
scriptElem.src = url;
scriptElem.type = jsver ? "application/javascript;version=" + jsver : "text/javascript";
document.getElementsByTagName("head")[0].appendChild(scriptElem);
return true;
};
/*</pre>
=== DOM creation ===
<pre>*/
/**
* Create a new DOM node for the current document.
* Basic usage: var mySpan = newNode('span', "Hello World!")
* Supports attributes and event handlers*: var mySpan = newNode('span', {style:"color: red", focus: function(){alert(this)}, id:"hello"}, "World, Hello!")
* Also allows nesting to create trees: var myPar = newNode('p', newNode('b',{style:"color: blue"},"Hello"), mySpan)
*
* *event handlers, there are some issues with IE6 not registering event handlers on some nodes that are not yet attached to the DOM,
* it may be safer to add event handlers later manually.
**/
var newNode = window.newNode = function newNode(tagname) {
var node = document.createElement(tagname);
for (var i = 1; i < arguments.length; ++i){
if (typeof arguments[i] === 'string') { // text
node.appendChild(document.createTextNode(arguments[i]));
} else if (typeof arguments[i] === 'object') {
if (arguments[i].nodeName) { //If it is a DOM Node
node.appendChild(arguments[i]);
} else { // Attributes (hopefully)
for (var j in arguments[i]){
if (j === 'class') { //Classname different because...
node.className = arguments[i][j];
} else if (j === 'style') { //Style is special
node.style.cssText = arguments[i][j];
} else if (typeof arguments[i][j] === 'function') { //Basic event handlers
newNode.addEventHandler(node, j, arguments[i][j]);
} else {
node.setAttribute(j, arguments[i][j]); //Normal attributes
}
}
}
}
}
node.addEventHandler = function(eventName, handler) {
newNode.addEventHandler(this, eventName, handler);
};
return node;
};
newNode.addEventHandler = function(node, eventName, handler) {
try{ node.addEventListener(eventName,handler,false); //W3C
}catch(e){try{ node.attachEvent('on'+eventName,handler,"Language"); //MSIE
}catch(e){ node['on'+eventName]=handler; }} //Legacy
};
/*</pre>
=== CSS ===
<pre>*/
window.addCSSRule = function (selector,cssText) {
mw.log.warn("deprecated function addCSSRule called; use mw.util.addCSS(css) instead");
mw.util.addCSS( selector+'{' + cssText + '}' );
};
/*</pre>
===Cookies===
<pre>
*/
window.setCookie = function setCookie(cookieName, cookieValue) {
/*global escape */
mw.log.warn("deprecated function setCookie called; use jQuery.cookie instead");
var today = new Date();
var expire = new Date();
var nDays = 30;
expire.setTime( today.getTime() + (3600000 * 24 * nDays) );
document.cookie = cookieName + "=" + escape(cookieValue)
+ ";path=/"
+ ";expires="+expire.toGMTString();
};
window.getCookie = function getCookie(cookieName) {
/*global unescape */
mw.log.warn("deprecated function getCookie called; use jQuery.cookie instead");
cookieName = String(cookieName);
var start = document.cookie.indexOf( cookieName + "=" );
if ( start === -1 ) return "";
var len = start + cookieName.length + 1;
if ( ( !start ) && ( cookieName !== document.cookie.substring( 0, cookieName.length ) ) )
return "";
var end = document.cookie.indexOf( ";", len );
if ( end === -1 ) end = document.cookie.length;
return unescape( document.cookie.substring( len, end ) );
};
window.deleteCookie = function deleteCookie(cookieName) {
mw.log.warn("deprecated function deleteCookie called; use jQuery.cookie instead");
if (window.getCookie(cookieName)) {
document.cookie = cookieName + "=" + ";path=/" + ";expires=Thu, 01-Jan-1970 00:00:01 GMT";
}
};
/*</pre>
==Wiktionary Customisation==
<pre>*/
if ( document.getElementById('footer') ) {
jQuery.ready();
}
//initialize the storage for script options. Gadgets that set script
//options should also include this line as they are loaded before us.
if ( typeof WiktScriptPrefs == 'undefined') {
window.WiktScriptPrefs = {};
}
/*</pre>
===[[MediaWiki:Youhavenewmessages]] to display differently for non-newbies with JS than for others===
<pre>*/
/* Suspected unresponsive page culprit: see the GP (Nov. 2010, "Blocking script execution on each page") */
/* if (mw.config.get('wgUserGroups') && mw.config.get('wgUserGroups').join("").indexOf("autoconfirmed") > -1)
{
addCSSRule(".msgfornewbies", "display: none");
}else{
addCSSRule(".msgfornonnewbies", "display: none");
} */
/*</pre>
===Page specific extensions===
<pre>*/
/*</pre>
====[[Wiktionary:Main Page]]====
<pre>*/
// Hide the title and "Redirected from" (maybe we should keep the redirected from so's people update their bookmarks ;)
// Broken in IE!
if ( mw.config.get('wgPageName') === 'Početna strana' && !( mw.config.get('wgAction') === 'view' || mw.config.get('wgAction') === 'submit' ) ){
mw.util.addCSS( '.firstHeading { display: block !important; }' );
mw.util.addCSS( '#contentSub { display: inline !important; }' );
}
if (mw.config.get('wgPageName') === 'Početna strana') {
jQuery(function () {
mw.util.addPortletLink('p-lang', '//meta.wikimedia.org/wiki/Wiktionary#List_of_Wiktionaries',
'Cijeli spisak', 'interwiki-completelist', 'Cijeli spisak Wikirječnika');
});
}
/*</pre>
==URL Fixes==
<pre>*/
/**
* doRedirect will redirect if a did you mean box is found, and create a
* "redirected from X" if a rdfrom is passed in the get parameters
* The first half is an ugly workaround for [[bugzilla:3339]], :(
* The second half is an ugly workaround for not having serverware support :(
**/
/*</pre>
===Did you mean ____ redirects===
<pre>*/
window.setTimeout(function () {
// REDIRECTED FROM
if( location.href.indexOf('rdfrom=') !== -1 ) {
var wiktDYMfrom = decodeURIComponent(location.href.replace(/^(.+[&\?]rdfrom=([^&#]+).*|.*)?$/,"$2"));
jQuery('#siteSub').after(
newNode('div', {id: 'contentSub'}, '(Auto-redirected from ',
newNode('a', {href: mw.util.getUrl(wiktDYMfrom) + '?redirect=no', 'class': 'new'}, wiktDYMfrom),
')'));
} else {
// DID YOU MEAN
var target = jQuery('#did-you-mean a').html(),
pagetitle = jQuery('h1').first().text().replace(/^\s+|\s+$/g, '');
if (target && target !== pagetitle
&& !location.href.match(/[&\?]redirect=no|[&\?]action=(?!view)/)
&& (jQuery.cookie('WiktionaryDisableAutoRedirect') != 'true')
&& mw.config.get('wgArticleId') === 0
&& mw.config.get('wgNamespaceNumber') === 0
&& !/Redirected from/.test(jQuery('#contentSub').html())
) {
location = mw.util.getUrl( target, { "rdfrom": pagetitle } );
}
}
// Random page in a given language
location.href.replace(/[?&]rndlang=([^&#]+)[^#]*(?:#(.+))?/, function (m, lang, headlang) {
var script = 'http://toolserver.org/~hippietrail/randompage.fcgi';
var insert = document.getElementById('contentSub');
if (headlang) {
var heading = document.getElementById(headlang);
if (heading) heading = heading.parentNode;
if (heading) {
insert = newNode('div', {style: 'font-size: 84%; line-height: 1.2em;'});
heading.parentNode.insertBefore(insert, heading.nextSibling);
}
}
if (!insert || (insert.innerHTML !== "")) return;
insert.appendChild(newNode('span', {style: 'color: #888;'}, "Another ",
newNode('a', {href: script + '?langs=1'}, "Random"), " word in ",
newNode('a', {href: script + '?langname=' + lang}, decodeURIComponent(lang))
));
});
}, 3000);
/*</pre>
===Fix Wikified section titles===
<pre>*/
jQuery(document).ready(function () {
// {temp|template}
if (/\.7B\.7Btemp\.7C(.*?)\.7D\.7D/.test(location.href)) {
var url = location.href.replace(/\.7B\.7Btemp.7C/g, ".7B.7B");
location = url;
}
});
jQuery(document).ready(function () {
if(mw.config.get('wgAction') !== 'edit')
return;
if(!/[?&]section=\d/.test(location.href))
return;
var wpSummary = document.getElementById('wpSummary');
if(!wpSummary)
return;
if(wpSummary.value.substr(0, 3) !== '/* ')
return;
if(wpSummary.value.substr(wpSummary.value.length - 4) !== ' */ ')
return;
wpSummary.value = wpSummary.value.replace(/\{\{temp(late)?\|/g, '{{');
});
/*</pre>
== Visibility toggling ==
<pre>*/
var VisibilityToggles = window.VisibilityToggles = {
// toggles[category] = [[show, hide],...]; statuses[category] = [true, false,...]; buttons = <li>
toggles: {}, statuses: {}, buttons: null,
// Add a new toggle, adds a Show/Hide category button in the toolbar,
// and will call show_function and hide_function once on register, and every alternate click.
register: function (category, show_function, hide_function) {
var id = 0;
if (!this.toggles[category]) {
this.toggles[category] = [];
this.statuses[category] = [];
} else {
id = this.toggles[category].length;
}
this.toggles[category].push([show_function, hide_function]);
this.statuses[category].push(this.currentStatus(category));
this.addGlobalToggle(category);
(this.statuses[category][id] ? show_function : hide_function)();
return function () {
var statuses = VisibilityToggles.statuses[category];
statuses[id] = !statuses[id];
VisibilityToggles.checkGlobalToggle(category);
return (statuses[id] ? show_function : hide_function)();
};
},
// Add a new global toggle to the side bar
addGlobalToggle: function(category) {
if (document.getElementById('p-visibility-'+category))
return;
if (!this.buttons) {
this.buttons = newNode('ul');
var collapsed = jQuery.cookie("vector-nav-p-visibility") === "false",
toolbox = newNode('div', {'class': "portal portlet "+(collapsed?"collapsed":"expanded"), 'id': 'p-visibility'},
newNode('h3', 'Vidljivost'),
newNode('div', {'class': "pBody body"}, collapsed ? void(0) : {'style':'display:block;'}, this.buttons)
);
var sidebar = document.getElementById('mw-panel') || document.getElementById('column-one');
var insert = null;
if ((insert = (document.getElementById('p-lang') || document.getElementById('p-feedback'))))
sidebar.insertBefore(toolbox, insert);
else
sidebar.appendChild(toolbox);
}
var status = this.currentStatus(category);
var newToggle = newNode('li', newNode('a', {
id: 'p-visibility-' + category,
style: 'cursor: pointer',
href: '#visibility-' + category,
click: function(e)
{
VisibilityToggles.toggleGlobal(category);
if (e && e.preventDefault)
e.preventDefault();
else
window.event.returnValue = false;
return false;
}},
(status ? 'Sakrij kutiju ' : 'Prikaži kutiju ') + category));
for (var i = 0; i < this.buttons.childNodes.length; i++) {
if (this.buttons.childNodes[i].id < newToggle.id) {
this.buttons.insertBefore(newToggle, this.buttons.childNodes[i]);
return;
}
}
this.buttons.appendChild(newToggle);
},
// Update the toggle-all buttons when all things are toggled one way
checkGlobalToggle: function(category) {
var statuses = this.statuses[category];
var status = statuses[0];
for (var i = 1; i < statuses.length; i++) {
if (status != statuses[i])
return;
}
document.getElementById('p-visibility-' + category).innerHTML = (status ? 'Sakrij kutiju ' : 'Prikaži kutiju ') + category;
},
// Toggle all un-toggled elements when the global button is clicked
toggleGlobal: function(category) {
var status = document.getElementById('p-visibility-' + category).innerHTML.indexOf('Prikaži kutiju ') === 0;
for (var i = 0; i < this.toggles[category].length; i++ ) {
if (this.statuses[category][i] != status) {
this.toggles[category][i][status ? 0 : 1]();
this.statuses[category][i] = status;
}
}
document.getElementById('p-visibility-' + category).innerHTML = (status ? 'Sakrij kutiju ' : 'Prikaži kutiju ') + category;
var current = jQuery.cookie('Vidljivost');
if (!current)
current = ";";
current = current.replace(';' + category + ';', ';');
if (status)
current = current + category + ";";
window.setCookie('Vidljivost', current);
},
currentStatus: function(category) {
if (location.hash.toLowerCase().split('_')[0] == '#' + category.toLowerCase())
return true;
if (location.href.search(/[?](.*&)?hidecats=/) > 0)
{
var hidecats = location.href;
hidecats = hidecats.replace(/^[^?]+[?]((?!hidecats=)[^&]*&)*hidecats=/, '');
hidecats = hidecats.replace(/&.*/, '');
hidecats = hidecats.split(',');
for (var i = 0; i < hidecats.length; ++i)
if (hidecats[i] == category || hidecats[i] == 'all')
return false;
else if (hidecats[i] == '!' + category || hidecats[i] == 'none')
return true;
}
if (jQuery.cookie('WiktionaryPreferencesShowNav') == 'true')
return true;
if ((jQuery.cookie('Vidljivost') || "").indexOf(';' + category + ';') >= 0)
return true;
// TODO check category-specific cookies
return false;
}
};
/*</pre>
=== NavBars ===
<pre>*/
var NavigationBarHide = 'sakrij ▲';
var NavigationBarShow = 'prikaži ▼';
function NavToggleCategory(navFrame)
{
var table = navFrame.getElementsByTagName('table')[0];
if (table && table.className == "translations")
return "translations";
var heading = navFrame.previousSibling;
while (heading) {
if (/[hH][4-6]/.test(heading.nodeName)) {
if (heading.getElementsByTagName('span')[1])
heading = heading.getElementsByTagName('span')[0];
return jQuery(heading).text().toLowerCase()
// jQuery's .text() is inconsistent about whitespace:
.replace(/^\s+|\s+$/g, '').replace(/\s+/g, ' ')
// remove numbers added by the "Auto-number headings" pref:
.replace(/^[1-9][0-9.]+ ?/, '');
}
else if (/[hH][1-3]/.test(heading.nodeName))
break;
heading = heading.previousSibling;
}
return "other boxes";
}
function createNavToggle(navFrame){
var navHead, navToggle, navContent;
for (var j=0; j < navFrame.childNodes.length; j++) {
var div = navFrame.childNodes[j];
if (/(^|[^a-zA-Z0-9_\-])NavHead(?![a-zA-Z0-9_\-])/.test(div.className))
navHead = div;
if (/(^|[^a-zA-Z0-9_\-])NavContent(?![a-zA-Z0-9_\-])/.test(div.className))
navContent = div;
}
if (!navHead || !navContent)
return;
// Step 1, don't react when a subitem is clicked.
for (var i=0; i<navHead.childNodes.length; i++) {
var child = navHead.childNodes[i];
if (child.nodeName == "A") {
child.onclick = function (e) {
if (e && e.stopPropagation)
e.stopPropagation();
else
window.event.cancelBubble = true;
};
}
}
// Step 2, toggle visibility when bar is clicked.
// NOTE This function was chosen due to some funny behaviour in Safari.
navToggle = newNode('a', {href: 'javascript:(function(){})()'}, '');
navHead.insertBefore(newNode('span', {'class': 'NavToggle'}, '[', navToggle, ']'), navHead.firstChild);
navHead.style.cursor = "pointer";
navHead.onclick = VisibilityToggles.register(NavToggleCategory(navFrame),
function show() {
navToggle.innerHTML = NavigationBarHide;
if (navContent)
navContent.style.display = "block";
},
function hide() {
navToggle.innerHTML = NavigationBarShow;
if (navContent)
navContent.style.display = "none";
});
}
jQuery(document).ready( function ()
{
var divs = jQuery(".NavFrame");
for (var i=0; i < divs.length; i++) {
// XXX: some templates use a class of NavFrame for the style, but for legacy reasons, are not NavFrames
// if (divs[i].className == "NavFrame") {
createNavToggle(divs[i]);
// }
}
});
/*</pre>
===View Switching===
<pre>*/
function viewSwitching(rootElement) {
var showButtonText = 'more ▼';
var hideButtonText = 'less ▲';
var elemsToHide = rootElement.getElementsByClassName('vsHide');
var elemsToShow = rootElement.getElementsByClassName('vsShow');
// Find the element to place the toggle button in.
var toggleElement = rootElement.getElementsByClassName('vsToggleElement');
//if (toggleElement.length === 0)
// return;
toggleElement = toggleElement[0];
// The toggleElement becomes clickable in its entirety, but
// we need to prevent this if a contained link is clicked instead.
for (var i = 0; i < toggleElement.childNodes.length; ++i) {
var child = toggleElement.childNodes[i];
if (child.nodeName == "A") {
child.onclick = function (e) {
if (e && e.stopPropagation)
e.stopPropagation();
else
window.event.cancelBubble = true;
};
}
}
// Add the toggle button.
var toggleButton = newNode('a', {href: 'javascript:(function(){})()'}, '');
toggleElement.insertBefore(newNode('span', {'class': 'NavToggle'}, '[', toggleButton, ']'), toggleElement.firstChild);
// Determine the visibility toggle category (for the links in the bar on the left).
var toggleCategory = "others";
var classNames = rootElement.className.split(/\s+/);
for (var i = 0; i < classNames.length; ++i) {
var className = classNames[i].split('-');
if (className[0] == 'vsToggleCategory') {
toggleCategory = className[1];
}
}
// Register the visibility toggle.
toggleElement.style.cursor = "pointer";
toggleElement.onclick = VisibilityToggles.register(toggleCategory,
function show() {
toggleButton.innerHTML = hideButtonText;
for (var i = 0; i < elemsToShow.length; ++i) {
elemsToShow[i].style.display = 'none';
}
for (var i = 0; i < elemsToHide.length; ++i) {
if (elemsToHide[i].nodeName == "TABLE")
elemsToHide[i].style.display = 'table';
else if (elemsToHide[i].nodeName == "TR")
elemsToHide[i].style.display = 'table-row';
else if (elemsToHide[i].nodeName == "TD" || elemsToHide[i].nodeName == "TH")
elemsToHide[i].style.display = 'table-cell';
else
elemsToHide[i].style.display = 'block';
}
},
function hide() {
toggleButton.innerHTML = showButtonText;
for (var i = 0; i < elemsToShow.length; ++i) {
if (elemsToShow[i].nodeName == "TABLE")
elemsToShow[i].style.display = 'table';
else if (elemsToShow[i].nodeName == "TR")
elemsToShow[i].style.display = 'table-row';
else if (elemsToShow[i].nodeName == "TD" || elemsToShow[i].nodeName == "TH")
elemsToShow[i].style.display = 'table-cell';
else
elemsToShow[i].style.display = 'block';
}
for (var i = 0; i < elemsToHide.length; ++i) {
elemsToHide[i].style.display = 'none';
}
});
}
document.getElementsByClassName && jQuery(document).ready(function () {
var vsSwitchers = document.getElementsByClassName('vsSwitcher');
for (var i = 0; i < vsSwitchers.length; ++i) {
viewSwitching(vsSwitchers[i]);
}
});
/*</pre>
== Interproject links ==
<pre>*/
/*
#########
### ProjectLinks
### by [[user:Pathoschild]] (idea from an older, uncredited script)
### * generates a sidebar list of links to other projects from {{projectlinks}}
#########
*/
jQuery(document).ready(function () {
var elements = [];
var spans = document.getElementsByTagName('span');
// filter for projectlinks
for (var i = 0, j = 0; i < spans.length; i++) {
if (spans[i].className == 'interProject') {
elements[j] = spans[i].getElementsByTagName('a')[0];
j++;
}
}
if (j === 0)
return;
// sort alphabetically
function sortbylabel(a,b) {
// get labels
a = a.innerHTML.replace(/^.*<a[^>]*>(.*)<\/a>.*$/i,'$1');
b = b.innerHTML.replace(/^.*<a[^>]*>(.*)<\/a>.*$/i,'$1');
// return sort order
if (a < b) return -1;
if (a > b) return 1;
return 0;
}
elements.sort(sortbylabel);
// Create the list of project links
var pllist = newNode('ul');
for (var i=0; i<elements.length; i++) {
pllist.appendChild(newNode('li', elements[i]));
}
var collapsed = jQuery.cookie("vector-nav-p-projects") == "false";
var projectBox = newNode('div', {'class': 'portlet portal '+(collapsed?"collapsed":"expanded"), id: 'p-projects'},
newNode('h3', 'In other projects'),
newNode('div', {'class': 'pBody body'}, collapsed?undefined:{'style':'display:block;'}, pllist)
);
var insert = document.getElementById('p-tb');
if (!insert)
return;
if (insert.nextSibling)
insert.parentNode.insertBefore(projectBox, insert.nextSibling);
else
insert.parentNode.appendChild(projectBox);
});
/*</pre>
===Scripts specific to Internet Explorer===
<pre>*/
if (navigator.appName == "Microsoft Internet Explorer") {
/** Internet Explorer bug fix **************************************************
*
* Description: Fixes IE horizontal scrollbar bug
* Maintainers: [[User:Tom-]]?
*/
var oldWidth;
var docEl = document.documentElement;
var fixIEScroll = function () {
function doFixIEScroll() {
docEl.style.overflowX = (docEl.scrollWidth - docEl.clientWidth < 4) ? "hidden" : "";
}
if (!oldWidth || docEl.clientWidth > oldWidth)
doFixIEScroll();
else
setTimeout(doFixIEScroll, 1);
oldWidth = docEl.clientWidth;
};
document.attachEvent("onreadystatechange", fixIEScroll);
document.attachEvent("onresize", fixIEScroll);
// In print IE (7?) does not like line-height
mw.util.addCSS( '@media print { sup, sub, p, .documentDescription { line-height: normal; }}');
// IE overflow bug
mw.util.addCSS('div.overflowbugx { overflow-x: scroll !important; overflow-y: hidden !important; } div.overflowbugy { overflow-y: scroll !important; overflow-x: hidden !important; }');
// IE zoomfix
// Use to fix right floating div/table inside tables
mw.util.addCSS('.iezoomfix div, .iezoomfix table { zoom: 1;}');
}
/*</pre>
===Category page fixes===
<pre>*/
// Apply only to category pages
if (mw.config.get('wgNamespaceNumber') === 14)
{
jQuery(document).ready(function($)
{
var wrapper;
// Apply only to pages containing an element with the id "catfix"
if (!(wrapper = document.getElementById("catfix")))
return;
mw.loader.using(['mediawiki.Title'], function()
{
// Get the language name and script wrapper
var langname = wrapper.className.split("CATFIX-")[1];
wrapper = wrapper.getElementsByTagName("*")[0] || document.createElement("span");
var anchor = "";
if (langname.length > 0)
anchor = "#" + langname;
// Process each link in the category listing
jQuery("#mw-pages>.mw-content-ltr").find("li>a").each(function()
{
try
{
var titleobj = new mw.Title(this.textContent || this.innerText);
// If the page is not in mainspace, reconstruction or not an appendix page beginning with the language name (i.e. reconstructions), then skip
if (!(titleobj.getNamespaceId() === 0 || titleobj.getNamespaceId() == 118 || (titleobj.getNamespaceId() == 100 && titleobj.getNameText().substr(0, langname.length + 1) == langname + "/")))
return;
// Add the anchor only to mainspace pages
if (titleobj.getNamespaceId() === 0)
this.setAttribute("href", this.getAttribute("href", 2) + anchor);
// Insert the wrapper around the link
var li = this.parentNode;
var clone = wrapper.cloneNode(false);
li.removeChild(this);
clone.appendChild(this);
li.appendChild(clone);
}
catch(e)
{
}
});
});
});
}
s7rv73kse52pnhxoik6lifu308l9jgl
MediaWiki:Gadget-legacy.css
8
12498
58520
2017-03-04T19:45:02Z
Srđan
1899
Preuzeto s [[:en:MediaWiki:Gadget-legacy.css]].
58520
css
text/css
.client-js .NavFrame .NavContent {
display: none;
}
.client-js .not .NavContent { /* ??? */
display: block;
}
/* Hidden quotes */
.client-js .ns-0 ol>li>ul {
display: none;
}
9ulscjkinleryxy87vq6xcfr8fjrc8g
MediaWiki:Gadgets-definition
8
12499
68679
58521
2023-05-15T21:34:54Z
Jon (WMF)
3425
[[phab:T271995]] Merge jquery.cookie and mediawiki.cookie modules
68679
wikitext
text/x-wiki
* LegacyScripts[ResourceLoader|dependencies=site,mediawiki.util,mediawiki.toolbar,mediawiki.cookie]|legacy.js|legacy.css
3dtk0lmvm5g7hxute48wlxohy5rhejl
MediaWiki:Common.js
8
12500
67199
67198
2020-04-20T01:50:12Z
Krinkle
617
Maintenance: [[mw:RL/MGU]] - Remove use of redundant module
67199
javascript
text/javascript
'use strict'; /* Any JavaScript here will be loaded for all users on every page load. */ // {{documentation}} <nowiki>
/*jshint shadow:true, undef:true, latedef:true, unused:true, es3:true */
/*global jQuery, mw, importScript, importStylesheet */
/** [[WT:PREFS]] v2.0 **/
try { (function () {
var prefs;
try {
prefs = localStorage.getItem('AGprefs');
} catch (e) {
}
prefs = prefs && jQuery.parseJSON(prefs);
if (mw.config.get('wgUserGroups').indexOf('autoconfirmed') !== -1)
return;
if (mw.config.get('wgUserGroups').indexOf('user') === -1) {
// XXX: [[Wiktionary:Preferences/V2]] is just a temporary page
mw.loader.using(['mediawiki.util'], function () {
mw.util.addPortletLink('p-personal', mw.util.getUrl('Wiktionary:Preferences/V2'),
'Preferences', 'pt-agprefs', 'Personalise Wiktionary (settings are kept per-browser).', '',
document.getElementById('pt-createaccount'));
});
if ((mw.config.get('wgAction') === 'view') && (mw.config.get('wgPageName') === 'Wiktionary:Preferences/V2')) {
mw.loader.load('ext.gadget.AGprefs'); // [[MediaWiki:Gadget-AGprefs.js]]
}
}
if (!prefs)
return;
mw.loader.state('the_pope_is_an_atheist_woman_alien', 'missing');
for (var key in prefs.modules) {
if (prefs.modules[key]) {
mw.loader.load([key]);
} else {
// unavoidable race condition. to prevent it, every enabled-by-default gadget should have "site" as a dependency
if (mw.loader.getState(key) !== 'ready') {
mw.loader.moduleRegistry[key].dependencies.push('the_pope_is_an_atheist_woman_alien');
mw.loader.state(key, 'missing');
} else {
// XXX
mw.log.warn(key + " could not be disabled; make sure it has 'site' declared as a dependency");
}
}
}
for (var key in prefs.sheets) {
importStylesheet('MediaWiki:Gadget-' + key);
}
for (var key in prefs.scripts) {
importScript('MediaWiki:Gadget-' + key);
}
if (mw.config.get('wgUserGroups').indexOf('user') !== -1)
mw.loader.using(['mediawiki.api'], function () {
var changes = [];
for (var key in prefs.gadgets)
changes.push('gadget-' + key + '=' + (prefs.gadgets[key] ? '1' : '0'));
(new mw.Api()).postWithToken('options', {
action: 'options',
change: changes.join('|')
}).then(function () {
try { localStorage.removeItem('AGprefs'); } catch (e) { /* */ }
mw.notify(
jQuery('<b>Your <a href="/wiki/Wiktionary:Preferences/V2">per-browser preferences</a> have been migrated</b><br/><br/>' +
'From now on, you should use your <a href="/wiki/Special:Preferences">user preferences page</a>. ' +
'Preferences will no longer apply after you log out.')
);
});
});
})(); } catch (e) { mw.log.warn(e); }
mw.loader.using('mediawiki.util').done(function(){
/** &withmodule= query parameter **/
if (mw.util.getParamValue('withmodule'))
mw.loader.load(mw.util.getParamValue('withmodule').split(','));
/** &preloadtext= and &preloadminor= **/
if (mw.config.get('wgAction') === 'edit')
jQuery(document).ready(function() {
var wpTextbox1 = document.getElementById('wpTextbox1');
var wpMinoredit = document.getElementById('wpMinoredit');
if (!wpTextbox1)
return;
var preloadtext = mw.util.getParamValue('preloadtext');
var preloadminor = mw.util.getParamValue('preloadminor');
if (preloadtext && !wpTextbox1.value)
wpTextbox1.value = preloadtext;
if ((preloadminor !== null) && wpMinoredit)
wpMinoredit.checked = !/^(0|false|no|)$/i.test(preloadminor);
});
});
/** [[Special:PrefixIndex/Unsupported titles]] **/
if ((mw.config.get('wgAction') === 'view') && /^Unsupported_titles\//.test(mw.config.get('wgPageName')))
jQuery(document).ready(function () {
var titleMap = {
'Left_curly_bracket' : '{',
'Right_curly_bracket' : '}',
'Left_square_bracket' : '[',
'Right_square_bracket' : ']',
'Less_than' : '<',
'Greater_than' : '>',
'Equal_greater_than' : '=>',
'Equal_less_than' : '=<',
'Greater_than_equal' : '>=',
'Less_than_equal' : '<=',
'Hyphen_greater_than' : '->',
'Less_than_hyphen' : '<-',
'Greater_than_low_line_less_than' : '>_<',
'Double_colon' : '::',
'Enclosing_colons' : ': :',
'Colon_equals' : ':=',
'Colon_capital_thorn' : ':Þ',
'Colon_slash_slash' : '://',
'Colon_left_paren' : ':(',
'Colon_right_paren' : ':)',
'Less_than_greater_than' : '<>',
'Less_than_three' : '<3',
'Enclosing_less_than_greater_than' : '< >',
'Less_than_trailing_slash_greater_than' : '< />',
'HTML_start_tag_end_tag' : '< > </ >',
'HTML_comment' : '<!-- -->',
'g_tag' : '<g>',
'Colon_hyphen_left_paren' : ':-(',
'Colon_hyphen_right_paren': ':-)',
'Vertical_line' : '|',
'Vertical_line_vertical_line' : '||',
'Enclosing_vertical_lines' : '| |',
'C_sharp' : 'C#',
'Number_sign' : '#',
'Enclosing_number_signs' : '# #',
'Colon' : ':',
'Double_period' : '..',
'Full_stop' : '.',
'Low_line' : '_',
'Low_line_interfix' : '-_-',
'Replacement_character' : '\ufffd',
'Square_brackets' : '[ ]',
'Curly_brackets' : '{ }',
'Square_bracketed_ellipsis' : '[…]',
'Enclosing_low_lines' : '_ _',
'C_through_N_to_K' : 'C|N>K',
'о_slash_dot' : 'о/.',
'Thai_name_of_Bangkok' : 'กรุงเทพมหานคร อมรรัตนโกสินทร์ มหินทรายุธยามหาดิลกภพ นพรัตน์ราชธานีบุรีรมย์ อุดมราชนิเวศน์มหาสถาน อมรพิมานอวตารสถิต สักกะทัตติยะวิษณุกรรมประสิทธิ์',
'Ancient_Greek_dish' : 'λοπαδοτεμαχοσελαχογαλεοκρανιολειψανοδριμυποτριμματοσιλφιοκαραβομελιτοκατακεχυμενοκιχλ\u00ADεπικοσσυφοφαττοπεριστεραλεκτρυονοπτοκεφαλλιοκιγκλοπελειολαγῳοσιραιοβαφητραγανοπτερύγων',
'Ideographic_space' : '[ideographic space]',
'Space' : '[space]',
'Ogham_space' : '[Ogham space]',
'' : ''
};
var newTitle = titleMap[mw.config.get('wgPageName').replace(/^Unsupported_titles\//, '')] ||
(mw.config.get('wgTitle').replace(/^Unsupported titles\//, ''));
var titleTag = document.getElementsByTagName('title')[0];
titleTag.innerHTML = titleTag.innerHTML.replace(/^.*(?= -)/, newTitle.replace(/<[^>]+>/g, ''));
document.getElementById('firstHeading').innerHTML = newTitle;
});
//
if (mw.config.get('wgCanonicalSpecialPageName') == 'Badtitle') {
var m, rxArticlePath = new RegExp('^' + mw.config.get('wgArticlePath').replace('$1', '(.*)') + '$');
var title;
if ((m = rxArticlePath.exec(location.pathname))) {
title = decodeURIComponent(m[1]);
} else {
title = mw.util.getParamValue('title');
}
// not all titles are listed, because not all actually trigger the "bad title" message
var revTitleMap = {
'<': 'Unsupported titles/Less than',
'>': 'Unsupported titles/Greater than',
'{': 'Unsupported titles/Left curly bracket',
'}': 'Unsupported titles/Right curly bracket',
'[': 'Unsupported titles/Left square bracket',
']': 'Unsupported titles/Right square bracket',
'_': 'Unsupported titles/Low line',
' ': 'Unsupported titles/Space',
':': 'Unsupported titles/Colon',
'.': 'Unsupported titles/Full stop',
'|': 'Unsupported titles/Vertical line',
'||': 'Unsupported titles/Vertical line vertical line',
'| |': 'Unsupported titles/Enclosing vertical lines',
'::': 'Unsupported titles/Double colon',
': :': 'Unsupported titles/Enclosing colons',
'<>': 'Unsupported titles/Less than greater than',
'< >': 'Unsupported titles/Enclosing less than greater than',
'<3': 'Unsupported titles/Less than three',
'<g>': 'Unsupported titles/g tag',
'< > </ >': 'Unsupported titles/HTML start tag end tag',
'[ ]': 'Unsupported titles/Square brackets',
'{ }': 'Unsupported titles/Curly brackets',
'C|N>K': 'Unsupported titles/C through N to K',
'\ufffd': 'Unsupported titles/Replacement character'
};
if (revTitleMap[title]) {
location.href = mw.util.getUrl(revTitleMap[title]);
}
}
// The rest of the scripts are at [[MediaWiki:Gadget-legacy.js]].
// Most of them should be converted into gadgets as time and resources allow.
omj7qjsk7trd6p3jnivyc66viad9xw0
MediaWiki:BabelConfig.json
8
16656
72500
2025-01-30T23:55:21Z
Maintenance script
1944
Migrating server configuration to an on-wiki JSON file ([[phab:T374348]])
72500
json
application/json
{
"$version": "1.0.0",
"BabelAutoCreate": true,
"BabelCategoryNames": {
"0": "",
"1": "",
"2": "",
"3": "",
"4": "",
"5": "",
"N": ""
},
"BabelMainCategory": "",
"BabelUseUserLanguage": false
}
54hmctnlaawatl26wopa0v29fbhc0mb
MediaWiki:Editpage-head-copy-warn
8
16698
72718
72717
2025-04-25T17:41:58Z
Aca
2473
Poništena izmjena [[Special:Diff/72717|72717]] korisnika [[Special:Contributions/Aca|Aca]] ([[User talk:Aca|razgovor]])
72718
wikitext
text/x-wiki
<div class="cdx-message cdx-message--block cdx-message--warning" style="margin:0.2em 0;"><span class="cdx-message__icon"></span><div class="cdx-message__content">
Zbog spajanja dvaju Wikirječnika, pozivamo vas da radije '''[[:sh:Special:Edit/{{FULLPAGENAME}}|uredite ovu stranicu]]''' na Wikirječniku na srpskohrvatskom jeziku.
<p style="margin-top:-0.75em>'''English''': Due to the merger of two Wiktionaries, we encourage you to '''[[:sh:Special:Edit/{{FULLPAGENAME}}|edit this page]]''' on the Serbo-Croatian Wikitionary instead.
</p>
</div></div>
13mf9a04fo6e8iaxrpxrggl1q3od0ud
MediaWiki:Sitenotice id
8
16702
72715
2025-04-20T18:11:35Z
Aca
2473
+
72715
wikitext
text/x-wiki
1
68m9lfln2dgvzieyrm8vqqf8ha8550r