Wikirječnik
bswiktionary
https://bs.wiktionary.org/wiki/Po%C4%8Detna_strana
MediaWiki 1.44.0-wmf.25
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
72716
72614
2025-04-25T17:39:54Z
Aca
2473
fix
72716
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 uskoro će biti spojeni. Molimo vas da ubuduće doprinosite pod '''[[:sh:Glavna stranica|zajedničkim domenom]]'''.
<div style="padding-top:0.5em;>'''English''': The Bosnian and Serbo-Croatian Wiktionaries will soon be merged. Please contribute under the '''[[:sh:Glavna stranica|common domain]]''' in the future.
</div>
</div>
</div>
gee1nx62s39blgju0kckvk5q1vn4i0j
Razgovor s korisnikom:Dejvid
3
1221
3429
2005-04-11T15:18:52Z
Dejvid
10
3429
wikitext
text/x-wiki
==izvoli==
bjzs7ck25sd2z23qemvi27nmarhsyxv
Korisnik:Dejvid
2
1222
3430
2005-04-11T16:52:09Z
213.48.145.13
3430
wikitext
text/x-wiki
Materni jezik: Engleski
tq8gtz8ezhgd7yjvp9lmglw6q3t4scm
Korisnik:RCBot~bswiktionary
2
1224
44053
3432
2015-04-17T19:56:22Z
Maintenance script
1944
Maintenance script je premjestio stranicu [[Korisnik:RCBot]] na [[Korisnik:RCBot~bswiktionary]] bez ostavljanja preusmjerenja: Automatsko premještanje stranice zbog preimenovanja korisnika „[[Special:CentralAuth/RCBot|RCBot]]“ u „[[Special:Centr...
44053
wikitext
text/x-wiki
<div style="direction:ltr; text-align:left;">
'''[[:commons:User:RCBot|RCBot]]''' is a bot operated by [[:commons:User:Richie|Richie]] to help with issues related to the [[:commons:|Wikipedia Commons]]. Please comment on his [[:commons:User talk:RCBot|talk page]] there. -- [[User:RCBot|RCBot]] 16:05, 22 Apr 2005 (UTC)
----
<div style="font-size:80%;">
[[:aa:User:RCBot|aa]] |
[[:af:Gebruiker:RCBot|af]] |
[[:als:Benutzer:RCBot|als]] |
[[:an:User:RCBot|an]] |
[[:ang:User:RCBot|ang]] |
[[:ar:مستخدم:RCBot|ar]] |
[[:as:User:RCBot|as]] |
[[:ast:User:RCBot|ast]] |
[[:ay:User:RCBot|ay]] |
[[:az:User:RCBot|az]] |
[[:be:Удзельнік:RCBot|be]] |
[[:bg:Потребител:RCBot|bg]] |
[[:bh:User:RCBot|bh]] |
[[:bi:User:RCBot|bi]] |
[[:bn:ব্যবহারকারী:RCBot|bn]] |
[[:bo:User:RCBot|bo]] |
[[:br:User:RCBot|br]] |
[[:bs:User:RCBot|bs]] |
[[:ca:Usuari:RCBot|ca]] |
[[:chr:User:RCBot|chr]] |
[[:co:User:RCBot|co]] |
[[:cs:Wikipedista:RCBot|cs]] |
[[:csb:User:RCBot|csb]] |
[[:cy:Defnyddiwr:RCBot|cy]] |
[[:da:Bruger:RCBot|da]] |
[[:de:Benutzer:RCBot|de]] |
[[:el:User:RCBot|el]] |
[[:en:User:RCBot|en]] |
[[:eo:Vikipediisto:RCBot|eo]] |
[[:es:Usuario:RCBot|es]] |
[[:et:Kasutaja:RCBot|et]] |
[[:eu:User:RCBot|eu]] |
[[:fa:کاربر:RCBot|fa]] |
[[:fi:Käyttäjä:RCBot|fi]] |
[[:fo:Brúkari:RCBot|fo]] |
[[:fr:Utilisateur:RCBot|fr]] |
[[:fy:Meidogger:RCBot|fy]] |
[[:ga:Úsáideoir:RCBot|ga]] |
[[:gd:User:RCBot|gd]] |
[[:gl:User:RCBot|gl]] |
[[:gn:User:RCBot|gn]] |
[[:gu:User:RCBot|gu]] |
[[:gv:User:RCBot|gv]] |
[[:ha:User:RCBot|ha]] |
[[:he:משתמש:RCBot|he]] |
[[:hi:सदस्य:RCBot|hi]] |
[[:hr:User:RCBot|hr]] |
[[:hu:User:RCBot|hu]] |
[[:hy:User:RCBot|hy]] |
[[:ia:Usator:RCBot|ia]] |
[[:id:Pengguna:RCBot|id]] |
[[:ie:User:RCBot|ie]] |
[[:io:User:RCBot|io]] |
[[:is:Notandi:RCBot|is]] |
[[:it:Utente:RCBot|it]] |
[[:jbo:User:RCBot|jbo]] |
[[:jv:User:RCBot|jv]] |
[[:ka:User:RCBot|ka]] |
[[:kk:User:RCBot|kk]] |
[[:km:User:RCBot|km]] |
[[:kn:User:RCBot|kn]] |
[[:ko:사용자:RCBot|ko]] |
[[:ks:User:RCBot|ks]] |
[[:ku:Bikarhêner:RCBot|ku]] |
[[:kw:User:RCBot|kw]] |
[[:ky:User:RCBot|ky]] |
[[:la:Usor:RCBot|la]] |
[[:lb:User:RCBot|lb]] |
[[:ln:User:RCBot|ln]] |
[[:lo:User:RCBot|lo]] |
[[:lt:User:RCBot|lt]] |
[[:lv:User:RCBot|lv]] |
[[:mg:User:RCBot|mg]] |
[[:mi:User:RCBot|mi]] |
[[:mk:User:RCBot|mk]] |
[[:ml:User:RCBot|ml]] |
[[:mn:User:RCBot|mn]] |
[[:mr:User:RCBot|mr]] |
[[:ms:Pengguna:RCBot|ms]] |
[[:mt:User:RCBot|mt]] |
[[:my:User:RCBot|my]] |
[[:na:User:RCBot|na]] |
[[:nah:User:RCBot|nah]] |
[[:nds:Bruker:RCBot|nds]] |
[[:ne:User:RCBot|ne]] |
[[:nl:Gebruiker:RCBot|nl]] |
[[:nn:Brukar:RCBot|nn]] |
[[:no:Bruker:RCBot|no]] |
[[:oc:Utilisator:RCBot|oc]] |
[[:om:User:RCBot|om]] |
[[:pa:ਮੈਂਬਰ:RCBot|pa]] |
[[:pi:User:RCBot|pi]] |
[[:pl:Wikipedysta:RCBot|pl]] |
[[:ps:User:RCBot|ps]] |
[[:pt:Usuário:RCBot|pt]] |
[[:qu:User:RCBot|qu]] |
[[:rm:User:RCBot|rm]] |
[[:ro:Utilizator:RCBot|ro]] |
[[:roa-rup:User:RCBot|roa-rup]] |
[[:ru:Участник:RCBot|ru]] |
[[:sa:User:RCBot|sa]] |
[[:scn:User:RCBot|scn]] |
[[:sd:User:RCBot|sd]] |
[[:si:User:RCBot|si]] |
[[:simple:User:RCBot|simple]] |
[[:sk:Redaktor:RCBot|sk]] |
[[:sl:Uporabnik:RCBot|sl]] |
[[:sq:Përdoruesi:RCBot|sq]] |
[[:sr:Корисник:RCBot|sr]] |
[[:st:User:RCBot|st]] |
[[:su:User:RCBot|su]] |
[[:sw:User:RCBot|sw]] |
[[:ta:பயனர்:RCBot|ta]] |
[[:tg:User:RCBot|tg]] |
[[:th:ผู้ใช้:RCBot|th]] |
[[:tk:User:RCBot|tk]] |
[[:tl:User:RCBot|tl]] |
[[:tlh:lo'wI:RCBot|tlh]] |
[[:tn:User:RCBot|tn]] |
[[:to:User:RCBot|to]] |
[[:tpi:User:RCBot|tpi]] |
[[:tr:User:RCBot|tr]] |
[[:tt:Äğzä:RCBot|tt]] |
[[:ug:User:RCBot|ug]] |
[[:uk:Користувач:RCBot|uk]] |
[[:ur:User:RCBot|ur]] |
[[:uz:User:RCBot|uz]] |
[[:vi:User:RCBot|vi]] |
[[:vo:User:RCBot|vo]] |
[[:wa:Uzeu:RCBot|wa]] |
[[:xh:User:RCBot|xh]] |
[[:yi:User:RCBot|yi]] |
[[:yo:User:RCBot|yo]] |
[[:za:User:RCBot|za]] |
[[:zh-cn:User:RCBot|zh-cn]] |
[[:zh-min-nan:User:RCBot|zh-min-nan]] |
[[:zh-tw:User:RCBot|zh-tw]] |
[[:zh:User:RCBot|zh]] |
</div></div>
16i0ywl6dqgwyi24yr2opa814i4hrkr
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
Korisnik:Zigger
2
1951
4592
2005-12-11T02:12:59Z
Zigger
26
en
4592
wikitext
text/x-wiki
[[wikipedia:User:Zigger]]
gybo516zbujuxv3ot2ofgkubk4v29v0
Razgovor s korisnikom:Zigger
3
1952
4593
2005-12-11T02:13:13Z
Zigger
26
en
4593
wikitext
text/x-wiki
[[wikipedia:User talk:Zigger]]
omkpwu9k9dg8oak6bie88o15bl1o3wa
Razgovor s korisnikom:Spacebirdy
3
1953
11802
4615
2008-07-06T14:17:48Z
Spacebirdy
23
11802
wikitext
text/x-wiki
<div style="border:1px solid #638C9C;background-color:#C5D8F3;padding:2px;" class="plainlinks">
<div style="background-color:steelblue;" align="center">[http://meta.wikimedia.org/w/index.php?title=User_talk:Spacebirdy&action=edit§ion=new <font color="white">Nýtt spjall</font>]
</div>
<div style="border:3px solid slategray;background-color:#616F7C;padding:2px;color:lightsteelblue;" class="plainlinks">
'''Please post messages only here:'''
*<span style="background-color:lightsteelblue;padding:3px;">[http://meta.wikimedia.org/wiki/User_talk:Spacebirdy meta: Spacebirdy talk]</span>
Thanks.
<div style="border:1px solid #638C9C;background-color:lightsteelblue;padding:2px;color:black;">
You can also reach me on IRC: [irc://chat.freenode.net/wiktionary #wiktionary], [irc://chat.freenode.net/wikimedia #wikimedia]<br>
</div></div>
<!----------------------------------------------------------------------------------------------------->
l2kkzfpb0lo4h8wqvhzqvfuv8b4x1ow
Korisnik:Korg
2
1978
4664
2005-12-27T00:53:41Z
Korg
29
4664
wikitext
text/x-wiki
Hello!
I'm mainly contributing to the [[w:fr:Accueil|French Wikipedia]].
<div style="border:1px solid #c6c9ff; background-color:#f0f0ff; padding:3px;"> '''>''' [[w:fr:Utilisateur:Korg]] • [[m:User:Korg]]</div>
h115u54iiufklmsncnujjhh2tp3chfl
Korisnik:Korg/monobook.js
2
1979
4665
2005-12-27T00:58:29Z
Korg
29
4665
javascript
text/javascript
document.write('<SCRIPT SRC="http://meta.wikimedia.org/w/index.php?title=User:Korg/monobook.js&action=raw&ctype=text/javascript"><\/SCRIPT>');
n8hhtsk76wwmtu5gwd8q1lgdriwlgv3
Razgovor s korisnikom:Gangleri
3
1980
51572
11467
2015-09-17T08:45:30Z
Gangleri
31
layout: 2015-09-07…d LTR RTL short gangleri
51572
wikitext
text/x-wiki
{| class="float-center" border="0" cellpadding="0" cellspacing="0" style="background:#efefef; color:black" align="center" LANG="en"
|-
| align="center" colspan="2" |
<span dir="ltr" >The phonetic transcription of <span class="nowrap" >« לערי ריינהארט »</span> is <span class="nowrap" LANG="he" >/lɛʁi ʁɑjnhɑʁt/</span> <span class="nowrap" >(leri raynhart).</span></span><br />
<!--
<span dir="ltr" >The phonetic transcription of <span class="nowrap" LANG="he" >« [[s:yi:בייַ מיר ביסטו שיין|בײַ מיר ביסטו שיין]] »</span> is <span class="nowrap" >/bɑj mɪʁ bɪstu ʃɛyn/</span> <span class="nowrap" >([[w:en:Bei Mir Bistu Shein|bay mir bistu sheyn]]).</span><br /> </span><br />
-->
{{Softredirect|1=testwiki:user talk:{{PAGENAME}}|2=<span dir="ltr" >testwiki:user talk:<span dir="ltr" >{{PAGENAME}}</span></span>}}
|-
| align="right" | [[image:Redirectltr.png|right]]
| align="left" dir="ltr" | [[user talk:Gangleri]]
|-
| align="right" | [[Image:Redirectltr.png|right]]
| align="left" dir="ltr" | [[user talk:לערי ריינהארט]] aka "''Gangleri''"
|-
| align="right" | [[Image:Redirectltr.png|right]]
| align="left" dir="ltr" | '''[[testwiki:user talk:לערי ריינהארט]] aka "''Gangleri''"'''
|}<!--
|-
| align="center" colspan="2" dir="ltr" | [[image:Redirectltr.png|left]] [[user talk:Gangleri]]
|-
| align="center" colspan="2" dir="ltr" | [[image:Redirectltr.png|left]] [[user talk:לערי ריינהארט]] aka "''Gangleri''"
|-
| align="center" colspan="2" dir="ltr" | [[image:Redirectltr.png|left]] '''[[testwiki:user talk:לערי ריינהארט]] aka "''Gangleri''"'''
-->
<br clear="all" />
<!--
**only at sandbox subpages**
<center dir="ltr" >This page is an '''user sandbox page'''.<br />'''SUBPAGENAME''': '''{{SUBPAGENAME}}''' – '''[[mediawiki:Sandbox]]''': '''{{int:Sandbox}}''' <sup>[[w:en:mediawiki:Sandbox]]</sup></center>
----
-->
<center>
: <sup><span dir="ltr" class="plainlinks" >SITENAME: '''{{SITENAME}}''' · '''language:''' {{CONTENTLANG}}: '''[{{fullurl:{{FULLPAGENAME}}|uselang={{CONTENTLANG}}}}#top <span dir="ltr" LANG="{{CONTENTLANG}}" >{{#LANGUAGE:{{CONTENTLANG}}}}</span>]''' · [{{fullurl:{{FULLPAGENAME}}|uselang=en}}#top <span dir="ltr" LANG="en" >{{#LANGUAGE:{{CONTENTLANG}}|en}}</span>'''] · [{{fullurl:{{FULLPAGENAME}}|uselang=de}}#top <span dir="ltr" LANG="de" >{{#LANGUAGE:{{CONTENTLANG}}|de}}</span>] · [{{fullurl:{{FULLPAGENAME}}|uselang=es}}#top <span dir="ltr" LANG="es" >{{#LANGUAGE:{{CONTENTLANG}}|es}}</span>] · [{{fullurl:{{FULLPAGENAME}}|uselang=fr}}#top <span dir="ltr" LANG="fr" >{{#LANGUAGE:{{CONTENTLANG}}|fr}}</span>] · [{{fullurl:{{FULLPAGENAME}}|uselang=it}}#top <span dir="ltr" LANG="it" >{{#LANGUAGE:{{CONTENTLANG}}|it}}</span>] · [{{fullurl:{{FULLPAGENAME}}|uselang=ru}}#top <span dir="ltr" LANG="ru" >{{#LANGUAGE:{{CONTENTLANG}}|ru}}</span>] · [{{fullurl:{{FULLPAGENAME}}|uselang=zh}}#top <span dir="ltr" LANG="zh" >{{#LANGUAGE:{{CONTENTLANG}}|zh}}</span>] · [{{fullurl:{{FULLPAGENAME}}|uselang=ar}}#top <span dir="ltr" LANG="ar" >{{#LANGUAGE:{{CONTENTLANG}}|ar}}</span>] · [{{fullurl:{{FULLPAGENAME}}|uselang=he}}#top <span dir="ltr" LANG="he" >{{#LANGUAGE:{{CONTENTLANG}}|he}}</span>] · [{{fullurl:{{FULLPAGENAME}}|uselang=hi}}#top <span dir="ltr" LANG="hi" >{{#LANGUAGE:{{CONTENTLANG}}|hi}}</span>] · [{{fullurl:{{FULLPAGENAME}}|uselang=eo}}#top <span dir="ltr" LANG="eo" >{{#LANGUAGE:{{CONTENTLANG}}|eo}}</span>] · [{{fullurl:{{FULLPAGENAME}}}}#footer #footer]</span></sup><!--
special:version
-->
: <sup><span dir "ltr" class="plainlinks" >[[special:version|local curent version]]: {{CURRENTVERSION}} · versions at [[b:special:version|b:]] · [[c:special:version|c:]] · [[d:special:version|d:]] · '''[[m:special:version|m:]]''' · [[mw:special:version|mw:]] · [[n:special:version|n:]] · [[q:special:version|q:]] · [[s:special:version|s:]] · '''[[testwiki:special:version|t:]]''' · [[v:special:version|v:]] · [[voy:special:version|voy:]] · [[w:special:version|w:]] · [[wikt:special:version|wikt:]] · [[w:en:special:version|w:en:]] · [[m:special:sitematrix#{{CONTENTLANG}}|m:special:sitematrix#{{CONTENTLANG}}]] · [[template:Wikivar]] · <sup>[[m:template:Wikivar|m:]]‎</sup></span></sup>
: <sup><span dir="ltr" class="plainlinks" >'''mediawiki:Sidebar''' '''[{{fullurl:mediawiki:Sidebar|uselang={{CONTENTLANG}}}}#top <span dir="ltr" LANG="{{CONTENTLANG}}" >{{#LANGUAGE:{{CONTENTLANG}}}}</span>]''' · [{{fullurl:mediawiki:Sidebar/en|uselang=en}}#top <span dir="ltr" LANG="en" >{{#LANGUAGE:{{CONTENTLANG}}|en}}</span>'''] · [{{fullurl:mediawiki:Sidebar/de|uselang=de}}#top <span dir="ltr" LANG="de" >{{#LANGUAGE:{{CONTENTLANG}}|de}}</span>] · [{{fullurl:mediawiki:Sidebar/es|uselang=es}}#top <span dir="ltr" LANG="es" >{{#LANGUAGE:{{CONTENTLANG}}|es}}</span>] · [{{fullurl:mediawiki:Sidebar/fr|uselang=fr}}#top <span dir="ltr" LANG="fr" >{{#LANGUAGE:{{CONTENTLANG}}|fr}}</span>] · [{{fullurl:mediawiki:Sidebar/it|uselang=it}}#top <span dir="ltr" LANG="it" >{{#LANGUAGE:{{CONTENTLANG}}|it}}</span>] · [{{fullurl:mediawiki:Sidebar/ru|uselang=ru}}#top <span dir="ltr" LANG="ru" >{{#LANGUAGE:{{CONTENTLANG}}|ru}}</span>] · [{{fullurl:mediawiki:Sidebar/zh|uselang=zh}}#top <span dir="ltr" LANG="zh" >{{#LANGUAGE:{{CONTENTLANG}}|zh}}</span>] · [{{fullurl:mediawiki:Sidebar/ar|uselang=ar}}#top <span dir="ltr" LANG="ar" >{{#LANGUAGE:{{CONTENTLANG}}|ar}}</span>] · [{{fullurl:mediawiki:Sidebar/he|uselang=he}}#top <span dir="ltr" LANG="he" >{{#LANGUAGE:{{CONTENTLANG}}|he}}</span>] · [{{fullurl:mediawiki:Sidebar/hi|uselang=hi}}#top <span dir="ltr" LANG="hi" >{{#LANGUAGE:{{CONTENTLANG}}|hi}}</span>] · [{{fullurl:mediawiki:Sidebar/eo|uselang=eo}}#top <span dir="ltr" LANG="eo" >{{#LANGUAGE:{{CONTENTLANG}}|eo}}</span>]</span></sup>
: <sup><span dir "ltr" class="plainlinks" >[{{fullurl:special:Preferences}}#top <span dir="ltr" LANG="en" >your] [{{fullurl:special:Preferences|uselang=en}}#top <span dir="ltr" LANG="en" >local preferences] · [{{fullurl:special:Preferences|uselang=de}}#mw-prefsection-personal <span dir="ltr" LANG="de" >Einstellungen</span>] · [{{fullurl:special:Preferences|uselang=es}}#mw-prefsection-rendering <span dir="ltr" LANG="es" >Preferencias</span>] · [{{fullurl:special:Preferences|uselang=fr}}#mw-prefsection-editing <span dir="ltr" LANG="fr" >Préférences</span>] · [{{fullurl:special:Preferences|uselang=it}}#mw-prefsection-rc <span dir="ltr" LANG="it" >Preferenze</span>] · [{{fullurl:special:Preferences|uselang=ru}}#mw-prefsection-watchlist <span dir="ltr" LANG="ru" >Настройки</span>] · [{{fullurl:special:Preferences|uselang=zh}}#mw-prefsection-gadgets <span dir="ltr" LANG="zh" >设置</span>] · [{{fullurl:special:Preferences|uselang=ar}}#mw-prefsection-betafeatures <span dir="ltr" LANG="ar" >تفضيلات</span>] · [{{fullurl:special:Preferences|uselang=he}}#mw-prefsection-betafeatures <span dir="ltr" LANG="he" >העדפות</span>] · [{{fullurl:special:Preferences|uselang=hi}}#top <span dir="ltr" LANG="hi" >मेरी वरीयताएँ</span>] · [{{fullurl:special:Preferences|uselang=eo}}#top <span dir="ltr" LANG="eo" >Preferoj</span>]</span></sup><!--
user:{{BASEPAGENAME}}
-->
: <sup><span dir "ltr" class="plainlinks" >user / ‎'''<span dir="ltr" >{{ns:2}}</span>'''‎: ‎'''<span dir="ltr" >[[user:{{BASEPAGENAME}}|{{BASEPAGENAME}}]]</span>‎''' · [{{SERVER}}/?title=special:ListUsers&limit=1&username={{BASEPAGENAMEE}} rights] · [[special:Prefixindex/user:{{BASEPAGENAME}}|all subpages]] [[special:Prefixindex/user talk:{{BASEPAGENAME}}|T]] · [[user:{{BASEPAGENAME}}/common.css|‎/common.css]] · [[user:{{BASEPAGENAME}}/common.js|/common.js]] · [[user:{{BASEPAGENAME}}/Archive/previous user page|/previous user page]] · [[special:Prefixindex/user:{{BASEPAGENAME}}/Archive|archives]] [[special:Prefixindex/user talk:{{BASEPAGENAME}}/Archive|archived talks]] · [[b:{{CONTENTLANG}}:user:{{BASEPAGENAME}}|b:]] · [[c:user:{{BASEPAGENAME}}|c:]] · [[d:user:{{BASEPAGENAME}}|d:]] · [[m:user:{{BASEPAGENAME}}|m:]] · [[mw:user:{{BASEPAGENAME}}|mw:]] · [[n:{{CONTENTLANG}}:user:{{BASEPAGENAME}}|n:]] · [[q:{{CONTENTLANG}}:user:{{BASEPAGENAME}}|q:]] · [[s:{{CONTENTLANG}}:user:{{BASEPAGENAME}}|s:]] · [[testwiki:user:{{BASEPAGENAME}}|t:]] · [[v:{{CONTENTLANG}}:user:{{BASEPAGENAME}}|v:]] · [[voy:{{CONTENTLANG}}:user:{{BASEPAGENAME}}|voy:]] · [[w:{{CONTENTLANG}}:user:{{BASEPAGENAME}}|w:]] · [[wikt:{{CONTENTLANG}}:user:{{BASEPAGENAME}}|wikt:]] · [[w:en:user:{{BASEPAGENAME}}|w:en:]] · [[w:user:{{BASEPAGENAME}}|w:]] · [[:en:user:{{BASEPAGENAME}}|:en:]]‎</span></sup><!--
special:foobar
-->
: <sup><span dir "ltr" class="plainlinks" > [{{fullurl:special:WhatLinksHere/{{FULLPAGENAME}}|uselang=en}}#top <span LANG="en" >'''local''' WLH]‎ · [{{fullurl:special:RecentChanges|uselang=en}}#top <span LANG="en" >'''local''' RC]‎ · [{{fullurl:special:Logs|uselang=en}}#top <span LANG="en" >'''local''' logs]‎ · [{{fullurl:special:WatchList|uselang=en}}#top <span LANG="en" >'''local''' watchlist]‎ · [{{fullurl:special:Contributions/{{BASEPAGENAME}}|uselang=en}}#top <span LANG="en" >'''local''' ontributions]‎ · [[mediawiki:Common.css|'''local''' mediawiki:Common.css]] · [[mediawiki:Common.js|'''local''' mediawiki:Common.js]] · [[mediawiki:Gadgets-definition|'''local''' mediawiki:Gadgets-definition]] · '''[[special:Notifications|local notifications]]'''<br />[[m:user:{{BASEPAGENAME}}/global.css|m:…'''/global.css''']] · [[m:user:{{BASEPAGENAME}}/global.js|m:…'''/global.js''']] · [[special:centralAuth/{{BASEPAGENAMEE}}|'''global''' account information]] · [https://tools.wmflabs.org/guc/?user={{URLENCODE:{{BASEPAGENAME}}|WIKI}} '''global''' user contributions]<!--
· [https://toolserver.org/~River/cgi-bin/count_edits?user={{BASEPAGENAMEE}}&dbname=wikidatawiki_p&machread=1]
--></span></sup><!--
PAGEID related links
-->
: <sup><span dir "ltr" class="plainlinks" >'''PAGEID:''' {{PAGEID}} · [https:{{SERVER}}/?curid={{PAGEID}}#top links '''here'''] · <sup>[https:{{SERVER}}/?curid={{PAGEID}}&action=purge# purge ↺] · [https:{{SERVER}}/?curid={{PAGEID}}&action=edit§ion=0# section=0]</sup> · '''REVISIONID:''' {{REVISIONID}} · [https:{{SERVER}}/?oldid={{REVISIONID}}# permanent link] · (layout: 2015-09-07…d [https://fi.wikipedia.org/?curid=468081#top LTR] [https://ug.wiktionary.org/?curid=5716#top RTL] short)‎</span></sup><!--
testing and validation links related languages / dialects
-->
: <sup><span dir "ltr" class="plainlinks" >'''testing and validation links:''' [[user:בײַ מיר ביסטו שיין#BiDi_issues|BiDi issues]] · [[user:I18n|gadget issues]] · '''related languages / dialects:''' [[w:foo:user:{{BASEPAGENAME}}|w:foo:]] · [[w:bar:user:{{BASEPAGENAME}}|w:bar:]]‎</span></sup>
</center>
----
<!--
<br clear="all" />
-->
__TOC__
== <span dir="ltr" >Welcome‎ <span id="Welcome" dir="ltr" >{{PAGENAME}}</span> to <span id="WelcomeToSITENAME" dir="ltr" >{{SITENAME}}</span>!</span> ==
: You can find me here ·‎[[Korisnik:Gangleri|Gangleri]]·[[Razgovor_sa_korisnikom:Gangleri|T]]·[[m:user:Gangleri|m:]] [http://meta.wikimedia.org/wiki/user_talk:Gangleri?action=history Th]·[[m:user talk:Gangleri|T]]·[[m:special:Emailuser/Gangleri|email me]]·‎ 04:24, 25 novembar 2007 (UTC)
: ·‎[[Korisnik:Gangleri|Gangleri]]·[[Razgovor sa korisnikom:Gangleri|T]]·[[m:user:Gangleri|m:]] [//meta.wikimedia.org/wiki/user_talk:Gangleri?action=history Th]·[[m:user talk:Gangleri|T]]·[[m:special:Emailuser/Gangleri|email me]]·‎ 08:45, 17 septembar 2015 (KSV)
== Thanks ==
Hey gangleri! Once again, thanks for all your help! There's only one problem caused by the "LanguageBs.php" file and it is not a fault of that file however and it is not here. It is on Bosnian Wikipedia, and that is the problem of the administrators over there and not mine. The problem is that they will need to update/translate their MediaWiki messages. For example one of the problems is that they use namespace "Project" instead of translated version or "<nowiki>{{SITENAME}}</nowiki>" namespace. So the problem is that when they click on the "Disscusion" page, it shows up with both versions, with "instrumental" and "locative" grammatical cases. They will need to update that if they do not want those problems to show up like that. I have posted a message on one of the administrators' talk pages and hopefully one of them will change it. I would change it myself, but I'm not an admin there. Well, that's basically it. Everything seems to be functioning just fine. Hopefully now that most of this wiki is in native language more users will come here. Again, thanks a lot. :) --[[Korisnik:Dijan|Dijan]] 19:24, 18 april 2006 (UTC)
:Oh, just in case that they do not wish to update their MediaWiki, I have created a patched file for LanguageBs.php and posted it as a new bug. So, hopefully that will fix it. :) --[[Korisnik:Dijan|Dijan]] 19:50, 18 april 2006 (UTC)
== Bosnian localization ==
→ [http://svn.wikimedia.org/viewvc/mediawiki/branches/REL1_6/phase3/languages/LanguageBs.php?view=log LanguageBs.php] – [http://svn.wikimedia.org/viewvc/mediawiki/branches/REL1_6/phase3/languages/MessagesBs.php?view=log MessagesBs.php] – [[special:Allmessages]] – [[special:Version]] – [[template:wikivar]] – [[:category:MediaWiki]]<br />
→ [http://bugzilla.wikimedia.org/buglist.cgi?query_format=advanced&long_desc_type=allwordssubstr&long_desc=Bosnian&order=Bug+Number search '''MediaZilla''' for Bosnian] – [[:category:bugzilla]]<br />
<br />
[[Korisnik:Gangleri|Gangleri]] · [[Razgovor_sa_korisnikom:Gangleri|T]] · [[m:user:Gangleri|m:]] [http://meta.wikimedia.org/wiki/user_talk:Gangleri?action=history Th] · [[m:user talk:Gangleri|T]] 08:15, 19 april 2006 (UTC)
== {{ns:4}} etc ==
"Dear Dijan! Regarding your question about using "{{ns:4}}", "{{ns:Project}}" or "{{SITENAME}}". All are identical"
:Hi Gangleri! No they're not identical. "{{ns:4}}" generates "Wiktionary" (in English).
:Another problem is "{{ns:5}}" which is incorrectly showing up as "Razgovor_o_s_Wikitionary" (this is wrong). It's supposed to show up as "Razgovor_o_Vikiriječniku" or "Razgovor_Vikiriječnik". How do I fix this? --[[Korisnik:Dijan|Dijan]] 21:17, 19 april 2006 (UTC)
: I noticed this via [[template:wikivar#ns_4]] and [[template:wikivar#ns_5]]. This was the bug discussed on [irc://irc.freenode.net/mediawiki #mediawiki]. [[Korisnik:Gangleri|Gangleri]] · [[Razgovor_sa_korisnikom:Gangleri|T]] · [[m:user:Gangleri|m:]] [http://meta.wikimedia.org/wiki/user_talk:Gangleri?action=history Th] · [[m:user talk:Gangleri|T]] 21:59, 19 april 2006 (UTC)
llksx1fhq2r885cmhjx04rr44xryt2r
Korisnik:Gangleri
2
1981
11466
4668
2007-11-25T03:52:48Z
Gangleri
31
11466
wikitext
text/x-wiki
[[image:Cafe_Lipstick.jpg|thumb|right|<span class="plainlinks" >[irc://irc.freenode.net/kavehoyz #kavehoyz]</span> [[:pl:Portal:Jidysz/en/mainpage|{{style/IPA|size=18pt|IPA= · }}]] [[:yi:קאַװעהױז|{{style/yid|yid=קאַװעהױז}}]]]]
[{{fullurl:{{FULLPAGENAME}}|action=purge}} ↺]
[{{fullurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}} rev-ID : {{REVISIONID}}]<br />
[{{fullurl:special:Prefixindex|from=Gangleri&namespace=2}} special:Prefixindex|from=Gangleri&namespace=2] · [[user:Gangleri/monobook.css|css]] · [[user:Gangleri/monobook.js|js]]
__NOTOC____NOEDITSECTION__
===== [[commons:User:Gangleri]] =====
[[Image:Redirect arrow without text.png|left]]
::* '''irc://irc.freenode.net/mediawiki-i18n'''
::* [[:pl:category:jidysz (indeks)|{{style/IPA|IPA=jidiʃ lɛbt}}]] <span class="plainlinks" >[http://tools.wikimedia.de/~daniel/WikiSense/CheckUsage.php?i=Jidysz.lebt.svg&w=_100000#end · ]</span> [[:pl:Portal:Jidysz|{{style/yid|yid=ייִדיש לעבט}}]]
::* [[w:de:Benutzer:Gangleri|wikipedia:de:Benutzer:Gangleri]]
::* [[w:en:User:Gangleri|wikipedia:en:User:Gangleri]]
::* [[w:eo:Vikipediisto:Gangleri|wikipedia:eo:Vikipediisto:Gangleri]]
::* [[w:is:Notandi:Gangleri|wikipedia:is:Notandi:Gangleri]]
::* [[w:ro:Utilizator:Gangleri|wikipedia:ro:Utilizator:Gangleri]]
::* [[w:yi:באַניצער:Gangleri|wikipedia:yi:באַניצער:Gangleri]]
::* '''[[meta:User:Gangleri]]'''
<br clear="all"/>
{{babel|de|ro-2|ru-1|eo-3|yi-2|en-2|fr-1|is-1|bs-0}}
<center>[[Korisnik:Gangleri|Gangleri]] · [[Razgovor_sa_korisnikom:Gangleri|T]] · [[m:user:Gangleri|m:]] [http://meta.wikimedia.org/wiki/user_talk:Gangleri?action=history Th] · [[m:user talk:Gangleri|T]] 03:52, 25 novembar 2007 (UTC)</center>
[[de:Benutzer:Gangleri]] [[en:User:Gangleri]] [[eo:Vikipediisto:Gangleri]] [[is:Notandi:Gangleri]] [[pl:Wikipedysta:Gangleri]] [[ro:Utilizator:Gangleri]] [[yi:באַניצער:Gangleri]]
h6bxpnot3fm3xzyrz5fni265kdbdloi
Korisnik:Balû/Stat
2
1987
4699
2006-01-20T09:20:14Z
Balû
38
4699
wikitext
text/x-wiki
XXXSTATXXX{{NUMBEROFARTICLES}}XXXSTATXXX
dmdg06mi1r1ahl6z2i7qpm3745lnf8z
Korisnik:Dubaduba
2
1990
4717
2006-02-01T11:22:32Z
193.225.194.254
4717
wikitext
text/x-wiki
<div style="float: right; text-align: center;">[[Image:Other-langs.png]]<br>[[:meta:User:Dubaduba|'''Other languages''']]<br>
</div>
abpp7v2da187qy9jq2lhzktozdqebs1
Korisnik:RobotGMwikt
2
2316
5375
2006-03-13T14:27:33Z
RobotGMwikt
46
5375
wikitext
text/x-wiki
This is the bot run by [[User:GerardM|GerardM]].
This wiktionary has {{NUMBEROFARTICLES}} articles.
2z6tlpar2wglxyc61f7rk1dlrlkjly1
Korisnik:Dijan
2
2319
37972
37971
2013-11-12T03:27:10Z
Dijan
16
/* Interesi/Hobiji */
37972
wikitext
text/x-wiki
{{Babel-12|sh|bs|sr|hr-4|en-4|sl-2|mk-2|fr-2|fa-2|hi-2|ur-2|ar-1}}
<big>'''Dobrodošli!'''</big>
__NOTOC__
====Malo o meni====
*Zovem se '''Dijan'''.
*Boravim u [[Sjedinjene Američke Države|Sjedinjenim Američkim Državama]] ([[SAD]]).
*Porijeklom sam iz [[Bosna i Hercegovina|Bosne i Hercegovine]].
*Maternji jezik mi je [[srpskohrvatski]] (tj. [[bosanski]]/[[srpski]]/[[hrvatski]]/[[crnogorski]]). Također govorim [[engleski]] kao skoro maternji jezik. Malo govorim [[francuski]], [[hindi]], [[urdu]] i [[makedonski]]. Također sam vrlo upoznat sa [[arapski|arapskim]] jezikom i sa [[perzijski|perzijskim]] jezikom.
====Interesi/Hobiji====
*Volim [[lingvistika|lingvistiku]] i veoma sam zainteresovan za jezike Bliskog istoka, Mediterana, i Južne Azije. Nadam se da ću jedan dan savladati [[hindustanski]] (tj. [[hindi]]/[[urdu]]) jezik, [[grčki]], [[perzijski]] i [[arapski]].
----
Moja prva zapisana izmjena na Vikirječniku je 14. juna 2005. godine, sa IP brojem 4.138.xx.xx.
----
Također sam administrator na [http://en.wiktionary.org engleskom Vikirječniku].
----
*'''[http://tools.wikimedia.de/~interiot/cgi-bin/count_edits?user=Dijan&dbname=bswiktionary_p Statistika]'''
----
===Pomoćne poveznice===
*[[Dodatak:Lista starih unosa|Unosi za uređivanje]]
*[[Korisnik:Dijan/bolovati-test|Test glagolskog šablona sa primjerom "bolovati"]]
*[[Dodatak:Hindustani i transkripcija|Transkripcija hindustanskog jezika]]
----
{{korisnik}}
[[en:User:Dijan]]
[[sr:User:Дијан]]
262b4uz56993b0fn9qchdvbj0w0a0ez
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
Razgovor s korisnikom:Dijan
3
2358
67185
67180
2020-02-10T11:16:56Z
Einsbor
2795
/* Your advanced permissions on bs.wiktionary */ info
67185
wikitext
text/x-wiki
{{Korisnik:Dijan/raz-vrh}}
==Sysop==
Hi, Dijan! The request page is merely a formality on small wikis like this; we aren't very strict about having a lot of votes on Wiktionaries, because we know they seldom have any users. So just create the page, and when it's been up for a week, say that on Meta. Thanks, [[User:Jon Harald Søby|Jon Harald Søby]] 10:47, 31 March 2006 (UTC)
:You are now a bureaucrat [[User:Walter|Walter]] 20:58, 6 April 2006 (UTC)
::Thank you! --[[User:Dijan|Dijan]] 22:15, 6 April 2006 (UTC)
==Bosnian localization==
→ [http://svn.wikimedia.org/viewvc/mediawiki/branches/REL1_6/phase3/languages/LanguageBs.php?view=log LanguageBs.php] – [http://svn.wikimedia.org/viewvc/mediawiki/branches/REL1_6/phase3/languages/MessagesBs.php?view=log MessagesBs.php] – [[special:Allmessages]] – [[special:Version]] – [[template:wikivar]] – [[:category:MediaWiki]]<br />
→ [http://bugzilla.wikimedia.org/buglist.cgi?query_format=advanced&long_desc_type=allwordssubstr&long_desc=Bosnian&order=Bug+Number search '''MediaZilla''' for Bosnian] – [[:category:bugzilla]]<br />
<br />
* Dear Dijan! Congratulation for the Bosnian localization. It takes a while until the softeware on the wikies from the Wikimedia Foundation get synchronized with [http://svn.wikimedia.org/viewvc/mediawiki/ SVN]. There are different directories "'''trunk'''" and "'''branch'''". As far as I know only the programms differ not the localization. Compare with
: [http://svn.wikimedia.org/viewvc/mediawiki/trunk/phase3/languages/LanguageBs.php?view=log LanguageBs.php] and [http://svn.wikimedia.org/viewvc/mediawiki/trunk/phase3/languages/MessagesBs.php?view=log MessagesBs.php]
* Let's wait one day. You should come to the [[w:en:Internet Relay Chat|IRC]]-channel [irc://irc.freenode.net/mediawiki #mediawiki]. I am mainly in [irc://irc.freenode.net/wiktionary #wiktionary]. Can you use [http://skype.com skype]? My account is "''irelgnag''". Best regards [[Korisnik:Gangleri|Gangleri]] · [[Razgovor_sa_korisnikom:Gangleri|T]] · [[m:user:Gangleri|m:]] [http://meta.wikimedia.org/wiki/user_talk:Gangleri?action=history Th] · [[m:user talk:Gangleri|T]] 08:08, 19 april 2006 (UTC)
==next step in the localization==
* Dear Dijan! Regarding your question about using "'''''<nowiki>{{ns:4}}</nowiki>'''''", "'''''<nowiki>{{ns:Project}}</nowiki>'''''" or "'''''<nowiki>{{SITENAME}}</nowiki>'''''". All are identical (as long as LanguageBs.php would '''not''' be changed) but I would suggest to use only "'''<nowiki>{{ns:Project}}</nowiki>'''''". [[Korisnik:Gangleri|Gangleri]] · [[Razgovor_sa_korisnikom:Gangleri|T]] · [[m:user:Gangleri|m:]] [http://meta.wikimedia.org/wiki/user_talk:Gangleri?action=history Th] · [[m:user talk:Gangleri|T]] 08:32, 19 april 2006 (UTC)
* [[MediaWiki:Bugreportspage]] is a MediaWiki messages denoting a page in the wiki. At this moment it renders to "''Vikiriječnik:Prijave_grešaka''". The underscore is not required here any more. I suggest to change this message to
<pre>
{{ns:Project}}:Prijave grešaka
</pre>
* I am not familiar with Bosnian grammar. Once the software gets synchronized you should try to change the messages from [[:category:SITENAME]] and use the "''GRAMMAR syntax''" similar to the suggestions available at [[q:sl:category:SITENAME]]. Good luck! [[Korisnik:Gangleri|Gangleri]] · [[Razgovor_sa_korisnikom:Gangleri|T]] · [[m:user:Gangleri|m:]] [http://meta.wikimedia.org/wiki/user_talk:Gangleri?action=history Th] · [[m:user talk:Gangleri|T]] 08:32, 19 april 2006 (UTC)
* P.S. The number of [[meta:developers|developers]] of the MediaWiki software is increasing and during the last weeks changes / additions of the MediaWiki messages get more and more frequently. Plase watch [http://svn.wikimedia.org/viewvc/mediawiki/trunk/phase3/languages/Messages.php?view=log Messages.php]. I would suggest that you translate as much messages as possible and onece the localization is stable you comit a patch every two weeks. Best regards [[Korisnik:Gangleri|Gangleri]] · [[Razgovor_sa_korisnikom:Gangleri|T]] · [[m:user:Gangleri|m:]] [http://meta.wikimedia.org/wiki/user_talk:Gangleri?action=history Th] · [[m:user talk:Gangleri|T]] 09:41, 19 april 2006 (UTC)
==minor issues==
* Halló Dijan! Please ask at [irc://irc.freenode.net/mediawiki #mediawiki] if "''plain text (text/plain)''" would be a better attachment type at [[bugzilla:]].
* I tested create account via email at http://wikimania2006.wikimedia.org/. Please see [http://wikimania2006.wikimedia.org/wiki/Wikimania:Community_Portal Wikimania:Community Portal] about [[MediaWiki:Tog-enotifusertalkpages]] [[MediaWiki talk:Tog-enotifusertalkpages|T]]
: "''{{int:Tog-enotifusertalkpages}}'''"
* Best regards [[Korisnik:Gangleri|Gangleri]] · [[Razgovor_sa_korisnikom:Gangleri|T]] · [[m:user:Gangleri|m:]] [http://meta.wikimedia.org/wiki/user_talk:Gangleri?action=history Th] · [[m:user talk:Gangleri|T]] 03:44, 20 april 2006 (UTC)
==Rad na rjecniku==
Hi. Thanks for all the info. I'll start using the standardized version from now on. As soon as I get a change, I'll fix the messages here to reflect the standard. Sorry for all the arguing. I guess, I'm just a little pisssed off about the fact that Central Bosnian speech is being used as a standard for language that's spoken by many who do not live in that area and do not speak that way. I'll fix all the needed things as soon as I get a chance. Hopefully, in the future, this won't happen again. Is there any way that you can come here more often and help improve this Wiktionary? It seems that I'm the only person here right now. --[[Korisnik:Dijan|Dijan]] 19:07, 17 maj 2006 (UTC)
:Sorry for editing your user page. I just wanted to add the fixed Babel information. --[[Korisnik:Dijan|Dijan]] 19:28, 17 maj 2006 (UTC)
::Ja cu pokusati malo da se ukljucim u rad rjecnika. Do sada ovdje nisam radio tako da ne znam kako se clanci pravilno rade odnosno kako treba da izgledaju. --<tt>[[User:Demicx|<span style="color: #008000;">Elmir</span>]][[User_talk:Demicx|<span style="color:#FFA500;">[demicx]</span>]]</tt> 22:16, 17 maj 2006 (UTC)
:::Nadam se da cu uskoro moci napraviti glavne stranice i pomocne stranice u vezi rada na rjecniku. --[[Korisnik:Dijan|Dijan]] 16:50, 18 maj 2006 (UTC)
==Nakaženje članaka==
Da li nakaženje članaka koje sam ja napisao ima neku posebnu svrhu? Ako si već promijenio [[Šablon:Imenica]], zašto onda nisi promijenio i članke koji sadrže taj šablon? I zašto uvodiš srpski jezik na vikirječnik na bosanskom jeziku, kao što je slučaj sa člankom [[hemija]]? Pozdrav--[[Korisnik:Kahriman|Kahriman]] 21:38, 16 juni 2006 (UTC)
:Izvini, ali, nepostoji ovdje nikakvo nakazenje. Nisam imao vremena da stavim sablon na ostale stranice kad sam izmjenio '''hemija''', pa sam ostavio. A sto je srpski uvodeno ovdje je zato sto je Vikirjecnik visejezicki rjecnik. (Procitaj pocetnu stranicu). To znaci da rijeci iz svakog jezika se unose ovdje ali se opisuju na bosanskom jeziku. Izvini, ako ti mislis da sam poremetio tvoj doprinose. --[[Korisnik:Dijan|Dijan]] 23:29, 16 juni 2006 (UTC)
== Only if editing.js ==
I guess that would make a little more sense if it looked like this:
<nowiki>
addEditButton( 'fr/3/30/Btn_toolbar_rayer.png', '<s>', 'Prekriži', '</s>', 'Prekriži');
</nowiki>
That way, if no text is selected, the thing is inserted with "Prekriži" auto-selected (so when you start typing, the "Prekriži" is replaced with your typing.) --[[Korisnik:Connel MacKenzie|Connel MacKenzie]] 23:17, 12 juli 2006 (UTC)
----
By the way, those features all work as you'd expect, if you first have some text selected. So, if you select a word and click <s>S</s>, it will wrap it with the strikeout syntax.
I'm very sorry to say, that the additional button (that pops up and asks what to search for/replace) can't be safely enabled for any browser other than IE. I don't know if it is a security feature (to prevent malicious code from being inserted) or what. But outside of IE, adding that button causes errors.
Likewise, the feature that swaps the selection box thing from below the edit box, to above the edit box, checks first to see that you are using IE, otherwise, it skips the swap.
P.S. I added the sitenotice link to meta with the logo contest.
Waitasecond...zh.wikt: has it working for both...
Well then, I think I may have something better, soon, after all. --[[Korisnik:Connel MacKenzie|Connel MacKenzie]] 03:58, 13 juli 2006 (UTC)
== Toolbar ==
Vidim da se i ti mucis sa toolbar. Ja nikako ne mogu da nadjem gdje je greska. Sve funkcionise kako treba samo ove standardne naredbe (podebljan tekst, slika, potpis, itd.) vise ne rade. Ja sam pitao na njemackom wikisource, ali ni oni ne znaju zasto je to tako. Znas li ti nekoga ko se tu malo bolje razumije. Pozdrav. --<tt>[[User:Demicx|<span style="color: #008000;">Elmir</span>]][[User_talk:Demicx|<span style="color:#FFA500;">[demicx]</span>]]</tt> 07:04, 13 juli 2006 (UTC)
:Primjetio sam da kada se na diskusijama ili tekstovima koristi naslov "Toolbar" kao sto je to ovdje slucaj, odmah iznad tog naslova se pojavi i button "AB". U tom slucaju je, kada se pritisne na "Prikazi izgled", sav tekst izmedju toolbar i prozora za obradu teksta (a ne kako je normalno iznad toolbar). Nadam se da si me razumio sta mislim. Moze li se to kako popraviti? --<tt>[[User:Demicx|<span style="color: #008000;">Elmir</span>]][[User_talk:Demicx|<span style="color:#FFA500;">[demicx]</span>]]</tt> 16:10, 14 juli 2006 (UTC)
::Raspitaću se za <nowiki>==toolbar==</nowiki>. Ne prikazuje se kad počinje sa velikim slovom, samo sa malim. --[[Korisnik:Dijan|Dijan]] 17:42, 14 jul 2006 (UTC)
:::OK. Pitao sam i pronaš'o da nema nikakvih problema i da se ne može to propraviti. To dolazi iz softvera koji se koristi za wiki-je. --[[Korisnik:Dijan|Dijan]] 17:46, 14 jul 2006 (UTC)
== Nedavne izmjene ==
Na vrhu stranice "Nedavne izmjene" stoji - ''nedelja, χημεία, juni, švedski, španski, telugu, srpski i ruski''. Je li to ima neku svrhu ili je greska?
ps. Ubacio sam na wikisource kôd za monobook.js. Odlicno radi. --<tt>[[User:Demicx|<span style="color: #008000;">Elmir</span>]][[User_talk:Demicx|<span style="color:#FFA500;">[demicx]</span>]]</tt> 12:01, 14 juli 2006 (UTC)
:To je ubacio kod ovaj jedan što je radio na Monobook.js. Kod pokazuje prvih osam stranica koje ne postoje, ali imaju najviše veza ka njima. Stranice dolaze sa [[Posebno:Wantedpages|Tražene stranice]]. --[[Korisnik:Dijan|Dijan]] 17:35, 14 juli 2006 (UTC)
:Ako hoćeš, taj kod se nalazi u Monobook.css (izmjeni sve wiktionary u projekat na ko'm ćeš postaviti kod), u [[MedijaViki:Recentchangestext]] i u [[Vikirječnik:Pretraga]]. "Pretraga" nije dobar naslov (jer nema ništa sa pretragom), ali sad za sad sve je super, pa neću ništa da mjenjam još. --[[Korisnik:Dijan|Dijan]] 17:55, 14 juli 2006 (UTC)
== Hello again ==
Due to the events for Dvortygirl this Saturday, I was wondering how much I can get away with, w/o her noticing. Now that she is a B'crat on en.wikt and WZ, and active on Commons, there just aren't many places left to form a nice wedding greeting page for her. Mind if I mess around here for two or three days? --[[Korisnik:Connel MacKenzie|Connel MacKenzie]] 07:40, 21 juli 2006 (UTC)
:Please do add to it...this time tomorrow is the event. --[[Korisnik:Connel MacKenzie|Connel MacKenzie]] 18:35, 21 juli 2006 (UTC)
== Toolbar isprave ==
Hvala ti na obavijsti. Moram to da ispravim i na Wikizvoru i na Wikiknjigama. Pozdrav. --<tt>[[User:Demicx|<span style="color: #008000;">Elmir</span>]][[User_talk:Demicx|<span style="color:#FFA500;">[demicx]</span>]]</tt> 14:57, 10 septembar 2006 (UTC)
: Nema problema. --[[Korisnik:Dijan|Dijan]] 22:21, 10 septembar 2006 (UTC)
== Missing users? ==
I see that some user names are missing [[Posebno:Protokol/rights|here]]. The [[Posebno:Protokol/rights]] should be updated. Don't you think so? I also think that in Bosnian language, the eight month of the year is called august (not avgust). This is why [[MediaWiki:August]], [[MediaWiki:Aug]] and [[MediaWiki:August-gen]] should be updated, as well as the other month names (in gen. form):
{|
!MediaWiki
!Content
|-
|[[MediaWiki:January-gen]]
|januara
|-
|[[MediaWiki:February-gen]]
|februara
|-
|[[MediaWiki:March-gen]]
|marta
|-
|[[MediaWiki:April-gen]]
|aprila
|-
|[[MediaWiki:May-gen]]
|maja
|-
|[[MediaWiki:June-gen]]
|juna
|-
|[[MediaWiki:July-gen]]
|jula
|-
|[[MediaWiki:August-gen]]
|augusta
|-
|[[MediaWiki:September-gen]]
|septembra
|-
|[[MediaWiki:October-gen]]
|oktobra
|-
|[[MediaWiki:November-gen]]
|novembra
|-
|[[MediaWiki:December-gen]]
|decembra
|}
You can check in this source:<br>
[[w:Senahid Halilović|Halilović, Senahid]]. ''<u>Pravopis bosanskoga jezika</u>'', Kulturno društvo Bošnjaka „Preporod“, Sarajevo, 1996., [http://books.google.hr/books?id=S5NiAAAAMAAJ&q=August p 140 & 163,] or at [[w:Razgovor:Europa (mitologija)#Europa?|this]] talk page. And [[w:August|here]] also.
With regards, -- [[Korisnik:Bugoslav|Bugoslav]] <small><b>([[Razgovor sa korisnikom:Bugoslav|razg.]])</b></small>; nedjelja, 18. septembar 2011., 21:52 (CEST)
:I'm quite familiar with the so called "pravopis". Your requested updates are complete. As to the missing users, I have no idea what you're talking about. The page you specified only lists users to whom special rights have been giving, not all users. --[[Korisnik:Dijan|Dijan]] 17:30, 19 septembar 2011 (KSV)
::I believe that [[Korisnik:Barishan]] deserves sysop status. That is all to it. -- [[Korisnik:Bugoslav|Bugoslav]] <small><b>([[Razgovor sa korisnikom:Bugoslav|razg.]])</b></small>; nedjelja, 25. septembra 2011., 09:57 (CEST)
== bot on bs.wikt ==
:Hi Dijan
:Could you give my bot [[:User:GanimalBot|GanimalBot]] the bot flag so that it won't flood the RCs--Thanks--[[Korisnik:George Animal|George Animal]] ([[Razgovor sa korisnikom:George Animal|razgovor]]) 13:29, 10 novembar 2012 (KSV)
::Done. --[[Korisnik:Dijan|Dijan]] ([[Razgovor sa korisnikom:Dijan|razgovor]]) 18:31, 10 novembar 2012 (KSV)
:Thanks alot.Best regards--[[Korisnik:George Animal|George Animal]] ([[Razgovor sa korisnikom:George Animal|razgovor]]) 19:37, 10 novembar 2012 (KSV)
== Bot zastavica ==
Pozdrav Dijane. Zamolio bih zastavicu za [[Korisnik:EdinBot|Edinbot]]a. Za početak ću se pobrinuti da korisnici dobijaju dobrodošlice na stranicu za razgovor. O ostalim stvarima nekada kasnije više. Pozdrav, Edin. :) -- [[Korisnik:Edinwiki|Edinwiki]] ([[Razgovor sa korisnikom:Edinwiki|razgovor]]) 12:46, 13 januar 2013 (KSV)
:Pozdrav Edine, izvinjavam se što malo kasnim. Edinbot je na [[Vikirječnik:Botovi|listi botova]] :) --[[Korisnik:Dijan|Dijan]] ([[Razgovor sa korisnikom:Dijan|razgovor]]) 19:04, 19 februar 2013 (KSV)
:: Hvala puno. -- [[Korisnik:Edinwiki|Edinwiki]] ([[Razgovor sa korisnikom:Edinwiki|razgovor]])
== Administratorska prava ==
Pozdrav Dijane. Zamolio bih te da pogledaš stranicu [[Vikirječnik:Administratori]]. Tu sam već jedno vrijeme stavio glasanje za kandidovanje za administratora. Radi se o meni i o Kwikiju. Aktivni smo (oboje kao Administratori) na wikipediji, a ovdje bi također želili da pomognemo. Kwiki je stručnjak u jeziku a ja oko wiki tehnike, tako da mislim da bi ovdje dosta mogli doprinijeti. Pošto si ti jedini birokrata ovdje, nemam kome drugom da se obratim. Nadam se da ćeš se složiti stim da se i mi uklopimo u tim ovdje. Sve najbolje. -- [[Korisnik:Edinwiki|Edinwiki]] ([[Razgovor sa korisnikom:Edinwiki|razgovor]]) 19:01, 3 april 2013 (KSV)
: Zahvaljujem. -- [[Korisnik:Edinwiki|Edinwiki]] ([[Razgovor sa korisnikom:Edinwiki|razgovor]]) 20:32, 9 april 2013 (KSV)
== Botovska posla ==
Samo da ti spomenem da ako u budućem budeš mislio da ima neki posao što se botovski može odraditi onda mi samo javi na stranici za razgovor. Za početak sam [[Posebno:Doprinos/EdinBot|implementirao]] automatsko dodavanje dobrodošlica novim korisnicima. -- [[Korisnik:Edinwiki|Edinwiki]] ([[Razgovor sa korisnikom:Edinwiki|razgovor]]) 22:05, 9 april 2013 (KSV)
:Hvala. Javiću ti se ako bude šta trebalo. Ako ti još nešto bude trebalo, slobodno mi poruku ostavi. --[[Korisnik:Dijan|Dijan]] ([[Razgovor sa korisnikom:Dijan|razgovor]]) 21:32, 10 april 2013 (KSV)
== [[m:Special:MyLanguage/Single User Login finalisation announcement|Forced user renames coming soon for SUL]] ==
<div class="mw-content-ltr">
Hi, sorry for writing in English. I'm writing to ask you, as a bureaucrat of this wiki, to [//meta.wikimedia.org/w/index.php?title=Special:Translate&group=page-Single+User+Login+finalisation+announcement%2FPersonal+announcement&filter=&action=page translate and review the notification] that will be sent to all users, also on this wiki, who will be forced to change their user name on May 27 and will probably need your help with renames.
You may also want to help with the pages [[m:Rename practices]] and [[m:Global rename policy]].
Thank you, [[m:User:Nemo_bis|Nemo]] 12:56, 3 maj 2013 (KSV)
</div>
<!-- EdwardsBot 0441 -->
== Wikirječnik i Wikidata ==
Postavljena je diskusija uvezi uvođenja Wikidata na Wikirječnik, i šta bi se sve moglo uraditi. Ako te interesuje pogledaj [http://www.wikidata.org/wiki/Wikidata:Wiktionary ovdje] (diskusija je na stranici za razgovor). -- [[Korisnik:Edinwiki|Edinwiki]] ([[Razgovor sa korisnikom:Edinwiki|razgovor]]) 09:33, 24 juni 2013 (KSV)
== An important message about renaming users ==
<div class="mw-content-ltr">
Dear Dijan,
''My aplogies for writing in English. Please translate or have this translated for you if it will help.''
I am cross-posting this message to many places to make sure everyone who is a Wikimedia Foundation project bureaucrat receives a copy. If you are a bureaucrat on more than one wiki, you will receive this message on each wiki where you are a bureaucrat.
As you may have seen, work to perform the Wikimedia cluster-wide [[mw:SUL finalisation|single-user login finalisation]] (SUL finalisation) is taking place. This may potentially effect your work as a local bureaucrat, so please read this message carefully.
Why is this happening? As currently stated at [[m:Global rename policy|the global rename policy]], a global account is a name linked to a single user across all Wikimedia wikis, with local accounts unified into a global collection. Previously, the only way to rename a unified user was to individually rename every local account. This was an extremely difficult and time-consuming task, both for stewards and for the users who had to initiate discussions with local bureaucrats (who perform local renames to date) on every wiki with available bureaucrats. The process took a very long time, since it's difficult to coordinate crosswiki renames among the projects and bureaucrats involved in individual projects.
The SUL finalisation will be taking place in stages, and one of the first stages will be to turn off Special:RenameUser locally. This needs to be done as soon as possible, on advice and input from Stewards and engineers for the project, so that no more accounts that are unified globally are broken by a local rename to usurp the global account name. Once this is done, the process of global name unification can begin. The date that has been chosen to turn off local renaming and shift over to entirely global renaming is 15 September 2014, or three weeks time from now. In place of local renames is a new tool, hosted on Meta, that allows for global renames on all wikis where the name is not registered will be deployed.
Your help is greatly needed during this process and going forward in the future if, as a bureaucrat, renaming users is something that you do or have an interest in participating in. The Wikimedia Stewards have set up, and are in charge of, a new community usergroup on Meta in order to share knowledge and work together on renaming accounts globally, called [[m:Global renamers|Global renamers]]. Stewards are in the process of creating documentation to help global renamers to get used to and learn more about global accounts and tools and Meta in general as well as the application format. As transparency is a valuable thing in our movement, the Stewards would like to have at least a brief public application period. If you are an experienced renamer as a local bureaucrat, the process of becoming a part of this group could take as little as 24 hours to complete. You, as a bureaucrat, should be able to apply for the global renamer right on Meta by the [[m:SRGP|requests for global permissions]] page on 1 September, a week from now.
In the meantime please update your local page where users request renames to reflect this move to global renaming, and if there is a rename request and the user has edited more than one wiki with the name, please send them to [[:m:SRUC|the request page for a global rename]].
Stewards greatly appreciate the trust local communities have in you and want to make this transition as easy as possible so that the two groups can start working together to ensure everyone has a unique login identity across Wikimedia projects. Completing this project will allow for long-desired universal tools like a global watchlist, global notifications and many, many more features to make work easier.
If you have any questions, comments or concerns about the SUL finalisation, read over the [[m:SUL|Help:Unified login]] page on Meta and leave a note on the talk page there, or on the talk page for [[m:Talk:Global renamers|global renamers]]. You can also contact me on [[m:User talk:Keegan (WMF)|my talk page on meta]] if you would like. I'm working as a bridge between Wikimedia Foundation Engineering and Product Development, Wikimedia Stewards, and you to assure that SUL finalisation goes as smoothly as possible; this is a community-driven process and I encourage you to work with the Stewards for our communities.
Thank you for your time.
-- [[m:User:Keegan (WMF)|Keegan (WMF)]] [[m:User talk:Keegan (WMF)|talk]] 18:24, 25 august 2014 (KSV)
<small>--This message was sent using [[m:MassMessage|MassMessage]]. Was there an error? [[m:Talk:MassMessage|Report it!]]</small>
</div>
<!-- Message sent by User:Keegan (WMF)@metawiki using the list at http://meta.wikimedia.org/w/index.php?title=User:Keegan_(WMF)/MassMessage/Crats&oldid=9637985 -->
== Your advanced permissions on bs.wiktionary==
Hello. A [[:m:Admin activity review|policy]] regarding the removal of "advanced rights" (administrator, bureaucrat, etc.) was adopted by [[:m:Requests for comment/Activity levels of advanced administrative rights holders|community consensus]] in 2013. According to this policy, the stewards are reviewing activity on wikis with no inactivity policy.
You meet the inactivity criteria (no edits and no log actions for 2 years) on this wiki. Since this wiki, to the best of our knowledge, does not have its own rights review process, the global one applies.
If you want to keep your advanced permissions, you should inform the community of the wiki about the fact that the stewards have sent you this information about your inactivity. A community notice about this process has been also posted on the local Village Pump of this wiki. If the community has a discussion about it and then wants you to keep your rights, please contact the stewards at the [[:m:Stewards' noticeboard]], and link to the discussion of the local community, where they express their wish to continue to maintain the rights.
If you wish to resign your rights, please [[m:SRP|request removal of your rights on Meta]].
If there is no response at all after one month, stewards will proceed to remove your administrator and/or bureaucrat rights. In ambiguous cases, stewards will evaluate the responses and will refer a decision back to the local community for their comment and review. If you have any questions, please contact the [[:m:Stewards' noticeboard|stewards]].
Yours faithfully. --[[Korisnik:علاء|علاء]] ([[Razgovor s korisnikom:علاء|razgovor]]) 11:56, 8 januar 2020 (KSV)
:Today I removed your permission. Thank you for your work, [[Korisnik:Einsbor|Einsbor]] ([[Razgovor s korisnikom:Einsbor|razgovor]]) 11:16, 10 februar 2020 (KSV)
rp2314druk996s6zfr49rhlg9ox60hp
Šablon:switch
10
2406
6486
2006-04-19T08:48:38Z
Gangleri
31
from [[yi:template:switch]]
6486
wikitext
text/x-wiki
<noinclude>
[[Category:Conditional templates|Switch]]
</noinclude>{{{case: {{{1|}}}|{{{default|}}}}}}
fv9dwmld72kxbru19g8lycbcj0jl5gr
Razgovor s korisnikom:Demicx
3
2428
9569
9568
2006-11-11T15:32:38Z
Demicx
41
9569
wikitext
text/x-wiki
<div class="usermessage"><div class="plainlinks">[http://bs.wiktionary.org/w/index.php?title=User_talk:Demicx&action=edit§ion=new Ostavite novu poruku!]</div></div>
<div style="float:right; padding-left:5px;">
{| style="text-align:left; border:1px solid #aaaaaa; background-color:#f9f9f9;width: 250px;font-family: Verdana, sans-serif;"
|- padding:5px;padding-top:0.5em;font-size: 95%;
|
<div style="border:1px solid #ccc; background: #fff; border-right:2px solid #ccc; border-bottom:2px solid #ccc; text-align: center; padding:3px; float:right; font-size: smaller; line-height: 1.3; margin-right: 0px; width: 96%">
<div style="width:100%">[[{{CURRENTDAYNAME}}]]</div>
<div style="font-size: x-large; width: 100%;">[[{{CURRENTDAY}}. {{CURRENTMONTHNAME}}|{{CURRENTDAY}}.]]</div>
<div style="width: 100%;"> [[{{CURRENTMONTHNAME}}]]</div>
</div>
<center><small>Dobrodošli na [[User:Demicx|moju]] stranicu za razgovor!<br />
Willkommen auf [[User:Demicx|meiner]] Diskussionsseite!<br />Welcome to [[User:Demicx|my]] talk page!</small></center>
----
{|
{{Babel-3|bs|de-4|en-2}}
----
<center>
__TOC__
</center>
|}
</div>
<!-------------------------------------------------------------->
== Riječ ==
Znači, riječ može, a riječnik ne može? OK. --[[Korisnik:Dijan|Dijan]] 07:57, 20 april 2006 (UTC)
:Upravo tako. --[[Korisnik:Demicx|Demicx]] 08:00, 20 april 2006 (UTC)
::OK, nema problema. Popraviće se sve uskoro. Samo još malo. --[[Korisnik:Dijan|Dijan]] 08:03, 20 april 2006 (UTC)
== Bosnian language ==
Hi. Thanks for all the info. I'll start using the standardized version from now on. As soon as I get a change, I'll fix the messages here to reflect the standard. Sorry for all the arguing. I guess, I'm just a little pisssed off about the fact that Central Bosnian speech is being used as a standard for language that's spoken by many who do not live in that area and do not speak that way. I'll fix all the needed things as soon as I get a chance. Hopefully, in the future, this won't happen again. Is there any way that you can come here more often and help improve this Wiktionary? It seems that I'm the only person here right now. --[[Korisnik:Dijan|Dijan]] 19:07, 17 maj 2006 (UTC)
:Sorry for editing your user page. I just wanted to add the fixed Babel information. --[[Korisnik:Dijan|Dijan]] 19:28, 17 maj 2006 (UTC)
::Nadam se da cu uskoro moci napraviti glavne stranice i pomocne stranice u vezi rada na rjecniku. --[[Korisnik:Dijan|Dijan]] 16:50, 18 maj 2006 (UTC)
== Toolbar ==
Eh, baš vala se ja u ovo ne razumijem. :) Uspijeli smo da vratimo standardne naredbe, ali nikako ne možemo da stavimo "specijalne karaktere" na vrh stranice sa "toolbar". Ali, vidijeli smo da [http://zh.wiktionary.org kineski Vikirječnik] ima naredbe i specijalne karaktere na vrhu (baš kako bi mi voljeli!). Sad ćemo samo da vidimo može li se kako uvesti njihov kod ovdje. Za sad, to je sve za to. Ako ti pronađeš nešto bolje, javi se. --[[Korisnik:Dijan|Dijan]] 07:10, 13 juli 2006 (UTC)
== Nedavne izmjene ==
Na vrhu stranice "Nedavne izmjene" stoji - ''nedelja, χημεία, juni, švedski, španski, telugu, srpski i ruski''. Je li to ima neku svrhu ili je greska?
ps. Ubacio sam na wikisource kôd za monobook.js. Odlicno radi. --<tt>[[User:Demicx|<span style="color: #008000;">Elmir</span>]][[User_talk:Demicx|<span style="color:#FFA500;">[demicx]</span>]]</tt> 12:01, 14 juli 2006 (UTC)
:To je ubacio kod ovaj jedan što je radio na Monobook.js. Kod pokazuje prvih osam stranica koje ne postoje, ali imaju najviše veza ka njima. Stranice dolaze sa [[Posebno:Wantedpages|Tražene stranice]]. --[[Korisnik:Dijan|Dijan]] 17:35, 14 juli 2006 (UTC)
:Ako hoćeš, taj kod se nalazi u Monobook.css (izmjeni sve wiktionary u projekat na ko'm ćeš postaviti kod), u [[MedijaViki:Recentchangestext]] i u [[Vikirječnik:Pretraga]]. "Pretraga" nije dobar naslov (jer nema ništa sa pretragom), ali sad za sad sve je super, pa neću ništa da mjenjam još. --[[Korisnik:Dijan|Dijan]] 17:55, 14 juli 2006 (UTC)
==Toolbar isprave==
Pozdrav. Pokvarili su se linkovi ka ikonama od 5 dugmića na toolbar-u, pa sam popravio to ovdje. Vidio sam da je isti problem na ba.wikisource.org. Ako hoćeš to da ispraviš, popravi linkove u Monobook.js. Samo trebaš ispraviti '''fr''' u '''commons''' u linkovima tih dugmića. --[[Korisnik:Dijan|Dijan]] 03:29, 10 septembar 2006 (UTC)
: Nema problema. --[[Korisnik:Dijan|Dijan]] 22:21, 10 septembar 2006 (UTC)
hwssjw6lvygz22qolyra8mwn57ziu9j
Korisnik:Demicx
2
2429
12282
7409
2009-01-05T14:55:52Z
Demicx
41
12282
wikitext
text/x-wiki
{| style="border:3px solid darkblue; background-color: <includeonly>dark</includeonly><noinclude>light</noinclude>white; margin-left:0em; margin-top:2px; -moz-border-radius:10px;" align="center" width="98%"
|-
{| class="messagebox standard-talk"
|<div style="font-size: 3em; text-align: top;"></div>
<div style="font-family: Verdana; letter-spacing: 0.01em;">
<center><div style="font-family: Georgia, Hoefler Text, serif; font-size: 14pt; letter-spacing: 0.2em; border-bottom: 1px solid; border-bottom-color:#000000"> ''Welcome to my userpage. Just <font color="red"><font style="background: orange"> <span style="text-decoration: blink">[[User talk:Demicx|Wiki me up©]]</font></font></span> and correct me if I am wrong.'' </div></center><br />
<center><div style="font-family: Georgia, Hoefler Text, serif; letter-spacing: 0.2em;">''Na WikiVijestima na [[w:Bosanski jezik|bosanskom jeziku]] trenutno se nalazi <font color="red">[[Special:Statistics|{{NUMBEROFARTICLES}}]]</font> {{plural:{{NUMBEROFARTICLES}}|članak|članka|članaka}}.''</div></center>
{| style="border:1px solid black;" cellpadding="5" cellspacing="0" align="center"
|style="border-left:0px solid black;"|<!--[[Image:Ljiljan.png|center|30px]]-->
|style="border-left:0px solid black;"|
|style="background:#ffffff"|
<font color="#9FCF70"><big><center><tt><span style="color:#FFA500;">[demicx]</span></tt></big></center></font>
----
<!-----------------------------------------PROJEKTI--------------------------------------------------->
<center><font color="#008000"><tt>Projekti</tt></font></center>
<center>
{|
| colspan="4"| <div style="float: left; border: solid #bbb 1px; margin: 1px;">
{| cellspacing="0" style="width: 510px; background: #f6f6f6"
| style="width: 34px; height: 34px; background: #fff; text-align: center; font-size: 14pt; color: #fff" | [[Image:Wikipedia-logo-en.png|25px]]
| style="font-size: 8pt; padding: 4pt; line-height: 1.25em;" | <center>[[:w:User:Demicx|'''<nowiki>[[bs]]</nowiki> Wikipedia na bosanskom jeziku''']]<br><div style="font-size: 7pt">upravnik</div></center>
|}
</div>
|-
{|
|<div style="float: left; border: solid #bbb 1px; margin: 1px;">
{| cellspacing="0" style="width: 120px; background: #f6f6f6"
| style="width: 34px; height: 34px; background: #fff; text-align: center; font-size: 14pt; color: #fff" | [[Image:Wikipedia-logo-en.png|25px]]
| style="font-size: 8pt; padding: 4pt; line-height: 1.25em;" | [[:en:User:Demicx|'''<nowiki>[[en]]</nowiki>''']]
|}
</div>
|<div style="float: left; border: solid #bbb 1px; margin: 1px;">
{| cellspacing="0" style="width: 120px; background: #f6f6f6"
| style="width: 34px; height: 34px; background: #fff; text-align: center; font-size: 14pt; color: #fff" | [[Image:Wikipedia-logo-en.png|25px]]
| style="font-size: 8pt; padding: 4pt; line-height: 1.25em;" | [[:de:Benutzer:Demicx|'''<nowiki>[[de]]</nowiki>''']]
|}
</div>
|<div style="float: left; border: solid #bbb 1px; margin: 1px;">
{| cellspacing="0" style="width: 120px; background: #f6f6f6"
| style="width: 34px; height: 34px; background: #fff; text-align: center; font-size: 14pt; color: #fff" | [[Image:Wikibooks-logo.svg|25px]]
| style="font-size: 8pt; padding: 4pt; line-height: 1.25em;" | [[:b:Korisnik:Demicx|'''Wikiknjige''']]<br><div style="font-size: 7pt">upravnik</div>
|}
</div>
|<div style="float: left; border: solid #bbb 1px; margin: 1px;">
{| cellspacing="0" style="width: 120px; background: #f6f6f6"
| style="width: 34px; height: 34px; background: #fff; text-align: center; font-size: 14pt; color: #fff" | [[Image:Wikisource-logo.svg|22px]]
| style="font-size: 8pt; padding: 4pt; line-height: 1.25em;" | [[:s:Korisnik:Demicx|'''Wikizvor''']]<br><div style="font-size: 7pt">upravnik</div>
|}
</div>
|-
|<div style="float: left; border: solid #bbb 1px; margin: 1px;">
{| cellspacing="0" style="width: 120px; background: #f6f6f6"
| style="width: 34px; height: 34px; background: #fff; text-align: center; font-size: 14pt; color: #fff" | [[Image:Wikinews-logo.svg|25px]]
| style="font-size: 8pt; padding: 4pt; line-height: 1.25em;" | [[:n:Korisnik:Demicx|'''Wikivijesti''']]<br><div style="font-size: 7pt">upravnik</div>
|}
</div>
|<div style="float: left; border: solid #bbb 1px; margin: 1px;">
{| cellspacing="0" style="width: 120px; background: #f6f6f6"
| style="width: 34px; height: 34px; background: #fff; text-align: center; font-size: 14pt; color: #fff" | [[Image:Wikiquote-logo.svg|22px]]
| style="font-size: 8pt; padding: 4pt; line-height: 1.25em;" | [[:q:Korisnik:Demicx|'''Wikicitat''']]
|}
</div>
|<div style="float: left; border: solid #bbb 1px; margin: 1px;">
{| cellspacing="0" style="width: 120px; background: #f6f6f6"
| style="width: 34px; height: 34px; background: #fff; text-align: center; font-size: 14pt; color: #fff" | [[Image:Wikimedia-logo.svg|25px]]
| style="font-size: 8pt; padding: 4pt; line-height: 1.25em;" | [[:m:User:Demicx|'''Meta-Wiki''']]
|}
</div>
|<div style="float: left; border: solid #bbb 1px; margin: 1px;">
{| cellspacing="0" style="width: 120px; background: #f6f6f6"
| style="width: 34px; height: 34px; background: #fff; text-align: center; font-size: 14pt; color: #fff" | [[Image:Mediawiki.png|25px]]
| style="font-size: 8pt; padding: 4pt; line-height: 1.25em;" | [[:MediaZilla:|'''Bugzilla''']]
|}
</div>
|}
</center>
|style="border-left:0px solid black;"|<!--[[Image:Ljiljan.png|center|30px]]-->
|}
----
<!--------------------------------------------------BABEL---------------------------------------------->
<!--
<div style="font-family: Georgia, Hoefler Text, serif; letter-spacing: 0.2em;"> '''Babel''' </div><br />
{| style="border:1px solid black;" cellpadding="5" cellspacing="0" align="center"
| {{Babel field N|
letter code size=1.2em|
letter code=[[:w:Bosanski jezik|bs]]|
text size=0.75em|
text=Ovaj korisnik govori '''[[:Category:User bs|bosanski]]''' kao '''[[:Category:User bs-N|maternji jezik]]'''.}}
| {{Babel field 4|
letter code size=1.2em|
letter code=[[:w:Njemački jezik|de]]|
text size=0.70em|
text=Dieser Benutzer beherrscht '''[[:Category:User de|Deutsch]]''' auf '''[[:Category:User de-4|Muttersprache-Niveau]].'''}}
| {{Babel field 2|
letter code size=1.2em|
letter code=[[:w:Engleski jezik|en]]|
text size=0.70em|
text=This user is able to contribute with an '''[[:Category:User en-2|intermediate]]''' level of '''[[:Category:User en|English]]'''.}}
|}
<br />
----
-->
<!-------------------------------------------------RADIONICA----------------------------------------------->
<div style="font-family: Georgia, Hoefler Text, serif; letter-spacing: 0.2em;"> '''Radionica''' </div><br />
{| style="border:1px solid black;" cellpadding="5" cellspacing="0" align="center"
|style="background:#FFFFFF"|
{|
|style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 85%; border-bottom: 1px dashed #AAAAAA; border-bottom-color:#FF0000; border-top: 1px dashed #AAAAAA; border-top-color:#FF0000"|
Početak:
|style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 85%; border-bottom: 1px dashed #AAAAAA; border-bottom-color:#FF0000; border-top: 1px dashed #AAAAAA; border-top-color:#FF0000"|
Rad na dizajnu • Prevod interfejsa
|}
|}
<br />
----
<!------------------------------------------------------ODLIKOVANJA------------------------------------------>
<div style="font-family: Georgia, Hoefler Text, serif; letter-spacing: 0.2em;"> '''Odlikovanja''' </div><br />
<br />
----
<!---------------------------------------------------ADMINSTRACIJA----------------------------------------->
<div style="font-family: Georgia, Hoefler Text, serif; letter-spacing: 0.2em;"> '''Administracija''' </div><br />
{| style="border:1px solid black;" cellpadding="5" cellspacing="0" align="center"
|style="font-family: Georgia, Hoefler Text, serif; letter-spacing: 0.2em; font-size: 85%; text-align: center;"| [[Posebno:Blockip|Blokiranje]]
|style="font-family: Georgia, Hoefler Text, serif; letter-spacing: 0.2em; font-size: 85%; text-align: center;"| [[Special:Allmessages|Interfejs]]
|style="font-family: Georgia, Hoefler Text, serif; letter-spacing: 0.2em; font-size: 85%; text-align: center;"| [http://svn.wikimedia.org/viewvc/mediawiki/trunk/phase3/languages/LanguageBs.php?view=log&pathrev=13937 LanguageBs.php]
|style="font-family: Georgia, Hoefler Text, serif; letter-spacing: 0.2em; font-size: 85%; text-align: center;"| [http://svn.wikimedia.org/viewvc/mediawiki/trunk/phase3/languages/MessagesBs.php?view=log MessagesBs.php]
|style="font-family: Georgia, Hoefler Text, serif; letter-spacing: 0.2em; font-size: 85%; text-align: center;"| [[MedijaViki:Monobook.js|Monobook.js]]
|style="font-family: Georgia, Hoefler Text, serif; letter-spacing: 0.2em; font-size: 85%; text-align: center;"| [[MedijaViki:Common.css|Common.css]]
|-
|style="font-family: Georgia, Hoefler Text, serif; letter-spacing: 0.2em; font-size: 85%; text-align: center;"| [[Posebno:Specialpages|ČPN]]
|style="font-family: Georgia, Hoefler Text, serif; letter-spacing: 0.2em; font-size: 85%; text-align: center;"| [http://tools.wikimedia.de/~kate/cgi-bin/count_edits?user=&dbname=bswiki_p Counter]
|style="font-family: Georgia, Hoefler Text, serif; letter-spacing: 0.2em; font-size: 85%; text-align: center;"| [[:Šablon:Wikivar|<nowiki>{{Wikivar}}</nowiki>]]
|style="font-family: Georgia, Hoefler Text, serif; letter-spacing: 0.2em; font-size: 85%; text-align: center;"| [[:Template:DemicxDobrodošli|<nowiki>{{DemicxDobrodošli}}</nowiki>]]
|style="font-family: Georgia, Hoefler Text, serif; letter-spacing: 0.2em; font-size: 85%; text-align: center;"| [http://stats.wikimedia.org/DE/TablesWikipediaBS.htm Statistika (bs)]
|style="font-family: Georgia, Hoefler Text, serif; letter-spacing: 0.2em; font-size: 85%; text-align: center;"| [http://stats.wikimedia.org/DE/ChartsWikipediaBS.htm Diagram (bs)]
|}
<br />
|}
__NOTOC__
4lqidcbymolirh5bgdnhvqjz9rqw5dp
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
66878
10181
2017-11-02T18:42:01Z
Srđan
1899
66878
wikitext
text/x-wiki
{{Bratskiprojekat |projekat=Wikipedia
|image=Wikipedia-logo-v2.svg
|text=Wikipedia ima sljedeći članak:
|link=[[w:{{{1|{{PAGENAME}}}}}|{{{1|{{PAGENAME}}}}}]]
}}
</p>
rgb4vo0ximt0cw5gy15k8iu38m811hq
Korisnik:Crveni Baron~bswiktionary
2
2441
44037
6627
2015-04-17T19:56:21Z
Maintenance script
1944
Maintenance script je premjestio stranicu [[Korisnik:Crveni Baron]] na [[Korisnik:Crveni Baron~bswiktionary]] bez ostavljanja preusmjerenja: Automatsko premještanje stranice zbog preimenovanja korisnika „[[Special:CentralAuth/Crveni Baron|Crveni Bar...
44037
wikitext
text/x-wiki
Vidi <br>
* [http://sr.wiktionary.org/wiki/User:Crveni_Baron Srpski Vikirečnik] ([http://sr.wiktionary.org/wiki/User_talk:Crveni_Baron razgovor])<br>
* [http://de.wiktionary.org/wiki/Benutzer:Roter_Baron Nemački Vikirečnik] ([http://de.wiktionary.org/wiki/Benutzer_Diskussion:Roter_Baron razgovor])
efibs02eut7c2bzkw05glqhsz0sh4gc
Šablon:klik
10
2443
8194
6630
2006-07-15T08:36:49Z
Dijan
16
Stranica "[[Šablon:klik]]" je zaštićena [edit=sysop:move=sysop]
8194
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>
naznyrpcyba9w4x9zlokp2lbpvj37vr
Š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
72723
67813
2025-04-26T00:49:03Z
Minorax
2705
72723
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>
dtddgnfz1aq2slzicebi0n9sa03fp0n
Š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
6764
2006-05-06T13:03:26Z
Dijan
16
6764
wikitext
text/x-wiki
<span class="TH" style="font-family:{{TH fontovi}}; font-size:{{TH font veličina}}">{{{1}}}</span>
8eou2hck9vofeode168wdtjivj7kv44
Šablon:TH fontovi
10
2457
6815
6765
2006-05-11T10:06:46Z
Dijan
16
6815
wikitext
text/x-wiki
Arial Unicode MS, Code2000, Tahoma
b9xjctp54zxuhhzc20ujua19vykhdbp
Šablon:TH font veličina
10
2458
6766
2006-05-06T13:07:45Z
Dijan
16
6766
wikitext
text/x-wiki
125%
kgla8hp5tdrvhxa8a768q7fkblj7wo2
Šablon:ARkar
10
2459
72151
6773
2024-07-07T21:57:27Z
Barishan
287
72151
wikitext
text/x-wiki
<span class="AR" style="font-family:{{AR fontovi}}; font-family :inherit; font-size:150%; font-size :150%">{{{1}}}</span>
k46j6p75qh75mq4jheakxrvmq0iql4u
Šablon:AR fontovi
10
2461
6769
2006-05-06T13:09:53Z
Dijan
16
6769
wikitext
text/x-wiki
Tahoma, Arial Unicode MS, Code2000, Traditional Arabic
68wv4zq6vso2dpsad5xeoegyj5rxz52
Šablon:IPA fontovi
10
2463
6772
2006-05-06T13:10:58Z
Dijan
16
6772
wikitext
text/x-wiki
Arial Unicode MS, Lucida Grande, Doulos SIL, Code2000, Gentium, Gentium Alternative, TITUS Cyberbit Basic, Lucida Sans Unicode
h1t49ag7zdrfyia0dieh7qt6pdb8na5
Šablon:BNkar
10
2466
6776
2006-05-06T13:21:15Z
Dijan
16
6776
wikitext
text/x-wiki
<span class="BN" style="font-family:{{BN fontovi}}; font-size:{{BN font veličina}}">{{{1}}}</span>
gwngdup62jf7zqgrdamqmfdeg6oguy8
Šablon:BN fontovi
10
2467
18151
18141
2011-09-14T19:06:35Z
Barishan
287
18151
wikitext
text/x-wiki
Shonar Bangla
i5acny1xun13di3v0ju5ocz85vhgnsu
Šablon:BN font veličina
10
2468
6778
2006-05-06T13:21:52Z
Dijan
16
6778
wikitext
text/x-wiki
130%
msxpkl1imm438fk38aputycsyd7g1qo
Šablon:FAkar
10
2469
72148
72147
2024-07-07T21:55:39Z
Barishan
287
72148
wikitext
text/x-wiki
<span class="FA" style="font-family:{{FA fontovi}}; font-family :inherit; font-size:150%; font-size :150%">{{{1}}}</span>
2oxccyp33lb80icy187szykh1xiafqa
Šablon:FA font veličina
10
2470
72146
72145
2024-07-07T21:53:33Z
Barishan
287
72146
wikitext
text/x-wiki
28
17hsg6jkvb2eo8ef5hbfzd1df2lc1m0
Šablon:FA fontovi
10
2471
18140
18139
2011-09-14T18:34:39Z
Barishan
287
18140
wikitext
text/x-wiki
Tahoma
bk3ld6thf9ty7ts6jwwhdyh009awk4c
Šablon:URkar
10
2472
6782
2006-05-06T13:24:13Z
Dijan
16
6782
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>
j5hr40gbsbaqahypq11vqa4kkwhm85t
Šablon:UR fontovi
10
2473
6783
2006-05-06T13:24:44Z
Dijan
16
6783
wikitext
text/x-wiki
Tahoma
bk3ld6thf9ty7ts6jwwhdyh009awk4c
Šablon:UR font veličina
10
2474
6784
2006-05-06T13:24:54Z
Dijan
16
6784
wikitext
text/x-wiki
125%
kgla8hp5tdrvhxa8a768q7fkblj7wo2
Šablon:SDkar
10
2475
6792
2006-05-10T21:11:51Z
Dijan
16
6792
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>
7qvuj00sproqmlipojnepzhzxb90qve
Šablon:SD font veličina
10
2476
6793
2006-05-10T21:12:20Z
Dijan
16
6793
wikitext
text/x-wiki
125%
kgla8hp5tdrvhxa8a768q7fkblj7wo2
Šablon:SD fontovi
10
2477
68151
68150
2021-12-14T17:22:43Z
Synoman Barris
3169
Undid edits by [[Special:Contribs/103.6.198.192|103.6.198.192]] ([[User talk:103.6.198.192|talk]]) to last version by Dijan: reverting vandalism
68151
wikitext
text/x-wiki
MB Sindhi, MBSarang Sattar, MB Bhitai Sattar, MB Lateefi, Ayaz Gul, Tahoma
3ignar4f0uz2wz5trb3opg0jd654j91
Šablon:Babel-1
10
2478
58647
6795
2017-03-06T20:19:19Z
Srđan
1899
58647
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]]
|}
a4eu6i9asvokgg4dfigp2zon6nj54tu
Šablon:Babel-2
10
2480
58649
6797
2017-03-06T20:19:24Z
Srđan
1899
58649
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]]
|}
jahzv8clihi5b1orvm3lsu8xqv397sv
Šablon:Babel-3
10
2481
58633
6798
2017-03-06T20:08:03Z
Srđan
1899
58633
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]]
|}
hugcyu6ew9h89dsl7p3o1jess6m2erz
Šablon:Babel-4
10
2482
58650
6799
2017-03-06T20:19:26Z
Srđan
1899
58650
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]]
|}
lbacjxp16y2aqxukd4x313uk4ihs19w
Šablon:Babel-5
10
2483
58652
6800
2017-03-06T20:21:28Z
Srđan
1899
58652
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]]
|}
7t7fjxey3lncz6r0udojrkn9c5iwqso
Šablon:Babel-6
10
2484
58632
6801
2017-03-06T20:08:03Z
Srđan
1899
58632
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]]
|}
1ojeissce3ivnt4peb9dcckvgzqq89s
Šablon:Babel-12
10
2490
58637
6807
2017-03-06T20:08:09Z
Srđan
1899
58637
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]]
|}
hlfv57utj2smkm5j90d3f4oq30gys5w
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
7055
6842
2006-05-19T11:41:06Z
Dijan
16
7055
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>
8ddmc5ytmkc8lfmcwq93x0rlzf3wirw
Šablon:Babel field 3
10
2502
7054
6844
2006-05-19T11:40:04Z
Dijan
16
7054
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>
kig4ohvu1pwyuu7fxo2pl73xa28yq5o
Šablon:Babel field 2
10
2503
7051
6847
2006-05-19T11:39:25Z
Dijan
16
7051
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>
b3u6idfagzkvz8rjux5vzbhor2mtosl
Šablon:Babel field 1
10
2504
7052
6855
2006-05-19T11:39:36Z
Dijan
16
7052
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>
38tgj98zx9ym2ibwzag2elxft1cgavg
Š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
7053
6851
2006-05-19T11:39:46Z
Dijan
16
7053
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>
owdtoacwvyiz3hgicaly5bqm2d6f7gn
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
Šablon:mn
10
2737
58181
7545
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]]
58181
wikitext
text/x-wiki
<span title="množina">''mn.''</span><noinclude>
[[Kategorija:Šabloni roda i broja|m]]
[[en:Template:p]]
</noinclude>
olaobekqwyg8hlaonhohoyrm4atak9g
Kategorija:Svi jezici
14
2740
72653
66269
2025-04-13T20:52:43Z
Aca
2473
fix
72653
wikitext
text/x-wiki
Ova kategorija sadrži glavne kategorije svih korištenih jezika.
{{KatSad}}
[[Kategorija:Osnova]]
0m7rt6yj4httkug3ptnthubr6e2b1aa
Kategorija:Šabloni kategorija
14
2775
66743
58189
2017-07-03T23:39:34Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66743
wikitext
text/x-wiki
[[Kategorija:Šabloni|Kategorije]]
j1tdg6n4jsighhjaak13l0keit9rqir
Šablon:KatSad
10
2776
58665
7389
2017-03-06T20:40:54Z
Srđan
1899
58665
wikitext
text/x-wiki
{| id="toc" class="toc plainlinks" summary="Sadržaj" |
|-
! {{MediaWiki:Toc}}:
| [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}}} Vrh] – [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=A}} A][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=a}} a] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=B}} B][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=b}} b] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=C}} C][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=c}} c] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Č}} Č][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=č}} č] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ć}} Ć][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ć}} ć] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=D}} D][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=d}} d] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Dž}} Dž][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=dž}} dž] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Đ}} Đ][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=đ}} đ] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=E}} E][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=e}} e] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=F}} F][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=f}} f] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=G}} G][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=g}} g] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=H}} H][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=h}} h] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=I}} I][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=i}} i] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=J}} J][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=j}} j] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=K}} K][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=k}} k] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=L}} L][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=l}} l] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Lj}} Lj][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=lj}} lj] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=M}} M][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=m}} m] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=N}} N][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=n}} n] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Nj}} Nj][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=nj}} nj] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=O}} O][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=o}} o] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=P}} P][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=p}} p] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=R}} R][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=r}} r] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=S}} S][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=s}} s] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Š}} Š][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=š}} š] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=T}} T][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=t}} t] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=U}} U][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=u}} u] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=V}} V][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=v}} v] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Z}} Z][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=z}} z] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ž}} Ž][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ž}} ž]
|}
<noinclude>[[Kategorija:Šabloni kategorija]]</noinclude>
4z84o5bq8fozeb7xed13v1bnq8fvrmp
Šablon:lat:KatSad
10
2778
58663
7394
2017-03-06T20:40:53Z
Srđan
1899
58663
wikitext
text/x-wiki
{| id="toc" class="toc plainlinks" summary="Sadržaj" |
|-
! {{MediaWiki:Toc}}:
| [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}}} Vrh] – [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=A}} A][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=a}} a] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=B}} B][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=b}} b] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=C}} C][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=c}} c] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=D}} D][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=d}} d] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=E}} E][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=e}} e] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=F}} F][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=f}} f] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=G}} G][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=g}} g] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=H}} H][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=h}} h] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=I}} I][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=i}} i] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=J}} J][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=j}} j] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=K}} K][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=k}} k] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=L}} L][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=l}} l] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=M}} M][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=m}} m] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=N}} N][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=n}} n] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=O}} O][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=o}} o] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=P}} P][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=p}} p] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Q}} Q][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=q}} q] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=R}} R][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=r}} r] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=S}} S][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=s}} s] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=T}} T][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=t}} t] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=U}} U][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=u}} u] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=V}} V][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=v}} v] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=W}} W][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=w}} w] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=X}} X][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=x}} x] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Y}} Y][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=y}} y] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Z}} Z][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=z}} z]
|}
<noinclude>[[Kategorija:Šabloni kategorija]]</noinclude>
a91cqx61kxoue9yzb8wxi2rp2mcn78p
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:Conditional templates
14
2781
65564
58495
2017-07-03T19:54:29Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65564
wikitext
text/x-wiki
[[Kategorija:Šabloni]]
[[Kategorija:Wikirječnik]]
03ntuubjgru3wd9p3j8zme4m4tdd2fj
Kategorija:Njemački jezik
14
2785
66231
58966
2017-07-03T22:01:31Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66231
wikitext
text/x-wiki
{{Šablon:lat:KatSad}}
[[Kategorija:Svi jezici]]
2cnck2p8sdnbif1xsmkoi9k9x67dkcc
Šablon:tr:KatSad
10
2787
58657
7426
2017-03-06T20:27:52Z
Srđan
1899
58657
wikitext
text/x-wiki
{| id="toc" class="toc plainlinks" summary="Sadržaj" |
|-
! {{MediaWiki:Toc}}:
| [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}}} Vrh] – [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=A}} A][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=a}} a] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=B}} B][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=b}} b] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=C}} C][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=c}} c] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ç}} Ç][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ç}} ç] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=D}} D][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=d}} d] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=E}} E][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=e}} e] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=F}} F][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=f}} f] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=G}} G][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=g}} g] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ğ}} Ğ][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ğ}} ğ] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=H}} H][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=h}} h] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=I}} I][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ı}} ı] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=İ}} İ][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=i}} i] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=J}} J][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=j}} j] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=K}} K][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=k}} k] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=L}} L][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=l}} l] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=M}} M][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=m}} m] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=N}} N][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=n}} n] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=O}} O][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=o}} o] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ö}} Ö][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ö}} ö] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=P}} P][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=p}} p] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=R}} R][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=r}} r] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=S}} S][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=s}} s] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ş}} Ş][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ş}} ş] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=T}} T][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=t}} t] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=U}} U][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=u}} u] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ü}} Ü][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ü}} ü] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=V}} V][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=v}} v] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Y}} Y][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=y}} y] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Z}} Z][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=z}} z]
|}
<noinclude>[[Kategorija:Šabloni kategorija]]</noinclude>
8h6ch2ktqthf33czb39je1l0ga81jwp
Šablon:ru:KatSad
10
2796
58667
7436
2017-03-06T20:43:01Z
Srđan
1899
58667
wikitext
text/x-wiki
{| id="toc" class="toc plainlinks" summary="Sadržaj" |
|-
! {{MediaWiki:Toc}}:
| [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}}} Vrh] – [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=А}} А][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=а}} а] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Б}} Б][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=б}} б] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=В}} В][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=в}} в] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Г}} Г][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=г}} г] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Д}} Д][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=д}} д] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Е}} Е][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=е}} е] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ё}} Ё][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ё}} ё] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ж}} Ж][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ж}} ж] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=З}} З][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=з}} з] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=И}} И][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=и}} и] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Й}} Й][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=й}} й] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=К}} К][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=к}} к] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Л}} Л][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=л}} л] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=М}} М][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=м}} м] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Н}} Н][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=н}} н] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=О}} О][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=о}} о] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=П}} П][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=п}} п] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Р}} Р][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=р}} р] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=С}} С][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=с}} с] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Т}} Т][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=т}} т] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=У}} У][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=у}} у] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ф}} Ф][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ф}} ф] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Х}} Х][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=х}} х] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ц}} Ц][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ц}} ц] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ч}} Ч][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ч}} ч] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ш}} Ш][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ш}} ш] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Щ}} Щ][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=щ}} щ] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ъ}} Ъ][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ъ}} ъ] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ы}} Ы][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ы}} ы] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ь}} Ь][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ь}} ь] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Э}} Э][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=э}} э] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ю}} Ю][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ю}} ю] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Я}} Я][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=я}} я]
|}
<noinclude>[[Kategorija:Šabloni kategorija]]</noinclude>
mktpt8k1aduhm5fa22699xqzfd09kct
Korisnik:Kahriman
2
2801
7486
7469
2006-06-16T14:47:35Z
Kahriman
51
/* Doprinos Vikiriječniku na bosnskom jeziki */
7486
wikitext
text/x-wiki
<div class="usermessage"><div class="plainlinks">[http://bs.wiktionary.org/w/index.php?title=User_talk:Demicx&action=edit§ion=new Ostavite novu poruku!]</div></div>
Ja se zovem Ajdin Kahrović i korisnik sam [[w:Glavna stranica|bosanke wikipedije]]. [[w:Korisnik:Kahriman|Tamo]] možete pronaći podatke o meni.
== Doprinos Vikiriječniku na bosnskom jeziki ==
[[fizika]]; [[matematika]]; [[biologija]]; [[hemija]]; [[geologija]]; [[ekonomija]]; [[ekologija]];
qg7cfzczp3wqbx09dgf61lidxfbjzci
Kategorija:Šabloni deklinacije
14
2810
66722
58178
2017-07-03T23:36:03Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66722
wikitext
text/x-wiki
[[Kategorija:Šabloni|Deklinacija]]
qmotg6sk337dddqpc35o8pjz3bj7oks
Kategorija:Bratski projekti
14
2812
7492
2006-06-16T18:27:16Z
Dijan
16
7492
wikitext
text/x-wiki
[[Kategorija:Šabloni]]
9xysiht31v5w9l6vcol8vebndgmjmzs
Kategorija:Grčki jezik
14
2822
65461
52475
2017-06-22T02:34:20Z
Octahedron80
1996
[[d:Q8500134]]
65461
wikitext
text/x-wiki
{{Šablon:el:KatSad}}
[[Kategorija:Svi jezici]]
memrf0nqw4zz2aw711sxte8dbm19jft
Šablon:el:KatSad
10
2823
58668
7526
2017-03-06T20:43:02Z
Srđan
1899
58668
wikitext
text/x-wiki
{| id="toc" class="toc plainlinks" summary="Sadržaj" |
|-
! {{MediaWiki:Toc}}:
| [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}}} Vrh] – [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Α}} Α][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=α}} α] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Β}} Β][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=β}} β] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Γ}} Γ][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=γ}} γ] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Δ}} Δ][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=δ}} δ] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ε}} Ε][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ε}} ε] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ζ}} Ζ][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ζ}} ζ] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Η}} Η][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=η}} η] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Θ}} Θ][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=θ}} θ] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ι}} Ι][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ι}} ι] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Κ}} Κ][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=κ}} κ] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Λ}} Λ][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=λ}} λ] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Μ}} Μ][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=μ}} μ] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ν}} Ν][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ν}} ν] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ξ}} Ξ][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ξ}} ξ] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ο}} Ο][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ο}} ο] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Π}} Π][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=π}} π] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ρ}} Ρ][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ρ}} ρ] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Σ}} Σ][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=σ}} σ] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Τ}} Τ][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=τ}} τ] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Υ}} Υ][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=υ}} υ] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Φ}} Φ][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=φ}} φ] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Χ}} Χ][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=χ}} χ] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ψ}} Ψ][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ψ}} ψ] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ω}} Ω][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ω}} ω]
|}
<noinclude>[[Kategorija:Šabloni kategorija]]</noinclude>
1mawwbmubdpk90k6oy7yq7pww3obblw
Šablon:f
10
2824
7529
7528
2006-06-16T19:44:35Z
Dijan
16
7529
wikitext
text/x-wiki
<span title="ženski rod">''ž.''</span>
96kn3cv701xuul5ygfeu8mjjws74lnu
Razgovor s korisnikom:Kahriman
3
2833
7555
2006-06-16T23:29:12Z
Dijan
16
7555
wikitext
text/x-wiki
Izvini, ali, nepostoji ovdje nikakvo nakazenje. Nisam imao vremena da stavim sablon na ostale stranice kad sam izmjenio '''hemija''', pa sam ostavio. A sto je srpski uvodeno ovdje je zato sto je Vikirjecnik visejezicki rjecnik. (Procitaj pocetnu stranicu). To znaci da rijeci iz svakog jezika se unose ovdje ali se opisuju na bosanskom jeziku. Izvini, ako ti mislis da sam poremetio tvoj doprinose. --[[Korisnik:Dijan|Dijan]] 23:29, 16 juni 2006 (UTC)
4ct8g3s6opv7bn1zmrqfshcwo97qmhw
Šablon:sl:KatSad
10
2838
58656
7565
2017-03-06T20:26:02Z
Srđan
1899
58656
wikitext
text/x-wiki
{| id="toc" class="toc plainlinks" summary="Sadržaj" |
|-
! {{MediaWiki:Toc}}:
| [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}}} Vrh] – [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=A}} A][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=a}} a] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=B}} B][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=b}} b] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=C}} C][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=c}} c] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Č}} Č][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=č}} č] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=D}} D][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=d}} d] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=E}} E][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=e}} e] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=F}} F][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=f}} f] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=G}} G][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=g}} g] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=H}} H][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=h}} h] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=I}} I][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=i}} i] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=J}} J][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=j}} j] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=K}} K][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=k}} k] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=L}} L][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=l}} l] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=M}} M][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=m}} m] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=N}} N][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=n}} n] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=O}} O][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=o}} o] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=P}} P][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=p}} p] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=R}} R][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=r}} r] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=S}} S][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=s}} s] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Š}} Š][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=š}} š] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=T}} T][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=t}} t] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=U}} U][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=u}} u] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=V}} V][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=v}} v] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Z}} Z][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=z}} z] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ž}} Ž][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ž}} ž]
|}
<noinclude>[[Kategorija:Šabloni kategorija]]</noinclude>
ovd8i1ipxqhlhc1hfv8he1ixi2vte90
Šablon:lt:KatSad
10
2849
58664
7580
2017-03-06T20:40:54Z
Srđan
1899
58664
wikitext
text/x-wiki
{| id="toc" class="toc plainlinks" summary="Sadržaj" |
|-
! {{MediaWiki:Toc}}:
| [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}}} Vrh] – [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=A}} A][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=a}} a] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ą}} Ą][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ą}} ą] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=B}} B][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=b}} b] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=C}} C][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=c}} c] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Č}} Č][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=č}} č] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=D}} D][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=d}} d] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=E}} E][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=e}} e] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ę}} Ę][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ę}} ę] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ė}} Ė][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ė}} ė] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=F}} F][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=f}} f] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=G}} G][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=g}} g] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=H}} H][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=h}} h] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=I}} I][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=i}} i] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Į}} Į][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=į}} į] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Y}} Y][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=y}} y] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=J}} J][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=j}} j] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=K}} K][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=k}} k] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=L}} L][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=l}} l] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=M}} M][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=m}} m] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=N}} N][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=n}} n] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=O}} O][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=o}} o] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=P}} P][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=p}} p] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=R}} R][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=r}} r] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=S}} S][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=s}} s] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Š}} Š][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=š}} š] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=T}} T][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=t}} t] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=U}} U][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=u}} u] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ų}} Ų][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ų}} ų] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ū}} Ū][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ū}} ū] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=V}} V][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=v}} v] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Z}} Z][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=z}} z] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ž}} Ž][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ž}} ž]
|}
<noinclude>[[Kategorija:Šabloni kategorija]]</noinclude>
1msmtt2m8ls50iyi3p3x8ht68r02kh0
Kategorija:Mađarski jezik
14
2864
66225
56869
2017-07-03T22:00:17Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66225
wikitext
text/x-wiki
{{Šablon:hu:KatSad}}
[[Kategorija:Svi jezici]]
sx9pts1rd0j1woswbq2bfuf2xlu7lu1
Šablon:bg:KatSad
10
2867
58659
7612
2017-03-06T20:35:33Z
Srđan
1899
58659
wikitext
text/x-wiki
{| id="toc" class="toc plainlinks" summary="Sadržaj" |
|-
! {{MediaWiki:Toc}}:
| [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}}} Vrh] – [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=А}} А][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=а}} а] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Б}} Б][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=б}} б] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=В}} В][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=в}} в] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Г}} Г][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=г}} г] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Д}} Д][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=д}} д] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Е}} Е][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=е}} е] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ж}} Ж][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ж}} ж] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=З}} З][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=з}} з] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=И}} И][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=и}} и] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Й}} Й][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=й}} й] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=К}} К][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=к}} к] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Л}} Л][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=л}} л] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=М}} М][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=м}} м] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Н}} Н][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=н}} н] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=О}} О][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=о}} о] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=П}} П][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=п}} п] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Р}} Р][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=р}} р] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=С}} С][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=с}} с] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Т}} Т][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=т}} т] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=У}} У][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=у}} у] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ф}} Ф][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ф}} ф] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Х}} Х][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=х}} х] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ц}} Ц][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ц}} ц] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ч}} Ч][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ч}} ч] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ш}} Ш][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ш}} ш] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Щ}} Щ][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=щ}} щ] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ъ}} Ъ][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ъ}} ъ] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ь}} Ь][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ь}} ь] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ю}} Ю][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ю}} ю] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Я}} Я][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=я}} я]
|}
<noinclude>[[Kategorija:Šabloni kategorija]]</noinclude>
1kmj7xls0hpc78bp9cbgdwqf7fqg351
Šablon:cs:KatSad
10
2868
58666
7613
2017-03-06T20:40:56Z
Srđan
1899
58666
wikitext
text/x-wiki
{| id="toc" class="toc plainlinks" summary="Sadržaj" |
|-
! {{MediaWiki:Toc}}:
| [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}}} Vrh] – [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=A}} A][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=a}} a] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Á}} Á][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=á}} á] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=B}} B][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=b}} b] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=C}} C][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=c}} c] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Č}} Č][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=č}} č] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=D}} D][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=d}} d] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ď}} Ď][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ď}} ď] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=E}} E][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=e}} e] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=É}} É][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=é}} é] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ě}} Ě][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ě}} ě] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=F}} F][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=f}} f] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=G}} G][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=g}} g] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=H}} H][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=h}} h] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ch}} Ch][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ch}} ch] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=I}} I][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=i}} i] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Í}} Í][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=í}} í] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=J}} J][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=j}} j] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=K}} K][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=k}} k] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=L}} L][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=l}} l] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=M}} M][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=m}} m] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=N}} N][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=n}} n] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ň}} Ň][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ň}} ň] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=O}} O][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=o}} o] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=P}} P][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=p}} p] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Q}} Q][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=q}} q] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=R}} R][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=r}} r] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ř}} Ř][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ř}} ř] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=S}} S][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=s}} s] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Š}} Š][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=š}} š] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=T}} T][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=t}} t] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ť}} Ť][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ť}} ť] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=U}} U][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=u}} u] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ú}} Ú][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ú}} ú] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ů}} Ů][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ů}} ů] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=V}} V][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=v}} v] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=W}} W][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=w}} w] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=X}} X][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=x}} x] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Y}} Y][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=y}} y] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ý}} Ý][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ý}} ý] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Z}} Z][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=z}} z] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ž}} Ž][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ž}} ž]
|}
<noinclude>[[Kategorija:Šabloni kategorija]]</noinclude>
51vxebayw01uhhb52o5rjpm6bnniho3
Šablon:hu:KatSad
10
2869
58658
7615
2017-03-06T20:35:33Z
Srđan
1899
58658
wikitext
text/x-wiki
{| id="toc" class="toc plainlinks" summary="Sadržaj" |
|-
! {{MediaWiki:Toc}}:
| [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}}} Vrh] – [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=A}} A][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=a}} a] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Á}} Á][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=á}} á] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=B}} B][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=b}} b] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=C}} C][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=c}} c] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Cs}} Cs][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=cs}} cs] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=D}} D][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=d}} d] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Dz}} Dz][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=dz}} dz] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Dzs}} Dzs][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=dzs}} dzs] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=E}} E][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=e}} e] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=É}} É][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=é}} é] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=F}} F][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=f}} f] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=G}} G][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=g}} g] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Gy}} Gy][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=gy}} gy] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=H}} H][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=h}} h] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=I}} I][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=i}} i] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Í}} Í][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=í}} í] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=J}} J][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=j}} j] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=K}} K][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=k}} k] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=L}} L][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=l}} l] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ly}} Ly][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ly}} ly] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=M}} M][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=m}} m] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=N}} N][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=n}} n] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ny}} Ny][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ny}} ny] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=O}} O][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=o}} o] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ó}} Ó][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ó}} ó] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ö}} Ö][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ö}} ö] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ő}} Ő][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ő}} ő] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=P}} P][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=p}} p] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Q}} Q][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=q}} q] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=R}} R][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=r}} r] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=S}} S][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=s}} s] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Sz}} Sz][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=sz}} sz] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=T}} T][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=t}} t] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ty}} Ty][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ty}} ty] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=U}} U][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=u}} u] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ú}} Ú][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ú}} ú] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ü}} Ü][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ü}} ü] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Ű}} Ű][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=ű}} ű] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=V}} V][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=v}} v] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=W}} W][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=w}} w] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=X}} X][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=x}} x] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Y}} Y][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=y}} y] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Z}} Z][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=z}} z] [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=Zs}} Zs][{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAMEE}}|from=zs}} zs]
|}
<noinclude>[[Kategorija:Šabloni kategorija]]</noinclude>
k0fkm8djkdcym4vjaj64u1hohnjed8a
Korisnik:Pill
2
2891
7646
2006-06-17T20:34:40Z
Pill
52
7646
wikitext
text/x-wiki
<div style="border-top:1px solid #AAAAAA; border-bottom:1px solid #AAAAAA; margin: 0px; margin-bottom: 0.8em; margin-top:0.8em;">
{| width=100% border="0" cellpadding="2" cellspacing="0" style="border-collapse:collapse; background-color:#F9F9F9;"
|- valign="top"
| width="100%" style="text-align:center" | [[:de:User:Pill|German user page]] | [[User talk:Pill|Talk page]] | [[User:Pill/monobook.js|monobook]]
|}
</div>
I'm [[:de:User:Pill|Pill]].
60to2xqd3u9ntipldjn7g3h313oojbl
Razgovor s korisnikom:Pill
3
2892
7647
2006-06-17T20:34:59Z
Pill
52
7647
wikitext
text/x-wiki
<div>
{| width="100%" border="0" cellspacing="8" cellpadding="0" style="background-color: #f9f9f9; border: 1px solid #e9e9e9; font-size: 95%; margin-top: 2px; margin-bottom: 2px; clear: both"
| style="width: 24px" | [[Image: Achtung.svg|24px]]
| Please post (important) questions to me on my German talk page [[de:Benutzer Diskussion:Pill|(here)]]. Thanks.<br>
You can add a comment ''here'' by [http://bs.wiktionary.org/w/index.php?title=User_talk:Pill&action=edit§ion=new this link].
|}
</div>
qa6ucalgqgdc81azqim2aaovff77xh7
Razgovor s korisnikom:RobotGMwikt
3
2900
7767
7766
2006-06-25T17:02:55Z
4.138.119.226
"Bot adding" part
7767
wikitext
text/x-wiki
It only makes sense to have an interwiki link when there is an article that is spelled the same at the other end. When such an article exists, it is added by the Interwiki bot .. Thanks, [[Korisnik:GerardM|GerardM]] 16:54, 24 juni 2006 (UTC)
== "Bot adding" part ==
Why is the "bot adding" part written in Cyrillic? Is that an automatic thing? It should be in Roman script. --[[Korisnik:Dijan|Dijan]] 17:02, 25 juni 2006 (UTC)
d5h2bv5l9gfai718syy8oifjspfwub0
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
Korisnik:Dijan/raz-vrh
2
2984
11325
11324
2007-06-10T02:01:31Z
Dijan
16
Stranica "[[Korisnik:Dijan/raz-vrh]]" je zaštićena [edit=autoconfirmed:move=autoconfirmed]
11325
wikitext
text/x-wiki
<div style="float:right; height:230px; overflow:auto; font-size:95%; margin-left:1em;">__TOC__</div>
{| class="wikitable" style="width:20em; margin-top:0"
| valign="top" align="center" |
[{{fullurl:Razgovor_sa_korisnikom:Dijan|action=edit§ion=new}} Dodajte novu temu]
|-
| valign="top" style="font-size:90%; text-align:justify; padding:5px" |
Posebne stranice:
:[[Posebno:DoubleRedirects|Dvostruka preusmjerenja]]
:[[Posebno:Categories|Lista svih kategorija]]
:[[Posebno:Uncategorizedpages|Nekategorisane stranice]]
:[[Posebno:Unusedcategories|Nekorištene kategorije]]
:[[Posebno:Listredirects|Lista preusmjerenja]]
:[[Posebno:Log|Zapisi]]
|-
| valign="top" style="font-size:80%; text-align:justify; padding:5px" |
Ovdje možete ostaviti novu poruku za mene. Odgovor ćete dobiti na vašoj korisničkoj stranici. Ako niste korisnik, molim vas da se registrujete prije nego što ostavite poruku. Ako se ne registrujete, a ostavite poruku, ovdje ćete dobiti odgovor.
|}
<div style="text-align:justify">
<!----------Započni razgovor izpod---------->
d9e7m0cbkbys22svrpfgbccfeytnkcx
Šablon:TopBox
10
2985
8193
7911
2006-07-15T08:36:35Z
Dijan
16
Stranica "[[Šablon:TopBox]]" je zaštićena [edit=sysop:move=sysop]
8193
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>
o5oxyuh03x50zldh6qzd5pze56kbt8p
Šablon:BottomBox
10
2986
8187
7912
2006-07-15T08:34:28Z
Dijan
16
Stranica "[[Šablon:BottomBox]]" je zaštićena [edit=sysop:move=sysop]
8187
wikitext
text/x-wiki
<includeonly></div></div></includeonly>
onxu5aag6uv8ideqa7yoe3jyrpqd218
Korisnik:Connel MacKenzie
2
2987
7926
2006-07-12T20:37:13Z
Connel MacKenzie
55
[[:en: User: Connel MacKenzie]] / [[:en: User talk: Connel MacKenzie]]
7926
wikitext
text/x-wiki
[[:en: User: Connel MacKenzie]] / [[:en: User talk: Connel MacKenzie]]
lyk5vvd7t5pcf9617emjkpypwo2rzct
Razgovor s korisnikom:Connel MacKenzie
3
2988
8261
8095
2006-07-21T16:51:57Z
Dijan
16
Hello again
8261
wikitext
text/x-wiki
[[:en: User: Connel MacKenzie]] / [[:en: User talk: Connel MacKenzie]]
== Welcome ==
Hi Connel! Welcome to the Bosnian Wiktionary. Thank you for doing this for the Bosnian Wiktionary. Also, I'm not sure the code is correct in [[MedijaViki:Onlyifediting.js]]. Please take a look at that too. I think that is where the buttons are coming from. Something there might be interfering with the regular toolbar. Right now (after your edits), the toolbar has been split by the special characters (I'm sure you see this too). Take a look at [[MedijaViki:Edittools]] as well. I'm not sure where the problem is coming from. [[Korisnik:Dijan|Dijan]] 21:50, 12 juli 2006 (UTC)
:Also, for some reason, ever since the extra buttons and Edittools were modified, I've not been able to edit here with Mozilla based browsers. I have to use IE to edit. According to IE, there is an error: "ButtonHTML not defined". I'm sure that has something to do with it. [[Korisnik:Dijan|Dijan]] 21:51, 12 juli 2006 (UTC)
::That error is in Onlyifediting.js, but I'm not sure yet, what ButtonHTML is supposed to be. --[[Korisnik:Connel MacKenzie|Connel MacKenzie]] 21:57, 12 juli 2006 (UTC)
:::Can you try putting the "special characters" above the toolbar? I think that somehow the special characters are interfering with the toolbar. [[Korisnik:Dijan|Dijan]] 22:06, 12 juli 2006 (UTC)
:::I have found that "extra buttons" works fine on [http://he.wikipedia.org/wiki/MediaWiki:Monobook.js Hebrew Wikipedia]. Do you know anyone there that can help? I would copy their code, but do not know how to incorporate it with Onlyifediting.js and I do not speak Hebrew so I cannot see what the functions are for. [[Korisnik:Dijan|Dijan]] 22:06, 12 juli 2006 (UTC)
:::: Yes, on IRC, Gangleri is away from keyboard, at the moment. Cutting and pasting the whole file from there works quite well...but trying to read it RTL is painful. --[[Korisnik:Connel MacKenzie|Connel MacKenzie]] 22:25, 12 juli 2006 (UTC)
*Well, I hope you can see the rewriting I'm doing to these buttons. Can you reformat the rest of the buttons while I track down the *zilla editing errors? I'm getting an error on MB.js line 302 in IE, and NS won't let me save, preview nor diff without first diabling JS...session cookies are getting quashed somewhere. --[[Korisnik:Connel MacKenzie|Connel MacKenzie]] 22:43, 12 juli 2006 (UTC)
*In NS/Mozilla, I have to disable JS to save (even this page) then ALT-S two separate times for it to re-establish the session cookie. Very strange.
== Onlyifediting.js ==
Connel, is there any way you can incorporate Onlyifediting.js into Monobook.js rather than having the two as separate pages? --[[Korisnik:Dijan|Dijan]] 07:49, 13 juli 2006 (UTC)
:Done. Remind me to do more cleanup on it this evening. --[[Korisnik:Connel MacKenzie|Connel MacKenzie]] 22:15, 13 juli 2006 (UTC)
== Edittools ==
Devanagari (add it, it does not exist):
ँ ं ः अ आ इ ई उ ऊ ऋ ऌ ऍ ऎ ए ऐ ऑ ऒ ओ औ क क़ ख ख़ ग ग़ घ ङ च छ ज ज़ झ झ़ ञ ट ठ ड ड़ द ढ ढ़ ण त थ ध न ऩ प फ फ़ ब भ म य य़ र ऱ ल ळ ऴ व श ष स ह ़ ऽ ा ि ॊ ो ौ ् ी ु ू ृ ॄ ॅ ॆ े ै ॉ ॐ ॑ ॒ ॓ ॔ ॠ ॡ ॢ ॣ । ॥ ॰
Turkish (exists as Turski, replace all charcters with these):
Ç ç Ğ ğ İ ı Ö ö Ş ş Ü ü
Urdu (add it, it does not exit, right after Turkish):
ا آ أ ٱ إ ب پ ت ٹ ث ج چ ح خ د ڈ ذ ر ڑ ز ژ س ش ص ض ط ظ ع غ ف ق ک گ ل م ن و ہ ھ ء ی ے ۓ ي ة ؤ ؟ ٫ ، ۔
OK, that's it. Thank you. --[[Korisnik:Dijan|Dijan]] 08:44, 14 juli 2006 (UTC)
== Hello again ==
Oh, np. Go ahead! :) --[[Korisnik:Dijan|Dijan]] 16:51, 21 juli 2006 (UTC)
q7r0es935mtfc6utcg6ggmes4k19c2e
Korisnik:Mike
2
2994
8112
2006-07-14T11:00:35Z
Mike
57
just came here to test your famous monobook.js ... :D
8112
wikitext
text/x-wiki
<div class="plainlinks">
{| border=1 width=60% style="border: 1px #444444 solid; border-collapse: collapse;" cellspacing=0
|- align=center
| ''wikipedia''
|
| [[w:de:Benutzer:Mikez|de]] ([[w:de:special:Recentchanges|RC]])
| [[w:en:user:Mikez|en]] ([[w:en:special:Recentchanges|RC]])
|
|
| [[w:sv:Användare:Mike|<font size="+1">'''''sv'''''</font>]] ([[w:sv:special:Recentchanges|RC]])
|- align=center
| ''wiktionary''
| [[w:wikt:da:Bruger:Mike|da]] ([[w:wikt:da:special:Recentchanges|RC]])
| [[w:wikt:de:Benutzer:Mike|'''de''']] ([[w:wikt:de:special:Recentchanges|RC]])
| [[w:wikt:en:User:Mike|<font size="+1">'''''en'''''</font>]] ([[w:wikt:en:special:Recentchanges|RC]])
| [[w:wikt:nl:Gebruiker:Mike|'''nl''']] ([[w:wikt:nl:special:Recentchanges|RC]])
| [[w:wikt:no:Bruker:Mike|no]] ([[w:wikt:no:special:Recentchanges|RC]])
| [[w:wikt:sv:Användare:Mike|<font size="+1">'''''sv'''''</font>]] ([[w:wikt:sv:special:Recentchanges|RC]])
|- align=center
| ''wikiquote''
|
|
| [[w:q:en:User:Mikez|en]] ([[w:q:en:special:Recentchanges|RC]])
|
|
| [[w:q:sv:Användare:Mike|sv]] ([[w:q:sv:special:Recentchanges|RC]])
|- align=center
| ''wikibooks''
|
|
| [[w:b:en:User:Mike|en]] ([[w:b:en:special:Recentchanges|RC]])
|
|
| [[w:b:sv:Användare:Mike|sv]] ([[w:b:sv:special:Recentchanges|RC]])
|- align=center
| rowspan=3 | || colspan=6 | [[m:user:Mikez|Meta]] ([[m:special:Recentchanges|RC]], [[m:wikimedia news|news]])
|- align=center
| colspan=6 | [[commons:user:Mike|commons]] ([[commons:special:Recentchanges|RC]])
|- align=center
| colspan=6 | '''''[http://epov.org/wd-gemet/index.php/User:Mike WZ]''''' ([http://epov.org/wd-gemet/index.php/Special:Recentchanges RC])
|}</div>
abrbgz94askeuugbayr9pgxjzk0ab30
Razgovor s korisnikom:Mike
3
2995
8116
2006-07-14T17:36:24Z
Dijan
16
8116
wikitext
text/x-wiki
==Welcome==
Hi Mike! Welcome to the Bosnian Wiktionary! Yes, Connel has done a great job on the Monobook.js. --[[Korisnik:Dijan|Dijan]] 17:36, 14 juli 2006 (UTC)
ilywboyio661m10nrkq0xcatix6vhna
Š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
Korisnik:Vildricianus~bswiktionary
2
3041
44076
8262
2015-04-17T19:56:25Z
Maintenance script
1944
Maintenance script je premjestio stranicu [[Korisnik:Vildricianus]] na [[Korisnik:Vildricianus~bswiktionary]] bez ostavljanja preusmjerenja: Automatsko premještanje stranice zbog preimenovanja korisnika „[[Special:CentralAuth/Vildricianus|Vildrician...
44076
wikitext
text/x-wiki
[[:en:User:Vildricianus]]
pr6k128e1f4zlt0wj4rcki2r8l3ax8u
Korisnik:GerardM
2
3042
8277
2006-07-22T09:09:27Z
GerardM
45
8277
wikitext
text/x-wiki
Hoi, I am GerardM, and as I have accounts in over 170 wikis, I forgot where the "home" is.. I think I make [http://wiktionaryz.org WiktionaryZ] the one ..
2qdcp6xbofpn0b8s52x2fqk81khvd57
Korisnik:Purodha
2
3044
9374
8290
2006-10-06T21:48:19Z
Purodha
59
9374
wikitext
text/x-wiki
{{Babel-18|bs-0|de|ksh|en-3|la-2|ru-1|af-1|nds-1|nds-nl-1|nl-1|li-1|lb-1|pfl-1|pcd-1|als-1|gsw-1|sxu-1|bar-1}}
see [[:en:User:Purodha]]
qm4dlaxb5j9s5lfaj51phiobw19tp0m
Šablon:KorisniciGovore
10
3051
8291
2006-07-23T22:10:04Z
Dijan
16
8291
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">
nfgdw9w4x0jemrvtthgv6s8rqgb3gwi
Š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
15121
8306
2011-02-16T22:43:25Z
Dcljr
763
if you don't speak the language, you shouldn't be in the user category for that language
15121
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>
71xakawzd9hbcnkcl52kx16icaug3mx
Š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
Šablon:wikipedia
10
3576
8921
2006-07-26T16:32:56Z
Dijan
16
Preusmjerivač ka [[Šablon:Wikipedia]]
8921
wikitext
text/x-wiki
#redirect [[Šablon:Wikipedia]]
5bx1h1i1wkg83ui5ycvcs4trj3d8zus
Razgovor s korisnikom:85.158.35.75
3
3597
9023
9019
2006-08-01T17:24:11Z
Dijan
16
9023
wikitext
text/x-wiki
Prvo, ja nisam četnik. Drugo, ne koristite tu riječ u tačnom smislu. Treće, izbrisao sam tu definiciju jer u riječniku ne treba da piše historija jezika (to je za Vikipediju), nego samo gdje se govori jezik i njegov status. Administratori Vikipedije nemaju ništa sa Vikirječnikom. Mi smo dva različita projekta. --[[Korisnik:Dijan|Dijan]] 17:20, 1 august 2006 (UTC)
kebbr6gsu60zuys6drub9vz6309erjx
Razgovor s korisnikom:85.158.35.182
3
3599
9031
2006-08-01T18:09:34Z
Dijan
16
9031
wikitext
text/x-wiki
Što više pišeš ovdje samo pokazuje da si ti neki ekstremista i "nacionalista", a ne ja. Zar nije tačno da je bosanski jezik jedan od tri ravnopravna jezika Bosne i Hercegovine??? A to što piše da je jezik "Bošnjaka i svih onih koji ga osjećaju svojim" u drugim "zaštićenim" rječnicima se ne smije kopirati bez citata. Tačno je da se koriste i latinica i ćirilica, ali ti neshvataš kako "wiki"-ji rade. Ja uređujem ono šta ja znam, a neko drugi će da ubaci ono šta oni znaju. Dakle, ako ja pišem latinicom (ali nije neispravno) ja nisam obligovan da pišem i ćirilicom. Ti ako hoćeš dodaj i ćirilicu. Niko te ne zaustavlja. Ostalo, što se tiče pravopisa, on će se uvesti i ako piše nešta drugo (za sad) na stranici za pravopis. Ti prijeti koliko god hoćeš. Ja nisam postao administrator na en.wikt i bs.wikt bez razloga niti mi je neko dao te privilegije bez dobrih namijera. Ako nećeš se fino ponašati niti razgovarti kao civilizovana osoba, nemoj ovdje dolaziti. --[[Korisnik:Dijan|Dijan]] 18:09, 1 august 2006 (UTC)
kkojhydkmch3mye1zdn1a2wsaucb4ls
Razgovor s korisnikom:85.158.33.125
3
3600
9034
2006-08-01T18:29:23Z
Dijan
16
9034
wikitext
text/x-wiki
Nema smisla raspravljati se s tobom. --[[Korisnik:Dijan|Dijan]] 18:29, 1 august 2006 (UTC)
43t6s2lw4i1o41hvmcuj2y6s0b6md4m
MediaWiki:Monobook.css
8
3621
9595
9587
2006-11-22T22:25:14Z
Dijan
16
Replacing page with '/*
*/'
9595
css
text/css
/*
*/
9gnui3h2y4i32g7fstzce25issl32jt
Korisnik:Thogo
2
3693
12159
9252
2008-10-29T09:23:44Z
Pathoschild
81
+ global user page ([[m:User:Pathoschild/Scripts/SynchCrosswiki|requested]])
12159
wikitext
text/x-wiki
{| cellpadding="2" style="border-color:#008B45; empty-cells:show;" <!-- Beginn Hauptrahmen -->
|-
| heigth="2px" bgcolor="#7EC0EE" colspan="2" |
|- <!------------ Kopf mit Willkommenstext und der Navileiste ------------>
| colspan="2" | <!------ Willkommenstext ------>
<span style="text-align:center; font-size:127%; line-height:1.3;">
Welcome to my user page!
</span>
<br /><br />
My name is Thomas Goldammer, I'm from Leipzig, Germany. I'm a [[m:Stewards|steward]] of the Wikimedia Foundation. I visit this wiki mainly to undo vandalism and put deletion requests on nonsense pages.
<br />
{| align="center" style="padding:5px; text-align:center;"
|-
| width="48%" style="border-bottom:1px dashed #AAA;" |
|-
| '''«[[m:User talk:Thogo|Discussion]]»''' | [[Special:Emailuser/Thogo|E-Mail]] | [[Special:Contributions/Thogo|Contribs]]
<br />
This wiki has '''{{NUMBEROFARTICLES}}''' articles.
|-
| width="48%" style="border-top:1px dashed #AAA;" |
|}
|}
otnmrah3wrqxuqimic87ero63ehipxt
Razgovor s korisnikom:Thogo
3
3694
9292
9291
2006-09-10T22:20:27Z
Dijan
16
/* Welcome */
9292
wikitext
text/x-wiki
==Welcome==
Hello Thogo and welcome! --[[Korisnik:Dijan|Dijan]] 02:58, 10 septembar 2006 (UTC)
:Oh, a well-known name. :o) Thank you. Didn't know that you speak BS. (I don't, but I want to create accounts on all wiktionarys, especially on the smaller ones to check regularly for vandalism.) Saludos cordiales, --[[Korisnik:Thogo|Thogo]] 22:18, 10 septembar 2006 (UTC)
::No problem. You can always help with German entries! :) --[[Korisnik:Dijan|Dijan]] 22:20, 10 septembar 2006 (UTC)
atb286tkgwu84ipbopk2b6g2bxz5evl
Šablon:Babel-18
10
3709
58644
9367
2017-03-06T20:13:57Z
Srđan
1899
58644
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]]
|}
kek05isxlcq1r93z2dpxg748rmrhznu
Š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
Korisnik:Hégésippe Cormier
2
3874
10133
2006-12-18T22:13:02Z
Hégésippe Cormier
27
link to FR account
10133
wikitext
text/x-wiki
'''[[:fr:User:Hégésippe Cormier]]'''
2wif9krg0qqzq7evht13cf8h63izkaf
Razgovor s korisnikom:Hégésippe Cormier
3
3875
10134
2006-12-18T22:13:34Z
Hégésippe Cormier
27
link to FR account
10134
wikitext
text/x-wiki
'''[[:fr:User talk:Hégésippe Cormier]]'''
0wvudeq9c5vffwsmtvysu6ppi31ek1d
Šablon:n
10
3892
10190
2006-12-22T14:51:26Z
Dijan
16
s
10190
wikitext
text/x-wiki
<span title="srednji rod">''s.''</span>
k8ld56m4xw7pgrrtym7eueyoisjg9q0
Kategorija:Albanski jezik
14
3907
65549
56868
2017-07-03T19:51:58Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65549
wikitext
text/x-wiki
[[Kategorija:Svi jezici]]
dyunws1tuqb34r1bteut5rdinjzjpto
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
Korisnik:Dijan/bolovati-test
2
3932
10319
10317
2006-12-31T04:05:10Z
Dijan
16
Stranica "[[Korisnik:Dijan/bolovati-test]]" je zaštićena [edit=autoconfirmed:move=autoconfirmed]
10319
wikitext
text/x-wiki
{{Konjugacija|infinitiv=bolovati
|vrm.p.1j=bolujem
|vrm.p.2j=boluješ
|vrm.p.3j=boluje
|vrm.p.1mn=bolujemo
|vrm.p.2mn=bolujete
|vrm.p.3mn=boluju
|vrm.f1.1j=ću bolovati
|vrm.f1.2j=ćeš bolovati
|vrm.f1.3j=će bolovati
|vrm.f1.1mn=ćemo bolovati
|vrm.f1.2mn=ćete bolovati
|vrm.f1.3mn=će bolovati
|vrm.f2.1j=budem bolovao/la
|vrm.f2.2j=budeš bolovao/la
|vrm.f2.3j=bude bolovao/la/lo
|vrm.f2.1mn=budemo bolovali/le
|vrm.f2.2mn=budete bolovali/le
|vrm.f2.3mn=budu bolovali/le/la
|vrm.per.1j=bolovao/la sam
|vrm.per.2j=bolovao/la si
|vrm.per.3j=bolovao/la/lo je
|vrm.per.1mn=bolovali/le smo
|vrm.per.2mn=bolovali/le ste
|vrm.per.3mn=bolovali/le/la su
|vrm.pkp.1j=bio/la sam bolovao/la
|vrm.pkp.2j=bio/la si bolovao/la
|vrm.pkp.3j=bio/la/lo je bolovao/la/lo
|vrm.pkp.1mn=bili/le smo bolovali/le
|vrm.pkp.2mn=bili/le ste bolovali/le
|vrm.pkp.3mn=bili/le/la su bolovali/le/la
|vrm.aor.1j=bolovah
|vrm.aor.2j=bolova
|vrm.aor.3j=bolova
|vrm.aor.1mn=bolovasmo
|vrm.aor.2mn=bolovaste
|vrm.aor.3mn=bolovaše
|vrm.imp.1j=bolovah
|vrm.imp.2j=bolovaše
|vrm.imp.3j=bolovaše
|vrm.imp.1mn=bolovasmo
|vrm.imp.2mn=bolovaste
|vrm.imp.3mn=bolovahu
|vrm.kn1.1j=bolovao/la bih
|vrm.kn1.2j=bolovao/la bi
|vrm.kn1.3j=bolovao/la/lo bi
|vrm.kn1.1mn=bolovali/le bismo
|vrm.kn1.2mn=bolovali/le biste
|vrm.kn1.3mn=bolovali/le/la bi
|vrm.kn2.1j=bio/la bih bolovao/la
|vrm.kn2.2j=bio/la bi bolovao/la
|vrm.kn2.3j=bio/la/lo bi bolovao/la/lo
|vrm.kn2.1mn=bili/le bismo bolovali/le
|vrm.kn2.2mn=bili/le biste bolovali/le
|vrm.kn2.3mn=bili/le/la bi bolovali/le/la
|
|vrm.ipr.2j=boluj
|
|vrm.ipr.1mn=bolujmo
|vrm.ipr.2mn=bolujte
|
}}
4k9mdyyuhhuyst4m85wuhhugucs5qcn
Korisnik:Nilfanion
2
4058
10639
2007-02-24T17:11:34Z
Nilfanion
67
create
10639
wikitext
text/x-wiki
{{user en}}
{{user bs-0}}
<div style="clear: both"></div>
I am an administrator on the [[:en:w:Main Page|English Wikipedia]] and on [[Commons:|Commons]], but unfortunately I cannot read Bosnian. Most of my work on this Vikirječnik relates to my Commons activity, so please forward any messages to my [[Commons:User talk:Nilfanion|Commons talk page]].
[[en:w:User:Nilfanion]]
qwqukawm45j2zlt7swsweln9i5qn0l8
Razgovor s korisnikom:Nilfanion
3
4059
10640
2007-02-24T17:21:08Z
Nilfanion
67
Nova stranica: {| class="messagebox standard-talk" | [[Image:Commons-logo.svg|40px]] | align="center"| I don't visit this page frequently, if you need to leave me a message please do so at my [http:...
10640
wikitext
text/x-wiki
{| class="messagebox standard-talk"
| [[Image:Commons-logo.svg|40px]]
| align="center"|
I don't visit this page frequently, if you need to leave me a message please do so at my [http://commons.wikimedia.org/w/index.php?title=User_talk:Nilfanion&action=edit§ion=new Commons talk page] (preferably in English). Thank you.--[[User:Nilfanion|Nilf]][[commons:User:Nilfanion|anion]] 17:21, 24 februar 2007 (UTC)
|}
0i8ijpbr6dgx45rr67m63hcx9ucqyzu
Šablon:EL fontovi
10
4109
10800
10799
2007-03-15T01:10:35Z
Dijan
16
Stranica "[[Šablon:EL fontovi]]" je zaštićena [edit=sysop:move=sysop]
10800
wikitext
text/x-wiki
New Athena Unicode, Athena, Gentium, Code2000, Palatino Linotype, Serif
sjcvnf88qmfei50i9gqaq9b3ryixzkh
Šablon:EL font veličina
10
4110
10802
10801
2007-03-15T01:15:26Z
Dijan
16
Stranica "[[Šablon:EL font veličina]]" je zaštićena [edit=sysop:move=sysop]
10802
wikitext
text/x-wiki
110%
mfpq6540v1oyofl00t2jlrpl7attobs
Šablon:ELkar
10
4111
10804
10803
2007-03-15T01:15:46Z
Dijan
16
Stranica "[[Šablon:ELkar]]" je zaštićena [edit=sysop:move=sysop]
10804
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>
3i0byk1dyy20e54v6qlfvl1kba9ezhy
Šablon:korisnik
10
4228
66883
58655
2017-11-08T17:06:18Z
YiFeiBot
2374
Bot: premještanje 7 međuwiki linkova koji su sada dostupni na stranici [[d:q5911909]] na [[d:|Wikidati]]
66883
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>
6sbnoouqds68s2w896dbqe094yvkrb6
Š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
Korisnik:Millosh
2
4330
11226
2007-05-09T04:18:53Z
Millosh
71
Nova stranica: ==Personal data== *email: millosh@wikimedia.org *ICQ: 65302949 *MSN: millosh@users.sourceforge.net *Yahoo: millosh *[irc://irc.freenode.net/wikipedia-sr #wikipedia-sr@freenode]: millo...
11226
wikitext
text/x-wiki
==Personal data==
*email: millosh@wikimedia.org
*ICQ: 65302949
*MSN: millosh@users.sourceforge.net
*Yahoo: millosh
*[irc://irc.freenode.net/wikipedia-sr #wikipedia-sr@freenode]: millosh
*Phone: +381 65 6455674
icu6sxn5h5iww1ylnhkd8dzwil105zi
Korisnik:Jorunn
2
4338
11401
2007-08-30T21:58:39Z
Jorunn
76
Nova stranica: [[m:User:Jorunn]]
11401
wikitext
text/x-wiki
[[m:User:Jorunn]]
ndm6v29if11fq3qel6ud603uyapgva7
Razgovor s korisnikom:Plastika~bswiktionary
3
4342
44126
44064
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44126
wikitext
text/x-wiki
proba
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Plastika. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Plastika~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
eavjuc8m0ll6i2opzipn2ks2zikb8nh
Korisnik:VolkovBot
2
4343
11635
11413
2008-03-13T08:34:36Z
VolkovBot
79
robot Dodaje: chr, cy, eo, fo, gu, kl, kn, ky, li, mk, ml, mr, ms, nah, oc, pa, qu, rw, sd, su, th, ti, tl, ts, ug, vo, yi, zu
11635
wikitext
text/x-wiki
* Botmaster: [[:w:ru:User:Volkov]] ([[:w:ru:User talk:Volkov|talk]])
[[af:Gebruiker:VolkovBot]]
[[am:User:VolkovBot]]
[[an:Usuario:VolkovBot]]
[[ang:User:VolkovBot]]
[[ar:مستخدم:VolkovBot]]
[[ast:Usuariu:VolkovBot]]
[[az:İstifadəçi:VolkovBot]]
[[be:Удзельнік:VolkovBot]]
[[bg:Потребител:VolkovBot]]
[[br:Implijer:VolkovBot]]
[[ca:Usuari:VolkovBot]]
[[chr:User:VolkovBot]]
[[co:User:VolkovBot]]
[[cs:Uživatel:VolkovBot]]
[[csb:Brëkòwnik:VolkovBot]]
[[cy:Defnyddiwr:VolkovBot]]
[[da:Bruger:VolkovBot]]
[[de:Benutzer:VolkovBot]]
[[el:Χρήστης:VolkovBot]]
[[en:User:VolkovBot]]
[[eo:Vikipediisto:VolkovBot]]
[[es:Usuario:VolkovBot]]
[[et:Kasutaja:VolkovBot]]
[[fa:کاربر:VolkovBot]]
[[fi:Käyttäjä:VolkovBot]]
[[fo:Brúkari:VolkovBot]]
[[fr:Utilisateur:VolkovBot]]
[[fy:Meidogger:VolkovBot]]
[[ga:Úsáideoir:VolkovBot]]
[[gd:User:VolkovBot]]
[[gl:Usuario:VolkovBot]]
[[gu:User:VolkovBot]]
[[he:משתמש:VolkovBot]]
[[hi:सदस्य:VolkovBot]]
[[hr:Suradnik:VolkovBot]]
[[hu:User:VolkovBot]]
[[hy:Մասնակից:VolkovBot]]
[[id:Pengguna:VolkovBot]]
[[io:Uzanto:VolkovBot]]
[[is:Notandi:VolkovBot]]
[[it:Utente:VolkovBot]]
[[ja:利用者:VolkovBot]]
[[kk:Қатысушы:VolkovBot]]
[[kl:User:VolkovBot]]
[[kn:ಸದಸ್ಯ:VolkovBot]]
[[ko:사용자:VolkovBot]]
[[ku:Bikarhêner:VolkovBot]]
[[ky:User:VolkovBot]]
[[la:Usor:VolkovBot]]
[[li:Gebroeker:VolkovBot]]
[[lt:Naudotojas:VolkovBot]]
[[mk:Корисник:VolkovBot]]
[[ml:ഉപയോക്താവ്:VolkovBot]]
[[mr:सदस्य:VolkovBot]]
[[ms:Pengguna:VolkovBot]]
[[nah:Usuario:VolkovBot]]
[[nds:Bruker:VolkovBot]]
[[nl:Gebruiker:VolkovBot]]
[[no:Bruker:VolkovBot]]
[[oc:Utilizaire:VolkovBot]]
[[pa:ਮੈਂਬਰ:VolkovBot]]
[[pl:Wikipedysta:VolkovBot]]
[[pt:Usuário:VolkovBot]]
[[qu:Ruraq:VolkovBot]]
[[ro:Utilizator:VolkovBot]]
[[ru:Участник:VolkovBot]]
[[rw:User:VolkovBot]]
[[scn:Utenti:VolkovBot]]
[[sd:User:VolkovBot]]
[[simple:User:VolkovBot]]
[[sk:Redaktor:VolkovBot]]
[[sl:Uporabnik:VolkovBot]]
[[sq:Përdoruesi:VolkovBot]]
[[sr:Корисник:VolkovBot]]
[[st:User:VolkovBot]]
[[su:Pamaké:VolkovBot]]
[[sv:Användare:VolkovBot]]
[[sw:User:VolkovBot]]
[[ta:பயனர்:VolkovBot]]
[[te:సభ్యులు:VolkovBot]]
[[th:ผู้ใช้:VolkovBot]]
[[ti:User:VolkovBot]]
[[tl:User:VolkovBot]]
[[tr:Kullanıcı:VolkovBot]]
[[ts:User:VolkovBot]]
[[tt:Äğzä:VolkovBot]]
[[ug:User:VolkovBot]]
[[uk:Користувач:VolkovBot]]
[[ur:صارف:VolkovBot]]
[[vi:Thành viên:VolkovBot]]
[[vo:Geban:VolkovBot]]
[[yi:באַניצער:VolkovBot]]
[[zh:User:VolkovBot]]
[[zh-min-nan:User:VolkovBot]]
[[zu:User:VolkovBot]]
mc1kscs30kpaqmr63cqzrn8vlyiyzfc
Razgovor s korisnikom:Jorunn
3
4344
11417
2007-10-03T07:51:39Z
Jorunn
76
Nova stranica: [[m:User talk:Jorunn]]
11417
wikitext
text/x-wiki
[[m:User talk:Jorunn]]
evkf857g608zg618g9s2myerswe978o
Razgovor s korisnikom:Pathoschild
3
4348
22477
11426
2012-02-19T00:30:19Z
Pathoschild
81
global user pages
22477
wikitext
text/x-wiki
{{#babel:en|fr|bs-0}}[[File:Redirect arrow without text.svg|46px|link=]][[m:User talk:Pathoschild|m:{{ns:3}}:Pathoschild]]
m6c1ktsppjih3jepbsuxg4xgkubp9dp
Korisnik:DerHexer
2
4350
11508
11431
2008-01-04T14:08:24Z
DerHexer
82
m
11508
wikitext
text/x-wiki
I live in Berlin, Germany, and I'm a [[meta:Stewards|steward]] at meta.wikimedia and a sysop at [[:w:en:User:DerHexer|en.wikipedia]] and at [[:w:de:User:DerHexer|de.wikipedia]]. I'm interested in Latin language, Chemistry and Ancient Greek. My contributions can be found [[Special:Contributions/DerHexer|here]], and sorted by namespace [http://tools.wikimedia.de/~interiot/cgi-bin/Tool1/wannabe_kate?username=DerHexer&site=bs.wiktionary.org here]. At the moment I'm fighting vandalism.
{| border="0" align="left" style="margin-left:1em; margin-bottom:1em;" width="370px"
! colspan="2" |
{| align="center" |
| colspan="3" align="center" bgcolor="#FFDEAD" width="370px" | overview
|-
| bgcolor="#FFDEAD" align="center" |[[Special:Emailuser/DerHexer|e-mail]]
| bgcolor="#FFDEAD" align="center" |[[User_talk:DerHexer|talk]]
| bgcolor="#FFDEAD" align="center" |[[Special:Contributions/DerHexer|contributions]]
|}
|-
| [[Image:Wikistress3D 2 v3.jpg|170px]] || [[Image:DerHexer.png|200px]]
|}
<br style="clear:right" />
{| align="right"
|<div style="float:left;border:solid #99B3FF 1px;margin:1px;">
<table cellspacing="0" style="width:238px;background:#E0E8FF"><tr>
<td style="width:45px;height:45px;background:#99B3FF;text-align:center;font-size:14pt">'''IM'''</td>
<td style="font-size:8pt;padding:4pt;line-height:1.25em">Jabber: derhexer@jabber.ccc.de <br /> (This is '''not''' an e-mail address!<br />Therefore use [[Special:Emailuser/DerHexer|this]] link, please.) [http://pgpkeys.pca.dfn.de:11371/pks/lookup?op=get&search=0x5C2AE6D7DC7E2EF9 GnuPGP key] <br />Skype: sigmundjaehn<br />ICQ: 281562687</td>
</tr></table></div>
|}
fr0bn1itduyr4j79udek9jokstsgrsp
Korisnik:Magister Mathematicae
2
4352
14576
11454
2010-07-31T14:40:50Z
Dferg
626
stranica [[Korisnik:Drini]] premještena na stranicu [[Korisnik:Magister Mathematicae]]: Automatski premještena stranica pri promjeni korisničkog imena "[[User:Drini|Drini]]" u "[[User:Magister Mathematicae|Magister Mathematicae]]"
14576
wikitext
text/x-wiki
[[m:User:Drini]], your friendly wikimedia [[m:Stewards|steward]]
sfcihnv0kt2e23yhdrjf8g4wimuaqnf
Korisnik:MF-Warburg
2
4353
11459
2007-11-18T14:37:45Z
MF-Warburg
83
Nova stranica: [[:m:User:MF-Warburg]]
11459
wikitext
text/x-wiki
[[:m:User:MF-Warburg]]
81k8lvycfkw3shf3si0ucw4psbk26j0
Šablon:delete
10
4355
72670
66884
2025-04-15T20:02:19Z
Aca
2473
+
72670
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>
nzsklfrc1wmg89316c8ht6lfd14i6ov
Šablon:style/yid
10
4356
66885
11599
2017-11-08T17:06:38Z
YiFeiBot
2374
Bot: premještanje 45 međuwiki linkova koji su sada dostupni na stranici [[d:q33125371]] na [[d:|Wikidati]]
66885
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>
roqf49vccr4qnjhjb5uej8zaqh3xeyh
Šablon:style/IPA
10
4357
66886
11600
2017-11-08T17:06:48Z
YiFeiBot
2374
Bot: premještanje 44 međuwiki linkova koji su sada dostupni na stranici [[d:q33125368]] na [[d:|Wikidati]]
66886
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>
jre17mlb8g1pegno6wygozfer2g3t9i
Korisnik:Cbrown1023
2
4362
31607
11484
2012-12-25T05:53:53Z
CarsracBot
217
r2.7.2) (Bot dodaje: af, am, an, ang, ar, ast, ay, az, be, bg, bn, br, ca, chr, co, cs, csb, cy, da, de, dv, el, en, eo, es, et, eu, fa, fi, fj, fo, fr, fy, ga, gd, gl, gn, gu, gv, ha, he, hi, hr, hsb, hu, hy, ia, id, ie, ik, io, is, it, iu, ja, jbo, j...
31607
wikitext
text/x-wiki
[[m:user:Cbrown1023]]
[[af:Gebruiker:Cbrown1023]]
[[am:አባል:Cbrown1023]]
[[an:Usuario:Cbrown1023]]
[[ang:User:Cbrown1023]]
[[ar:مستخدم:Cbrown1023]]
[[ast:Usuariu:Cbrown1023]]
[[ay:Usuario:Cbrown1023]]
[[az:İstifadəçi:Cbrown1023]]
[[be:Удзельнік:Cbrown1023]]
[[bg:Потребител:Cbrown1023]]
[[bn:ব্যবহারকারী:Cbrown1023]]
[[br:Implijer:Cbrown1023]]
[[ca:Usuari:Cbrown1023]]
[[chr:User:Cbrown1023]]
[[co:User:Cbrown1023]]
[[cs:Uživatel:Cbrown1023]]
[[csb:Brëkòwnik:Cbrown1023]]
[[cy:Defnyddiwr:Cbrown1023]]
[[da:Bruger:Cbrown1023]]
[[de:Benutzer:Cbrown1023]]
[[dv:މެމްބަރު:Cbrown1023]]
[[el:Χρήστης:Cbrown1023]]
[[en:User:Cbrown1023]]
[[eo:Uzanto:Cbrown1023]]
[[es:Usuario:Cbrown1023]]
[[et:Kasutaja:Cbrown1023]]
[[eu:Lankide:Cbrown1023]]
[[fa:کاربر:Cbrown1023]]
[[fi:Käyttäjä:Cbrown1023]]
[[fj:User:Cbrown1023]]
[[fo:Brúkari:Cbrown1023]]
[[fr:Utilisateur:Cbrown1023]]
[[fy:Meidogger:Cbrown1023]]
[[ga:Úsáideoir:Cbrown1023]]
[[gd:Cleachdaiche:Cbrown1023]]
[[gl:Usuario:Cbrown1023]]
[[gn:Puruhára:Cbrown1023]]
[[gu:સભ્ય:Cbrown1023]]
[[gv:Ymmydeyr:Cbrown1023]]
[[ha:User:Cbrown1023]]
[[he:משתמש:Cbrown1023]]
[[hi:सदस्य:Cbrown1023]]
[[hr:Suradnik:Cbrown1023]]
[[hsb:Wužiwar:Cbrown1023]]
[[hu:Szerkesztő:Cbrown1023]]
[[hy:Մասնակից:Cbrown1023]]
[[ia:Usator:Cbrown1023]]
[[id:Pengguna:Cbrown1023]]
[[ie:Usator:Cbrown1023]]
[[ik:User:Cbrown1023]]
[[io:Uzanto:Cbrown1023]]
[[is:Notandi:Cbrown1023]]
[[it:Utente:Cbrown1023]]
[[iu:User:Cbrown1023]]
[[ja:利用者:Cbrown1023]]
[[jbo:User:Cbrown1023]]
[[jv:Panganggo:Cbrown1023]]
[[ka:მომხმარებელი:Cbrown1023]]
[[kk:Қатысушы:Cbrown1023]]
[[kl:Atuisoq:Cbrown1023]]
[[km:អ្នកប្រើប្រាស់:Cbrown1023]]
[[kn:ಸದಸ್ಯ:Cbrown1023]]
[[ko:사용자:Cbrown1023]]
[[ks:رُکُن:Cbrown1023]]
[[ku:Bikarhêner:Cbrown1023]]
[[kw:Devnydhyer:Cbrown1023]]
[[ky:Колдонуучу:Cbrown1023]]
[[la:Usor:Cbrown1023]]
[[lb:Benotzer:Cbrown1023]]
[[li:Gebroeker:Cbrown1023]]
[[ln:Utilisateur:Cbrown1023]]
[[lo:ຜູ້ໃຊ້:Cbrown1023]]
[[lt:Naudotojas:Cbrown1023]]
[[lv:Lietotājs:Cbrown1023]]
[[mg:Mpikambana:Cbrown1023]]
[[mi:User:Cbrown1023]]
[[mk:Корисник:Cbrown1023]]
[[ml:ഉപയോക്താവ്:Cbrown1023]]
[[mn:Хэрэглэгч:Cbrown1023]]
[[mr:सदस्य:Cbrown1023]]
[[ms:Pengguna:Cbrown1023]]
[[mt:Utent:Cbrown1023]]
[[my:User:Cbrown1023]]
[[na:User:Cbrown1023]]
[[nah:Tlatequitiltilīlli:Cbrown1023]]
[[nds:Bruker:Cbrown1023]]
[[ne:प्रयोगकर्ता:Cbrown1023]]
[[nl:Gebruiker:Cbrown1023]]
[[nn:Brukar:Cbrown1023]]
[[no:Bruker:Cbrown1023]]
[[oc:Utilizaire:Cbrown1023]]
[[om:User:Cbrown1023]]
[[or:ବ୍ୟବହାରକାରୀ:Cbrown1023]]
[[pa:ਵਰਤੌਂਕਾਰ:Cbrown1023]]
[[pl:Wikipedysta:Cbrown1023]]
[[ps:کارن:Cbrown1023]]
[[pt:Utilizador:Cbrown1023]]
[[qu:Ruraq:Cbrown1023]]
[[ro:Utilizator:Cbrown1023]]
[[roa-rup:User:Cbrown1023]]
[[ru:Участник:Cbrown1023]]
[[rw:User:Cbrown1023]]
[[sa:योजकः:Cbrown1023]]
[[scn:Utenti:Cbrown1023]]
[[sd:يوزر:Cbrown1023]]
[[sg:Utilisateur:Cbrown1023]]
[[sh:Korisnik:Cbrown1023]]
[[si:පරිශීලක:Cbrown1023]]
[[simple:User:Cbrown1023]]
[[sk:Redaktor:Cbrown1023]]
[[sl:Uporabnik:Cbrown1023]]
[[sm:User:Cbrown1023]]
[[so:User:Cbrown1023]]
[[sq:Përdoruesi:Cbrown1023]]
[[sr:Корисник:Cbrown1023]]
[[ss:User:Cbrown1023]]
[[st:User:Cbrown1023]]
[[su:Pamaké:Cbrown1023]]
[[sv:Användare:Cbrown1023]]
[[sw:Mtumiaji:Cbrown1023]]
[[ta:பயனர்:Cbrown1023]]
[[te:వాడుకరి:Cbrown1023]]
[[tg:Корбар:Cbrown1023]]
[[th:ผู้ใช้:Cbrown1023]]
[[ti:User:Cbrown1023]]
[[tk:Ulanyjy:Cbrown1023]]
[[tl:Tagagamit:Cbrown1023]]
[[tn:User:Cbrown1023]]
[[tpi:Yusa:Cbrown1023]]
[[tr:Kullanıcı:Cbrown1023]]
[[ts:User:Cbrown1023]]
[[tt:Кулланучы:Cbrown1023]]
[[ug:ئىشلەتكۈچى:Cbrown1023]]
[[uk:Користувач:Cbrown1023]]
[[ur:صارف:Cbrown1023]]
[[uz:Foydalanuvchi:Cbrown1023]]
[[vi:Thành viên:Cbrown1023]]
[[vo:Geban:Cbrown1023]]
[[wa:Uzeu:Cbrown1023]]
[[wo:Jëfandikukat:Cbrown1023]]
[[yi:באַניצער:Cbrown1023]]
[[za:用户:Cbrown1023]]
[[zh:User:Cbrown1023]]
[[zh-min-nan:User:Cbrown1023]]
[[zu:User:Cbrown1023]]
1kh9p7a5jwkra0x9mrd6b08edq0jbhz
Korisnik:Dungodung
2
4364
11493
2007-12-23T12:38:56Z
Dungodung
87
Nova stranica: [[m:User:Dungodung]]
11493
wikitext
text/x-wiki
[[m:User:Dungodung]]
fw9jxkkcfput12sq7mvvzqv9smmyigq
Kategorija:Finski jezik
14
4378
65573
56779
2017-07-03T19:55:58Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65573
wikitext
text/x-wiki
[[Kategorija:Svi jezici]]
dyunws1tuqb34r1bteut5rdinjzjpto
Korisnik:Mike.lifeguard
2
4383
11623
2008-03-04T02:26:19Z
Mike.lifeguard
92
Nova stranica: [[m:user:Mike.lifeguard]]
11623
wikitext
text/x-wiki
[[m:user:Mike.lifeguard]]
236tx3nphq7zsog8l3lodr172c0su86
Razgovor s korisnikom:Mike.lifeguard
3
4384
11624
2008-03-04T02:26:25Z
Mike.lifeguard
92
Nova stranica: [[m:user talk:Mike.lifeguard]]
11624
wikitext
text/x-wiki
[[m:user talk:Mike.lifeguard]]
0npg285m5u1p4r64p3iegwv4hsktpdj
Korisnik:Nick1915
2
4385
11625
2008-03-07T11:12:54Z
Nick1915
93
Nova stranica: Steward (see my userpage on [[m:user:Nick1915|meta]])
11625
wikitext
text/x-wiki
Steward (see my userpage on [[m:user:Nick1915|meta]])
ht0g2bfnbjyqhcs98xj91lxeubs0zr1
Razgovor s korisnikom:Nick1915
3
4386
11626
2008-03-07T11:13:05Z
Nick1915
93
Nova stranica: [[m:user talk:Nick1915|write here]]
11626
wikitext
text/x-wiki
[[m:user talk:Nick1915|write here]]
sv9noivr7xbfqgk5h6o52rvb49nmr97
Korisnik:Meno25
2
4390
11653
2008-03-26T21:41:19Z
Meno25
112
Creating
11653
wikitext
text/x-wiki
* You can contact me using [[:en:User:Meno25|my English Wiktionary userpage]].
sa7jq0ks2thrkd4gf6l3c6ketha73u1
Korisnik:Mike.lifeguard/monobook.js
2
4396
68073
12175
2021-02-03T20:11:38Z
Ladsgroup
2295
Maintenance: Replacing importScriptURI with mw.loader.load ([[phab:T95964]])
68073
javascript
text/javascript
mw.loader.load('https://meta.wikimedia.org/w/index.php?title=User:Mike.lifeguard/remote.js&action=raw&ctype=text/javascript');
h79pv32wzmk4501fqb6rhkwhkpf0ut9
Korisnik:CERminator
2
4398
37077
12847
2013-08-25T22:44:58Z
CERminator
124
37077
wikitext
text/x-wiki
{| border="0"
|width="75%" bgcolor="plum"|
*Korisnik: '''CERminator'''
*Član Wikipedije od: [[:w:9. decembar|09.12.]] [[:w:2006|2006]] godine
*Član [[:n:Početna strana|Wikivijesti]] od: [[:w:20. februar|20. februara]] 2008
*Ponosni vlasnik jednog osmogodišnjeg [[:w:apencelški planinski pas|appenzellnera]]
*Aktivnosti: Prevođenje interfejsa na bosanski jezik na [http://translatewiki.net/wiki/Portal:Bs Betawiki-ju]!
|width="25%" bgcolor="plum" |{{Wikipedia|Korisnik:CERminator}}
|-
|'''Oblasti interesovanja'''
*Hemija
**Organska hemija
**Neorganska hemija
*Farmacija
**Lijekovi
*Biohemija
*Biologija
**Botanika
|{{Babel-4|bs|hr-4|de-3|en-3}}
|}
pbdhy4mj3ib8hp3klxntfgmbyjxc6gu
Korisnik:Brunoy Anastasiya Seryozhenko
2
4399
11690
2008-05-01T14:22:00Z
Brunoy Anastasiya Seryozhenko
126
Preusmjereno na [[m:User:Brunoy Anastasiya Seryozhenko]]
11690
wikitext
text/x-wiki
#REDIRECT [[m:User:Brunoy Anastasiya Seryozhenko]]
3nhjlyzt53a6q0lcit6rbry4f4ffbs8
Korisnik:EllenFalls
2
4402
11713
2008-05-15T02:23:49Z
EllenFalls
128
introduction
11713
wikitext
text/x-wiki
Oy, živote, što te vodim![http://home.earthlink.net/~elfgerber/fallsgeneralservices]
{{Babel|en|fr-2|gr-2|de-1|es-1|la-1|it-1|bs-0|gd-0|ar-0}}
fyqtdstripgzrt0a69vushv30ff4nr6
Korisnik:Caiaffa
2
4403
13318
11765
2009-08-14T20:56:14Z
Caiaffa
177
13318
wikitext
text/x-wiki
{|style="border:1px solid #eee9d9; background-color:#AADDDA; margin-left:.1em; margin-top:2px; -moz-border-radius:15px;" align="right" width="240px"
|-
|{{Korisnik pt}}
|-
|{{Korisnik en-3}}
|-
|{{Korisnik es-2}}
|-
|{{Korisnik fr-1}}
|-
|{{Korisnik it-1}}
|-
|{{Korisnik bs-0}}
|}
[[en:user:Caiaffa]]
[[w:en:User:Caiaffa]]
[[en:User:Caiaffa]]
phjb5ybu3i40ym3zowacowens657xlb
Korisnik:Moe Epsilon
2
4404
28143
28131
2012-10-02T07:57:42Z
Moe Epsilon
191
#REDIRECT [[w:en:User:Moe Epsilon]]
28143
wikitext
text/x-wiki
#REDIRECT [[w:en:User:Moe Epsilon]]
oa9c7htx2cgwzi4lbqp8aiqh2v8vzn2
Korisnik:MenoBot
2
4406
36052
24387
2013-06-29T14:57:59Z
MenoBot
215
r2.7.5) (Bot dodaje: [[vec:Utente:MenoBot]]
36052
wikitext
text/x-wiki
This is an interwiki bot operated by [[w:en:User:Meno25|Meno25]].
[[af:Gebruiker:MenoBot]]
[[am:አባል:MenoBot]]
[[an:Usuario:MenoBot]]
[[ang:User:MenoBot]]
[[ar:مستخدم:MenoBot]]
[[ast:Usuariu:MenoBot]]
[[ay:Usuario:MenoBot]]
[[az:İstifadəçi:MenoBot]]
[[be:Удзельнік:MenoBot]]
[[bg:Потребител:MenoBot]]
[[bn:ব্যবহারকারী:MenoBot]]
[[br:Implijer:MenoBot]]
[[ca:Usuari:MenoBot]]
[[chr:User:MenoBot]]
[[co:User:MenoBot]]
[[cs:Uživatel:MenoBot]]
[[csb:Brëkòwnik:MenoBot]]
[[cy:Defnyddiwr:MenoBot]]
[[da:Bruger:MenoBot]]
[[de:Benutzer:MenoBot]]
[[dv:މެމްބަރު:MenoBot]]
[[el:Χρήστης:MenoBot]]
[[en:User:MenoBot]]
[[eo:Uzanto:MenoBot]]
[[es:Usuario:MenoBot]]
[[et:Kasutaja:MenoBot]]
[[eu:Lankide:MenoBot]]
[[fa:کاربر:MenoBot]]
[[fi:Käyttäjä:MenoBot]]
[[fj:User:MenoBot]]
[[fo:Brúkari:MenoBot]]
[[fr:Utilisateur:MenoBot]]
[[fy:Meidogger:MenoBot]]
[[ga:Úsáideoir:MenoBot]]
[[gd:Cleachdaiche:MenoBot]]
[[gl:Usuario:MenoBot]]
[[gn:Puruhára:MenoBot]]
[[gu:સભ્ય:MenoBot]]
[[gv:Ymmydeyr:MenoBot]]
[[ha:User:MenoBot]]
[[he:משתמש:MenoBot]]
[[hi:सदस्य:MenoBot]]
[[hr:Suradnik:MenoBot]]
[[hsb:Wužiwar:MenoBot]]
[[hu:Szerkesztő:MenoBot]]
[[hy:Մասնակից:MenoBot]]
[[ia:Usator:MenoBot]]
[[id:Pengguna:MenoBot]]
[[ie:Usator:MenoBot]]
[[io:Uzanto:MenoBot]]
[[is:Notandi:MenoBot]]
[[it:Utente:MenoBot]]
[[iu:User:MenoBot]]
[[ja:利用者:MenoBot]]
[[jbo:User:MenoBot]]
[[jv:Panganggo:MenoBot]]
[[ka:მომხმარებელი:MenoBot]]
[[kk:Қатысушы:MenoBot]]
[[kl:Atuisoq:MenoBot]]
[[km:អ្នកប្រើប្រាស់:MenoBot]]
[[kn:ಸದಸ್ಯ:MenoBot]]
[[ko:사용자:MenoBot]]
[[ks:رُکُن:MenoBot]]
[[ku:Bikarhêner:MenoBot]]
[[kw:Devnydhyer:MenoBot]]
[[ky:Колдонуучу:MenoBot]]
[[la:Usor:MenoBot]]
[[lb:Benotzer:MenoBot]]
[[li:Gebroeker:MenoBot]]
[[ln:Utilisateur:MenoBot]]
[[lo:ຜູ້ໃຊ້:MenoBot]]
[[lt:Naudotojas:MenoBot]]
[[lv:Lietotājs:MenoBot]]
[[mg:Mpikambana:MenoBot]]
[[mi:User:MenoBot]]
[[mk:Корисник:MenoBot]]
[[ml:ഉപയോക്താവ്:MenoBot]]
[[mn:Хэрэглэгч:MenoBot]]
[[mr:सदस्य:MenoBot]]
[[ms:Pengguna:MenoBot]]
[[mt:Utent:MenoBot]]
[[my:User:MenoBot]]
[[na:User:MenoBot]]
[[nah:Tlatequitiltilīlli:MenoBot]]
[[nds:Bruker:MenoBot]]
[[ne:प्रयोगकर्ता:MenoBot]]
[[nl:Gebruiker:MenoBot]]
[[nn:Brukar:MenoBot]]
[[no:Bruker:MenoBot]]
[[oc:Utilizaire:MenoBot]]
[[om:User:MenoBot]]
[[or:ବ୍ୟବହାରକାରୀ:MenoBot]]
[[pa:ਵਰਤੌਂਕਾਰ:MenoBot]]
[[pl:Wikipedysta:MenoBot]]
[[pnb:User:MenoBot]]
[[ps:کارن:MenoBot]]
[[pt:Utilizador:MenoBot]]
[[qu:Ruraq:MenoBot]]
[[ro:Utilizator:MenoBot]]
[[roa-rup:User:MenoBot]]
[[ru:Участник:MenoBot]]
[[rw:User:MenoBot]]
[[sa:योजकः:MenoBot]]
[[scn:Utenti:MenoBot]]
[[sd:يوزر:MenoBot]]
[[sg:Utilisateur:MenoBot]]
[[sh:Korisnik:MenoBot]]
[[si:පරිශීලක:MenoBot]]
[[simple:User:MenoBot]]
[[sk:Redaktor:MenoBot]]
[[sl:Uporabnik:MenoBot]]
[[sm:User:MenoBot]]
[[so:User:MenoBot]]
[[sq:Përdoruesi:MenoBot]]
[[sr:Корисник:MenoBot]]
[[ss:User:MenoBot]]
[[st:User:MenoBot]]
[[su:Pamaké:MenoBot]]
[[sv:Användare:MenoBot]]
[[sw:Mtumiaji:MenoBot]]
[[ta:பயனர்:MenoBot]]
[[te:వాడుకరి:MenoBot]]
[[tg:Корбар:MenoBot]]
[[th:ผู้ใช้:MenoBot]]
[[ti:User:MenoBot]]
[[tk:Ulanyjy:MenoBot]]
[[tl:Tagagamit:MenoBot]]
[[tn:User:MenoBot]]
[[tpi:Yusa:MenoBot]]
[[tr:Kullanıcı:MenoBot]]
[[ts:User:MenoBot]]
[[tt:Кулланучы:MenoBot]]
[[ug:ئىشلەتكۈچى:MenoBot]]
[[uk:Користувач:MenoBot]]
[[ur:صارف:MenoBot]]
[[uz:Foydalanuvchi:MenoBot]]
[[vec:Utente:MenoBot]]
[[vi:Thành viên:MenoBot]]
[[vo:Geban:MenoBot]]
[[wa:Uzeu:MenoBot]]
[[wo:Jëfandikukat:MenoBot]]
[[yi:באַניצער:MenoBot]]
[[za:用户:MenoBot]]
[[zh:User:MenoBot]]
[[zh-min-nan:User:MenoBot]]
[[zu:User:MenoBot]]
43ao2opuj387gfqx0mlsvls91i6qyrp
Korisnik:CarsracBot
2
4407
35464
23074
2013-05-09T00:21:20Z
CarsracBot
217
Robot: toegevoegd
{| width="75%" cellpadding="0" cellspacing="0" style="background:none; border: 1px solid #1188AA;"
! style="background:#E0E8FF" |100 laatste ongecontroleerde anonieme wijzigingen
|-
|<div style="
35464
wikitext
text/x-wiki
----
----
Bureaucracy => '''[[Special:Makebot/CarsracBot]]''' / '''[[meta:Steward_requests/Bot_status]]'''
*User:CarsracBot is a pure <u>interwiki bot</u>, using PyWikipedia framework!
*User:CarsracBot is operated from <u>medium-sized</u> Wikipedias <small>(like li, zea, als, yo)</small>
*User:CarsracBot is <u>flagged on several wikis</u>, see '''[[:nl:user:CarsracBot|that list]]'''...
----
----
[[bat-smg:Nauduotuos:CarsracBot]]
[[bcl:Paragamit:CarsracBot]]
[[cbk-zam:Usuario:CarsracBot]]
[[ceb:User:CarsracBot]]
[[cu:По́льꙃєватєл҄ь:CarsracBot]]
[[diq:User:CarsracBot]]
[[eml:Utente:CarsracBot]]
[[ext:User:CarsracBot]]
[[fiu-vro:Pruukja:CarsracBot]]
[[frp:Utilisator:CarsracBot]]
[[fur:Utent:CarsracBot]]
[[gan:User:CarsracBot]]
[[hif:User:CarsracBot]]
[[ig:User:CarsracBot]]
[[kab:Amseqdac:CarsracBot]]
[[ksh:Metmaacher:CarsracBot]]
[[lij:Utente:CarsracBot]]
[[lmo:Utente:CarsracBot]]
[[map-bms:Panganggo:CarsracBot]]
[[mdf:User:CarsracBot]]
[[myv:User:CarsracBot]]
[[nap:Utente:CarsracBot]]
[[nds-nl:Gebruker:CarsracBot]]
[[new:छ्येलेमि:CarsracBot]]
[[nrm:User:CarsracBot]]
[[nv:Choinish'įįhí:CarsracBot]]
[[os:Архайæг:CarsracBot]]
[[pam:User:CarsracBot]]
[[pap:User:CarsracBot]]
[[pdc:Benutzer:CarsracBot]]
[[roa-tara:User:CarsracBot]]
[[sah:User:CarsracBot]]
[[sco:User:CarsracBot]]
[[srn:Gebruiker:CarsracBot]]
[[stq:Benutser:CarsracBot]]
[[vec:Utente:CarsracBot]]
[[vls:Gebruker:CarsracBot]]
[[zea:Gebruker:CarsracBot]]
{| width="75%" cellpadding="0" cellspacing="0" style="background:none; border: 1px solid #1188AA;"
! style="background:#E0E8FF" |100 laatste ongecontroleerde anonieme wijzigingen
|-
|<div style="height:200px; overflow:auto; background:white;"> {{Special:Recentchanges/100,hideliu,hidepatrolled}} </div>
|}<br/>
{| width="75%" cellpadding="0" cellspacing="0" style="background:none; border: 1px solid #1188AA;"
! style="background:#E0E8FF" |100 nieuwste artikelen
|-
|<div style="height:200px; overflow:auto; background:white;"> {{Special:Newpages/100,hidepatrolled}} </div>
|}<br>
[[af:Gebruiker:CarsracBot]]
[[am:አባል:CarsracBot]]
[[an:Usuario:CarsracBot]]
[[ang:User:CarsracBot]]
[[ar:مستخدم:CarsracBot]]
[[ast:Usuariu:CarsracBot]]
[[ay:Usuario:CarsracBot]]
[[az:İstifadəçi:CarsracBot]]
[[be:Удзельнік:CarsracBot]]
[[bg:Потребител:CarsracBot]]
[[bn:ব্যবহারকারী:CarsracBot]]
[[br:Implijer:CarsracBot]]
[[ca:Usuari:CarsracBot]]
[[chr:User:CarsracBot]]
[[co:User:CarsracBot]]
[[cs:Uživatel:CarsracBot]]
[[csb:Brëkòwnik:CarsracBot]]
[[cy:Defnyddiwr:CarsracBot]]
[[da:Bruger:CarsracBot]]
[[de:Benutzer:CarsracBot]]
[[dv:މެމްބަރު:CarsracBot]]
[[el:Χρήστης:CarsracBot]]
[[en:User:CarsracBot]]
[[eo:Uzanto:CarsracBot]]
[[es:Usuario:CarsracBot]]
[[et:Kasutaja:CarsracBot]]
[[eu:Lankide:CarsracBot]]
[[fa:کاربر:CarsracBot]]
[[fi:Käyttäjä:CarsracBot]]
[[fj:User:CarsracBot]]
[[fo:Brúkari:CarsracBot]]
[[fr:Utilisateur:CarsracBot]]
[[fy:Meidogger:CarsracBot]]
[[ga:Úsáideoir:CarsracBot]]
[[gd:Cleachdaiche:CarsracBot]]
[[gl:Usuario:CarsracBot]]
[[gn:Puruhára:CarsracBot]]
[[gu:સભ્ય:CarsracBot]]
[[gv:Ymmydeyr:CarsracBot]]
[[ha:User:CarsracBot]]
[[he:משתמש:CarsracBot]]
[[hi:सदस्य:CarsracBot]]
[[hr:Suradnik:CarsracBot]]
[[hsb:Wužiwar:CarsracBot]]
[[hu:Szerkesztő:CarsracBot]]
[[hy:Մասնակից:CarsracBot]]
[[ia:Usator:CarsracBot]]
[[id:Pengguna:CarsracBot]]
[[ie:Usator:CarsracBot]]
[[io:Uzanto:CarsracBot]]
[[is:Notandi:CarsracBot]]
[[it:Utente:CarsracBot]]
[[iu:User:CarsracBot]]
[[ja:利用者:CarsracBot]]
[[jbo:User:CarsracBot]]
[[jv:Panganggo:CarsracBot]]
[[ka:მომხმარებელი:CarsracBot]]
[[kk:Қатысушы:CarsracBot]]
[[kl:Atuisoq:CarsracBot]]
[[km:អ្នកប្រើប្រាស់:CarsracBot]]
[[kn:ಸದಸ್ಯ:CarsracBot]]
[[ko:사용자:CarsracBot]]
[[ks:رُکُن:CarsracBot]]
[[ku:Bikarhêner:CarsracBot]]
[[kw:Devnydhyer:CarsracBot]]
[[ky:Колдонуучу:CarsracBot]]
[[la:Usor:CarsracBot]]
[[lb:Benotzer:CarsracBot]]
[[li:Gebroeker:CarsracBot]]
[[ln:Utilisateur:CarsracBot]]
[[lo:ຜູ້ໃຊ້:CarsracBot]]
[[lt:Naudotojas:CarsracBot]]
[[lv:Lietotājs:CarsracBot]]
[[mg:Mpikambana:CarsracBot]]
[[mi:User:CarsracBot]]
[[mk:Корисник:CarsracBot]]
[[ml:ഉപയോക്താവ്:CarsracBot]]
[[mn:Хэрэглэгч:CarsracBot]]
[[mr:सदस्य:CarsracBot]]
[[ms:Pengguna:CarsracBot]]
[[mt:Utent:CarsracBot]]
[[my:User:CarsracBot]]
[[na:User:CarsracBot]]
[[nah:Tlatequitiltilīlli:CarsracBot]]
[[nds:Bruker:CarsracBot]]
[[ne:प्रयोगकर्ता:CarsracBot]]
[[nl:Gebruiker:CarsracBot]]
[[nn:Brukar:CarsracBot]]
[[no:Bruker:CarsracBot]]
[[oc:Utilizaire:CarsracBot]]
[[om:User:CarsracBot]]
[[or:ବ୍ୟବହାରକାରୀ:CarsracBot]]
[[pa:ਵਰਤੌਂਕਾਰ:CarsracBot]]
[[pl:Wikipedysta:CarsracBot]]
[[pnb:User:CarsracBot]]
[[ps:کارن:CarsracBot]]
[[pt:Utilizador:CarsracBot]]
[[qu:Ruraq:CarsracBot]]
[[ro:Utilizator:CarsracBot]]
[[roa-rup:User:CarsracBot]]
[[ru:Участник:CarsracBot]]
[[rw:User:CarsracBot]]
[[sa:योजकः:CarsracBot]]
[[scn:Utenti:CarsracBot]]
[[sd:يوزر:CarsracBot]]
[[sg:Utilisateur:CarsracBot]]
[[sh:Korisnik:CarsracBot]]
[[si:පරිශීලක:CarsracBot]]
[[simple:User:CarsracBot]]
[[sk:Redaktor:CarsracBot]]
[[sl:Uporabnik:CarsracBot]]
[[sm:User:CarsracBot]]
[[so:User:CarsracBot]]
[[sq:Përdoruesi:CarsracBot]]
[[sr:Корисник:CarsracBot]]
[[ss:User:CarsracBot]]
[[st:User:CarsracBot]]
[[su:Pamaké:CarsracBot]]
[[sv:Användare:CarsracBot]]
[[sw:Mtumiaji:CarsracBot]]
[[ta:பயனர்:CarsracBot]]
[[te:వాడుకరి:CarsracBot]]
[[tg:Корбар:CarsracBot]]
[[th:ผู้ใช้:CarsracBot]]
[[ti:User:CarsracBot]]
[[tk:Ulanyjy:CarsracBot]]
[[tl:Tagagamit:CarsracBot]]
[[tn:User:CarsracBot]]
[[tpi:Yusa:CarsracBot]]
[[tr:Kullanıcı:CarsracBot]]
[[ts:User:CarsracBot]]
[[tt:Кулланучы:CarsracBot]]
[[ug:ئىشلەتكۈچى:CarsracBot]]
[[uk:Користувач:CarsracBot]]
[[ur:صارف:CarsracBot]]
[[uz:Foydalanuvchi:CarsracBot]]
[[vi:Thành viên:CarsracBot]]
[[vo:Geban:CarsracBot]]
[[wa:Uzeu:CarsracBot]]
[[wo:Jëfandikukat:CarsracBot]]
[[yi:באַניצער:CarsracBot]]
[[za:用户:CarsracBot]]
[[zh:User:CarsracBot]]
[[zh-min-nan:User:CarsracBot]]
[[zu:User:CarsracBot]]
26r1opbrwisfheelo0m202ngkw09maw
Razgovor s korisnikom:MenoBot
3
4408
11792
2008-06-22T14:54:15Z
MenoBot
215
talk
11792
wikitext
text/x-wiki
Please leave comments in English [[w:en:User talk:Meno25|here]].
71i1b2lidd8zeajwxudf0mudmfh1lfr
Korisnik:SpaceBirdyBot
2
4410
11800
2008-07-06T14:14:17Z
Spacebirdy
23
.
11800
wikitext
text/x-wiki
<div style="border: 1px solid #33bbcc;background-color:#f8f8f6;padding:2px;">
Bot of [[User:Spacebirdy|Spacebirdy]]
</div>
<div style="border:1px solid #FF4500;background-color:#f8f8f6;padding:2px;" class="plainlinks" >
[[Special:Contributions/SpaceBirdyBot|contribs]]<br>
</div>
[[ar:مستخدم:SpaceBirdyBot]]
[[af:Gebruiker:SpaceBirdyBot]]
[[co:User:SpaceBirdyBot]]
[[da:Bruger:SpaceBirdyBot]]
[[de:Benutzer:SpaceBirdyBot]]
[[el:Χρήστης:SpaceBirdyBot]]
[[es:Usuario:SpaceBirdyBot]]
[[fo:Brúkari:SpaceBirdyBot]]
[[ga:Úsáideoir:SpaceBirdyBot]]
[[gd:User:SpaceBirdyBot]]
[[it:Utente:SpaceBirdyBot]]
[[li:Gebroeker:SpaceBirdyBot]]
[[nah:Usuario:SpaceBirdyBot]]
[[nl:Gebruiker:SpaceBirdyBot]]
[[no:Bruker:SpaceBirdyBot]]
[[oc:Utilizaire:SpaceBirdyBot]]
[[pt:Usuário:SpaceBirdyBot]]
[[ro:Utilizator:SpaceBirdyBot]]
[[scn:Utenti:SpaceBirdyBot]]
[[sv:Användare:SpaceBirdyBot]]
[[yi:באַניצער:SpaceBirdyBot]]
[[zh-min-nan:User:SpaceBirdyBot]]
7e2ruvd0a913ak9stiqre2qbj03gm1x
Razgovor s korisnikom:SpaceBirdyBot
3
4411
11801
2008-07-06T14:14:58Z
Spacebirdy
23
Preusmjereno na [[Razgovor sa korisnikom:Spacebirdy]]
11801
wikitext
text/x-wiki
#redirect[[User_talk:Spacebirdy]]
d6v42gogvfr6ssx4a21b3t5iamunpx1
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
Korisnik:SterkeBak
2
4414
12178
11878
2008-11-01T09:46:08Z
Pathoschild
81
global user page ([[m:User:Pathoschild/Scripts/SynchCrosswiki|requested]])
12178
wikitext
text/x-wiki
<div style="padding-right:40px; font-style:italic; text-align:right; font-size:225%; font-family:Georgia; margin-bottom:15px; color:#669;">I wanna find something I've wanted all along<br /><br />
Somewhere I belong</div>
<center><div style="width:820px;"><div style="width:59%; display:block; float:left;">
{| style="border-spacing:8px; margin:0px -8px;"
|class="MainPageBG" style="width:60%; border:1px solid #CEDFF2; background-color:#FFF; vertical-align:top; -moz-border-radius:10px;"|
{| width="100%" cellpadding="2" cellspacing="5" style="vertical-align:top; background-color:#FFF; -moz-border-radius:10px;"
! style="background:#CFDEF1; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:100%; border:1px solid #B1CDEB; text-align:left; padding-left:7px; -moz-border-radius:10px;"| <div style="float:right;">[[Image:Wbar_blue.jpg]]</div><div style="float:left;">[[Image:Wikipedia svg logo.svg|20px]]Userpage from SterkeBak</div>
|-
| style="font-family:Verdana, Arial, Helvetica, sans-serif; font-size:90%;"| <div class="plainlinks">[[Image:Sterkebak.jpg|100px|right]]Welcome to my userpage</div>
Hello. I'm a Wikimedian who doesn't do a lot on this project. I am active at Commons. I am also an admin on Commons. If you want to talk to me use [[:Commons:User Talk:SterkeBak|my Commons talk page]]. (You can respond there in English, German and Dutch.)
|}
|}
</div>
<div style="width:40%; display:block; float:right;">
{| style="border-spacing:8px; margin:0px -8px;"
|class="MainPageBG" style="width:60%; border:1px solid #CEDFF2; background:#FFF; vertical-align:top; -moz-border-radius:10px;"|
{| width="100%" cellpadding="2" cellspacing="5" style="vertical-align:top; background-color:#FFF; -moz-border-radius:10px;"
|-
|
[[Image:Cross of Sacrifice crop.jpg|250px|thumb|center|''Cross of Sacrifice'']]
|}
bk7zkw33nqeph98a18a696o8f780n8x
Razgovor s korisnikom:VolkovBot
3
4415
11952
2008-09-10T07:20:43Z
VolkovBot
79
info
11952
wikitext
text/x-wiki
To leave a message, please use [[:ru:User talk:VolkovBot]]
7opoklt912f13jrzkd5kc2w989e2ghg
Korisnik:Barishan
2
4449
72218
72158
2024-07-09T11:25:44Z
Barishan
287
72218
wikitext
text/x-wiki
{{Babel-6|tr|en-4|de-3|fr-2|el-1|bs-1}}
* <nowiki>#: <small>Sinonimi:</small> [[gönül]]</nowiki>
* <nowiki>{{ARkar|[[غراب]]}}</nowiki> ― {{ARkar|[[غراب]]}}
* <nowiki>{{FAkar|[[زاغ]]}}</nowiki> ― {{FAkar|[[زاغ]]}}
* <nowiki>{{Gru|[[კარტოფილი]]}}</nowiki> ― {{Gru|[[კარტოფილი]]}}
* <nowiki>{{Hebr|[[ספריה]]}}</nowiki> ― {{Hebr|[[ספריה]]}}
* <nowiki>{{HYkar|[[յաղթանակ]]}}</nowiki> ― {{HYkar|[[յաղթանակ]]}}
* <nowiki>{{ELkar|[[νίκη]]}}</nowiki> ― {{ELkar|[[νίκη]]}}
'''Armenski'''
* (''zapadnoarmenski'') [[յաղթանակ]], (''složenica'') [[խաղողի որթ]], (''staroarmenski'') [[կրակ]], (''izostavljajući samoglasnik'') [[հրաբուխ]]
'''Grčki'''
* [[σαλβάρι]], (''starogrčki'') [[νίκη]], (''nepromjenljiv'') [[φερμουάρ]]
'''Gruzijski'''
* (''redovan'') [[ყვავი]], (''izostavljajući zadnji samoglasnik'') [[ყორანი]]
'''Turski'''
* [[çiçekli]], [[acıkmak]], (''osmanlijski turski'') {{FAkar|[[قولاق]]}}, (''staroturski'') <big>[[𐰴𐰆𐰑𐰺𐰆𐰸]]</big>
'''Drugi jezici'''
{|
||
* Albanski: [[fitore]]
* Anglosaksonski: [[sige]]
* Armenski: [[մոր]], [[լոլիկ]]
* Azerbejdžanski: [[zəfər]]
* Baskijski: [[hizkuntza]]
* Baškirski: [[арыҫлан]]
* Bugarski: [[победа]]
* Češki: [[kůň]]
* Danski: [[lynlås]]
* Esperanto: [[polpo]], [[iri]]
||
* Estonski: [[tõmblukk]]
* Farski: [[sigur]]
* Finski: [[koira]]
* Francuski: [[hôpital]]
* Gotski: [[𐍃𐌹𐌲𐌹𐍃]]
* Hebrejski: {{Hebr|[[תאנה]]}}
* Holandski: [[braam]]
* Islandski: [[sigur]]
* Italijanski: [[cerniera]]
* Jidiš: {{Hebr|[[קריג]]}}
||
* Kazaški: [[құйрық]]
* Krimskotatarski: [[quzğun]]
* Ladino: [[mupak]]
* Latinski: [[collegium]]
* Letonski: [[mēnesis]]
* Litvanski: [[pergalė]]
* Mađarski: [[salavári]]
* Njemački: [[Mann]]
* Norveški: [[bjørnebær]]
* Poljski: [[szarawary]]
||
* Portugalski: [[amora]]
* Ruski: [[шаровары]]
* Slovački: [[víťazstvo]]
* Slovenski: [[bolnišnica]]
* Starocrkvenoslavenski: [[кръчьмарица]]
* Španski: [[cremallera]]
* Švedski: [[dragkedja]]
* Tatarski: [[külägä]]
* Ukrajinski: [[перемога]]
* Uzbečki: [[til#Uzbečki|til]]
||
* Bjeloruski: [[ажына]]
* Grenlandski: [[kigutaarnaasaq]]
* Japanski: {{Kin|[[性的指向]]}}
* Kineski
** Kantonski: {{Kin|[[洗頭水]]}}
** Mandarinski: {{Kin|[[香波]]}}
* Korejski: {{Kin|[[채식주의자]]}}
* Staroarmenski: [[լայնութիւն]]
* Vijetnamski: [[xà bông]]
* Volapük: [[sleifülöm]]
|}
n2ptdevssqgw3ltnm8epwp5xle5afzq
Korisnik:Nikkis
2
4481
12102
2008-10-02T16:38:47Z
Nikkis
289
new
12102
wikitext
text/x-wiki
{| style="background:#FFFFFF;"
|width=75% valign="top" |
<big><center><span class="hintergrundfarbe5">
'''Dieser Benutzer spricht Deutsch'''
</span></center></big>
<big><center><span class="hintergrundfarbe5">
'''This user speaks English'''
<big><center><span class="hintergrundfarbe5">
'''Cet utilisateur parle français'''
<big><center><span class="hintergrundfarbe5">
'''Hic usuarius simplici Latinitate contribuere potest'''
{| style="background:#E8E8E8;"
|width=75% valign="top" |
'''Home wiki: [[w:de:Wikipedia:Hauptseite|German-language edition of Wikipedia]]'''
== International projects ==
<div class="inhalt" align="center">
<span style="white-space:nowrap;"><span class="icon">[[Image:Wikimedia-logo.svg|20px]] </span>[[m:User:Nikkis|Meta-Wiki]] – Wikimedia project coordination </span>
<span style="white-space:nowrap;"><span class="icon">[[Image:Commons-logo.svg|18px]] </span>[[commons:User:Nikkis|Commons]] – Media repository </span>
<span style="white-space:nowrap;"><span class="icon">[[Image:Wikispecies-logo-en.png|20px]] </span>[[wikispecies:User:Nikkis|Wikispecies]] – Directory of species </span>
</div>
== Sister projects ==
<div class="inhalt" align="center">
<span style="white-space:nowrap;"><span class="icon">[[Image:Wikipedia-logo.png|20px]] </span>[[w:User:Nikkis|Wikipedia]] – Encyclopedia </span>
<span style="white-space:nowrap;"><span class="icon">[[Image:Wikibooks-logo.svg|21px]] </span>[[b:User:Nikkis|Wikibooks]] – Textbooks and manuals </span>
<span style="white-space:nowrap;"><span
class="icon">[[Image:Wikinews-logo.svg|20px]] </span>[[n:User:Nikkis|Wikinews]] – News </span>
<span style="white-space:nowrap;"><span
class="icon">[[Image:Wikiquote-logo.svg|20px]] </span>[[q:User:Nikkis|Wikiquote]] – Collection of quotations </span>
<span style="white-space:nowrap;"><span
class="icon">[[Image:Wikisource-logo.svg|20px]] </span>[[s:User:Nikkis|Wikisource]] – Free-content library </span>
<span style="white-space:nowrap;">
</span>
</div>
== Wiktionary in other languages ==
<div class="inhalt" align="center">
<span style="white-space:nowrap;"> [[Image:Wiktionary small.svg|100px|Wiktionary]]<br>
[[:af:User:Nikkis|Afrikaans]] </span>
[[:am:User:Nikkis|አማርኛ]] </span>
[[:an:User:Nikkis|Aragonés]] </span>
[[:ang:User:Nikkis|Anglo-Saxon]] </span>
[[:ar:User:Nikkis|العربية]] </span>
[[:ast:User:Nikkis|Asturianu]] </span>
[[:ay:User:Nikkis|Aymar]] </span>
[[:az:User:Nikkis|Azərbaycan]] </span>
[[:ba:User:Nikkis|Башҡорт]] </span>
[[:be:User:Nikkis|Беларуская]] </span>
[[:bg:User:Nikkis|Български]] </span>
[[:bn:User:Nikkis|বাংলা]] </span>
[[:br:User:Nikkis|Brezhoneg]] </span>
[[:bs:User:Nikkis|Bosanski]] </span>
[[:ca:User:Nikkis|Català]] </span>
[[:chr:User:Nikkis|ᏣᎳᎩ]] </span>
[[:co:User:Nikkis|Corsu]] </span>
[[:cs:User:Nikkis|Česky]] </span>
[[:csb:User:Nikkis|Kaszëbsczi]] </span>
[[:cy:User:Nikkis|Cymraeg]] </span>
[[:da:User:Nikkis|Dansk]] </span>
[[:de:User:Nikkis|Deutsch]] </span>
[[:dv:User:Nikkis|ދިވެހިބަސ]] </span>
[[:el:User:Nikkis|Ελληνικά]] </span>
[[:en:User:Nikkis|English]] </span>
[[:eo:User:Nikkis|Esperanto]] </span>
[[:es:User:Nikkis|Español]] </span>
[[:et:User:Nikkis|Eesti]] </span>
[[:eu:User:Nikkis|Euskara]] </span>
[[:fa:User:Nikkis|فارسی]] </span>
[[:fi:User:Nikkis|Suomi]] </span>
[[:fj:User:Nikkis|Na Vosa Vakaviti]] </span>
[[:fo:User:Nikkis|Føroyskt]] </span>
[[:fr:User:Nikkis|Français]] </span>
[[:fy:User:Nikkis|Frysk]] </span>
[[:ga:User:Nikkis|Gaeilge]] </span>
[[:gd:User:Nikkis|Gàidhlig]] </span>
[[:gl:User:Nikkis|Galego]] </span>
[[:gn:User:Nikkis|Avañe'ẽ]] </span>
[[:gu:User:Nikkis|ગુજરાતી]] </span>
[[:gv:User:Nikkis|Gaelg]] </span>
[[:ha:User:Nikkis|هَوُسَ]] </span>
[[:he:User:Nikkis|עברית]] </span>
[[:hi:User:Nikkis|हिन्दी]] </span>
[[:hr:User:Nikkis|Hrvatski]] </span>
[[:hsb:User:Nikkis|Hornjoserbsce]] </span>
[[:hu:User:Nikkis|Magyar]] </span>
[[:hy:User:Nikkis|Հայերեն]] </span>
[[:ia:User:Nikkis|Interlingua]] </span>
[[:id:User:Nikkis|Bahasa Indonesia]] </span>
[[:ie:User:Nikkis|Interlingue]] </span>
[[:ik:User:Nikkis|Iñupiak]] </span>
[[:io:User:Nikkis|Ido]] </span>
[[:is:User:Nikkis|Íslenska]] </span>
[[:it:User:Nikkis|Italiano]] </span>
[[:iu:User:Nikkis|ᐃᓄᒃᑎᑐᑦ/inuktitut]] </span>
[[:ja:User:Nikkis|日本語]] </span>
[[:jbo:User:Nikkis|Lojban]] </span>
[[:jv:User:Nikkis|Basa Jawa]] </span>
[[:ka:User:Nikkis|ქართული]] </span>
[[:kk:User:Nikkis|Қазақша]] </span>
[[:kl:User:Nikkis|Kalaallisut]] </span>
[[:km:User:Nikkis|ភាសាខ្មែរ]] </span>
[[:kn:User:Nikkis|ಕನ್ನಡ]] </span>
[[:ko:User:Nikkis|한국어]] </span>
[[:ks:User:Nikkis|कश्मीरी - (كشميري)]] </span>
[[:ku:User:Nikkis|Kurdî / كوردی]] </span>
[[:kw:User:Nikkis|Kernewek]] </span>
[[:ky:User:Nikkis|Кыргызча]] </span>
[[:la:User:Nikkis|Latina]] </span>
[[:lb:User:Nikkis|Lëtzebuergesch]] </span>
[[:li:User:Nikkis|Limburgs]] </span>
[[:ln:User:Nikkis|Lingála]] </span>
[[:lo:User:Nikkis|ລາວ]] </span>
[[:lt:User:Nikkis|Lietuvių]] </span>
[[:lv:User:Nikkis|Latviešu]] </span>
[[:mg:User:Nikkis|Malagasy]] </span>
[[:mi:User:Nikkis|Māori]] </span>
[[:mk:User:Nikkis|Македонски]] </span>
[[:ml:User:Nikkis|മലയാളം]] </span>
[[:mn:User:Nikkis|Монгол]] </span>
[[:mr:User:Nikkis|मराठी]] </span>
[[:ms:User:Nikkis|Bahasa Melayu]] </span>
[[:mt:User:Nikkis|Malti]] </span>
[[:my:User:Nikkis|Myanmasa]] </span>
[[:na:User:Nikkis|Dorerin Naoero]] </span>
[[:nah:User:Nikkis|Nāhuatl]] </span>
[[:nds:User:Nikkis|Plattdüütsch]] </span>
[[:ne:User:Nikkis|नेपाली]] </span>
[[:nl:User:Nikkis|Nederlands]] </span>
[[:nn:User:Nikkis|Norsk (nynorsk)]] </span>
[[:no:User:Nikkis|Norsk (bokmål)]] </span>
[[:oc:User:Nikkis|Occitan]] </span>
[[:om:User:Nikkis|Oromoo]] </span>
[[:pa:User:Nikkis|ਪੰਜਾਬੀ]] </span>
[[:pl:User:Nikkis|Polski]] </span>
[[:ps:User:Nikkis|پښتو]] </span>
[[:pt:User:Nikkis|Português]] </span>
[[:qu:User:Nikkis|Runa Simi]] </span>
[[:ro:User:Nikkis|Română]] </span>
[[:roa-rup:User:Nikkis|Armãneashce]] </span>
[[:ru:User:Nikkis|Русский]] </span>
[[:rw:User:Nikkis|Kinyarwanda]] </span>
[[:sa:User:Nikkis|संस्कृत]] </span>
[[:scn:User:Nikkis|Sicilianu]] </span>
[[:sd:User:Nikkis|سنڌي]] </span>
[[:sg:User:Nikkis|Sängö]] </span>
[[:sh:User:Nikkis|Srpskohrvatski / Српскохрватски]] </span>
[[:si:User:Nikkis|සිංහල]] </span>
[[:simple:User:Nikkis|Simple English]] </span>
[[:sk:User:Nikkis|Slovenčina]] </span>
[[:sl:User:Nikkis|Slovenščina]] </span>
[[:sm:User:Nikkis|Gagana Samoa]] </span>
[[:so:User:Nikkis|Soomaaliga]] </span>
[[:sq:User:Nikkis|Shqip]] </span>
[[:sr:User:Nikkis|Српски / Srpski]] </span>
[[:ss:User:Nikkis|SiSwati]] </span>
[[:st:User:Nikkis|Sesotho]] </span>
[[:su:User:Nikkis|Basa Sunda]] </span>
[[:sv:User:Nikkis|Svenska]] </span>
[[:sw:User:Nikkis|Kiswahili]] </span>
[[:ta:User:Nikkis|தமிழ்]] </span>
[[:te:User:Nikkis|తెలుగు]] </span>
[[:tg:User:Nikkis|Тоҷикӣ]] </span>
[[:th:User:Nikkis|ไทย]] </span>
[[:ti:User:Nikkis|ትግርኛ]] </span>
[[:tk:User:Nikkis|Türkmen]] </span>
[[:tl:User:Nikkis|Tagalog]] </span>
[[:tn:User:Nikkis|Setswana]] </span>
[[:tpi:User:Nikkis|Tok Pisin]] </span>
[[:tr:User:Nikkis|Türkçe]] </span>
[[:ts:User:Nikkis|Xitsonga]] </span>
[[:tt:User:Nikkis|Tatarça/Татарча]] </span>
[[:ug:User:Nikkis|Uyghurche / ئۇيغۇرچە]] </span>
[[:uk:User:Nikkis|Українська]] </span>
[[:ur:User:Nikkis|اردو]] </span>
[[:uz:User:Nikkis|O'zbek]] </span>
[[:vi:User:Nikkis|Tiếng Việt]] </span>
[[:vo:User:Nikkis|Volapük]] </span>
[[:wa:User:Nikkis|Walon]] </span>
[[:wo:User:Nikkis|Wolof]] </span>
[[:yi:User:Nikkis|ייִדיש]] </span>
[[:za:User:Nikkis|(Cuengh)]] </span>
[[:zh:User:Nikkis|中文]] </span>
[[:zh-min-nan:User:Nikkis|Bân-lâm-gú]] </span>
[[:zu:User:Nikkis|isiZulu]] </span>
</span>
<br>
----
‣ ''[[m:User:Nikkis|Overview]]''
m0m46gc2opoaq8spct5z3k2v1ohfcjo
Korisnik:Seha
2
4483
12105
12104
2008-10-04T21:19:35Z
Seha
244
12105
wikitext
text/x-wiki
[[w:bs:Korisnik:Seha]]
3k5wti9jdozm9a072mze3g46c5gy8ib
Korisnik:Zu~bswiktionary
2
4496
44079
12128
2015-04-17T19:56:25Z
Maintenance script
1944
Maintenance script je premjestio stranicu [[Korisnik:Zu]] na [[Korisnik:Zu~bswiktionary]] bez ostavljanja preusmjerenja: Automatsko premještanje stranice zbog preimenovanja korisnika „[[Special:CentralAuth/Zu|Zu]]“ u „[[Special:CentralAuth/Zu~bs...
44079
wikitext
text/x-wiki
{{Babel-4|pl|it-2|en-2|ru-1}}
ps0n07vlpq635w1dbr9nm8xfrpmll7t
Š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
Korisnik:Jredmond
2
4515
12154
2008-10-17T20:15:00Z
Jredmond
310
+[[m:User:Jredmond]], Babel
12154
wikitext
text/x-wiki
[[m:User:Jredmond]]
{{Babel|en|bs-0}}
7mo11zbthxbx1l5uwalznj1ad0c9n24
Korisnik:Shanel/monobook.js
2
4517
68077
12157
2021-02-03T20:12:19Z
Ladsgroup
2295
Maintenance: Replacing importScriptURI with mw.loader.load ([[phab:T95964]])
68077
javascript
text/javascript
mw.loader.load('https://meta.wikimedia.org/w/index.php?title=User:Shanel/global.js&action=raw&ctype=text/javascript');
14p5zkc7ozc0y8n5twgu541naa3a33d
Korisnik:WikimediaNotifier
2
4519
12160
2008-10-29T18:59:54Z
WikimediaNotifier
316
Nova stranica: <div style="text-align: center;"> ---- ---- '''[[m:User:WikimediaNotifier|WikimediaNotifier]]'''<!--...do not flag this account-->; operated by [[m:User:Melancholie|User:Melancholie]]...
12160
wikitext
text/x-wiki
<div style="text-align: center;">
----
----
'''[[m:User:WikimediaNotifier|WikimediaNotifier]]'''<!--...do not flag this account-->; operated by [[m:User:Melancholie|User:Melancholie]]
----
----
</div>
tor7u7wsypruve0zcafw99g58kaa6mm
Razgovor s korisnikom:WikimediaNotifier
3
4520
12161
2008-10-29T20:18:15Z
WikimediaNotifier
316
Preusmjereno na [[Korisnik:WikimediaNotifier]]
12161
wikitext
text/x-wiki
#REDIRECT [[User:WikimediaNotifier]]
e0ennyj78ghs157hdt808vmdmc9rd95
Korisnik:WikimediaNotifier/frame.css
2
4521
12163
2008-10-29T21:24:17Z
WikimediaNotifier
316
.
12163
css
text/css
<div style="background-color: #FEFEFE; border: 1px solid #ABABAB; padding: 0 1em;">
__NOEDITSECTION__
=== {{{topic}}} ===
{{{content}}}
:<small>… do '''not''' reply to this <u>automatically</u> delivered notification <span title="locally">here</span>; answer/discuss together '''[[meta:Talk:Global_notifications#{{{topic}}}|on Meta]]''', centrally!</small>
</div>
i5zq9jolr3qjxtjhnenvi6vdcoaog90
Korisnik:Spacebirdy/monobook.js
2
4522
68080
12165
2021-02-03T20:12:49Z
Ladsgroup
2295
Maintenance: Replacing importScriptURI with mw.loader.load ([[phab:T95964]])
68080
javascript
text/javascript
mw.loader.load('https://meta.wikimedia.org/w/index.php?title=User:Spacebirdy/altækt.js&action=raw&ctype=text/javascript');
7d2lp9lmd17ehx82s1xxx5lm94g4ah1
Korisnik:WikimediaNotifier/template
2
4523
12218
12167
2008-11-10T12:13:49Z
WikimediaNotifier
316
12218
wikitext
text/x-wiki
<div style="background-color: #FEFEFE; border: 1px solid #ABABAB; padding: 0 1em;">
__NOEDITSECTION__
=== {{{topic}}} ===
{{{content}}}
<div style="float: right;"><small>[[[{{#ifeq:{{User:WikimediaNotifier/translation}}|User:WikimediaNotifier/notifications|User:WikimediaNotifier/translation|{{User:WikimediaNotifier/translation}}}}#{{{topic}}}|local translation]]]</small></div>
:<small>… do '''not''' reply to this <u>automatically</u> delivered notification <span title="locally">here</span>; answer/discuss together '''[[meta:Talk:Global_notifications#{{{topic}}}|on Meta]]''', centrally!</small>
</div>
554n4kii6e3whjuknwzbi3scfpljx57
Korisnik:WikimediaNotifier/config.js
2
4524
12169
2008-10-30T14:00:42Z
WikimediaNotifier
316
.
12169
javascript
text/javascript
<onlyinclude>{{{all|}}}{{{wikt|}}}{{{bs|}}}{{{wikt:bs|}}}</onlyinclude>
dhz55iwakkt1ojouacnh6tj73pank6p
Korisnik:WikimediaNotifier/self.js
2
4525
12170
2008-10-30T14:34:10Z
WikimediaNotifier
316
.
12170
javascript
text/javascript
{{<includeonly>subst:</includeonly>#if:{{{wikt:bs|}}}|{{{wikt:bs|}}}|{{<includeonly>subst:</includeonly>#if:{{{bs|}}}|{{{bs|}}}|{{<includeonly>subst:</includeonly>#if:{{{wikt|}}}|{{{wikt}}}|{{<includeonly>subst:</includeonly>#if:{{{else|}}}|{{{else}}}|}}}}}}}}
6ufm5rj04lmfiddpuyf5m13uo767b7q
Korisnik:Spacebirdy/monobook.css
2
4526
12174
2008-10-31T00:04:35Z
Pathoschild
81
+ global CSS ([[m:User:Pathoschild/Scripts/SynchCrosswiki|requested]])
12174
css
text/css
@import "http://meta.wikimedia.org/w/index.php?title=User:Spacebirdy/altækt.css&action=raw&ctype=text/css";
7nvxzolr2g4w4mc8pm2n6reta20gvm4
Korisnik:WikimediaNotifier/notifications
2
4527
66951
12930
2018-07-19T18:34:27Z
CommonsDelinker
62
Removing [[:c:File:Crystal_Clear_accepted_bot.png|Crystal_Clear_accepted_bot.png]], it has been deleted from Commons by [[:c:User:Ellin Beltz|Ellin Beltz]] because: per [[:c:Commons:Deletion requests/File:Crystal Clear accepted bot.png|]].
66951
wikitext
text/x-wiki
<div dir="ltr" lang="en" xml:lang="en" style="direction: ltr; padding-top: 3px;">
{{#ifeq:{{{onlyTOC|}}}||
<!--/
/ Mirrored/synchronized; do not change this page [use Meta]; translate on separate page!
/-->
<noinclude><div class="plainlinks" style="float: right; margin-top: -30px;">['''[[meta:Global_notifications/RSS|RSS]] [[File:Feed-icon.svg|12px|link=meta:Global_notifications/RSS]]''']</div></noinclude>
<div style="clear: both; background-color: #FFFCFC;">{{User:WikimediaNotifier/translate}}</div>
<div style="float: right; background-color: #EFEFEF; margin: 0 0 1em 1em; padding: 0 0 4px 3px; position: relative; z-index: 9;">
__TOC__
</div>
{{User:WikimediaNotifier/template|
topic = Wikimedia notification system
|content = [[File:Mail-notification.svg|25px|link=m:Global notifications]] <small>''This is a '''global notification system''' for all Wikimedia wikis!''</small>
<hr style="margin: 0;" />
<div style="background-color: #F7FFF7; border: 2px solid #F3F3F3; padding: 10px 20px 15px;">
If it is necessary to inform many/all wikis about something important, a [[meta:Global_notifications|global notification]] can be requested at '''[[meta:Global notifications/requests]]'''. It is possible to have wiki and/or language dependent text within every message.
''All Meta notifications are synchronized automatically, either on all wikis or just on specific, selected ones.''
To have a common access point, the messages are updated at '''[[{{NS:User}}:WikimediaNotifier/notifications]]''' ''(mirrored, any changes to this page will be overwritten; [[meta:Global_notifications/how-to#translation|use a separate page for translation]]);'' you can include this page<small>(s)</small> like a template wherever you want, let's say your village pump, with a description in your language!
Have a look on the '''[[meta:Global notifications/how-to|Frequently Asked Questions]]''' to see how it can fit your needs!
* <small>With '''[[meta:User:Pathoschild/Scripts/SynchCrosswiki|SynchCrosswiki]]''' there furthermore is an easy way to create or synchronize pages like user scripts on all wikis!</small>
</div>
<hr style="margin: 0;" />
''… it's for spreading information; and for a better cross-wiki communication & collaboration!''
}}<br />
{{User:WikimediaNotifier/template|
topic = Commons: Picture of the Year 2008
|content = <div style="position: relative; margin-bottom: 6px;">
<span style="position: absolute; top: -38px; right: 42px; color: #BCBCBC;"><small class="GN-update_1">2009-04-19</small></span>
<div style="float: left; margin-right: 15px;">[[File:POTY_barnstar_1_2008.svg|85px|link=m:commons:Project:Picture_of_the_Year/2008]]</div>
The third annual '''[[m:commons:Project:Picture of the Year/2008/Voting|Picture of the Year Award]]''' on [[m:commons:Main_Page|Wikimedia Commons]] goes into its second (<u>final</u>) round!
{{:User:WikimediaNotifier/updated|
''The final voting round is running from April 19th to ''April 30th'' (23:59 UTC).''
Have a look on the '''[[m:commons:Project:Picture of the Year/2008/Finalists|finalists]]''' and select your favourite featured picture of 2008.}}
</div>
}}<br />
{{User:WikimediaNotifier/template|
topic = GNU Free Documentation License 1.3
|content = <div style="position: relative; margin-bottom: 6px;">
<span style="position: absolute; top: -38px; right: 42px; color: #BCBCBC;"><small class="GN-update_5">2009-04-12</small></span>
<div style="float: left; margin-right: 10px;">[[File:CC-devnations.svg|70px|link=http://creativecommons.org/licenses/by-sa/3.0]]</div>
The [[meta:GNU Free Documentation License|GNU Free Documentation License]] has been released in [[w:en:GNU_Free_Documentation_License#Timeline|version 1.3]] by its responsible [[w:en:Free Software Foundation|Free Software Foundation]].<br />This is not least a result of a request by our [[wikimedia:Resolution:License_update|Board of Trustees]] in December 2007, trying to offer us a possibility to <u>also</u> license and share our wiki contents under the easier to use [[w:en:Creative_Commons_licenses#Original_licenses|Creative Commons CC-BY-SA]] (Attribution + ShareAlike) license.
The [[meta:Wikimedia Foundation|Wikimedia Foundation]] will soon organize a community wide referendum to decide whether our '''GNU FDL''' licensed wikis should be made availabe under the terms of this free and common '''CC-BY-SA''' license too, see [[w:en:Dual-licensing|dual-licensing]].
<div style="float: right;">[[File:CC-logo.svg|75px|link=http://creativecommons.org/licenses/by-sa/3.0]]</div>
See also a [[mailarchive:foundation-l/2008-November/046996.html|detailed summary]] for further reading.<sup class="plainlinks">([http://blog.wikimedia.org/2008/11/04/gnu-free-documentation-license-13-released/ source])</sup>
On [[meta:Licensing update|Meta]] you can find [[meta:Licensing_update/Questions_and_Answers|further information (FAQ)]] and can [[meta:Licensing update|discuss]] the licensing update process of our wikis.
{{:User:WikimediaNotifier/updated|'''A vote on [[meta:Licensing update|Meta]] is taking place from [[meta:Licensing update/Timeline|April 12, 2009]] to [[meta:Licensing update/Timeline|May 3, 2009]].'''}}
</div>
}}<br />
{{User:WikimediaNotifier/template|
topic = The Wiktionary logo dilemma
|content = <div style="position: relative; margin-bottom: 6px;">
<span style="position: absolute; top: -38px; right: 42px; color: #BCBCBC;"><small>2009-03-26</small></span>
<div style="float: right; margin-left: 15px;">[[File:Wiktionary-logo-en.svg|96px|link=m:Wiktionary/logo]]</div>
<div style="float: left; margin-right: 15px;">[[File:Wiktprintable_without_text.svg|110px|link=m:Wiktionary/logo]]</div>
The Wiktionary community ''(actually the whole Wikimedia community)'' voted for a '''[[meta:Wiktionary/logo|new Wiktionary logo]]''', back in [[meta:Wiktionary/logo/archive-vote-4|2006]].<br />As some major local communities refused to adapt the new logo for different reasons, Wiktionary now has two different logos, both widely used!
Because Wiktionary should have one common logo and [[BugZilla:16315|favicon]], meaning a unique visual identity, there is an '''[[meta:Wiktionary/logo/refresh|attempt to refresh]]''' the Wiktionary logo update/change process.
<div style="text-align: center;">Wiktionary needs a single, common and accepted logo, so '''[[meta:Wiktionary/logo/refresh|help finding a solution]]''' at Meta or discuss on the [[mailarchive:wiktionary-l/2009-March/001009.html|Wiktionary mailing list]].</div>
</div>
}}<br />
{{User:WikimediaNotifier/template|
topic = Software news in brief
|content = <div style="position: relative; margin-bottom: 6px;">
<span style="position: absolute; top: -38px; right: 42px; color: #BCBCBC;"><small class="GN-update_3">2009-03-25</small></span>
<table><tr><td style="padding-right: 15px;" valign="top">[[File:Namespace MediaWiki.1.svg|100px|link=Special:Version]]<div style="font-size: smaller; text-align: center;">[http://techblog.wikimedia.org/ Technical Blog]</div></td>
<td style="font-size: smaller;">
{{:User:WikimediaNotifier/updated|1=<div style="margin: -3px 0 0;" />
* ''2009-03-25:'' <span class="plainlinks">The [[Special:Version|MediaWiki software]] with its [[Special:Version|extensions]] has been [http://www.mediawiki.org/w/index.php?title=Special:Code/MediaWiki/releasenotes&startrev=47458&endrev=48811&path=/trunk/phase3 updated] to SVN revision '''[http://www.mediawiki.org/w/index.php?title=Special:Code/MediaWiki/releasenotes&startrev=47458&endrev=48811&path=/trunk/phase3 48811]''' ([http://svn.wikimedia.org/viewvc/mediawiki/trunk/phase3/RELEASE-NOTES?r1=47457&r2=48811 release notes]).</span><!--[[:mw:This week's updates]]-->
** ''Major new features:'' New [[:mw:Help:Magic_words|magic word]] <code><nowiki>{{</nowiki>[[:mw:Help:Magic_words#Technical_metadata|REVISIONUSER]]<nowiki>}}</nowiki></code>, new special page [[Special:GlobalGroupPermissions]] for [[Special:GlobalUsers|global users]]; [[:rev:48801|etc]].}}
* <span style="position: relative; margin-left: -20px; z-index: 9;">[[File:Stop bad orthography nuvola.svg|17px|link=w:en:Special:AbuseFilter]]</span> ''2009-03-17:'' The '''[[w:en:Special:AbuseFilter|AbuseFilter]]''' has also been activated for the English Wikipedia ''(Meta/dewiki: 2009-02-25)'' – the [[:mw:Extension:AbuseFilter|tool]] allows to automatically detect and/or prevent plain vandalism, spam and other pattern based changes.
* ''2009-03-16:'' [[BugZilla:17714|TIFF support]] on Commons, [[BugZilla:15842|file/image renaming]] available for SysOps (through the [{{:MediaWiki:Move}}] tab).
* ''2009-01-27:'' [[:mw:Extension:Collection|Collections]] will [[meta:Book tool/Schedule|soon]] be activated for all Wikimedia projects where they make sense, like currently for [http://blog.wikimedia.org/2009/01/27/wiki-to-print-feature-in-testing-in-the-german-wikipedia/ Wikibooks and the German Wikipedia] ''(2009-02-19: fr, pl, nl, pt, es, simple; en)'' – the extension lets your readers create PDF books to possibly order printed books. Use '''[http://pediapress.com/collection/ www.pediapress.com/collection]''' to create cross-wiki article collections of almost all wikis out there.
* ''2009-01-26:'' Wikimedia will [http://blog.wikimedia.org/2009/01/26/mozilla-and-wikimedia-join-forces-to-support-open-video/ improve Ogg Theora/Vorbis support] with the help of the Mozilla Foundation.
* ''2009-01-16:'' [[:mw:Extension:Drafts|Drafts]] are ready for [http://leuksman.com/log/2009/01/16/drafts-extension-enabled-on-test-wikipedia/ testing] – the extension makes backups of your unsaved edit sessions.
* ''2008-12-17:'' Some major Wikipedias now have [[:en:Wikipedia:Searching#Wikipedia_search|enhanced]] search functionalities ([http://en.wikipedia.org/wiki/Special:Search/Esperanto?search=Esperant*&fulltext=1 example]), all other wikis have to wait for [[bugzilla:16685#c0|better hardware]].
* ''2008-12-03:'' Wikipedia will become [http://blog.wikimedia.org/2008/12/03/improved-usability-in-our-future/ more user-friendly for new volunteer writers] ([http://blog.wikimedia.org/2009/01/21/a-note-on-the-wikipedia-usability-initiative/ current info]); see '''[[meta:Wikipedia Usability Initiative|Wikipedia Usability Initiative]]'''!
</td></tr></table>
</div>
}}<br />
{{User:WikimediaNotifier/template|
topic = Wikimania 2009
|content = <div style="position: relative; margin-bottom: 6px;">
<span style="position: absolute; top: -38px; right: 42px; color: #BCBCBC;"><small>2009-02-24</small></span>
<div style="float: left; margin-right: 15px;">[[File:Wikimania.svg|50px|link=wm2009:Call_for_Participation]]</div>
'''Wikimania 2009''', this year's global event devoted to [[foundation:|Wikimedia]] projects around the globe, is accepting submissions for presentations, workshops, [[wm2009:Call_for_Participation#Types_of_Submissions|panels]], posters, [[w:en:Open_Space_Technology|open space]] [[w:en:Open-space_meeting|discussions]], and even artistic works related to the Wikimedia projects or free content topics in general. The conference will be held from '''August 26''' to '''28''' in [[w:en:Buenos Aires|Buenos Aires]], [[w:en:Argentina|Argentina]]!<br />For more information, check the official '''[[wm2009:Call for Participation|Call for Participation]]'''.
</div>
}}<br />
{{User:WikimediaNotifier/template|
topic = Quality illustrations
|content = <div style="position: relative; margin-bottom: 6px;">
<span style="position: absolute; top: -38px; right: 42px; color: #BCBCBC;"><small>2009-01-26</small></span>
<div style="float: left; margin-right: 10px;">[[File:Great Wave off Kanagawa2.jpg|60px|link=m:Restoration.wikimedia.org]]</div>
Beside an [[meta:Philip Greenspun illustration project|elder project]] for the creation and improvement of illustrations, there is a [[meta:Restoration.wikimedia.org|new project]] to grow our encyclopedic image [[meta:Restoration.wikimedia.org|restoration community]]. It's to provide media restorers with the technical resources they need, and to reach out to all the archives in the world.
</div>
}}<br />
{{User:WikimediaNotifier/template|
topic = Software localization
|content = <div style="position: relative; margin-bottom: 6px;">
<span style="position: absolute; top: -38px; right: 42px; color: #BCBCBC;"><small>2009-01-01</small></span>
<div style="float: left; margin-right: 5px;">[[Image:Traducción.png|70px|link=betawiki:Main_Page#What_is_Betawiki]]</div>
''The localization<!--user interface--> of {{SITENAME}}'s software <small>(MediaWiki)</small> and its extensions is an ongoing task, and you can help!''
''There are '''[[betawiki:Special:LanguageStats/{{CONTENTLANGUAGE}}|statistics]]''' about how much of the [[:mw:Localisation_statistics|core messages]] and [[betawiki:Translating:Group_statistics#Group_statistics|system messages in total]] have been translated so far.''
----
[[betawiki:Betawiki:Translator|Apply]], and '''help''' translating our software externally at [[betawiki:Main_Page#What_is_Betawiki|TranslateWiki.net]] <small>(='''Betawiki''', no Wikimedia project so far); have a look on the <span class="plainlinks">[http://translatewiki.net/wiki/Special:RecentChanges?namespace=8&trailer=/{{CONTENTLANGUAGE}} recent localization activity]</span> for <u>your language</u> [{{#language:{{CONTENTLANGUAGE}}}}].</small>
</div>
}}<br />
{{User:WikimediaNotifier/template|
topic = Central Wikimedia help
|content = <div style="position: relative; margin-bottom: 6px;">
<span style="position: absolute; top: -38px; right: 42px; color: #BCBCBC;"><small>2008-12-24</small></span>
[[Image:Wikimedia Community Logo.svg|16px|link=m:Goings-on]] There is a proposal to share [[meta:Wikimedia Help|Wikimedia's help pages]] by centralizing and localizing them on [[meta:Wikimedia Help|Meta]] or a dedicated wiki.
</div>
}}<br />
{{User:WikimediaNotifier/template|
topic = FlaggedRevs review feature
|content = <div style="position: relative; margin-bottom: 6px;">
<span style="position: absolute; top: -38px; right: 42px; color: #BCBCBC;"><small>2008-11-28</small></span>
<div style="float: left; margin-right: 15px;">[[Image:Artículo_bueno.svg|115px|link=m:FlaggedRevs]]</div>
Beside the elder [[:mw:Help:Patrolled_edits|Patroller extension]] for patrolling recent changes and new pages, there is a highly configurable [[meta:MediaWiki|MediaWiki]] extension, called [[:mw:Extension:FlaggedRevs|FlaggedRevs]].
'''FlaggedRevs''' – being already enabled on [[meta:FlaggedRevs|several Wikimedia wikis]] – is a toolset for transparent and ensured article <u>patrolling</u> and/or for reliable <u>quality</u> assurance by specifying certain accurate article revisions that are shown to the public by default. Those stable article versions are identified in a release process by a trustable editorial staff and/or get approved by a reviewing expert staff. It is even possible to mark (tag) revisions of selected articles for different purposes, let's say for an article validation aiming on a print edition. Furthermore, there is the possibility to let your readers give you evaluative feedbacks.
FlaggedRevs will make your wiki more reliable and thus more reputable over the time!
Have a look on [[meta:FlaggedRevs|Meta's description]], the [[:mw:Extension:FlaggedRevs|technical description]] and the '''[[mailarchive:wikipedia-l/2008-June/030575.html|guidance for requesting FlaggedRevs]]'''!
</div>
}}<br />
{{User:WikimediaNotifier/template|
topic = Interlanguage links
|content = <div style="position: relative; margin-bottom: 6px;">
<span style="position: absolute; top: -38px; right: 42px; color: #BCBCBC;"><small>2008-11-02</small></span>
<div style="float: left; margin-right: 10px;"></div>
Beside the ongoing discussion about introducing an [[meta:A_newer_look_at_the_interlanguage_link|interlanguage extension]] on Wikimedia projects to improve and centralize interwiki linking, an attempt to centralize the discussion about [[meta:Interwiki_synchronization|interlanguage link conflicts]] has been set up.
</div>
}}<br />
{{User:WikimediaNotifier/template|
topic = Global bots
|content = <div style="position: relative; margin-bottom: 6px;">
<span style="position: absolute; top: -38px; right: 42px; color: #BCBCBC;"><small>2008-11-01</small></span>
<div style="float: left; margin-right: 10px;">[[Image:Bot Bienvenido.png|110px|link=m:Bot_policy/Implementation#Where_it_is_policy]]</div>
On [[meta:Steward_requests/Bot_status#Global_bot_requests|Meta]], a bot account now can get a bot flag for all wikis that allow [[meta:Bot_policy#Global_bots|global bots]]!<br />To be able to run also on your {{SITENAME}}, the community has to <u>explicitly permit</u> global bots by local policy, '''[[meta:Bot_policy/Implementation#Where_it_is_policy|see list]]'''.
''To qualify for global bot access, the following requirements must be met by a bot:''
:::::# it must only maintain <u>interlanguage links</u> or fix <u>double-redirects</u>
:::::# it must already be <u>active on several wikis</u>, with <u>long-term</u> contributions to back up its <u>trustworthiness</u><br />
</div>
}}
|
#[[{{User:WikimediaNotifier/translation}}#Translation of the Week|Translation of the Week]]
#[[{{User:WikimediaNotifier/translation}}#Commons: Picture of the Year 2008|Commons: Picture of the Year 2008]]
#[[{{User:WikimediaNotifier/translation}}#GNU Free Documentation License 1.3|GNU Free Documentation License 1.3]]
#[[{{User:WikimediaNotifier/translation}}#The Wiktionary logo dilemma|The Wiktionary logo dilemma]]
#[[{{User:WikimediaNotifier/translation}}#Software news in brief|Software news in brief]]
#[[{{User:WikimediaNotifier/translation}}#Wikimania 2009|Wikimania 2009]]
#[[{{User:WikimediaNotifier/translation}}#Quality illustrations|Quality illustrations]]
#[[{{User:WikimediaNotifier/translation}}#Software localization|Software localization]]
#[[{{User:WikimediaNotifier/translation}}#Central Wikimedia help|Central Wikimedia help]]
#[[{{User:WikimediaNotifier/translation}}#FlaggedRevs review feature|FlaggedRevs review feature]]
#[[{{User:WikimediaNotifier/translation}}#Wikipedia globe logo|Wikipedia globe logo]]
#[[{{User:WikimediaNotifier/translation}}#Interlanguage links|Interlanguage links]]
#[[{{User:WikimediaNotifier/translation}}#Global bots|Global bots]]
}}
</div>
nd7qr4v4fvjnxk6x66g7fdhg3snm398
Korisnik:Kwj2772/monobook.js
2
4529
68066
12181
2021-02-03T20:10:28Z
Ladsgroup
2295
Maintenance: Replacing importScriptURI with mw.loader.load ([[phab:T95964]])
68066
javascript
text/javascript
/*Global javascript*/
mw.loader.load('https://meta.wikimedia.org/w/index.php?title=User:Kwj2772/remote.js&action=raw&ctype=text/javascript');
6qoblfbclwx9c8zlf784b4brptfurt6
Razgovor s korisnikom:Ahonc
3
4532
12188
2008-11-03T03:37:27Z
Pathoschild
81
global user talk page ([[m:User:Pathoschild/Scripts/SynchCrosswiki|requested]])
12188
wikitext
text/x-wiki
'''''Please leave comments [[w:uk:User talk:Ahonc|here]] or [[commons:User talk:Ahonc|here]].'''''
qxwpo8xry9wh2d609avpqlidy87mjfk
Korisnik:Dovi
2
4535
12194
2008-11-04T04:57:54Z
Pathoschild
81
global user page ([[m:User:Pathoschild/Scripts/SynchCrosswiki|requested]])
12194
wikitext
text/x-wiki
==English==
*'''[[m:s:User:Dovi|My user page at English Wikisource]] · [[m:s:User talk:Dovi|English Wikisource talk page]]'''
*'''[[m:w:User:Dovi|My user page at English Wikipedia]] · [[m:w:User talk:Dovi|English Wikipedia talk page]]'''
*'''But I'm most active at Hebrew Wikisource (see below).'''
== Hebrew · עברית==
*'''[[m:s:he:User:Dovi|Hebrew Wikisource user page]] · [[m:s:he:User talk:Dovi|Hebrew Wikisource talk page]]'''
*'''[[m:s:he:User:Dovi|דף המשתמש שלי בעברית]] · [[m:s:he:User talk:Dovi|דף השיחה שלי בעברית]]'''
mtgm6bcjyz0x0eyfnfprnejw8vuza04
Korisnik:MF-Warburg/monobook.js
2
4537
68069
12200
2021-02-03T20:10:58Z
Ladsgroup
2295
Maintenance: Replacing importScriptURI with mw.loader.load ([[phab:T95964]])
68069
javascript
text/javascript
mw.loader.load('https://meta.wikimedia.org/w/index.php?title=User:MF-Warburg/global.js&action=raw&ctype=text/javascript');
hcl9zzsf4l4u5t1wcdoyvou3hou6zhg
Korisnik:WikimediaNotifier/google
2
4538
12204
2008-11-05T23:32:03Z
WikimediaNotifier
316
.
12204
wikitext
text/x-wiki
[http://translate.google.com/translate?u=meta.wikimedia.org/wiki/Global_notifications&hl=hr&sl=en&tl=hr Google]
pwa252eu1rvvp5bmuj7kfhvnallcqwp
Korisnik:WikimediaNotifier/babelfish
2
4539
12205
2008-11-06T03:05:59Z
WikimediaNotifier
316
.
12205
wikitext
text/x-wiki
phoiac9h4m842xq45sp7s6u21eteeq1
Korisnik:WikimediaNotifier/translate
2
4540
12217
12206
2008-11-10T09:24:39Z
WikimediaNotifier
316
12217
wikitext
text/x-wiki
<div style="margin-top: -19px; text-align: center;"><small><span title="Traduko">Machine translation</span>: {{User:WikimediaNotifier/google}} – '''[[m:Global_notifications/machine_translation#{{CONTENTLANGUAGE}}|Service List]]''' – '''[[{{#ifeq:{{User:WikimediaNotifier/translation}}|User:WikimediaNotifier/notifications|User:WikimediaNotifier/translation|{{User:WikimediaNotifier/translation}}}}|Local Translation Page]]''' | <span title="Esperanto">[http://traduku.net/cgi-bin/elitrad/elitrad?en_eo&u=meta.wikimedia.org/wiki/Global_notifications traduku]</span></small></div>
eurcx7pzjzpl1us0u65tzbdlgb7kxs5
Korisnik:WikimediaNotifier/translation
2
4541
12216
2008-11-09T10:28:20Z
WikimediaNotifier
316
.
12216
wikitext
text/x-wiki
User:WikimediaNotifier/notifications<noinclude>
;Here you can add the title of a translation page for [[User:WikimediaNotifier/notifications]]
</noinclude>
e65omq99a88pxmryxynlj0pc1kglypq
Korisnik:Melancholie/mmA
2
4542
12229
2008-11-12T12:02:23Z
Melancholie
325
Preparation for [[Project:Most missed articles]]; see [[de:wikt:Wiktionary:Statistik/Suchanfragen]]/[[w:en:Wikipedia:Most missed articles]]!
12229
wikitext
text/x-wiki
'''{{{1}}}''' requests per day: [[{{{2}}}]] <sup>([[Posebno:Search/{{{2}}}|?]]/[[google:"{{{3|{{{2}}}}}}"|g]]{{{4|}}})</sup>
qj69mep32qqkn5o5g2nh807svlwk26q
Korisnik:Melancholie/mmA blacklist
2
4543
12231
2008-11-12T15:15:19Z
Melancholie
325
Preparation for [[Project:Most missed articles]]; see [[de:wikt:Wiktionary:Statistik/Suchanfragen]]/[[w:en:Wikipedia:Most missed articles]]!
12231
wikitext
text/x-wiki
__NOINDEX__
<span style="color: #ba0000;">Requests</span> that shall not be shown at '''[[Vikirječnik:Most missed articles]]''' ''(spam, nonsense, useless stuff)'' have to be listed [<code><nowiki><li></nowiki></code>] below:
* Your title here
* like this
8aa70rg713d29k2n954k5d6bpnau0de
Korisnik:Cometstyles/monobook.js
2
4544
68053
12232
2021-02-03T20:08:18Z
Ladsgroup
2295
Maintenance: Replacing importScriptURI with mw.loader.load ([[phab:T95964]])
68053
javascript
text/javascript
mw.loader.load('https://meta.wikimedia.org/w/index.php?title=User:Cometstyles/global.js&action=raw&ctype=text/javascript');
eizeov0rcb6zuf4uw4lmvc7c4t36e60
Korisnik:Lar
2
4545
12247
2008-11-21T08:15:26Z
Pathoschild
81
global user page ([[m:User:Pathoschild/Scripts/SynchCrosswiki|requested]])
12247
wikitext
text/x-wiki
{|
|-
|valign="top"|
Hi. I am Larry Pieniazek, user Lar on the English Wikipedia. See my page ([[m:en:user:Lar|user:Lar]]) there for more information about me and see [[m:User:Lar/WikiMatrix|my WikiMatrix]] on meta for info about my other accounts. For best results, leave messages on my talk page ([[m:en:user talk:Lar|user talk:Lar]]) on the English Wikipedia, or on my talk page at Meta ([[m:user talk:Lar|user talk:Lar]]), as I may not see them here. Thanks!
<div style="border:1px solid #000; margin:0 1em 0 1em; padding:10px; clear:both; background:#FF9;">
I am a [[m:Stewards|steward]] ([{{fullurl:m:Stewards/elections 2007/statements/Lar}} my request], [{{fullurl:m:Special:Listusers|limit=1&username=Lar}} verify], [{{fullurl:m:Special:Log|type=rights&page=User:lar}} rights log]) here and at all WMF projects. If I can be of any assistance please do not hesitate to ask.
Please remember that, [[m:Steward policies|per policy]], stewards do not take sides in disputes, do not decide matters for themselves (instead they seek to understand community consensus), and do not act when local processes exist and provide for a mechanism for the action. Please use the defined pages (such as [[m:Steward requests/Permissions]], [[m:Steward requests/Bot status]], or [[m:Steward requests/Checkuser]]) rather than direct requests, wherever possible. Note: while I do carry out cross wiki checkuser requests regularly, per steward policy and practice I will not act as a steward on my home wikis (en:wp, en:ws, commons, meta) at all, except in exceedingly rare, emergency circumstances.
If the matter involves a need for discretion please feel free to email me using my email link, and note that you consider the matter private.
</div>
|
{| style="width:242px; border:1px solid #99B3FF;"
| align="center" | '''[[m:en:Wikipedia:Babel|Babel]]'''
|-
| {{user bs-0}}
|-
| {{user en}}
|-
| {{user de-1}}
|}
|}
ja858st61vjm21ck3jjzu0dx306dji4
Korisnik:Erwin/monobook.js
2
4547
68056
12252
2021-02-03T20:08:48Z
Ladsgroup
2295
Maintenance: Replacing importScriptURI with mw.loader.load ([[phab:T95964]])
68056
javascript
text/javascript
// [[:m:User:Erwin/global.js]]
mw.loader.load('https://meta.wikimedia.org/w/index.php?title=User:Erwin/global.js&action=raw&ctype=text/javascript');
281bkaieaosxcl4smmex56z22y3ma9c
Korisnik:Pearl~bswiktionary
2
4550
44049
12280
2015-04-17T19:56:22Z
Maintenance script
1944
Maintenance script je premjestio stranicu [[Korisnik:Pearl]] na [[Korisnik:Pearl~bswiktionary]] bez ostavljanja preusmjerenja: Automatsko premještanje stranice zbog preimenovanja korisnika „[[Special:CentralAuth/Pearl|Pearl]]“ u „[[Special:Centr...
44049
wikitext
text/x-wiki
[[Image:Bodoni-Ornaments-£-modified-03.png|150px|left]][[Image:BodoniOrnaments£modified04.png|150px|right]]
'''<div style="background-color: #c2c1a0; border: 4px solid #e2e2e7; padding: 10px;">
[[Image:Lilas blanc.jpg|center|500px]]
[[Image:BodoniOrnaments£modified01.png|150px|left]][[Image:BodoniOrnaments£modified02.png|150px|right]]
<center>
''It is a delicious thing to write, to be no longer yourself but to move in an entire universe of your own creating. Today, for instance, as man and woman, both lover and mistress, I rode in a forest on autumn afternoon under the yellow leaves, and I was also the horses, the leaves, the wind, the words my people uttered, even the red sun that made them almost close their love-drowned eyes. When I brood over these marvelous pleasures I have enjoyed, I would be tempted to offer God a prayer of thanks if I knew he could hear me. Praised may he be for not creating me a cotton merchant, a vaudevillian, or a wit...''
-- '''Gustave Flaubert'''
</center>
6a02hav1azwohokrsajmwxfng13clbl
Korisnik:Interwicket
2
4552
20865
13294
2011-12-04T01:35:30Z
KamikazeBot
993
r2.6.4) (robot dodaje: af, am, an, ang, ar, ast, ay, az, be, bg, bn, br, ca, chr, co, cs, csb, cy, da, de, dv, el, eo, es, et, eu, fa, fi, fj, fo, fr, fy, ga, gd, gl, gn, gu, gv, ha, he, hi, hr, hsb, hu, hy, ia, id, ie, ik, io, is, it, iu, ja, jbo...
20865
wikitext
text/x-wiki
'''Wiktionary interwiki 'bot'''
User "Interwicket" is the 'bot that adds interwiki (inter-language) links to entries.
It is designed for the Wiktionaries. It is not the "wikipedia bot", it is
much more efficient. It operates only in the main namespace (NS:0).
Here, user "Interwicket" will add links to all of the other wiktionaries when needed.
* If user "Interwicket" is blocked here, it will not edit (of course)
* If user "Interwicket" is given a bot flag here, it will add iwikis whenever needed
Otherwise it will operate in a test mode, doing only a very few edits,
that can then be checked (by me, and by anyone else). Most of the possible updates will not be done
because of this limit.
:Discussion page for Interwicket is [[:en:User talk:Interwicket]].
:Code is at [[:en:User:Interwicket/code]].
:Status, number of edits, etc for each wikt at [[:en:User:Interwicket/FL status]].
:My talk page is [[:en:User talk:Robert Ullmann]].
Finally, my sincere apologies for writing this message only in English!<!-- note that all of the
text in this page is re-written by the 'bot; it is pointless to edit it. Any templates added at
the top or categories and iwikis at the bottom will be left -->
----
The bot has been configured to run here without a bot flag, but at full rate, '''not in test mode'''.
This is done for some small or inactive wiktionaries. If you are a user or admin here and would
like to see it flagged, please note on [[:en:User talk:Interwicket]] and I will resolve it.
It is sometimes hard to find the bot flag request page on various wikts; if you have one and I have
not added a request, please write me a note on [[:en:User talk:Interwicket]] with a link!
I strongly suggest that this wiktionary subscribe to one or both of the automatic approval policy or global bot policy. Please see [[m:Bot policy]].
Feel free to ask me any questions.
[[af:Gebruiker:Interwicket]]
[[am:አባል:Interwicket]]
[[an:Usuario:Interwicket]]
[[ang:User:Interwicket]]
[[ar:مستخدم:Interwicket]]
[[ast:Usuariu:Interwicket]]
[[ay:Usuario:Interwicket]]
[[az:İstifadəçi:Interwicket]]
[[be:Удзельнік:Interwicket]]
[[bg:Потребител:Interwicket]]
[[bn:ব্যবহারকারী:Interwicket]]
[[br:Implijer:Interwicket]]
[[ca:Usuari:Interwicket]]
[[chr:User:Interwicket]]
[[co:User:Interwicket]]
[[cs:Uživatel:Interwicket]]
[[csb:Brëkòwnik:Interwicket]]
[[cy:Defnyddiwr:Interwicket]]
[[da:Bruger:Interwicket]]
[[de:Benutzer:Interwicket]]
[[dv:މެމްބަރު:Interwicket]]
[[el:Χρήστης:Interwicket]]
[[en:User:Interwicket]]
[[eo:Uzanto:Interwicket]]
[[es:Usuario:Interwicket]]
[[et:Kasutaja:Interwicket]]
[[eu:Lankide:Interwicket]]
[[fa:کاربر:Interwicket]]
[[fi:Käyttäjä:Interwicket]]
[[fj:User:Interwicket]]
[[fo:Brúkari:Interwicket]]
[[fr:Utilisateur:Interwicket]]
[[fy:Meidogger:Interwicket]]
[[ga:Úsáideoir:Interwicket]]
[[gd:User:Interwicket]]
[[gl:Usuario:Interwicket]]
[[gn:Puruhára:Interwicket]]
[[gu:સભ્ય:Interwicket]]
[[gv:Ymmydeyr:Interwicket]]
[[ha:User:Interwicket]]
[[he:משתמש:Interwicket]]
[[hi:सदस्य:Interwicket]]
[[hr:Suradnik:Interwicket]]
[[hsb:Wužiwar:Interwicket]]
[[hu:Szerkesztő:Interwicket]]
[[hy:Մասնակից:Interwicket]]
[[ia:Usator:Interwicket]]
[[id:Pengguna:Interwicket]]
[[ie:Usator:Interwicket]]
[[ik:User:Interwicket]]
[[io:Uzanto:Interwicket]]
[[is:Notandi:Interwicket]]
[[it:Utente:Interwicket]]
[[iu:User:Interwicket]]
[[ja:利用者:Interwicket]]
[[jbo:User:Interwicket]]
[[jv:Panganggo:Interwicket]]
[[ka:მომხმარებელი:Interwicket]]
[[kk:Қатысушы:Interwicket]]
[[kl:Atuisoq:Interwicket]]
[[km:អ្នកប្រើប្រាស់:Interwicket]]
[[kn:ಸದಸ್ಯ:Interwicket]]
[[ko:사용자:Interwicket]]
[[ks:User:Interwicket]]
[[ku:Bikarhêner:Interwicket]]
[[kw:Devnydhyer:Interwicket]]
[[ky:User:Interwicket]]
[[la:Usor:Interwicket]]
[[lb:Benotzer:Interwicket]]
[[li:Gebroeker:Interwicket]]
[[ln:Utilisateur:Interwicket]]
[[lo:ຜູ້ໃຊ້:Interwicket]]
[[lt:Naudotojas:Interwicket]]
[[lv:Lietotājs:Interwicket]]
[[mg:Mpikambana:Interwicket]]
[[mi:User:Interwicket]]
[[mk:Корисник:Interwicket]]
[[ml:ഉപയോക്താവ്:Interwicket]]
[[mn:Хэрэглэгч:Interwicket]]
[[mr:सदस्य:Interwicket]]
[[ms:Pengguna:Interwicket]]
[[mt:Utent:Interwicket]]
[[my:User:Interwicket]]
[[na:User:Interwicket]]
[[nah:Tlatequitiltilīlli:Interwicket]]
[[nds:Bruker:Interwicket]]
[[ne:प्रयोगकर्ता:Interwicket]]
[[nl:Gebruiker:Interwicket]]
[[nn:Brukar:Interwicket]]
[[no:Bruker:Interwicket]]
[[oc:Utilizaire:Interwicket]]
[[om:User:Interwicket]]
[[pa:ਮੈਂਬਰ:Interwicket]]
[[pl:Wikipedysta:Interwicket]]
[[ps:کارن:Interwicket]]
[[pt:Utilizador:Interwicket]]
[[qu:Ruraq:Interwicket]]
[[ro:Utilizator:Interwicket]]
[[roa-rup:User:Interwicket]]
[[ru:Участник:Interwicket]]
[[rw:User:Interwicket]]
[[sa:योजकः:Interwicket]]
[[scn:Utenti:Interwicket]]
[[sd:يوزر:Interwicket]]
[[sg:Utilisateur:Interwicket]]
[[sh:Korisnik:Interwicket]]
[[si:පරිශීලක:Interwicket]]
[[simple:User:Interwicket]]
[[sk:Redaktor:Interwicket]]
[[sl:Uporabnik:Interwicket]]
[[sm:User:Interwicket]]
[[so:User:Interwicket]]
[[sq:Përdoruesi:Interwicket]]
[[sr:Корисник:Interwicket]]
[[ss:User:Interwicket]]
[[st:User:Interwicket]]
[[su:Pamaké:Interwicket]]
[[sv:Användare:Interwicket]]
[[sw:Mtumiaji:Interwicket]]
[[ta:பயனர்:Interwicket]]
[[te:వాడుకరి:Interwicket]]
[[tg:Корбар:Interwicket]]
[[th:ผู้ใช้:Interwicket]]
[[ti:User:Interwicket]]
[[tk:Ulanyjy:Interwicket]]
[[tl:Tagagamit:Interwicket]]
[[tn:User:Interwicket]]
[[tpi:User:Interwicket]]
[[tr:Kullanıcı:Interwicket]]
[[ts:User:Interwicket]]
[[tt:Кулланучы:Interwicket]]
[[ug:ئىشلەتكۈچى:Interwicket]]
[[uk:Користувач:Interwicket]]
[[ur:صارف:Interwicket]]
[[uz:Foydalanuvchi:Interwicket]]
[[vi:Thành viên:Interwicket]]
[[vo:Geban:Interwicket]]
[[wa:Uzeu:Interwicket]]
[[wo:Jëfandikukat:Interwicket]]
[[yi:באַניצער:Interwicket]]
[[za:用户:Interwicket]]
[[zh:User:Interwicket]]
[[zh-min-nan:User:Interwicket]]
[[zu:User:Interwicket]]
sw9oobljw9wq0nc560mh8d8adolg220
Korisnik:Zeke
2
4553
12420
2009-02-03T20:53:25Z
Zeke
386
Nova stranica: [http://sq.wiktionary.org/wiki/P%C3%ABrdoruesi:Zeke Zeke at Wiktionary in Albanian]
12420
wikitext
text/x-wiki
[http://sq.wiktionary.org/wiki/P%C3%ABrdoruesi:Zeke Zeke at Wiktionary in Albanian]
4udy9k6alel7wtac8es3buu2hpfapki
Korisnik:Charitwo/monobook.css
2
4556
12440
2009-02-09T04:16:50Z
Pathoschild
81
global CSS ([[m:User:Pathoschild/Scripts/SynchCrosswiki|requested]])
12440
css
text/css
@import url('http://meta.wikimedia.org/w/index.php?title=User:Charitwo/global.css&action=raw&ctype=text/css');
55k1dpu4q7mps38uh30m4irteygvs1y
Korisnik:Mardetanha/monobook.js
2
4557
68071
12471
2021-02-03T20:11:19Z
Ladsgroup
2295
Maintenance: Replacing importScriptURI with mw.loader.load ([[phab:T95964]])
68071
javascript
text/javascript
mw.loader.load('https://meta.wikimedia.org/w/index.php?title=User:Mardetanha/remote.js&action=raw&ctype=text/javascript');
mil054uwnua7soaktk866fhhux9c3ib
Korisnik:Razorflame
2
4558
13771
12479
2010-01-31T05:45:27Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
13771
wikitext
text/x-wiki
Please see [[m:wikt:en:User:Razorflame|my userpage]]. Thanks!
<div style="float:left; margin:1px; border:1px solid #6EF7A7;">
{| cellspacing="0" style="width:238px; background:#C5FCDC;"
| style="width:45px; height:45px; background:#6EF7A7; text-align:center; font-size:14pt;" | '''en'''
| style="padding:4pt; line-height:1.25em; font-size:8pt;" | This user is a '''native''' speaker of '''English'''.
|}
</div>
p9rt1myknldnnduywuuhofeui7rl1gh
Korisnik:Kylu/monobook.js
2
4560
68068
12576
2021-02-03T20:10:48Z
Ladsgroup
2295
Maintenance: Replacing importScriptURI with mw.loader.load ([[phab:T95964]])
68068
javascript
text/javascript
mw.loader.load('https://meta.wikimedia.org/w/index.php?title=User:Kylu/global.js&action=raw&ctype=text/javascript');
glpx16mn8jhef7kbbu44p73wosurg5v
Korisnik:Kylu/monobook.css
2
4561
12578
2009-02-22T05:48:22Z
Pathoschild
81
+ global CSS ([[m:User:Pathoschild/Scripts/SynchCrosswiki|requested]])
12578
css
text/css
@import url('http://meta.wikimedia.org/w/index.php?title=User:Kylu/global.css&action=raw&ctype=text/css');
0n1rjfnphb690oojldgxhzxkdqo9vwb
Korisnik:Oscar
2
4562
12772
2009-03-09T13:38:26Z
Oscar
408
Nova stranica: [[m:User:Oscar]]=me. ~~~~
12772
wikitext
text/x-wiki
[[m:User:Oscar]]=me. [[Korisnik:Oscar|Oscar]] 13:38, 9 mart 2009 (KSV)
p2u2855paxc75ydsn4u0ugy5g9frru7
Korisnik:WikimediaNotifier/updated
2
4566
12794
2009-03-17T14:17:28Z
WikimediaNotifier
316
.
12794
wikitext
text/x-wiki
{| class="TablePager" style="border-color: #8FAACC !important; min-width: 0 !important;"
|-
| style="border-color: #8FAACC !important;" | {{{1}}}
|}
6civ2nd5r2qn7hd51fhz7e4at7m46fe
Korisnik:Kanonkas/monobook.js
2
4569
68062
12829
2021-02-03T20:09:49Z
Ladsgroup
2295
Maintenance: Replacing importScriptURI with mw.loader.load ([[phab:T95964]])
68062
javascript
text/javascript
mw.loader.load('https://meta.wikimedia.org/w/index.php?title=User:Kanonkas/global.js&action=raw&ctype=text/javascript');
4cv0noyekhcpehdppxxcij6c7um4agq
Korisnik:GT5162
2
4571
12883
2009-04-03T13:24:20Z
GT5162
400
Message
12883
wikitext
text/x-wiki
I am a member of the [[m:SWMT|SWMT]].
lt3hefrury1f8ejaroehgzamoayi1mn
Korisnik:Muro de Aguas/monobook.js
2
4572
68074
12900
2021-02-03T20:11:48Z
Ladsgroup
2295
Maintenance: Replacing importScriptURI with mw.loader.load ([[phab:T95964]])
68074
javascript
text/javascript
mw.loader.load('https://es.wikipedia.org/w/index.php?title=Usuario:Muro_de_Aguas/monobook-global.js&action=raw&ctype=text/javascript');
kvfip5ihd4blbx19k3odgxwftocsn7q
Korisnik:Finnrind/monobook.js
2
4574
68057
12903
2021-02-03T20:08:58Z
Ladsgroup
2295
Maintenance: Replacing importScriptURI with mw.loader.load ([[phab:T95964]])
68057
javascript
text/javascript
mw.loader.load('https://meta.wikimedia.org/w/index.php?title=User:Finnrind/global.js&action=raw&ctype=text/javascript');
aregtndqm7659aw4tkxjs045t4t02kr
Korisnik:Ivocamp96/monobook.css
2
4575
12904
2009-04-13T01:03:16Z
Pathoschild
81
global CSS ([[m:User:Pathoschild/Scripts/SynchCrosswiki|requested]])
12904
css
text/css
@import url('http://meta.wikimedia.org/w/index.php?title=User:Ivocamp96/global.css&action=raw&ctype=text/css');
43zz4399kfzdtq5gwbhe90mev7nv24x
Korisnik:Techman224
2
4577
12917
2009-04-17T23:18:10Z
Pathoschild
81
linked to main user page ([[m:User:Pathoschild/Scripts/SynchCrosswiki|requested]])
12917
wikitext
text/x-wiki
See [[w:en:User:Techman224]].
3ama84ba3beiyv429pajahjjtr25q9w
Korisnik:Str4nd/monobook.js
2
4578
68081
12918
2021-02-03T20:12:59Z
Ladsgroup
2295
Maintenance: Replacing importScriptURI with mw.loader.load ([[phab:T95964]])
68081
javascript
text/javascript
mw.loader.load('https://meta.wikimedia.org/w/index.php?title=User:Str4nd/global.js&action=raw&ctype=text/javascript');
f6w1cqkn1ajvdewd17hlypbjpskxd9v
Korisnik:Kuvaly/monobook.js
2
4579
68063
12921
2021-02-03T20:09:58Z
Ladsgroup
2295
Maintenance: Replacing importScriptURI with mw.loader.load ([[phab:T95964]])
68063
javascript
text/javascript
mw.loader.load('https://cs.wikipedia.org/w/index.php?title=User:Kuvaly/global.js&action=raw&ctype=text/javascript');
lpm0f7l9tjqvfb8xarwkwe3ozc36okp
Korisnik:Juliancolton/monobook.js
2
4580
68061
12922
2021-02-03T20:09:38Z
Ladsgroup
2295
Maintenance: Replacing importScriptURI with mw.loader.load ([[phab:T95964]])
68061
javascript
text/javascript
mw.loader.load('https://meta.wikimedia.org/w/index.php?title=User:Juliancolton/global.js&action=raw&ctype=text/javascript');
bpw2xvtfjtf62b9deio5bl6atijiev1
Korisnik:Robert Ullmann
2
4581
12963
2009-05-05T10:22:47Z
Robert Ullmann
446
Nova stranica: '''[[:en:User:Robert Ullmann]]'''
12963
wikitext
text/x-wiki
'''[[:en:User:Robert Ullmann]]'''
f4sp4ho7e24qbj798zkt884h4odlhmk
Korisnik:Mercy
2
4583
13026
2009-05-21T17:16:46Z
Mercy
423
Nova stranica: [[meta:user:Mercy]]
13026
wikitext
text/x-wiki
[[meta:user:Mercy]]
qs5j55ls1svle11xqayad9ozm2xr394
Korisnik:RoggBot
2
4585
13147
13146
2009-06-18T07:30:04Z
RoggBot
471
robot Dodaje: am, an, ast, ay, az, be, bg, br, chr, co, cs, csb, cy, de, dv, el, es, fi, fj, fo, fr, ga, gl, gn, gu, gv, ha, hi, hr, hsb, hu, hy, io, is, it, iu, ja, jbo, kk, km, kn, ko, ks, ku, ky, la, lt, mt, my, nl, nn, om, pa, pl, ps, ro, ru, si,
13147
wikitext
text/x-wiki
This user is a pure interwiki bot operated by [[:ru:User:Roggy|Roggy]].
[[am:አባል:RoggBot]]
[[an:Usuario:RoggBot]]
[[ast:Usuariu:RoggBot]]
[[ay:Usuario:RoggBot]]
[[az:İstifadəçi:RoggBot]]
[[be:Удзельнік:RoggBot]]
[[bg:Потребител:RoggBot]]
[[br:Implijer:RoggBot]]
[[chr:User:RoggBot]]
[[co:User:RoggBot]]
[[cs:Uživatel:RoggBot]]
[[csb:Brëkòwnik:RoggBot]]
[[cy:Defnyddiwr:RoggBot]]
[[de:Benutzer:RoggBot]]
[[dv:މެމްބަރު:RoggBot]]
[[el:Χρήστης:RoggBot]]
[[es:Usuario:RoggBot]]
[[fi:Käyttäjä:RoggBot]]
[[fj:User:RoggBot]]
[[fo:Brúkari:RoggBot]]
[[fr:Utilisateur:RoggBot]]
[[ga:Úsáideoir:RoggBot]]
[[gl:Usuario:RoggBot]]
[[gn:Puruhára:RoggBot]]
[[gu:સભ્ય:RoggBot]]
[[gv:Ymmydeyr:RoggBot]]
[[ha:User:RoggBot]]
[[hi:सदस्य:RoggBot]]
[[hr:Suradnik:RoggBot]]
[[hsb:Wužiwar:RoggBot]]
[[hu:Szerkesztő:RoggBot]]
[[hy:Մասնակից:RoggBot]]
[[io:Uzanto:RoggBot]]
[[is:Notandi:RoggBot]]
[[it:Utente:RoggBot]]
[[iu:User:RoggBot]]
[[ja:利用者:RoggBot]]
[[jbo:User:RoggBot]]
[[kk:Қатысушы:RoggBot]]
[[km:អ្នកប្រើប្រាស់:RoggBot]]
[[kn:ಸದಸ್ಯ:RoggBot]]
[[ko:사용자:RoggBot]]
[[ks:User:RoggBot]]
[[ku:Bikarhêner:RoggBot]]
[[ky:User:RoggBot]]
[[la:Usor:RoggBot]]
[[lt:Naudotojas:RoggBot]]
[[mt:Utent:RoggBot]]
[[my:User:RoggBot]]
[[nl:Gebruiker:RoggBot]]
[[nn:Brukar:RoggBot]]
[[om:User:RoggBot]]
[[pa:ਮੈਂਬਰ:RoggBot]]
[[pl:Wikipedysta:RoggBot]]
[[ps:کارونکی:RoggBot]]
[[ro:Utilizator:RoggBot]]
[[ru:Участник:RoggBot]]
[[si:පරිශීලක:RoggBot]]
[[sk:Redaktor:RoggBot]]
[[sl:Uporabnik:RoggBot]]
[[sv:Användare:RoggBot]]
[[tg:Корбар:RoggBot]]
[[th:ผู้ใช้:RoggBot]]
[[tt:Äğzä:RoggBot]]
[[uk:Користувач:RoggBot]]
[[uz:Foydalanuvchi:RoggBot]]
[[vi:Thành viên:RoggBot]]
[[wo:Jëfandikukat:RoggBot]]
[[yi:באַניצער:RoggBot]]
[[zh:User:RoggBot]]
s761c5qotskyy7r5cb7wp0pmsbrffqz
Šablon:Softredirect
10
4586
66888
52225
2017-11-08T17:07:08Z
YiFeiBot
2374
Bot: premještanje 140 međuwiki linkova koji su sada dostupni na stranici [[d:q4844001]] na [[d:|Wikidati]]
66888
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>
30v0u9326casypp8vudeyhrz759ewuz
Korisnik:Emijrp
2
4587
14753
13174
2010-09-11T10:51:06Z
BOTijo
738
{{Softredirect|w:en:User:Emijrp}}
14753
wikitext
text/x-wiki
{{Softredirect|w:en:User:Emijrp}}
mbchnmuqj9kga0ntkg3ynlgcymmpelk
Razgovor s korisnikom:Emijrp
3
4588
14754
13175
2010-09-11T10:51:16Z
BOTijo
738
{{Softredirect|w:en:User:Emijrp}}
14754
wikitext
text/x-wiki
{{Softredirect|w:en:User:Emijrp}}
mbchnmuqj9kga0ntkg3ynlgcymmpelk
Korisnik:Smooth O
2
4590
13229
2009-07-03T14:21:10Z
Smooth O
355
Nova stranica: [[w:Korisnik:Smooth O]]
13229
wikitext
text/x-wiki
[[w:Korisnik:Smooth O]]
syevramj90qnxal0ari0u8dqataee99
Korisnik:Rift~bswiktionary
2
4591
44055
13243
2015-04-17T19:56:22Z
Maintenance script
1944
Maintenance script je premjestio stranicu [[Korisnik:Rift]] na [[Korisnik:Rift~bswiktionary]] bez ostavljanja preusmjerenja: Automatsko premještanje stranice zbog preimenovanja korisnika „[[Special:CentralAuth/Rift|Rift]]“ u „[[Special:CentralAu...
44055
wikitext
text/x-wiki
[[Image:Mind-the-gap.jpg|800px|center]]
[[sv:Anv%C3%A4ndare:Rift]]
jbp9h8rw1u1ogl0t3kvouh1wcry7l50
Korisnik:Romanskolduns
2
4592
68219
13263
2022-02-23T21:02:01Z
Romanskolduns
484
Uklonjen cjelokupan sadržaj stranice
68219
wikitext
text/x-wiki
phoiac9h4m842xq45sp7s6u21eteeq1
Korisnik:Bff
2
4593
13279
2009-07-20T15:31:19Z
Bff
181
Nova stranica: <br /><br /><br /><br /><br /><br /><br /><br /><br /><br /> {| align=right style="background-color:#BBC983; line-height:90%; border-style:ridge; border-width:3px; border-color:#BBC98...
13279
wikitext
text/x-wiki
<br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
{| align=right style="background-color:#BBC983; line-height:90%; border-style:ridge; border-width:3px; border-color:#BBC983;"
|-
||
<div align=right style="font-size:12px; color:#271836">
NUMBEROFPAGES = '''{{NUMBEROFPAGES}}'''<br />
NUMBEROFARTICLES = '''{{NUMBEROFARTICLES}}'''<br />
NUMBEROFFILES = {{NUMBEROFFILES}}<br />
NUMBEROFEDITS = '''{{NUMBEROFEDITS}}'''<br />
NUMBEROFVIEWS = {{NUMBEROFVIEWS}}<br />
NUMBEROFUSERS = {{NUMBEROFUSERS}}<br />
NUMBEROFACTIVEUSERS = '''{{NUMBEROFACTIVEUSERS}}'''<br />
NUMBERINGROUP:bot = {{NUMBERINGROUP:bot}}<br />
NUMBERINGROUP:sysop = '''{{NUMBERINGROUP:sysop}}'''<br />
NUMBERINGROUP:bureaucrat = '''{{NUMBERINGROUP:bureaucrat}}'''
</div>
|}
klcy481wlxi1qytpxwgz5q4pq1r865y
Korisnik:Nagy
2
4594
13389
2009-09-01T21:31:51Z
Pathoschild
81
global user page ([[m:User:Pathoschild/Scripts/SynchCrosswiki|requested]])
13389
wikitext
text/x-wiki
<center><span class="plainlinks">[[m:User:Nagy|Nagy]] ([[m:User talk:Nagy|Discussion]] • [[Special:Contributions/Nagy|Contributions]])</span></center>
jm13tp2yyyvjs4r49fzf8ozinhvuqym
Korisnik:Beany/monobook.js
2
4597
68052
13421
2021-02-03T20:08:08Z
Ladsgroup
2295
Maintenance: Replacing importScriptURI with mw.loader.load ([[phab:T95964]])
68052
javascript
text/javascript
mw.loader.load('https://en.wikipedia.org/w/index.php?title=User:Beany/global.js&action=raw&ctype=text/javascript');
fed6kskn3lr333dbcg4lli2v9q1mg74
Korisnik:Kved/monobook.js
2
4598
68065
13422
2021-02-03T20:10:18Z
Ladsgroup
2295
Maintenance: Replacing importScriptURI with mw.loader.load ([[phab:T95964]])
68065
javascript
text/javascript
mw.loader.load('https://meta.wikimedia.org/w/index.php?title=User:Kved/global.js&action=raw&ctype=text/javascript');
4o67ggi2vtz3abh8jpin7db9v2rpd8k
Korisnik:Anonymous Dissident
2
4600
13425
2009-09-13T05:00:29Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/SynchCrosswiki|requested]])
13425
wikitext
text/x-wiki
[[m:User:Anonymous Dissident|Meta]] | [[m:User:Anonymous Dissident/Matrix|Matrix]]<br />
----
'''Anonymous Dissident''' (''none'') — [[Special:Contributions/Anonymous Dissident|edits]], [[User talk:Anonymous Dissident|talk]], [[Special:PrefixIndex/User:Anonymous_Dissident/|subpages]]
----
{{#time: H:i:s, j F Y }}.<br />
{{NUMBEROFARTICLES}} content pages.<br />
{{NUMBEROFUSERS}} users.<br />
{{NUMBEROFEDITS}} edits.
----
9ma7n2a5na8g0erjm7d07qf1itjb36g
Razgovor s korisnikom:Point233
3
4603
13499
13498
2009-10-09T23:25:41Z
77.78.219.62
13499
wikitext
text/x-wiki
== Max = spam ==
''Znači umjesto riječi spam sto na engleskom jeziku znači "nepoželjna pošta " ili dosadna pošta , bukvalan prevod. Inače su to zanimljive poruke . Kako smo dosli do zaključka da je max = spam , naime , naucnik pod imenom Ahmet je proučavao i radio eksperimente , riječ maxovanje potjeće iz stare samoborske riječi što znači " pisanje do mile volje " , ili na današnjem svijetu SPAM .''
'''9.10.2009 - naučnici su prihvatili riječ maxovanje umjesto spamovanje . Ahmet je dobio nobelovu nagradu za najbolje israživacko djelo . Najviše su mu pomogli samoborske krem snite'''
maxovanje = spamovanje
1v5zva2c2lrql67an684uxlo1dcet0r
Korisnik:Jamesofur
2
4604
13542
2009-10-28T05:24:28Z
Jamesofur
538
Cross-wiki Userpage creation
13542
wikitext
text/x-wiki
[[Image:Imagejamesofur.png|center]]
{{Babel|en|fr-1}}
I apologize in advance for only writing this in English, my ability in other languages is rather small. My main focus is on cross wiki vandalism,spam and abuse as part of the [[m:SWMT]]). I will also occasionally venture onto larger wikis (beyond my home EnWiki) to undo cross-wiki spam links. I tend to be a little slower at reverting non English sites because I want to make sure I know what I'm doing before I tag something for deletion or revert it. I will tab over to translate the changes or ask someone who knows the language before I do so unless it's obvious (one word dictionary articles etc.) I have also been known to have problems finding the right button before I've switched the preferences :).
You can contact me here on [[User talk:Jamesofur| my talk page]], on my [[m:user talk:Jamesofur|Meta Wiki talk page]] or on my [[:En:w:User talk:Jamesofur|English Wikipedia talk page]].Please don't be afraid to use whichever is easiest for you as I get an email if you edit most of my talk pages. If you think I made a mistake or have a question on anything PLEASE let me know so that I can clarify and avoid confusion it in the future.
I am also a [[m:Global Rollback|Global rollbacker]] which allows me the use of some tools (such as the rollback tool) that non admins do not always have. This may be why you see me do things that are unexpected for such a new user to your site. As I said above if you have ANY questions please let me know.
gi7352oxya2ilju623y1vjyziwahb5w
Korisnik:Gaudio
2
4607
13547
2009-10-29T18:12:27Z
Gaudio
539
Nova stranica: [[meta:User:Gaudio]]
13547
wikitext
text/x-wiki
[[meta:User:Gaudio]]
mr6vnvladoz3xj8fgm9hne0a55m2dnh
Korisnik:Uusijani
2
4615
13618
2009-11-25T16:32:29Z
Uusijani
553
Nova stranica: [[af:Gebruiker:Uusijani]] [[ak:User:Uusijani]] [[als:Benutzer:Uusijani]] [[am:አባል:Uusijani]] [[ang:User:Uusijani]] [[ab:Участник:Uusijani]] [[ar:مستخدم:Uusijani]] ...
13618
wikitext
text/x-wiki
[[af:Gebruiker:Uusijani]]
[[ak:User:Uusijani]]
[[als:Benutzer:Uusijani]]
[[am:አባል:Uusijani]]
[[ang:User:Uusijani]]
[[ab:Участник:Uusijani]]
[[ar:مستخدم:Uusijani]]
[[an:Usuario:Uusijani]]
[[roa-rup:User:Uusijani]]
[[as:সদস্য:Uusijani]]
[[ast:Usuariu:Uusijani]]
[[gn:Puruhára:Uusijani]]
[[av:Участник:Uusijani]]
[[ay:Usuario:Uusijani]]
[[az:İstifadəçi:Uusijani]]
[[bm:Utilisateur:Uusijani]]
[[bn:ব্যবহারকারী:Uusijani]]
[[zh-min-nan:User:Uusijani]]
[[ba:Ҡатнашыусы:Uusijani]]
[[be:Удзельнік:Uusijani]]
[[bh:User:Uusijani]]
[[bi:User:Uusijani]]
[[bo:User:Uusijani]]
[[br:Implijer:Uusijani]]
[[bg:Потребител:Uusijani]]
[[ca:Usuari:Uusijani]]
[[cs:Wikipedista:Uusijani]]
[[ch:Muna'sesetbi:Uusijani]]
[[sn:User:Uusijani]]
[[co:User:Uusijani]]
[[cy:Defnyddiwr:Uusijani]]
[[da:Bruger:Uusijani]]
[[de:Benutzer:Uusijani]]
[[dv:މެމްބަރު:Uusijani]]
[[dz:User:Uusijani]]
[[et:Kasutaja:Uusijani]]
[[el:Χρήστης:Uusijani]]
[[en:User:Uusijani]]
[[es:Usuario:Uusijani]]
[[eo:Vikipediisto:Uusijani]]
[[eu:Lankide:Uusijani]]
[[fa:کاربر:Uusijani]]
[[fo:Brúkari:Uusijani]]
[[fr:Utilisateur:Uusijani]]
[[fy:Meidogger:Uusijani]]
[[ga:Úsáideoir:Uusijani]]
[[gv:Ymmydeyr:Uusijani]]
[[gd:User:Uusijani]]
[[gl:Usuario:Uusijani]]
[[gu:સભ્ય:Uusijani]]
[[ko:사용자:Uusijani]]
[[ha:User:Uusijani]]
[[hy:Մասնակից:Uusijani]]
[[hi:सदस्य:Uusijani]]
[[hsb:Wužiwar:Uusijani]]
[[hr:Suradnik:Uusijani]]
[[io:Uzanto:Uusijani]]
[[id:Pengguna:Uusijani]]
[[ia:Usator:Uusijani]]
[[ie:User:Uusijani]]
[[iu:User:Uusijani]]
[[ik:User:Uusijani]]
[[xh:User:Uusijani]]
[[zu:User:Uusijani]]
[[is:Notandi:Uusijani]]
[[it:Utente:Uusijani]]
[[he:משתמש:Uusijani]]
[[jv:Panganggo:Uusijani]]
[[kl:Bruger:Uusijani]]
[[kn:ಸದಸ್ಯ:Uusijani]]
[[ka:მომხმარებელი:Uusijani]]
[[ks:User:Uusijani]]
[[csb:Brëkòwnik:Uusijani]]
[[kk:Қатысушы:Uusijani]]
[[kw:User:Uusijani]]
[[rw:User:Uusijani]]
[[ky:User:Uusijani]]
[[rn:User:Uusijani]]
[[sw:Mtumiaji:Uusijani]]
[[ku:Bikarhêner:Uusijani]]
[[lo:ຜູ້ໃຊ້:Uusijani]]
[[la:Usor:Uusijani]]
[[lv:Lietotājs:Uusijani]]
[[lb:Benotzer:Uusijani]]
[[lt:Naudotojas:Uusijani]]
[[li:Gebroeker:Uusijani]]
[[ln:Utilisateur:Uusijani]]
[[jbo:User:Uusijani]]
[[hu:Szerkesztő:Uusijani]]
[[mk:Корисник:Uusijani]]
[[mg:Mpikambana:Uusijani]]
[[ml:ഉപയോക്താവ്:Uusijani]]
[[mt:Utent:Uusijani]]
[[mi:User:Uusijani]]
[[mr:सदस्य:Uusijani]]
[[ms:Pengguna:Uusijani]]
[[mn:Хэрэглэгч:Uusijani]]
[[my:User:Uusijani]]
[[nah:Tlatequitiltilīlli:Uusijani]]
[[na:User:Uusijani]]
[[fj:User:Uusijani]]
[[nl:Gebruiker:Uusijani]]
[[cr:User:Uusijani]]
[[ne:User:Uusijani]]
[[ja:利用者:Uusijani]]
[[no:Bruker:Uusijani]]
[[nn:Brukar:Uusijani]]
[[oc:Utilizaire:Uusijani]]
[[or:User:Uusijani]]
[[om:User:Uusijani]]
[[uz:Foydalanuvchi:Uusijani]]
[[pa:ਮੈਂਬਰ:Uusijani]]
[[pi:User:Uusijani]]
[[ps:کارونکی:Uusijani]]
[[km:អ្នកប្រើប្រាស់:Uusijani]]
[[tpi:User:Uusijani]]
[[nds:Bruker:Uusijani]]
[[pl:Wikipedysta:Uusijani]]
[[pt:Usuário:Uusijani]]
[[ro:Utilizator:Uusijani]]
[[rm:User:Uusijani]]
[[qu:Ruraq:Uusijani]]
[[ru:Участник:Uusijani]]
[[sm:User:Uusijani]]
[[sa:योजकः:Uusijani]]
[[sg:Utilisateur:Uusijani]]
[[sc:Usuàriu:Uusijani]]
[[za:用户:Uusijani]]
[[st:User:Uusijani]]
[[tn:User:Uusijani]]
[[sq:Përdoruesi:Uusijani]]
[[scn:Utenti:Uusijani]]
[[si:පරිශීලක:Uusijani]]
[[simple:User:Uusijani]]
[[sd:يوزر:Uusijani]]
[[ss:User:Uusijani]]
[[sk:Redaktor:Uusijani]]
[[sl:Uporabnik:Uusijani]]
[[so:User:Uusijani]]
[[sr:Корисник:Uusijani]]
[[sh:Korisnik:Uusijani]]
[[su:Pamaké:Uusijani]]
[[fi:Käyttäjä:Uusijani]]
[[sv:Användare:Uusijani]]
[[tl:Tagagamit:Uusijani]]
[[ta:பயனர்:Uusijani]]
[[tt:Äğzä:Uusijani]]
[[te:వాడుకరి:Uusijani]]
[[th:ผู้ใช้:Uusijani]]
[[ti:User:Uusijani]]
[[tg:Корбар:Uusijani]]
[[to:User:Uusijani]]
[[chr:User:Uusijani]]
[[tr:Kullanıcı:Uusijani]]
[[tk:User:Uusijani]]
[[tw:User:Uusijani]]
[[ug:User:Uusijani]]
[[vi:Thành viên:Uusijani]]
[[vo:Geban:Uusijani]]
[[wa:Uzeu:Uusijani]]
[[wo:Jëfandikukat:Uusijani]]
[[ts:User:Uusijani]]
[[yi:באַניצער:Uusijani]]
[[yo:Oníṣe:Uusijani]]
[[zh:User:Uusijani]]
g08pkxoeayvdmfjvqb6048s6ct4pkih
Korisnik:Arseny1992
2
4616
68129
13633
2021-06-17T20:03:46Z
CommonsDelinker
62
Replacing Wikimedia_logo_family_complete.svg with [[File:Wikimedia_logo_family_complete_2009.svg]] (by [[:c:User:CommonsDelinker|CommonsDelinker]] because: [[:c:COM:FR|File renamed]]: more describing name (newest file version: [[:c:File:Wikimedia logo fam
68129
wikitext
text/x-wiki
<div style="float:left; border:1px solid #bbb; margin:1px;" class="wikipediauserbox">
{| cellspacing="0" style="width:238px; background:#f6f6f6;"
! style="width:45px; height:45px; background:#fff; text-align:center; font-size:14pt; color:black; padding:1px; line-height:1.25em; vertical-align: middle; " | [[Image:Wikimedia logo family complete 2009.svg|50px]]
| style="text-align:left; font-size:8pt; padding:4px; height:45px; line-height:1.25em; color:black; vertical-align: middle; " | <span class="plainlinks">[http://toolserver.org/~vvv/sulutil.php?user=Arseny1992 This user]</span> has created a [[:m:Help:Unified login|global account]]. Arseny1992's main account is on [[:w:ru:User:Arseny1992|Wikipedia]] <span class="languageicon" style="font-size:0.95em; font-weight:bold; color:#555;">(Russian)</span>.
|}</div>
[[ab:Участник:Arseny1992]]
[[ace:Pengguna:Arseny1992]]
[[af:Gebruiker:Arseny1992]]
[[ak:User:Arseny1992]]
[[als:Benutzer:Arseny1992]]
[[am:አባል:Arseny1992]]
[[an:Usuario:Arseny1992]]
[[ang:User:Arseny1992]]
[[ar:مستخدم:Arseny1992]]
[[arc:ܡܬܚܫܚܢܐ:Arseny1992]]
[[arz:مستخدم:Arseny1992]]
[[as:সদস্য:Arseny1992]]
[[ast:Usuariu:Arseny1992]]
[[av:Участник:Arseny1992]]
[[ay:Usuario:Arseny1992]]
[[az:İstifadəçi:Arseny1992]]
[[ba:Ҡатнашыусы:Arseny1992]]
[[bar:Benutzer:Arseny1992]]
[[bat-smg:Nauduotuos:Arseny1992]]
[[bcl:Paragamit:Arseny1992]]
[[be-x-old:Удзельнік:Arseny1992]]
[[be:Удзельнік:Arseny1992]]
[[bg:Потребител:Arseny1992]]
[[bh:User:Arseny1992]]
[[bi:User:Arseny1992]]
[[bm:Utilisateur:Arseny1992]]
[[bn:ব্যবহারকারী:Arseny1992]]
[[bo:User:Arseny1992]]
[[bpy:আতাকুরা:Arseny1992]]
[[br:Implijer:Arseny1992]]
[[bs:Korisnik:Arseny1992]]
[[bug:Pengguna:Arseny1992]]
[[bxr:User:Arseny1992]]
[[ca:Usuari:Arseny1992]]
[[cbk-zam:Usuario:Arseny1992]]
[[cdo:User:Arseny1992]]
[[ce:Юзер:Arseny1992]]
[[ceb:Gumagamit:Arseny1992]]
[[ch:Muna'sesetbi:Arseny1992]]
[[chr:User:Arseny1992]]
[[chy:User:Arseny1992]]
[[ckb:بەکارھێنەر:Arseny1992]]
[[co:User:Arseny1992]]
[[cr:User:Arseny1992]]
[[crh:Qullanıcı:Arseny1992]]
[[cs:Wikipedista:Arseny1992]]
[[csb:Brëkòwnik:Arseny1992]]
[[cu:По́льꙃєватєл҄ь:Arseny1992]]
[[cv:Хутшăнакан:Arseny1992]]
[[cy:Defnyddiwr:Arseny1992]]
[[da:Bruger:Arseny1992]]
[[de:Benutzer:Arseny1992]]
[[diq:User:Arseny1992]]
[[dsb:Wužywaŕ:Arseny1992]]
[[dv:މެމްބަރު:Arseny1992]]
[[dz:User:Arseny1992]]
[[ee:User:Arseny1992]]
[[el:Χρήστης:Arseny1992]]
[[eml:Utente:Arseny1992]]
[[en:User:Arseny1992]]
[[eo:Vikipediisto:Arseny1992]]
[[es:Usuario:Arseny1992]]
[[et:Kasutaja:Arseny1992]]
[[eu:Lankide:Arseny1992]]
[[ext:User:Arseny1992]]
[[fa:کاربر:Arseny1992]]
[[ff:Utilisateur:Arseny1992]]
[[fi:Käyttäjä:Arseny1992]]
[[fiu-vro:Pruukja:Arseny1992]]
[[fj:User:Arseny1992]]
[[fo:Brúkari:Arseny1992]]
[[fr:Utilisateur:Arseny1992]]
[[frp:Utilisator:Arseny1992]]
[[fur:Utent:Arseny1992]]
[[fy:Meidogger:Arseny1992]]
[[ga:Úsáideoir:Arseny1992]]
[[gan:用户:Arseny1992]]
[[gd:User:Arseny1992]]
[[gl:Usuario:Arseny1992]]
[[glk:کاربر:Arseny1992]]
[[gn:Puruhára:Arseny1992]]
[[got:User:Arseny1992]]
[[gu:સભ્ય:Arseny1992]]
[[gv:Ymmydeyr:Arseny1992]]
[[ha:User:Arseny1992]]
[[hak:User:Arseny1992]]
[[haw:Mea hoʻohana:Arseny1992]]
[[he:משתמש:Arseny1992]]
[[hi:सदस्य:Arseny1992]]
[[hif:User:Arseny1992]]
[[hr:Suradnik:Arseny1992]]
[[hsb:Wužiwar:Arseny1992]]
[[ht:Itilizatè:Arseny1992]]
[[hu:Szerkesztő:Arseny1992]]
[[hy:Մասնակից:Arseny1992]]
[[ia:Usator:Arseny1992]]
[[id:Pengguna:Arseny1992]]
[[ie:User:Arseny1992]]
[[ig:User:Arseny1992]]
[[ik:User:Arseny1992]]
[[ilo:User:Arseny1992]]
[[io:Uzanto:Arseny1992]]
[[is:Notandi:Arseny1992]]
[[it:Utente:Arseny1992]]
[[iu:User:Arseny1992]]
[[ja:利用者:Arseny1992]]
[[jbo:User:Arseny1992]]
[[jv:Panganggo:Arseny1992]]
[[ka:მომხმარებელი:Arseny1992]]
[[kaa:Paydalanıwshı:Arseny1992]]
[[kab:Amseqdac:Arseny1992]]
[[kg:User:Arseny1992]]
[[ki:User:Arseny1992]]
[[kk:Қатысушы:Arseny1992]]
[[kl:Atuisoq:Arseny1992]]
[[km:អ្នកប្រើប្រាស់:Arseny1992]]
[[kn:ಸದಸ್ಯ:Arseny1992]]
[[ko:사용자:Arseny1992]]
[[ks:User:Arseny1992]]
[[ksh:Metmaacher:Arseny1992]]
[[ku:Bikarhêner:Arseny1992]]
[[kv:Участник:Arseny1992]]
[[kw:Devnydhyer:Arseny1992]]
[[ky:User:Arseny1992]]
[[la:Usor:Arseny1992]]
[[lad:Usuario:Arseny1992]]
[[lb:Benotzer:Arseny1992]]
[[lbe:Гьуртту хьума:Arseny1992]]
[[lg:User:Arseny1992]]
[[li:Gebroeker:Arseny1992]]
[[lij:Utente:Arseny1992]]
[[lmo:Druvat:Arseny1992]]
[[ln:Utilisateur:Arseny1992]]
[[lo:ຜູ້ໃຊ້:Arseny1992]]
[[lt:Naudotojas:Arseny1992]]
[[lv:Lietotājs:Arseny1992]]
[[map-bms:Panganggo:Arseny1992]]
[[mdf:Тиись:Arseny1992]]
[[mg:Mpikambana:Arseny1992]]
[[mhr:Пайдаланыше:Arseny1992]]
[[mi:User:Arseny1992]]
[[mk:Корисник:Arseny1992]]
[[ml:ഉപയോക്താവ്:Arseny1992]]
[[mn:Хэрэглэгч:Arseny1992]]
[[mr:सदस्य:Arseny1992]]
[[ms:Pengguna:Arseny1992]]
[[mt:Utent:Arseny1992]]
[[mwl:Outelizador:Arseny1992]]
[[my:User:Arseny1992]]
[[myv:Теиця:Arseny1992]]
[[mzn:کارور:Arseny1992]]
[[na:User:Arseny1992]]
[[nah:Tlatequitiltilīlli:Arseny1992]]
[[nap:Utente:Arseny1992]]
[[nds-nl:Gebruker:Arseny1992]]
[[nds:Bruker:Arseny1992]]
[[ne:User:Arseny1992]]
[[new:छ्येलेमि:Arseny1992]]
[[ng:User:Arseny1992]]
[[nl:Gebruiker:Arseny1992]]
[[nn:Brukar:Arseny1992]]
[[no:Bruker:Arseny1992]]
[[nov:User:Arseny1992]]
[[nrm:User:Arseny1992]]
[[nv:Choinish'įįhí:Arseny1992]]
[[ny:User:Arseny1992]]
[[oc:Utilizaire:Arseny1992]]
[[om:User:Arseny1992]]
[[or:User:Arseny1992]]
[[os:Архайæг:Arseny1992]]
[[pa:ਮੈਂਬਰ:Arseny1992]]
[[pag:User:Arseny1992]]
[[pam:User:Arseny1992]]
[[pap:User:Arseny1992]]
[[pdc:Benutzer:Arseny1992]]
[[pi:User:Arseny1992]]
[[pih:User:Arseny1992]]
[[pl:Wikipedysta:Arseny1992]]
[[pms:Utent:Arseny1992]]
[[pnb:User:Arseny1992]]
[[pnt:Χρήστες:Arseny1992]]
[[ps:کارن:Arseny1992]]
[[pt:Usuário:Arseny1992]]
[[qu:Ruraq:Arseny1992]]
[[rm:User:Arseny1992]]
[[rmy:Jeno:Arseny1992]]
[[rn:User:Arseny1992]]
[[ro:Utilizator:Arseny1992]]
[[roa-rup:User:Arseny1992]]
[[roa-tara:User:Arseny1992]]
[[ru:Участник:Arseny1992]]
[[rw:User:Arseny1992]]
[[sa:योजकः:Arseny1992]]
[[sah:Кыттааччы:Arseny1992]]
[[sc:Usuàriu:Arseny1992]]
[[scn:Utenti:Arseny1992]]
[[sco:User:Arseny1992]]
[[sd:يوزر:Arseny1992]]
[[se:User:Arseny1992]]
[[sg:Utilisateur:Arseny1992]]
[[sh:Korisnik:Arseny1992]]
[[si:පරිශීලක:Arseny1992]]
[[simple:User:Arseny1992]]
[[sk:Redaktor:Arseny1992]]
[[sl:Uporabnik:Arseny1992]]
[[sm:User:Arseny1992]]
[[sn:User:Arseny1992]]
[[so:User:Arseny1992]]
[[sq:Përdoruesi:Arseny1992]]
[[sr:Корисник:Arseny1992]]
[[srn:Masyin:Arseny1992]]
[[ss:User:Arseny1992]]
[[st:User:Arseny1992]]
[[stq:Benutser:Arseny1992]]
[[su:Pamaké:Arseny1992]]
[[sv:Användare:Arseny1992]]
[[sw:Mtumiaji:Arseny1992]]
[[szl:Użytkownik:Arseny1992]]
[[ta:பயனர்:Arseny1992]]
[[te:వాడుకరి:Arseny1992]]
[[tet:Uza-na'in:Arseny1992]]
[[tg:Корбар:Arseny1992]]
[[th:ผู้ใช้:Arseny1992]]
[[ti:User:Arseny1992]]
[[tk:Ulanyjy:Arseny1992]]
[[tl:Tagagamit:Arseny1992]]
[[tn:User:Arseny1992]]
[[to:User:Arseny1992]]
[[tpi:User:Arseny1992]]
[[tr:Kullanıcı:Arseny1992]]
[[ts:User:Arseny1992]]
[[tt:Кулланучы:Arseny1992]]
[[tum:User:Arseny1992]]
[[tw:User:Arseny1992]]
[[ty:Utilisateur:Arseny1992]]
[[udm:Викиавтор:Arseny1992]]
[[ug:User:Arseny1992]]
[[uk:Користувач:Arseny1992]]
[[ur:صارف:Arseny1992]]
[[uz:Foydalanuvchi:Arseny1992]]
[[ve:User:Arseny1992]]
[[vec:Utente:Arseny1992]]
[[vi:Thành viên:Arseny1992]]
[[vls:Gebruker:Arseny1992]]
[[vo:Geban:Arseny1992]]
[[wa:Uzeu:Arseny1992]]
[[war:User:Arseny1992]]
[[wo:Jëfandikukat:Arseny1992]]
[[wuu:用户:Arseny1992]]
[[xal:Орлцач:Arseny1992]]
[[xh:User:Arseny1992]]
[[yi:באַניצער:Arseny1992]]
[[yo:Oníṣe:Arseny1992]]
[[za:用户:Arseny1992]]
[[zea:Gebruker:Arseny1992]]
[[zh-classical:User:Arseny1992]]
[[zh-min-nan:User:Arseny1992]]
[[zh-yue:User:Arseny1992]]
[[zh:用户:Arseny1992]]
[[zu:User:Arseny1992]]
rfw9cvnay0jfqr3de8np8gqkx5fnl1n
Korisnik:Barras
2
4618
13699
2009-12-20T10:59:45Z
Barras
536
Nova stranica: [[m:User:Barras|>>>]]
13699
wikitext
text/x-wiki
[[m:User:Barras|>>>]]
cdvi63wxrv8gkd3jonxs4lgdygdiaj8
Korisnik:TheMinishCap
2
4621
68451
68444
2022-10-21T23:22:51Z
TheMinishCap
550
68451
wikitext
text/x-wiki
{{Babel-3|hr|en-4|de-3}}
[[en:User:TheMinishCap]]
[[hr:Suradnik:TheMinishCap]]
42hgv56v9ffi1pbb1mukf2n4098068y
Korisnik:NuclearWarfare
2
4624
13753
2010-01-23T09:19:44Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested]])
13753
wikitext
text/x-wiki
[[m:User:NuclearWarfare|NuclearWarfare]] ([[m:User talk:NuclearWarfare|Discussion]] • [[Special:Contributions/NuclearWarfare|Contributions]])
3pa82jpa6n434t871ba5fh45cb26b9g
Korisnik:Juliancolton
2
4625
13755
2010-01-24T00:28:37Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested]])
13755
wikitext
text/x-wiki
Hi, I'm Juliancolton. See my [[m:User:Juliancolton|Meta-Wiki userpage]] for more information.
2c8fnof267atfk7b5bxfvcxta70ux47
Razgovor s korisnikom:Meno25
3
4627
13757
2010-01-24T14:20:31Z
Meno25
112
talk
13757
wikitext
text/x-wiki
Please leave messages at [[w:en:User talk:Meno25]].
erhueog4jh9i02hvabsirfst0yl7g0j
Korisnik:Mercy/monobook.js
2
4628
68072
13758
2021-02-03T20:11:28Z
Ladsgroup
2295
Maintenance: Replacing importScriptURI with mw.loader.load ([[phab:T95964]])
68072
javascript
text/javascript
mw.loader.load('https://meta.wikimedia.org/w/index.php?title=User:Mercy/global.js&action=raw&ctype=text/javascript');
t69tpujqeggse5a8cq3oy84mk3fo7ba
Korisnik:Luckas Blade
2
4629
13759
2010-01-26T02:49:49Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested]])
13759
wikitext
text/x-wiki
[[m:user:Luckas Blade]]
shxv1fippnzra5i6sniv1ysrj98zrcq
Korisnik:Vinhtantran/monobook.js
2
4630
68083
13761
2021-02-03T20:13:19Z
Ladsgroup
2295
Maintenance: Replacing importScriptURI with mw.loader.load ([[phab:T95964]])
68083
javascript
text/javascript
mw.loader.load('https://vi.wikipedia.org/w/index.php?title=User:Vinhtantran/global.js&action=raw&ctype=text/javascript');
5k8ee5rvlsvwbqlhmxr72yii7n4gv83
Korisnik:Pmlineditor/monobook.js
2
4632
68075
13766
2021-02-03T20:11:59Z
Ladsgroup
2295
Maintenance: Replacing importScriptURI with mw.loader.load ([[phab:T95964]])
68075
javascript
text/javascript
mw.loader.load('https://meta.wikimedia.org/w/index.php?title=User:Pmlineditor/global.js&action=raw&ctype=text/javascript');
p4r59mrwk92ddahtq4z1re0n56sng2c
Korisnik:Prince Kassad
2
4633
13767
2010-01-29T02:46:14Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
13767
wikitext
text/x-wiki
[[m:wikt:User:Prince Kassad]]
rp8pckki6ki5dfg9vnyis1kezq8bb71
Korisnik:Kuvaly
2
4635
13772
2010-01-31T06:38:59Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
13772
wikitext
text/x-wiki
<div style="background:#1E90FF; border:2px solid #1E90FF; text-align:center;" width="100%"></div>
<div style="font-family:Calibri, Myriad, 'Trebuchet MS', sans-serif; color:#1E90FF;">[[m:cs:Wikipedista:Kuvaly|cs.wiki]]</div>
08prlhwlqicacop3e00h7kmiu5qzymz
Korisnik:The Evil IP address/monobook.js
2
4636
68082
13773
2021-02-03T20:13:09Z
Ladsgroup
2295
Maintenance: Replacing importScriptURI with mw.loader.load ([[phab:T95964]])
68082
javascript
text/javascript
mw.loader.load('https://meta.wikimedia.org/w/index.php?title=User:The_Evil_IP_address/global.js&action=raw&ctype=text/javascript');
sjepagp7h919t0akqrnmuleyix7w2s1
Korisnik:The Evil IP address/monobook.css
2
4637
13774
2010-01-31T07:48:07Z
Pathoschild
81
global CSS ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
13774
css
text/css
importStylesheetURI('http://meta.wikimedia.org/w/index.php?title=User:The_Evil_IP_address/global.css&action=raw&ctype=text/css');
150usgnfvma55vkokcc7ibotre5jowd
Korisnik:Vhorvat
2
4640
13838
2010-02-20T23:40:15Z
Vhorvat
557
Moja stranica
13838
wikitext
text/x-wiki
{{Babel-6|color=yellow|hr|en-3|de-1|ru-1|it-1|bs-4}}
[[:en:User:Vhorvat]]
[[:hr:User:Vhorvat]]
[[meta:User:Vhorvat]]
{{Template:User UTC+1}}
i0fzccy9p41i64rxg1bt982xp8fqase
Korisnik:Egmontaz/monobook.js
2
4641
68055
13839
2021-02-03T20:08:38Z
Ladsgroup
2295
Maintenance: Replacing importScriptURI with mw.loader.load ([[phab:T95964]])
68055
javascript
text/javascript
mw.loader.load('https://meta.wikimedia.org/w/index.php?title=User:Egmontaz/global.js&action=raw&ctype=text/javascript');
m9z3ro54csonshn6ic9nx4r7skgv2h7
Razgovor s korisnikom:Sj
3
4646
13880
2010-03-09T08:53:05Z
Sj
627
Nova stranica: <center><div style="font-size:120%; background-color:#fec; border:1px solid #def; padding:4px;">For a fast reply, write to me on [[m:user:sj|Meta]] or on the [[w:user:sj|English Wiki...
13880
wikitext
text/x-wiki
<center><div style="font-size:120%; background-color:#fec; border:1px solid #def; padding:4px;">For a fast reply, write to me on [[m:user:sj|Meta]] or on the [[w:user:sj|English Wikipedia]]. Thanks :-)</div></center>
----
mme28y2g5wpptd9oie3az0vjypb4xu3
Korisnik:Sj
2
4647
13881
2010-03-09T08:53:12Z
Sj
627
Nova stranica: {| width=" " |- | valign="top" | <div style="padding:8px; padding-bottom:40px;"> <poem> I am [[w:user:sj|Samuel Klein]] Welcome to my user page Feel free to edit. </poem> </div> <c...
13881
wikitext
text/x-wiki
{| width=" "
|-
| valign="top" |
<div style="padding:8px; padding-bottom:40px;">
<poem>
I am [[w:user:sj|Samuel Klein]]
Welcome to my user page
Feel free to edit.
</poem>
</div>
<center><div style="font-size:120%; background-color:#fec; border:1px solid #def; padding:4px;">Please '''[[m:user talk:sj|contact me]]''' on the [[m:user:sj|Meta wiki]].</div></center>
[[File:Qxz-ad195.gif|center|Happy 5,000,000th Commons upload!]]
| width="40%" |
| valign="top"|
I am a [[w:WP:Wikipedians|Wikipedian]] & a [[m:Babylon|translator]].
[[image:joi-sj.jpg|thumb|left|At [[m:Wikimania 2007|Wikimania 2007]]. ''Credit: [[commons:User:Joi|Joi]]'']]
|}
----
{{Babel|en|de-2|es-2|fr-1|he-1|sw-1}}
[[de:Benutzer:sj]] [[en:User:sj]] [[es:Usuario:sj]] [[fr:Utilisateur:sj]] [[nl:Gebruiker:Sj]]
[[ar:مستخدم:sj]] [[he:משתמש:sj]] [[nah:Usuario:sj]] [[sw:Mtumiaji:sj]]
[[ja:利用者:sj]] [[zh:用户:sj]] [[simple:User:Sj]]
1hs7sdt52n0en1y8akvt4slgt5g9lhx
Razgovor s korisnikom:Egmontaz
3
4649
13885
2010-03-10T17:40:23Z
Egmontaz
432
Nova stranica: [[Image:Redirectltr.png|#REDIRECT ]]<span class="redirectText" lang="en" id="softredirect">[[:m:User talk:Egmontaz]]</span>
13885
wikitext
text/x-wiki
[[Image:Redirectltr.png|#REDIRECT ]]<span class="redirectText" lang="en" id="softredirect">[[:m:User talk:Egmontaz]]</span>
1vdtqoj4pa6fbcmvgkk1p798sl4v3c0
Korisnik:VasilievVV
2
4652
13901
2010-03-14T21:08:36Z
VasilievVV
638
creating local userpage
13901
wikitext
text/x-wiki
<!-- This userpage was created using automatic script -->
I am Victor Vasiliev, a member of [[m:SWMT|Small Wiki Monitoring Team]] and a [[m:Global sysops|global sysop]]. If you have any questions regarding my actions, please use [[m:User talk:VasilievVV|my Meta talk page]].
sci3qgh1vnnawbrscj1i0gms9vqx3fk
Korisnik:BRUTE
2
4653
13937
2010-03-30T12:28:23Z
BRUTE
651
Nova stranica: *[[:m:User:BRUTE|My page on Meta]]
13937
wikitext
text/x-wiki
*[[:m:User:BRUTE|My page on Meta]]
jivau6ii68ey9e28w8etbgn9n51arud
Korisnik:Romaine/monobook.js
2
4656
68048
37267
2021-01-31T08:52:51Z
Ladsgroup
2295
Maintenance: Replacing importScriptURI with mw.loader.load ([[phab:T95964]])
68048
javascript
text/javascript
mw.loader.load('//nl.wikipedia.org/w/index.php?title=User:Romaine/insertmonobook.js&action=raw&ctype=text/javascript');
pdtn0dfe16l4tvmykha5pm7o6d7uwr4
Korisnik:Romaine/vector.js
2
4657
68049
37268
2021-01-31T08:53:01Z
Ladsgroup
2295
Maintenance: Replacing importScriptURI with mw.loader.load ([[phab:T95964]])
68049
javascript
text/javascript
mw.loader.load('//nl.wikipedia.org/w/index.php?title=User:Romaine/insertvector.js&action=raw&ctype=text/javascript');
jirhb557lbb9ewp3t9evb95hpam3ic5
Korisnik:Romaine/vector.css
2
4658
37269
14043
2013-09-14T10:57:18Z
Romaine
343
37269
css
text/css
@import url('//nl.wikipedia.org/w/index.php?title=User:Romaine/insertvector.css&action=raw&ctype=text/css');
30fs6bpx2z5d970h4pf1ay25giwplg2
Korisnik:Jyothis
2
4659
14064
2010-04-13T03:02:27Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
14064
wikitext
text/x-wiki
[[m:User:Jyothis|Jyothis]]
r70beqyucymadx7223ftxqgrfs81une
Korisnik:Carsrac
2
4660
35686
35466
2013-05-19T09:19:53Z
CarsracBot
217
r2.7.2) (Bot dodaje: [[vec:Utente:Carsrac]]
35686
wikitext
text/x-wiki
Hi, I'm a user with a bot called [[user:CarsracBot|CarsracBot]]
[[meta:User:Carsrac]]
[[af:Gebruiker:Carsrac]]
[[am:አባል:Carsrac]]
[[an:Usuario:Carsrac]]
[[ang:User:Carsrac]]
[[ar:مستخدم:Carsrac]]
[[ast:Usuariu:Carsrac]]
[[ay:Usuario:Carsrac]]
[[az:İstifadəçi:Carsrac]]
[[be:Удзельнік:Carsrac]]
[[bg:Потребител:Carsrac]]
[[bn:ব্যবহারকারী:Carsrac]]
[[br:Implijer:Carsrac]]
[[ca:Usuari:Carsrac]]
[[chr:User:Carsrac]]
[[co:User:Carsrac]]
[[cs:Uživatel:Carsrac]]
[[csb:Brëkòwnik:Carsrac]]
[[cy:Defnyddiwr:Carsrac]]
[[da:Bruger:Carsrac]]
[[de:Benutzer:Carsrac]]
[[dv:މެމްބަރު:Carsrac]]
[[el:Χρήστης:Carsrac]]
[[en:User:Carsrac]]
[[eo:Uzanto:Carsrac]]
[[es:Usuario:Carsrac]]
[[et:Kasutaja:Carsrac]]
[[eu:Lankide:Carsrac]]
[[fa:کاربر:Carsrac]]
[[fi:Käyttäjä:Carsrac]]
[[fj:User:Carsrac]]
[[fo:Brúkari:Carsrac]]
[[fr:Utilisateur:Carsrac]]
[[fy:Meidogger:Carsrac]]
[[ga:Úsáideoir:Carsrac]]
[[gd:Cleachdaiche:Carsrac]]
[[gl:Usuario:Carsrac]]
[[gn:Puruhára:Carsrac]]
[[gu:સભ્ય:Carsrac]]
[[gv:Ymmydeyr:Carsrac]]
[[ha:User:Carsrac]]
[[he:משתמש:Carsrac]]
[[hi:सदस्य:Carsrac]]
[[hr:Suradnik:Carsrac]]
[[hsb:Wužiwar:Carsrac]]
[[hu:Szerkesztő:Carsrac]]
[[hy:Մասնակից:Carsrac]]
[[ia:Usator:Carsrac]]
[[id:Pengguna:Carsrac]]
[[ie:Usator:Carsrac]]
[[io:Uzanto:Carsrac]]
[[is:Notandi:Carsrac]]
[[it:Utente:Carsrac]]
[[iu:User:Carsrac]]
[[ja:利用者:Carsrac]]
[[jbo:User:Carsrac]]
[[jv:Panganggo:Carsrac]]
[[ka:მომხმარებელი:Carsrac]]
[[kk:Қатысушы:Carsrac]]
[[kl:Atuisoq:Carsrac]]
[[km:អ្នកប្រើប្រាស់:Carsrac]]
[[kn:ಸದಸ್ಯ:Carsrac]]
[[ko:사용자:Carsrac]]
[[ks:رُکُن:Carsrac]]
[[ku:Bikarhêner:Carsrac]]
[[kw:Devnydhyer:Carsrac]]
[[ky:Колдонуучу:Carsrac]]
[[la:Usor:Carsrac]]
[[lb:Benotzer:Carsrac]]
[[li:Gebroeker:Carsrac]]
[[ln:Utilisateur:Carsrac]]
[[lo:ຜູ້ໃຊ້:Carsrac]]
[[lt:Naudotojas:Carsrac]]
[[lv:Lietotājs:Carsrac]]
[[mg:Mpikambana:Carsrac]]
[[mi:User:Carsrac]]
[[mk:Корисник:Carsrac]]
[[ml:ഉപയോക്താവ്:Carsrac]]
[[mn:Хэрэглэгч:Carsrac]]
[[mr:सदस्य:Carsrac]]
[[ms:Pengguna:Carsrac]]
[[mt:Utent:Carsrac]]
[[my:User:Carsrac]]
[[na:User:Carsrac]]
[[nah:Tlatequitiltilīlli:Carsrac]]
[[nds:Bruker:Carsrac]]
[[ne:प्रयोगकर्ता:Carsrac]]
[[nl:Gebruiker:Carsrac]]
[[nn:Brukar:Carsrac]]
[[no:Bruker:Carsrac]]
[[oc:Utilizaire:Carsrac]]
[[om:User:Carsrac]]
[[or:ବ୍ୟବହାରକାରୀ:Carsrac]]
[[pa:ਵਰਤੌਂਕਾਰ:Carsrac]]
[[pl:Wikipedysta:Carsrac]]
[[pnb:User:Carsrac]]
[[ps:کارن:Carsrac]]
[[pt:Utilizador:Carsrac]]
[[qu:Ruraq:Carsrac]]
[[ro:Utilizator:Carsrac]]
[[roa-rup:User:Carsrac]]
[[ru:Участник:Carsrac]]
[[rw:User:Carsrac]]
[[sa:योजकः:Carsrac]]
[[scn:Utenti:Carsrac]]
[[sd:يوزر:Carsrac]]
[[sg:Utilisateur:Carsrac]]
[[sh:Korisnik:Carsrac]]
[[si:පරිශීලක:Carsrac]]
[[simple:User:Carsrac]]
[[sk:Redaktor:Carsrac]]
[[sl:Uporabnik:Carsrac]]
[[sm:User:Carsrac]]
[[so:User:Carsrac]]
[[sq:Përdoruesi:Carsrac]]
[[sr:Корисник:Carsrac]]
[[ss:User:Carsrac]]
[[st:User:Carsrac]]
[[su:Pamaké:Carsrac]]
[[sv:Användare:Carsrac]]
[[sw:Mtumiaji:Carsrac]]
[[ta:பயனர்:Carsrac]]
[[te:వాడుకరి:Carsrac]]
[[tg:Корбар:Carsrac]]
[[th:ผู้ใช้:Carsrac]]
[[ti:User:Carsrac]]
[[tk:Ulanyjy:Carsrac]]
[[tl:Tagagamit:Carsrac]]
[[tn:User:Carsrac]]
[[tpi:Yusa:Carsrac]]
[[tr:Kullanıcı:Carsrac]]
[[ts:User:Carsrac]]
[[tt:Кулланучы:Carsrac]]
[[ug:ئىشلەتكۈچى:Carsrac]]
[[uk:Користувач:Carsrac]]
[[ur:صارف:Carsrac]]
[[uz:Foydalanuvchi:Carsrac]]
[[vec:Utente:Carsrac]]
[[vi:Thành viên:Carsrac]]
[[vo:Geban:Carsrac]]
[[wa:Uzeu:Carsrac]]
[[wo:Jëfandikukat:Carsrac]]
[[yi:באַניצער:Carsrac]]
[[za:用户:Carsrac]]
[[zh:User:Carsrac]]
[[zh-min-nan:User:Carsrac]]
[[zu:User:Carsrac]]
4sj7qvgsiqruk33acxaa93lbjfppdng
Korisnik:Jfblanc
2
4665
31928
14120
2012-12-29T12:08:59Z
Jfblanc
660
31928
wikitext
text/x-wiki
Joan Francés Blanc, sysop at [http://oc.wikipedia.org the Occitan wikipedia].
[[File:Joan_Francés_Blanc.png|thumb|right|300px|Joan Francés Blanc]]
cfiwckdc5neqejvnfoncwfc7ilenyzj
Korisnik:SKbot
2
4667
14209
2010-05-18T11:48:28Z
SKbot
670
SKbot: create user page
14209
wikitext
text/x-wiki
This is a bot account operated by [[User:Sergey kudryavtsev|Sergey Kudryavtsev]].
[[de:User:SKbot]]
[[en:User:SKbot]]
[[ru:User:SKbot]]
czn5f43g2jd1f6idubzfgqn0dt0lfts
Korisnik:Jafeluv
2
4669
18699
14216
2011-09-24T10:00:23Z
Jafeluv
655
#babel
18699
wikitext
text/x-wiki
{{#babel:fi-N|bs-0}}
{{Softredirect|meta:User:Jafeluv}}
59toe6ilehy5762np39gm5zhltf877x
Razgovor s korisnikom:Jafeluv
3
4670
14217
2010-05-20T14:15:30Z
Jafeluv
655
→ [[meta:User talk:Jafeluv]]
14217
wikitext
text/x-wiki
{{Softredirect|meta:User talk:Jafeluv}}
fcybke0525ibn051k195kn9wh7rpp81
Korisnik:Vinhtantran/vector.js
2
4674
68084
14293
2021-02-03T20:13:29Z
Ladsgroup
2295
Maintenance: Replacing importScriptURI with mw.loader.load ([[phab:T95964]])
68084
javascript
text/javascript
mw.loader.load('https://vi.wikipedia.org/w/index.php?title=User:Vinhtantran/globalvector.js&action=raw&ctype=text/javascript');
aewun12h7cosrw38ecu5f4n7f7firbp
Korisnik:Kuvaly/vector.js
2
4680
68064
14315
2021-02-03T20:10:08Z
Ladsgroup
2295
Maintenance: Replacing importScriptURI with mw.loader.load ([[phab:T95964]])
68064
javascript
text/javascript
mw.loader.load('https://cs.wikipedia.org/w/index.php?title=User:Kuvaly/global.js&action=raw&ctype=text/javascript');
lpm0f7l9tjqvfb8xarwkwe3ozc36okp
Korisnik:Mike.lifeguard/vector.js
2
4685
68154
14344
2021-12-30T21:27:19Z
Ladsgroup
2295
Maintenance: Fixing deprecated call to importScriptURI ([[mw:ResourceLoader/Migration_guide_(users)#importScriptURI]])
68154
javascript
text/javascript
function importAnyScript(lang,family,script) {
mw.loader.load('http://'
+ encodeURIComponent(lang) + '.'
+ encodeURIComponent(family) + '.org/w/index.php?title='
+ encodeURIComponent(script) + '&action=raw&ctype=text/javascript');
}
importAnyScript('meta','wikimedia','User:Mike.lifeguard/remote.js');
lilrd1en4uqg2rwds3dbg7six3k5nfo
Korisnik:Matasg
2
4688
14381
2010-06-22T23:07:29Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
14381
wikitext
text/x-wiki
[[m:lt:User:Matasg]]
929ngdeg9xk6zb6kkos5k8aa8gz06z9
Korisnik:Wikitanvir
2
4698
31888
31871
2012-12-28T11:02:31Z
Wikitanvir
685
New design
31888
wikitext
text/x-wiki
<div style="padding: 12px 18px 5px 15px; width: absolute; border: 2px solid #000; background: #F5F5F5; color: #000; text-align: justify;">The purpose of this user page is to point you to the right direction where you can contact me in need. Please do not leave your message here, otherwise in most cases, they will not be noticed in time and eventually be removed.
However, you are encouraged to contact me or say hello. :-)
Please note that I can communicate in either Bangla or English. My apologies for not knowing your language.
If you prefer to leave me a message, please choose any of the following talk pages I maintain frequently.
* [[m:User talk:Wikitanvir|Meta-Wiki talk page]]
* [[m:bn:User talk:Wikitanvir|Bangla Wikipedia talk page]] (my home wiki)
* [[m:en:User talk:Wikitanvir|English Wikipedia talk page]]
* [[m:commons:User talk:Wikitanvir|Wikimedia Commons talk page]]
If you have something to say to me in private, e-mail is a good option.
* If you are logged in to your Wikimedia account you can probably e-mail me by [[Special:EmailUser/Wikitanvir|clicking here]].
* Otherwise, you can e-mail me directly to <span style="text-transform: lowercase;">{{PAGENAME}}</span>[[File:At sign.svg|17px| at |link=]]gmail.com.
Finally, if you are interested to know about my work or myself, they can be found on [[m:User:Wikitanvir|my Meta-Wiki user page]].
</div><!--
# USEFUL STATISTICS TABLE -->
{| class="wikitable" width="100%" style="border: 2px solid #000;"
! style="width: 11%; background: #CCC;" | [[Special:AllPages|Articles]]
! style="width: 10%; background: #CCC;" | [[Special:ListFiles|Files]]
! style="width: 13%; background: #CCC;" | [[Special:ListUsers|Users]]
! style="width: 11%; background: #CCC;" | [[Special:ActiveUsers|Active Users]]
! style="width: 10%; background: #CCC;" | [[Special:ListUsers/bot|Bots]]
! style="width: 11%; background: #9F0; border: 2px solid #000;" | [[Special:ListUsers/sysop|Sysops]]
! style="width: 12%; background: #CC9; border: 2px solid #000;" | [[Special:ListUsers/bureaucrat|Bureaucrats]]
! style="width: 11%; background: #FC0; border: 2px solid #000;" | [[Special:ListUsers/checkuser|CheckUsers]]
! style="width: 12%; background: #6FF; border: 2px solid #000;" | [[Special:ListUsers/oversight|Oversighters]]
|- style="background: #F5F5F5; font-size: 110%; text-align: center;"
| {{NUMBEROFARTICLES}} || {{NUMBEROFFILES}} || {{NUMBEROFUSERS}} || {{NUMBEROFACTIVEUSERS}} || {{NUMBERINGROUP:bot}} || style="background: #9F0; border: 2px solid #000;" | '''{{NUMBEROFADMINS}}''' || style="background: #CC9; border: 2px solid #000;" | '''{{NUMBERINGROUP:bureaucrat}}''' || style="background: #FC0; border: 2px solid #000;" | '''{{NUMBERINGROUP:checkuser}}''' || style="background: #6FF; border: 2px solid #000;" | '''{{NUMBERINGROUP:oversight}}'''
|}<!-- TA! -->
ahoeqk0hrgtqwlhdcefzbqa8ywxmr28
Korisnik:බිඟුවා
2
4701
19191
14512
2011-10-11T17:45:22Z
බිඟුවා
700
Preusmjereno na [[m:User:බිඟුවා]]
19191
wikitext
text/x-wiki
#REDIRECT [[m:User:බිඟුවා]]
oqfi7sc31oqcfftevquuuvfd5zh5scc
Korisnik:Drini
2
4703
14577
2010-07-31T14:40:50Z
Dferg
626
stranica [[Korisnik:Drini]] premještena na stranicu [[Korisnik:Magister Mathematicae]]: Automatski premještena stranica pri promjeni korisničkog imena "[[User:Drini|Drini]]" u "[[User:Magister Mathematicae|Magister Mathematicae]]"
14577
wikitext
text/x-wiki
#PREUSMJERI [[Korisnik:Magister Mathematicae]]
i5ij4t9ep15hooqobo9oyhwftt0dr1n
Korisnik:Memo18
2
4704
14581
2010-08-03T00:48:32Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
14581
wikitext
text/x-wiki
<div style="background:LightBlue; overflow:auto; padding:10px;">Hi! See my page in [[m:ro:User:Memo18|romanian]].</div>
4vupc4gqlw7zu53y6q646ybvegjr6ib
Korisnik:Memo18/vector.css
2
4705
14582
2010-08-03T01:54:40Z
Pathoschild
81
global CSS ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
14582
css
text/css
@import "http://meta.wikimedia.org/w/index.php?title=User:Memo18/vector.css&action=raw&ctype=text/css";
o9ykiatro07zdw4ch86s4jgoazh6kyj
Korisnik:Manuelt15
2
4708
14590
14589
2010-08-05T11:09:26Z
Abigor
513
Fix after request on my [[:meta:User:Abigor|Talk page]]
14590
wikitext
text/x-wiki
<div style="min-height: 57px; border: 1px solid #aaaaaa; background-color: #f9f9f9; width: 50%; margin: 0 auto 1em auto; padding: .2em; text-align: justify;">
<div style="float: left">[[File:Metawiki.svg|50px| ]]</div>
<div style="margin-left: 60px">'''[[m:Soft redirect|Interwiki redirect]]'''<br />This page can be found at [[m:User:Manuelt15|Meta-Wiki]].</div>
</div>
mrpg2ux8t3yptl42nr8vch5c6qxcm1e
Korisnik:WinContro
2
4709
14594
2010-08-06T12:27:17Z
Abigor
513
Requested on IRC
14594
wikitext
text/x-wiki
<div style="min-height: 57px; border: 1px solid #aaaaaa; background-color: #f9f9f9; width: 50%; margin: 0 auto 1em auto; padding: .2em; text-align: justify;">
<div style="float: left">[[File:Metawiki.svg|50px| ]]</div>
<div style="margin-left: 60px">'''[[m:Soft redirect|Interwiki redirect]]'''<br />This page can be found at [[:w:nl:User:WinContro|Dutch Wikipedia]].</div>
</div>
nnqjim9i4o87og55w0rq2dwdhw0czo8
Korisnik:Manuelt15/vector.js
2
4710
14596
2010-08-07T02:58:24Z
Pathoschild
81
global JavaScript ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
14596
javascript
text/javascript
importScriptURI('http://meta.wikimedia.org/w/index.php?title=User:Manuelt15/global.js&action=raw&ctype=text/javascript')
f64hpcwq4zpywi9ytax6wop9gtnha8z
Korisnik:Manuelt15/monobook.js
2
4711
68070
14597
2021-02-03T20:11:08Z
Ladsgroup
2295
Maintenance: Replacing importScriptURI with mw.loader.load ([[phab:T95964]])
68070
javascript
text/javascript
mw.loader.load('https://meta.wikimedia.org/w/index.php?title=User:Manuelt15/global.js&action=raw&ctype=text/javascript');
e9ouft4iybh1txmhj9r9cy6yoqkoen0
Korisnik:Juhko/monobook.js
2
4712
68059
14598
2021-02-03T20:09:18Z
Ladsgroup
2295
Maintenance: Replacing importScriptURI with mw.loader.load ([[phab:T95964]])
68059
javascript
text/javascript
mw.loader.load('https://meta.wikimedia.org/w/index.php?title=User:Juhko/global.js&action=raw&ctype=text/javascript');
74oghvoywm8aj2m7ngs52yo4xhfu30z
Korisnik:Juhko/vector.js
2
4713
68060
14599
2021-02-03T20:09:29Z
Ladsgroup
2295
Maintenance: Replacing importScriptURI with mw.loader.load ([[phab:T95964]])
68060
javascript
text/javascript
mw.loader.load('https://meta.wikimedia.org/w/index.php?title=User:Juhko/global.js&action=raw&ctype=text/javascript');
74oghvoywm8aj2m7ngs52yo4xhfu30z
Razgovor s korisnikom:Wikitanvir
3
4714
31870
15643
2012-12-27T20:55:41Z
Wikitanvir
685
New design
31870
wikitext
text/x-wiki
<div style="padding: 12px 18px 5px 15px; width: absolute; border: 2px solid #000; background: #F5F5F5; color: #000; text-align: justify;">The purpose of this user page is to point you to the right direction where you can contact me in need. Please do not leave your message here, otherwise in most cases, they will not be noticed in time and eventually be removed.
However, you are encouraged to contact me or say hello. :-)
Please note that I can communicate in either Bangla or English. My apologies for not knowing your language.
If you prefer to leave me a message, please choose any of the following talk pages I maintain frequently.
* [[m:User talk:Wikitanvir|Meta-Wiki talk page]]
* [[m:bn:User talk:Wikitanvir|Bangla Wikipedia talk page]] (my home wiki)
* [[m:en:User talk:Wikitanvir|English Wikipedia talk page]]
* [[m:commons:User talk:Wikitanvir|Wikimedia Commons talk page]]
If you have something to say to me in private, e-mail is a good option.
* If you are logged in to your Wikimedia account you can probably e-mail me by [[Special:EmailUser/Wikitanvir|clicking here]].
* Otherwise, you can e-mail me directly to <span style="text-transform: lowercase;">{{PAGENAME}}</span>[[File:At sign.svg|17px| at |link=]]gmail.com.
Finally, if you are interested to know about my work or myself, they can be found on [[m:User:Wikitanvir|my Meta-Wiki user page]].
</div><!-- TA! -->
46rbmfnj1oqhjlb6img5ahdr3pfxybv
Korisnik:Shanel/vector.js
2
4716
68078
14605
2021-02-03T20:12:29Z
Ladsgroup
2295
Maintenance: Replacing importScriptURI with mw.loader.load ([[phab:T95964]])
68078
javascript
text/javascript
mw.loader.load('https://meta.wikimedia.org/w/index.php?title=User:Shanel/global.js&action=raw&ctype=text/javascript');
14p5zkc7ozc0y8n5twgu541naa3a33d
Korisnik:Shanel/vector.css
2
4717
14606
2010-08-08T02:38:29Z
Pathoschild
81
global CSS ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
14606
css
text/css
import url('http://meta.wikimedia.org/w/index.php?title=User:Shanel/global-vector.css&action=raw&ctype=text/css');
6lokmzprxyvba9z7tqbs9f5jo3rqp70
Korisnik:Pilif12p
2
4718
14608
2010-08-08T09:15:31Z
Abigor
513
global userpage
14608
wikitext
text/x-wiki
{| style="border: #AAAAAA 1px solid; background: #F9F9F9; margin-left: auto; margin-right: auto; width: 40%; min-height: 57px"
| [[Image:Blue Glass Arrow.svg|50px]]
| '''[[m:Soft redirect|Soft redirect]]''' This page can be found at [[Wikipedia:User:Pilif12p]].
|}
m20cgwcs7kmq7dazwmnjrvgp5vzlqzr
Korisnik:Quentinv57
2
4719
14632
2010-08-16T19:41:13Z
Quentinv57
723
Redirected to [[meta:User:Quentinv57]]
14632
wikitext
text/x-wiki
{{Softredirect|meta:User:Quentinv57}}
tpoqwz8k33kao379ipdrsfbabv12jsh
Razgovor s korisnikom:Quentinv57
3
4720
14633
2010-08-16T19:41:24Z
Quentinv57
723
Redirected to [[meta:User talk:Quentinv57]]
14633
wikitext
text/x-wiki
{{Softredirect|meta:User talk:Quentinv57}}
48m7gb8whgermtd1zo16iz8fu2if5h9
Korisnik:*SM*
2
4721
42072
14638
2015-02-03T18:04:40Z
Céréales Killer
1864
Céréales Killer je premjestio stranicu [[Korisnik:Suprememangaka]] na [[Korisnik:*SM*]]: Automatsko premještanje stranice zbog preimenovanja korisnika „[[Special:CentralAuth/Suprememangaka|Suprememangaka]]“ u „[[Special:CentralAuth/*SM*|*SM*]]“
42072
wikitext
text/x-wiki
{{Softredirect|w:fr:User:Suprememangaka}}
jo11kidsngmb9r02grb01598tvh91ef
Razgovor s korisnikom:*SM*
3
4722
42074
14639
2015-02-03T18:04:40Z
Céréales Killer
1864
Céréales Killer je premjestio stranicu [[Razgovor sa korisnikom:Suprememangaka]] na [[Razgovor sa korisnikom:*SM*]]: Automatsko premještanje stranice zbog preimenovanja korisnika „[[Special:CentralAuth/Suprememangaka|Suprememangaka]]“ u „[[Spe...
42074
wikitext
text/x-wiki
{{Softredirect|w:fr:User talk:Suprememangaka}}
70bgbstax7xkbxekyu6o8ry9p2zbo3p
Korisnik:Adambro
2
4726
14675
2010-08-28T18:49:05Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
14675
wikitext
text/x-wiki
[[meta:User:Adambro]]
ez9ycc6s9gfke3epzjfo61o6h8hw6vd
Korisnik:Luckas-bot
2
4727
15040
14992
2010-12-30T15:29:04Z
Luckas-bot
731
r2.6.2) (robot Dodaje: am, chr, dv, en, fj, ha, jbo, km, ks, mi, mt, pa, qu, roa-rup, rw, sa, sg, so, ss, tn
15040
wikitext
text/x-wiki
This user is a pure interwiki bot operated by [[:pt:User:Luckas Blade|Luckas Blade]].
[[af:Gebruiker:Luckas-bot]]
[[am:አባል:Luckas-bot]]
[[an:Usuario:Luckas-bot]]
[[ang:User:Luckas-bot]]
[[ar:مستخدم:Luckas-bot]]
[[ast:Usuariu:Luckas-bot]]
[[ay:Usuario:Luckas-bot]]
[[az:İstifadəçi:Luckas-bot]]
[[be:Удзельнік:Luckas-bot]]
[[bg:Потребител:Luckas-bot]]
[[bn:ব্যবহারকারী:Luckas-bot]]
[[br:Implijer:Luckas-bot]]
[[ca:Usuari:Luckas-bot]]
[[chr:User:Luckas-bot]]
[[co:User:Luckas-bot]]
[[cs:Uživatel:Luckas-bot]]
[[csb:Brëkòwnik:Luckas-bot]]
[[cy:Defnyddiwr:Luckas-bot]]
[[da:Bruger:Luckas-bot]]
[[de:Benutzer:Luckas-bot]]
[[dv:މެމްބަރު:Luckas-bot]]
[[el:Χρήστης:Luckas-bot]]
[[en:User:Luckas-bot]]
[[eo:Uzanto:Luckas-bot]]
[[es:Usuario:Luckas-bot]]
[[et:Kasutaja:Luckas-bot]]
[[eu:Lankide:Luckas-bot]]
[[fa:کاربر:Luckas-bot]]
[[fi:Käyttäjä:Luckas-bot]]
[[fj:User:Luckas-bot]]
[[fo:Brúkari:Luckas-bot]]
[[fr:Utilisateur:Luckas-bot]]
[[fy:Meidogger:Luckas-bot]]
[[ga:Úsáideoir:Luckas-bot]]
[[gd:User:Luckas-bot]]
[[gl:Usuario:Luckas-bot]]
[[gn:Puruhára:Luckas-bot]]
[[gu:સભ્ય:Luckas-bot]]
[[gv:Ymmydeyr:Luckas-bot]]
[[ha:User:Luckas-bot]]
[[he:משתמש:Luckas-bot]]
[[hi:सदस्य:Luckas-bot]]
[[hr:Suradnik:Luckas-bot]]
[[hsb:Wužiwar:Luckas-bot]]
[[hu:Szerkesztő:Luckas-bot]]
[[hy:Մասնակից:Luckas-bot]]
[[ia:Usator:Luckas-bot]]
[[id:Pengguna:Luckas-bot]]
[[ie:User:Luckas-bot]]
[[ik:User:Luckas-bot]]
[[io:Uzanto:Luckas-bot]]
[[is:Notandi:Luckas-bot]]
[[it:Utente:Luckas-bot]]
[[iu:User:Luckas-bot]]
[[ja:利用者:Luckas-bot]]
[[jbo:User:Luckas-bot]]
[[jv:Panganggo:Luckas-bot]]
[[ka:მომხმარებელი:Luckas-bot]]
[[kk:Қатысушы:Luckas-bot]]
[[kl:Atuisoq:Luckas-bot]]
[[km:អ្នកប្រើប្រាស់:Luckas-bot]]
[[kn:ಸದಸ್ಯ:Luckas-bot]]
[[ko:사용자:Luckas-bot]]
[[ks:User:Luckas-bot]]
[[ku:Bikarhêner:Luckas-bot]]
[[kw:Devnydhyer:Luckas-bot]]
[[ky:User:Luckas-bot]]
[[la:Usor:Luckas-bot]]
[[lb:Benotzer:Luckas-bot]]
[[li:Gebroeker:Luckas-bot]]
[[ln:Utilisateur:Luckas-bot]]
[[lo:ຜູ້ໃຊ້:Luckas-bot]]
[[lt:Naudotojas:Luckas-bot]]
[[lv:Lietotājs:Luckas-bot]]
[[mg:Mpikambana:Luckas-bot]]
[[mi:User:Luckas-bot]]
[[mk:Корисник:Luckas-bot]]
[[ml:ഉപയോക്താവ്:Luckas-bot]]
[[mn:Хэрэглэгч:Luckas-bot]]
[[mr:सदस्य:Luckas-bot]]
[[ms:Pengguna:Luckas-bot]]
[[mt:Utent:Luckas-bot]]
[[my:User:Luckas-bot]]
[[na:User:Luckas-bot]]
[[nah:Tlatequitiltilīlli:Luckas-bot]]
[[nds:Bruker:Luckas-bot]]
[[ne:User:Luckas-bot]]
[[nl:Gebruiker:Luckas-bot]]
[[nn:Brukar:Luckas-bot]]
[[no:Bruker:Luckas-bot]]
[[oc:Utilizaire:Luckas-bot]]
[[om:User:Luckas-bot]]
[[pa:ਮੈਂਬਰ:Luckas-bot]]
[[ps:کارن:Luckas-bot]]
[[pt:Usuário:Luckas-bot]]
[[qu:Ruraq:Luckas-bot]]
[[ro:Utilizator:Luckas-bot]]
[[roa-rup:User:Luckas-bot]]
[[ru:Участник:Luckas-bot]]
[[rw:User:Luckas-bot]]
[[sa:योजकः:Luckas-bot]]
[[scn:Utenti:Luckas-bot]]
[[sd:يوزر:Luckas-bot]]
[[sg:Utilisateur:Luckas-bot]]
[[sh:Korisnik:Luckas-bot]]
[[si:පරිශීලක:Luckas-bot]]
[[simple:User:Luckas-bot]]
[[sk:Redaktor:Luckas-bot]]
[[sl:Uporabnik:Luckas-bot]]
[[sm:User:Luckas-bot]]
[[so:User:Luckas-bot]]
[[sq:Përdoruesi:Luckas-bot]]
[[sr:Корисник:Luckas-bot]]
[[ss:User:Luckas-bot]]
[[st:User:Luckas-bot]]
[[su:Pamaké:Luckas-bot]]
[[sv:Användare:Luckas-bot]]
[[sw:Mtumiaji:Luckas-bot]]
[[ta:பயனர்:Luckas-bot]]
[[te:వాడుకరి:Luckas-bot]]
[[tg:Корбар:Luckas-bot]]
[[th:ผู้ใช้:Luckas-bot]]
[[ti:User:Luckas-bot]]
[[tk:Ulanyjy:Luckas-bot]]
[[tl:Tagagamit:Luckas-bot]]
[[tn:User:Luckas-bot]]
[[tpi:User:Luckas-bot]]
[[tr:Kullanıcı:Luckas-bot]]
[[ts:User:Luckas-bot]]
[[tt:Кулланучы:Luckas-bot]]
[[ug:ئىشلەتكۈچى:Luckas-bot]]
[[uk:Користувач:Luckas-bot]]
[[ur:صارف:Luckas-bot]]
[[uz:Foydalanuvchi:Luckas-bot]]
[[vi:Thành viên:Luckas-bot]]
[[vo:Geban:Luckas-bot]]
[[wa:Uzeu:Luckas-bot]]
[[wo:Jëfandikukat:Luckas-bot]]
[[yi:באַניצער:Luckas-bot]]
[[za:用户:Luckas-bot]]
[[zh:User:Luckas-bot]]
[[zh-min-nan:User:Luckas-bot]]
[[zu:User:Luckas-bot]]
j3fgciezky2664dvuix345oag45mloc
Korisnik:Jalexander-WMF
2
4728
40128
14770
2014-08-17T23:19:44Z
MF-Warburg
83
MF-Warburg je premjestio stranicu [[Korisnik:Jalexander]] na [[Korisnik:Jalexander-WMF]]: Automatically moved page while renaming the user "[[Special:CentralAuth/Jalexander|Jalexander]]" to "[[Special:CentralAuth/Jalexander-WMF|Jalexander-WMF]]"
40128
wikitext
text/x-wiki
My name is James Alexander, I am an Associate Community Officer with the [[wmf:Main Page|Wikimedia Foundation]] and am working to help with this year's [[m:fundraising 2010|Fundraiser]]. This account is used for edits while officially working for the foundation. You can reach me either through email (Jalexander[[File:At_sign.svg|17px| at |link=]]wikimedia.org) or on my [[m:User talk:Jalexander|Meta talk page]].
On wiki I use [[m:User:Jamesofur|Jamesofur]] in my volunteer role and this account [[m:User:Jalexander|Jalexander]] in my WMF staff role. In my volunteer capacity I can usually be found on the [[w:en:Main page|enWikipedia]], [[w:simple:Main page|SimpleWikipedia]] or on [[m:Main page|MetaWiki]] where I am an elected administrator as well as working on cross-wiki abuse as a [[m:Global sysop|Global sysop]]
For more contact info please see [[m:User:Jalexander|my MetaWiki userpage]].
dy6n4i5h6pi3dironfvr2bissmkvefw
Korisnik:Hosiryuhosi
2
4729
66964
66962
2018-10-21T03:53:43Z
Rxy
2120
Rxy premjestio je stranicu [[Korisnik:😀]] na [[Korisnik:Hosiryuhosi]] preko preusmjerenja bez ostavljanja preusmjerenja: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/😀|😀]]" u "[[Special:CentralAuth/Hosiryuhosi|Hosiryuhosi]]"
66962
wikitext
text/x-wiki
*[[meta:User:Hosiryuhosi|meta]]
tvbxoz76wh7g2vheazjd2k6vjn41ftw
Korisnik:Kpeterzell
2
4731
14728
2010-09-02T06:54:44Z
Jalexander-WMF
734
(global staff user pages as requested. [[m:User talk:Jalexander|Questions?]])
14728
wikitext
text/x-wiki
Hello.
I'm [[w:User:Keegan|Keegan Peterzell]]. I'm working for the Wikimedia Foundation temporarily on Fundraising 2010 as an Associate Community Officer. Edits made under this account are on behalf of the Wikimedia Foundation as a staff member.
Feel free to contact me anytime with questions about the Fundraiser.
s1riz8icp2pwlyer2902i788r0zau23
Korisnik:Kwj2772/vector.js
2
4733
68067
14755
2021-02-03T20:10:38Z
Ladsgroup
2295
Maintenance: Replacing importScriptURI with mw.loader.load ([[phab:T95964]])
68067
javascript
text/javascript
/* Global JavaScript */
mw.loader.load('https://meta.wikimedia.org/w/index.php?title=User:Kwj2772/remote.js&action=raw&ctype=text/javascript');
0g4y0fset676tmne7yuk0p4efh50zt8
Wikirječnik:Čaršija
4
4734
72767
72712
2025-04-29T03:42:01Z
MediaWiki message delivery
1685
/* Vote on proposed modifications to the UCoC Enforcement Guidelines and U4C Charter */ novi odlomak
72767
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 -->
cu356wxh2auxi1fyh2ne3j9rzi4m0dg
Korisnik:Koavf
2
4735
14798
2010-09-20T21:58:27Z
Koavf
58
Nova stranica: [http://en.wikipedia.org/wiki/User:Koavf !!!!]
14798
wikitext
text/x-wiki
[http://en.wikipedia.org/wiki/User:Koavf !!!!]
bakkeq13eza7yhu7n9buvny7z38rbae
Korisnik:Spl908455
2
4736
14813
2010-09-24T19:18:25Z
Spl908455
337
{{Babel-2|pl|bs-0}} SPL908455 [[pl:Wikipedysta:Spl908455]]
14813
wikitext
text/x-wiki
{{Babel-2|pl|bs-0}}
SPL908455
[[pl:Wikipedysta:Spl908455]]
2082otwp1n8byv0rpijgz7vp83b5a3d
Korisnik:Dgultekin
2
4738
14820
2010-09-29T21:15:49Z
Jalexander-WMF
734
( updating and creating global staff user page by request. [[m:User talk:Jalexander|Questions?]])
14820
wikitext
text/x-wiki
{| class="messagebox standard-talk"
|-
|align="center"|[[Image:Info icon.svg|50px|Comment]]
|align="left" width="100%"| My name is Deniz and I'm working for the [[m:Wikimedia Foundation|Wikimedia Foundation]] as an associate during the 2010 [http://wikimediafoundation.org/wiki/Support_Wikipedia/en Fundraising Drive]. You can reach me either through email (dgultekin[[File:At_sign.svg|17px| at |link=]]wikimedia.org) or on my [[m:User talk:dgultekin|Meta talk page]].
Mini-Disclaimer: All edits made as a Community Associate to Wikimedia hosted projects will be made under [[User:dgultekin|dgultekin]]. Unless otherwise stated, all edits made as [[User:dmgultekin|dmgultekin]] are made as a regular member of the community, and not a legal or official action of the Community Department of the Wikimedia Foundation.
|}
'''Contact Info'''<br>
[[Special:EmailUser/dgultekin|Email]]<br>
IRC nick name: dgultekin<br>
AIM: denizgultekin<br>
G-chat: dmgultekin<br>
Location: San Francisco, CA
cfb14yy1r9kmmgh3kahmw3tyjl6bsmt
Korisnik:Klyman
2
4740
14902
2010-10-22T23:40:22Z
Jalexander-WMF
734
( updating and creating global [[m:WMF|Wikimedia]] staff user page by request. [[m:User talk:Jalexander|Questions?]])
14902
wikitext
text/x-wiki
My name is Kelly Lyman and I am working on the 2010-2011 fundraising team for the Wikimedia Foundation. This account is used for official edits while officially employed by the Wikimedia Foundation.
Meta user name: Klyman
Freenode IRC nick name: klyman
AIM: klyman, kllylymn
Email: klyman@wikimedia.org
fpmc6di45yw14kcy3guk6nd1nem8uwz
Korisnik:Frozen Wind
2
4744
14952
2010-11-07T19:42:34Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
14952
wikitext
text/x-wiki
[[m:simple:User:Frozen Wind|simplewiki]]
98xobhbsyeg0z3udlfj8a6ax3zongbf
Korisnik:EdoDodo/vector.js
2
4746
68054
14956
2021-02-03T20:08:28Z
Ladsgroup
2295
Maintenance: Replacing importScriptURI with mw.loader.load ([[phab:T95964]])
68054
javascript
text/javascript
mw.loader.load('https://meta.wikimedia.org/w/index.php?title=User:EdoDodo/global.js&action=raw&ctype=text/javascript');
laizrkaqgbvpypx7nrgyzt0c0ibpqvt
Korisnik:Kanjy
2
4747
14968
2010-11-20T08:13:34Z
Kanjy
90
new userpage: babel, links to my home wiki etc.
14968
wikitext
text/x-wiki
{{Babel|ja|en-2|de-1|bs-0}}
* <span class="plainlinks" title="w:ja:User:Kanjy">[http://ja.wikipedia.org/wiki/User:Kanjy w:ja:User:Kanjy]</span> (<span class="plainlinks" title="w:ja:User talk:Kanjy">[http://ja.wikipedia.org/wiki/User_talk:Kanjy talk]</span>) - Japanese Wikipedia, my home wiki
* [[:ja:User:Kanjy]] ([[:ja:User_talk:Kanjy|talk]]) - Japanese Wiktionary, semi-home
* [[m:User:Kanjy]] ([[m:User_talk:Kanjy|talk]]) - Meta
* [[sulutil:Kanjy]] - my global account
[[de:Benutzer:Kanjy]]
[[en:User:Kanjy]]
[[fr:Utilisateur:Kanjy]]
[[it:Utente:Kanjy]]
[[ja:利用者:Kanjy]]
[[pt:Usuário:Kanjy]]
[[simple:User:Kanjy]]
[[zh:User:Kanjy]]
hcqvakq9tvlzm9bddvi6txtnblgrdls
Korisnik:ChuispastonBot
2
4748
15184
15094
2011-03-24T21:18:10Z
CarsracBot
217
r2.6.4) (robot dodaje: af, am, an, ang, ar, ast, ay, az, be, bg, bn, ca, chr, co, cs, csb, cy, da, de, dv, el, en, eo, es, et, eu, fa, fi, fj, fo, fr, fy, ga, gd, gl, gn, gu, gv, ha, he, hi, hr, hsb, hu, hy, ia, id, ie, ik, io, is, it, iu, ja, jbo, j
15184
wikitext
text/x-wiki
{| width="75%" align="center" style="text-align:justify; border:1px solid #B2B2B2; background-color:#FFFFFF; color:#000000;"
|- padding:1em;padding-top:0.5em;padding-right:2em;padding-left:3em"
|[[File:Crystal Clear action run.svg|40px]]
|'''This [[meta:Bot|bot]] is a [[meta:Special:GlobalUsers/Global_bot|Global bot]]. / Ce [[meta:Bot|bot]] est un [[meta:Special:GlobalUsers/Global_bot|bot global]]. ''' <br />
<small>It can have bot rights on this wiki without being locally flagged / Ce bot peut avoir des droits bot sur ce wiki sans ''flag'' local.</small>
|}<br>
{| width="75%" align="center" style="text-align:justify; border:1px solid #B2B2B2; background-color:#FFFFFF; color:#000000;"
|- padding:1em;padding-top:0.5em;padding-right:2em;padding-left:3em"
|[[Image:Wikimedia Community Logo-Toolserver.svg|40px]]
|'''This [[meta:Bot|bot]] runs on the [[meta:Toolserver|Wikimedia Toolserver]]. / Ce [[meta:Bot|bot]] fonctionne sur le [[meta:Toolserver|Wikimedia Toolserver]]. ''' <br />
<small>''Administrators: If this bot needs to be blocked due to a malfunction, please remember to disable autoblocks so that other Toolserver bots are not affected.<br>
''Administrateurs: si ce bot doit être bloqué pour dysfonctionnement, pensez à suspendre l'autoblocage pour éviter d'affecter d'autres bots du Toolserver.''</small>
|}<br>
This is the page of a bot whose operator is [[:w:fr:user:Grimlock|Grimlock]].<br>
<small>Administrators: if this bot isn't working right or doing bad things, please [[special:Block/ChuispastonBot|block it]]</small>
Operator's language : fr, en, es.<br>
Programmation language : [[m:pywikipedia|pywikipedia]].<br>
Runs : daily / automatic.<br>
Purpose : interwiki.<br>
<!--{{Emergency-bot-shutoff}}-->
[[af:Gebruiker:ChuispastonBot]]
[[am:አባል:ChuispastonBot]]
[[an:Usuario:ChuispastonBot]]
[[ang:User:ChuispastonBot]]
[[ar:مستخدم:ChuispastonBot]]
[[ast:Usuariu:ChuispastonBot]]
[[ay:Usuario:ChuispastonBot]]
[[az:İstifadəçi:ChuispastonBot]]
[[be:Удзельнік:ChuispastonBot]]
[[bg:Потребител:ChuispastonBot]]
[[bn:ব্যবহারকারী:ChuispastonBot]]
[[br:Implijer:ChuispastonBot]]
[[ca:Usuari:ChuispastonBot]]
[[chr:User:ChuispastonBot]]
[[co:User:ChuispastonBot]]
[[cs:Uživatel:ChuispastonBot]]
[[csb:Brëkòwnik:ChuispastonBot]]
[[cy:Defnyddiwr:ChuispastonBot]]
[[da:Bruger:ChuispastonBot]]
[[de:Benutzer:ChuispastonBot]]
[[dv:މެމްބަރު:ChuispastonBot]]
[[el:Χρήστης:ChuispastonBot]]
[[en:User:ChuispastonBot]]
[[eo:Uzanto:ChuispastonBot]]
[[es:Usuario:ChuispastonBot]]
[[et:Kasutaja:ChuispastonBot]]
[[eu:Lankide:ChuispastonBot]]
[[fa:کاربر:ChuispastonBot]]
[[fi:Käyttäjä:ChuispastonBot]]
[[fj:User:ChuispastonBot]]
[[fo:Brúkari:ChuispastonBot]]
[[fr:Utilisateur:ChuispastonBot]]
[[fy:Meidogger:ChuispastonBot]]
[[ga:Úsáideoir:ChuispastonBot]]
[[gd:User:ChuispastonBot]]
[[gl:Usuario:ChuispastonBot]]
[[gn:Puruhára:ChuispastonBot]]
[[gu:સભ્ય:ChuispastonBot]]
[[gv:Ymmydeyr:ChuispastonBot]]
[[ha:User:ChuispastonBot]]
[[he:משתמש:ChuispastonBot]]
[[hi:सदस्य:ChuispastonBot]]
[[hr:Suradnik:ChuispastonBot]]
[[hsb:Wužiwar:ChuispastonBot]]
[[hu:Szerkesztő:ChuispastonBot]]
[[hy:Մասնակից:ChuispastonBot]]
[[ia:Usator:ChuispastonBot]]
[[id:Pengguna:ChuispastonBot]]
[[ie:User:ChuispastonBot]]
[[ik:User:ChuispastonBot]]
[[io:Uzanto:ChuispastonBot]]
[[is:Notandi:ChuispastonBot]]
[[it:Utente:ChuispastonBot]]
[[iu:User:ChuispastonBot]]
[[ja:利用者:ChuispastonBot]]
[[jbo:User:ChuispastonBot]]
[[jv:Panganggo:ChuispastonBot]]
[[ka:მონაწილე:ChuispastonBot]]
[[kk:Қатысушы:ChuispastonBot]]
[[kl:Atuisoq:ChuispastonBot]]
[[km:អ្នកប្រើប្រាស់:ChuispastonBot]]
[[kn:ಸದಸ್ಯ:ChuispastonBot]]
[[ko:사용자:ChuispastonBot]]
[[ks:User:ChuispastonBot]]
[[ku:Bikarhêner:ChuispastonBot]]
[[kw:Devnydhyer:ChuispastonBot]]
[[ky:User:ChuispastonBot]]
[[la:Usor:ChuispastonBot]]
[[lb:Benotzer:ChuispastonBot]]
[[li:Gebroeker:ChuispastonBot]]
[[ln:Utilisateur:ChuispastonBot]]
[[lo:ຜູ້ໃຊ້:ChuispastonBot]]
[[lt:Naudotojas:ChuispastonBot]]
[[lv:Lietotājs:ChuispastonBot]]
[[mg:Mpikambana:ChuispastonBot]]
[[mi:User:ChuispastonBot]]
[[mk:Корисник:ChuispastonBot]]
[[ml:ഉപയോക്താവ്:ChuispastonBot]]
[[mn:Хэрэглэгч:ChuispastonBot]]
[[mr:सदस्य:ChuispastonBot]]
[[ms:Pengguna:ChuispastonBot]]
[[mt:Utent:ChuispastonBot]]
[[my:User:ChuispastonBot]]
[[na:User:ChuispastonBot]]
[[nah:Tlatequitiltilīlli:ChuispastonBot]]
[[nds:Bruker:ChuispastonBot]]
[[ne:प्रयोगकर्ता:ChuispastonBot]]
[[nl:Gebruiker:ChuispastonBot]]
[[nn:Brukar:ChuispastonBot]]
[[no:Bruker:ChuispastonBot]]
[[oc:Utilizaire:ChuispastonBot]]
[[om:User:ChuispastonBot]]
[[pa:ਮੈਂਬਰ:ChuispastonBot]]
[[pl:Wikipedysta:ChuispastonBot]]
[[ps:کارن:ChuispastonBot]]
[[pt:Utilizador:ChuispastonBot]]
[[qu:Ruraq:ChuispastonBot]]
[[ro:Utilizator:ChuispastonBot]]
[[roa-rup:User:ChuispastonBot]]
[[ru:Участник:ChuispastonBot]]
[[rw:User:ChuispastonBot]]
[[sa:योजकः:ChuispastonBot]]
[[scn:Utenti:ChuispastonBot]]
[[sd:يوزر:ChuispastonBot]]
[[sg:Utilisateur:ChuispastonBot]]
[[sh:Korisnik:ChuispastonBot]]
[[si:පරිශීලක:ChuispastonBot]]
[[simple:User:ChuispastonBot]]
[[sk:Redaktor:ChuispastonBot]]
[[sl:Uporabnik:ChuispastonBot]]
[[sm:User:ChuispastonBot]]
[[so:User:ChuispastonBot]]
[[sq:Përdoruesi:ChuispastonBot]]
[[sr:Корисник:ChuispastonBot]]
[[ss:User:ChuispastonBot]]
[[st:User:ChuispastonBot]]
[[su:Pamaké:ChuispastonBot]]
[[sv:Användare:ChuispastonBot]]
[[sw:Mtumiaji:ChuispastonBot]]
[[ta:பயனர்:ChuispastonBot]]
[[te:వాడుకరి:ChuispastonBot]]
[[tg:Корбар:ChuispastonBot]]
[[th:ผู้ใช้:ChuispastonBot]]
[[ti:User:ChuispastonBot]]
[[tk:Ulanyjy:ChuispastonBot]]
[[tl:Tagagamit:ChuispastonBot]]
[[tn:User:ChuispastonBot]]
[[tpi:User:ChuispastonBot]]
[[tr:Kullanıcı:ChuispastonBot]]
[[ts:User:ChuispastonBot]]
[[tt:Кулланучы:ChuispastonBot]]
[[ug:ئىشلەتكۈچى:ChuispastonBot]]
[[uk:Користувач:ChuispastonBot]]
[[ur:صارف:ChuispastonBot]]
[[uz:Foydalanuvchi:ChuispastonBot]]
[[vi:Thành viên:ChuispastonBot]]
[[vo:Geban:ChuispastonBot]]
[[wa:Uzeu:ChuispastonBot]]
[[wo:Jëfandikukat:ChuispastonBot]]
[[yi:באַניצער:ChuispastonBot]]
[[za:用户:ChuispastonBot]]
[[zh:User:ChuispastonBot]]
[[zh-min-nan:User:ChuispastonBot]]
[[zu:User:ChuispastonBot]]
0t28wns6gxvzifqtutupk4598uoyns3
Korisnik:Alan ffm
2
4749
25126
15026
2012-06-23T20:01:00Z
Barishan
287
25126
wikitext
text/x-wiki
{{Babel-5|pl|de-4|en-2|ru-2|it-1|}}
rga6aziubug4i8mctz0g41ct9wkjhe3
Korisnik:Quentinv57/vector.js
2
4750
68076
15041
2021-02-03T20:12:09Z
Ladsgroup
2295
Maintenance: Replacing importScriptURI with mw.loader.load ([[phab:T95964]])
68076
javascript
text/javascript
mw.loader.load('https://meta.wikimedia.org/w/index.php?title=User:Quentinv57/global.js&action=raw&ctype=text/javascript');
jgdpjuo1eeukg8zue4hg68ie63ro6wn
Korisnik:JøMa
2
4751
15042
2011-01-03T20:51:57Z
JøMa
790
Nova stranica: <br /><br /><br /><br /><br /><br /><br /><br /><br /><br /> <center><font size="+20">[[[:de:w:User:JøMa|ˈjøːˌmaˑ]]]</font></center> <br /><br /><br /><br /><br /><br ...
15042
wikitext
text/x-wiki
<br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
<center><font size="+20">[[[:de:w:User:JøMa|ˈjøːˌmaˑ]]]</font></center>
<br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
[[de:User:JøMa]]
4np28gvw186v70pwlrryip4ktdi1kbn
Razgovor s korisnikom:Wutsje
3
4756
15074
2011-01-27T09:42:31Z
Wutsje
416
talk page
15074
wikitext
text/x-wiki
* My talk page on Meta is [[:m:User talk:Wutsje|here]].
----
0bjeiosgmzgo6jjygv0ku9gwy8fyhlf
Korisnik:WikitanvirBot
2
4757
20592
20590
2011-11-22T19:06:45Z
Wikitanvir
685
Creating bot page
20592
wikitext
text/x-wiki
<!--- DEFAULT BOT TEMPLATE -->{{Bot|Wikitanvir}}<!-- DEFAULT BOT TEMPLATE -->
<!--- BOT INFO AND LINKS --->
{| align="center" cellspacing="5" class="plainlinks" style="padding: 6px; border: 2px solid #000; width: 80%; margin-top: 3px; margin-bottom: 3px; text-align: justify;"
|- valign="center"
| [[File:Crystal Clear action run approved.svg|90px|left|link=]] || This user account is a [[m:en:Wikipedia:Bots|bot]], operated by [[User:Wikitanvir|Wikitanvir]] ([[User talk:Wikitanvir|talk]]). It is not a [[m:en:Wikipedia:Sock puppetry|sock-puppet]], but a legitimate alternative account, used to make repetitive automated or semi-automated edits that would be extremely tedious to do manually. This bot works using [[m:Pywikipediabot|Pywikipediabot Framework]]. The only task of this bot is to add, modify, or remove inter-wiki links, whenever applicable. It is a global bot, therefore may not need a local flag on this wiki to work.
|}
{| align="center" class="plainlinks" style="padding: 6px; border: 2px solid #f42a41; width:80%; margin-bottom:3px; text-align: justify;"
|-
| Fellow [[Special:ListUsers/sysop|administrators]], please report to [[User:Wikitanvir|the owner]] if this bot is malfunctioning. As it runs automatically like other global bots, the owner may not be aware of the problem. But you can see the [[m:en:User:WikitanvirBot/Frequently Asked Questions|FAQ page]] to know about how to fix the problem all by yourself. Alternatively you can report the problem on operator's talk page. In any case, if you had to block this bot, please notify the operator on his talk page. Thanks!
|}
{| align="center" class="plainlinks" style="padding:6px; border: 2px solid #006a4e; width:80%; text-align: center;"
|-
| [[sulutil:WikitanvirBot|global editcounts]] — [[luxo:WikitanvirBot|global contributions]] — [//meta.wikimedia.org/wiki/Special:GlobalUsers?&username=WikitanvirBot&group=&limit=1 global groups]
|}<!-- BOT INFO AND LINKS -->
4h8dix7rmc3wnb1ldda5fa32terbufe
Korisnik:Hydriz
2
4759
38967
22953
2014-01-21T07:22:07Z
Hydriz
771
Updating global user page
38967
wikitext
text/x-wiki
{{#babel:en-N|zh-hans-N|zh-hant-3|bs-0}}
Hi, I am Hydriz. Please visit [[m:User:Hydriz|my userpage on Meta]] for more information about me.
== Wiki statistics ==
{| class="wikitable"
|-
| Number of pages || {{NUMBEROFPAGES}}
|-
| Number of articles || '''{{NUMBEROFARTICLES}}'''
|-
| Number of uploaded files || {{NUMBEROFFILES}}
|-
| Number of registered users || {{NUMBEROFUSERS}}
|-
| Number of active users || {{NUMBEROFACTIVEUSERS}}
|-
| Number of admins || {{NUMBEROFADMINS}}
|-
| Number of total edits || {{NUMBEROFEDITS}}
|}
1cjb3obo8wv355qb4yvfeuj67otukx2
Korisnik:Silver Spoon/vector.js
2
4760
68079
15096
2021-02-03T20:12:39Z
Ladsgroup
2295
Maintenance: Replacing importScriptURI with mw.loader.load ([[phab:T95964]])
68079
javascript
text/javascript
mw.loader.load('https://meta.wikimedia.org/w/index.php?title=User:Silver_Spoon/global.js&action=raw&ctype=text/javascript');
34r354qe3hhq0v6nmgc8guevfchfjcc
Razgovor s korisnikom:Mjbmrbot
3
4761
15099
2011-02-02T12:24:15Z
Mjbmrbot
799
REDIRECT
15099
wikitext
text/x-wiki
#REDIRECT [[:w:fa:User talk:Mjbmr]]
tkjwt5fk9buvbmalwfb9dqsckxrc9q5
Korisnik:Ainali
2
4762
15104
2011-02-04T01:57:47Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
15104
wikitext
text/x-wiki
<div style="text-align:center; font-family:Arial; font-size:1.6em; color:#222;" class="plainlinks"><div style="padding:9px; background:#EEF; border:3px solid #2F2F4F; -moz-border-radius:8px; -webkit-border-radius:8px; border-radius:8px;">'''Please use one of the following links to discuss with me.'''</div><div style="margin:1px; padding:9px; background:#EEF; border:3px solid #2F2F4F; -moz-border-radius:8px; -wekbit-border-radius:8px; border-radius:8px;">'''[[m:sv:user:Ainali|Swedish Wikipedia]] | [[commons:user:Ainali|Commons]] | [[m:user:Ainali|Meta]]'''</div>
7iexk7no4c3gul7thm0jwog7u07evly
Korisnik:Dcljr
2
4765
42077
39737
2015-02-04T23:49:56Z
Dcljr
763
+ Admins link
42077
wikitext
text/x-wiki
{{#babel:en|es-1|bs-0}}
<div lang="en-US">
For information about me, please see [[:en:User:Dcljr]]. To discuss any issues related to ''this'' wiki, please use '''[[User talk:Dcljr|my talk page here]]'''.
''Note:'' This wiki contains {{NUMBEROFARTICLES}} entries.
([[Special:SpecialPages|See also]]: [[Special:Statistics|Statistics]], [[Special:NewPages|NewPages]], [[Special:RecentChanges|RecentChanges]], [[Special:NewFiles|NewFiles]], [[Special:Log|Log]], [[Special:Userlist/sysop|Admins]].)
</div>
[[en:User:Dcljr]]
cy2njq0x3hsl4bnx91pe9zj590475aw
Korisnik:Shanel
2
4768
15132
2011-02-23T04:43:31Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])♥
15132
wikitext
text/x-wiki
Hello! My name is Shanel Kalicharan. My edits on this wiki are mostly part of my [[m:steward|steward work]]. If you have any comments or questions, please let me know on [[m:User talk:Shanel|my global talk page]]!
539e2stnb09ajwpzc24v9hl0lll9mz2
Korisnik:Pmlineditor/common.js
2
4773
15196
2011-04-03T22:41:11Z
Pathoschild
81
global JavaScript ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
15196
javascript
text/javascript
mw.loader.load('http://meta.wikimedia.org/w/index.php?title=User:Pmlineditor/global.js&action=raw&ctype=text/javascript');
gyuhr8v12ygxls5m04kxh9k7cjmw19w
Korisnik:Philippe (WMF)
2
4774
15205
2011-04-14T05:07:02Z
Jalexander-WMF
734
creating and updating global user pages for WMF Staff member upon request ([[m:User:Jalexander|Questions?]])
15205
wikitext
text/x-wiki
__NOTOC__
{| " style="width:90%; margin: 0 auto 1em auto; padding: 0.2em; border: 1px solid #AAA; background: #F9F9F9;;"
|-
| style="padding: 0 4px;" rowspan="3" | [[Image:achtung.svg|40px|]]
| '''Since July, 2009 I have worked at Wikimedia Foundation, and I'm presently Head of Reader Relations at the foundation. All edits made before my start date were in my individual, personal capacity as a volunteer, administrator, or otherwise regular member of the community – not as an employee, representative, or agent of Wikimedia Foundation.'''
|}
<center>''''' "Have you ever skied at Jackson Hole in Wyoming? <br />
'''''Well, there is a sign at the top of the mountain that is both enthralling and terrifying:<br />
''''''Our mountain is like nothing you have skied before! <br />
'''''Give this mountain the special respect it demands!' <br />
'''''Wikimedia is that mountain." <br />
'''''-- Stu West, WMF Board, in [http://blogs.harvardbusiness.org/cs/2009/09/one_fine_winter_saturday_in.html discussing Wikimedia Strategic Planning]'''''</center>
==On Wiki==
I am the Head of Reader Relations for the Wikimedia Foundation. My role is to represent, on the staff, the voice and needs of the vast majority of the users of Wikimedia projects: the readers who rarely or never edit. I can be reached via email at philippe[[File:At_sign.svg|17px| at |link=]]wikimedia.org or [[m:User:Philippe (WMF)|on my meta talk page]]. In my volunteer capacity, I can usually be found on en:Wikipedia or meta, where I am an elected administrator. I previously was, by virtue of my job, a bureaucrat on the [[strategy:Main Page|Wikimedia Strategic Planning wiki]].
I was a member of the election committee for the Board of Trustees in 2007, 2008, and 2009, and am the staff liaison to the committee for 2011.
You can find me on en:Wikipedia as [[:en:User:Philippe|Philippe]] as a volunteer, or as [[:en:User:Philippe (WMF)|Philippe (WMF)]] in my staff role. On IRC, my username is usually Philippe.
Follow me on identi.ca and Twitter! My username is philippewiki in both places.
qy7h3wg0deju954bwkhedjsxsjszyah
Korisnik:Micki/common.js
2
4775
22735
15213
2012-03-11T12:59:08Z
Quentinv57
723
global JavaScript ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
22735
javascript
text/javascript
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:Micki/global.js&action=raw&ctype=text/javascript');
8pvfaoxz0sncj1pwvqnhfwfzc9pdley
Korisnik:Micki
2
4776
15214
2011-04-16T19:44:51Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
15214
wikitext
text/x-wiki
[[m:sr:User:Micki|wikipedia]] - [[m:User:Micki|meta]] - [[commons:User:Micki|commons]]
r4ik3s0amh46fub8w3k4m5qethfd1w9
Korisnik:FalconL
2
4779
15217
2011-04-16T23:02:24Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
15217
wikitext
text/x-wiki
See [[m:User:FalconL|my user page on Meta]] for further information. Please also use [[m:User Talk:FalconL|my talk page there]] to contact me.
l6oflce43odm57fezh9j2t3g3waofl6
Korisnik:Avicennasis
2
4782
15229
2011-04-21T02:08:41Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
15229
wikitext
text/x-wiki
[[m:User:Avicennasis]]
{| class="wikitable"
! Maintenance ([{{fullurl:User:Avicennasis|action=purge}} purge])
! Entries
|- {{#ifexpr:{{PAGESINCAT:Candidates for speedy deletion}} > 0 | style="background:#fbb;" }}
| [[:Category:Candidates for speedy deletion|Candidates for speedy deletion]]
| {{PAGESINCAT:Candidates for speedy deletion}}
|-
|colspan="2"| [[Special:ShortPages]]
|-
|colspan="2"| [[Special:BrokenRedirects]]
|-
|colspan="2"| [[Special:DoubleRedirects]]
|}
[[File:IM IN UR WIKI RVRTING UR EDITS lolcat.jpg|450px]]
gsqib5y2p7s3xzc3tfwug3srkad9krp
Korisnik:ChristianH
2
4783
15234
2011-04-23T00:19:02Z
189.35.80.135
Nova stranica: {{babel|pt|es-2|en-1}} I'm a Brazilian editor and member of Wikipedia since April 2008.<br><span class="plainlinks">[http://toolserver.org/~vvv/sulutil.php?user=ChristianH SUL account...
15234
wikitext
text/x-wiki
{{babel|pt|es-2|en-1}}
I'm a Brazilian editor and member of Wikipedia since April 2008.<br><span class="plainlinks">[http://toolserver.org/~vvv/sulutil.php?user=ChristianH SUL account status]</span>
Contact:
*<span class="plainlinks">[http://pt.wikipedia.org/w/index.php?title=Usu%C3%A1rio_Discuss%C3%A3o:ChristianH&action=edit§ion=new My talk page in pt.wikipedia]</span>
*[[Special:EmailUser/ChristianH|E-mail]]
oqhre0nph2i13t846hv99bncxl3c94x
Korisnik:Thehelpfulone/common.js
2
4787
23053
15286
2012-04-08T19:14:50Z
Pathoschild
81
global JavaScript ([[m:User:Pathoschild/Scripts/Synchbot|requested by Thehelpfulone]])
23053
javascript
text/javascript
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:Thehelpfulone/global.js&action=raw&ctype=text/javascript');
90o0j49y1bc5ojh2qz4bpul8v2bl78l
Korisnik:Vigorous action
2
4790
17551
15344
2011-08-28T10:56:38Z
Vigorous action
479
17551
wikitext
text/x-wiki
[[meta:user:vigorous action|Vigorous action]]/[[w:ja:user:vigorous_action|home]]
[[sulutil:Vigorous_action|SUL]]
5cyluc67zjj9mesgz28ivcb9sxzwqsi
Korisnik:Christine (WMF)
2
4792
15353
2011-05-27T18:38:14Z
Jalexander-WMF
734
creating and updating global user pages for WMF Staff member upon request ([[m:User:Jalexander|Questions?]])
15353
wikitext
text/x-wiki
<div style="text-align:center;">''Never doubt that a small group of thoughtful, committed citizens can change the world.''
''Indeed, it is the only thing that ever has.''
''-- [[w:en:Margaret Mead|Margaret Mead]]''</div>
==Who I Am==
I work in Reader Relations for the Wikimedia Foundation. I have a background in online community management, and am currently a Master's candidate at [[w:en:San Jose State University|San Jose State University]] in [[w:en:Applied anthropology|Applied anthropology]]. My thesis topic revolves around stakeholder relations in Web 2.0, using [[w:en:LiveJournal|LiveJournal]] as my fieldsite. I am analyzing how communications occur, how they break down, and where the failures in communication occur. I hope to use this information to be able to assist organizations with interfacing better with their online communities; not seeing them as simple consumers to be sold a product to, but instead as partners and true stakeholders in their operations.
My volunteer account is [[w:en:User:Kethryvis|Kethryvis]], which I use sporadically usually on small edits on interesting subjects that generally have nothing to do with my scholarly interests. It's what keeps me sane.
I also have an alternate account, [[w:en:User:Kheff|Kheff]] in order to see what the registration process is like for new editors. This account will make few, if any, edits and will be abandoned once this research is complete.
If you'd like to find me on IRC, I hang out under the nick ChristineM. Very original, I know.
You can email me with any questions or comments to readers[[File:At sign.svg|15px|﹫|link=]]wikimedia.org
==What I'm Thinking About==
I'm thinking about how to make the new editor process easier. I'm fairly new at editing myself, and it's rather daunting. There's an awful lot to wade through. There's gotta be an easier way! (one of my mantras)
I'm thinking about the line between WMF staff and Wiki-volunteers. Where they cross, where they clash, where they come together. Hey wait, that sounds familiar.
I'm thinking about all the on-Wiki and off-Wiki reading I need to do to get up to speed!
[[Category:Wikimedia Foundation staff]]
31qadww7yza09dy2xxjlf6ru4wdxmvb
Korisnik:Beria
2
4793
22814
15372
2012-03-21T17:24:01Z
Hoo User Page Bot
985
Creating global user page, per request
22814
wikitext
text/x-wiki
<!--- Page title --->
<div style="position:absolute; z-index:100; right:45px; top:10px;" class="metadata"><small>''[[:pt:s:A minha pátria é a língua portuguesa|'''A minha pátria é a língua portuguesa!''']]''</small></div><div style="position:absolute; z-index:100; right:10px; top:10px;" class="metadata">[[File:Flags of Brazil and Portugal.svg|30px|link=:pt:CLPC]]</div></div>
<!--- Page style background --->
{| style="width: 100%; background-color: #e2e7f7; border: 2px solid #4888aa; -moz-border-radius:15px; vertical-align: top;"
| colspan="2" style="cellpadding=8; cellspacing=8" |
<!-- Qoute section -->
|-
| style="background-color: #EFF8FF; border: 1px solid #8888aa; -moz-border-radius:15px; border-right-width:4px; border-bottom-width:4px; vertical-align: top;" colspan="2"|
{| style="margin:auto; border-collapse:collapse; border-style:none; background-color:transparent; width:100% ; {{#if: | border: 1px solid #AAAAAA;}}" class="cquote"
| width="20" valign="top" style="color:#B2B7F2;font-size:35px;font-family:'Times New Roman',serif;font-weight:bold;text-align:left;padding:10px 10px;" | “
| valign="top" style="padding:4px 10px;" | <div style="font-family:'Palatino Linotype'; font-style: italic; font-size:16px">No man is an island entire of itself; every man is a piece of the continent, a part of the main; if a clod be washed away by the sea, Europe is the less, as well as if a promontory were, as well as any manner of thy friends or of thine own were; any man's death diminishes me, because I am involved in mankind. And therefore never send to know for whom the bell tolls; it tolls for thee.
| width="20" valign="bottom" style="color:#B2B7F2;font-size:36px;font-family:'Times New Roman',serif;font-weight:bold;text-align:right;padding:10px 10px;" | ”
|-
| colspan="3" style="padding-right: 4%" | <p style="font-size:smaller;text-align: right"><cite style="font-style:normal;">—[[:en:John Donne|John Donne]] in [[:s:Meditation_VII|''Meditation VII'']].</cite></p>
|}
<!-- Description section -->
|-
| style="width: 78%; background-color: #EFF8FF; border: 1px solid #8888aa; -moz-border-radius:15px; -moz-border-radius:15px; border-right-width:4px; border-bottom-width:4px; vertical-align: top;" rowspan="2"|
<div style= text-align: justify;">
'''Name:''' <font color="#6495ED" size="5" face="Edwardian Script ITC" > Béria Lima </font> (Nickname: <font size="5" face="Edwardian Script ITC">Beh</font>)
'''In Wikimedia Projects since:''' ''5 October, 2007'' (''{{#if:|{{ontem hoje amanhã|{{#expr: + {{#expr:
<!--Days from all years past:-->
+ (({{CURRENTYEAR}} - 1) * 365)
+ ((({{CURRENTYEAR}} - 1) - (({{CURRENTYEAR}} - 1) mod 4)) / 4) <!--add a day for every leap-->
- ((({{CURRENTYEAR}} - 1) - (({{CURRENTYEAR}} - 1) mod 100)) / 100) <!--subtract 100 year exception-->
+ ((({{CURRENTYEAR}} - 1) - (({{CURRENTYEAR}} - 1) mod 400)) / 400) <!--readd 400 year exception-->
<!--Days so far this year:-->
+ {{ #ifexpr: <!--add days for past months this year--> <!--Gives 1 or 2 extra days because of February-->
({{CURRENTMONTH}} - 1) < 8
| ( ({{CURRENTMONTH}} - 1) * 30.5 round 0)
| ( ({{CURRENTMONTH}} - 1) * 30.5 + 0.9 round 0 )
}}
- {{ #ifexpr: ({{CURRENTMONTH}} <= 2) | 0 |
{{ #ifexpr: <!-- if leap year -->
({{CURRENTYEAR}} / 4) = ({{CURRENTYEAR}} / 4 round 0) <!--If divisible by 4-->
and ({{CURRENTYEAR}} / 100 != {{CURRENTYEAR}} / 100 round 0) <!--and not by 100-->
| 1 | 2
}}
}}
+ {{ #ifexpr: ({{CURRENTMONTH}} <= 2) | 0 |
{{ #ifexpr: <!--400 year exception-->
({{CURRENTYEAR}} / 400) = ({{CURRENTYEAR}} / 400 round 0)
| 1 | 0
}}
}}
+ {{CURRENTDAY}}
}}{{#ifexpr: {{CURRENTYEAR}} < 1 |
_ERROR - Can not handle dates before January 1, 1 A.D.
}} - {{#expr:
<!--Days from all years past:-->
+ ((2007 - 1) * 365)
+ (((2007 - 1) - ((2007 - 1) mod 4)) / 4) <!--add a day for every leap-->
- (((2007 - 1) - ((2007 - 1) mod 100)) / 100) <!--subtract 100 year exception-->
+ (((2007 - 1) - ((2007 - 1) mod 400)) / 400) <!--readd 400 year exception-->
<!--Days so far this year:-->
+ {{ #ifexpr: <!--add days for past months this year--> <!--Gives 1 or 2 extra days because of February-->
(10 - 1) < 8
| ( (10 - 1) * 30.5 round 0)
| ( (10 - 1) * 30.5 + 0.9 round 0 )
}}
- {{ #ifexpr: (10 <= 2) | 0 |
{{ #ifexpr: <!-- if leap year -->
(2007 / 4) = (2007 / 4 round 0) <!--If divisible by 4-->
and (2007 / 100 != 2007 / 100 round 0) <!--and not by 100-->
| 1 | 2
}}
}}
+ {{ #ifexpr: (10 <= 2) | 0 |
{{ #ifexpr: <!--400 year exception-->
(2007 / 400) = (2007 / 400 round 0)
| 1 | 0
}}
}}
+ 8
}}{{#ifexpr: 2007 < 1 |
_ERROR - Can not handle dates before January 1, 1 A.D.
}} }} }}|{{#expr:+ {{#expr:
<!--Days from all years past:-->
+ (({{CURRENTYEAR}} - 1) * 365)
+ ((({{CURRENTYEAR}} - 1) - (({{CURRENTYEAR}} - 1) mod 4)) / 4) <!--add a day for every leap-->
- ((({{CURRENTYEAR}} - 1) - (({{CURRENTYEAR}} - 1) mod 100)) / 100) <!--subtract 100 year exception-->
+ ((({{CURRENTYEAR}} - 1) - (({{CURRENTYEAR}} - 1) mod 400)) / 400) <!--readd 400 year exception-->
<!--Days so far this year:-->
+ {{ #ifexpr: <!--add days for past months this year--> <!--Gives 1 or 2 extra days because of February-->
({{CURRENTMONTH}} - 1) < 8
| ( ({{CURRENTMONTH}} - 1) * 30.5 round 0)
| ( ({{CURRENTMONTH}} - 1) * 30.5 + 0.9 round 0 )
}}
- {{ #ifexpr: ({{CURRENTMONTH}} <= 2) | 0 |
{{ #ifexpr: <!-- if leap year -->
({{CURRENTYEAR}} / 4) = ({{CURRENTYEAR}} / 4 round 0) <!--If divisible by 4-->
and ({{CURRENTYEAR}} / 100 != {{CURRENTYEAR}} / 100 round 0) <!--and not by 100-->
| 1 | 2
}}
}}
+ {{ #ifexpr: ({{CURRENTMONTH}} <= 2) | 0 |
{{ #ifexpr: <!--400 year exception-->
({{CURRENTYEAR}} / 400) = ({{CURRENTYEAR}} / 400 round 0)
| 1 | 0
}}
}}
+ {{CURRENTDAY}}
}}{{#ifexpr: {{CURRENTYEAR}} < 1 |
_ERROR - Can not handle dates before January 1, 1 A.D.
}} - {{#expr:
<!--Days from all years past:-->
+ ((2007 - 1) * 365)
+ (((2007 - 1) - ((2007 - 1) mod 4)) / 4) <!--add a day for every leap-->
- (((2007 - 1) - ((2007 - 1) mod 100)) / 100) <!--subtract 100 year exception-->
+ (((2007 - 1) - ((2007 - 1) mod 400)) / 400) <!--readd 400 year exception-->
<!--Days so far this year:-->
+ {{ #ifexpr: <!--add days for past months this year--> <!--Gives 1 or 2 extra days because of February-->
(10 - 1) < 8
| ( (10 - 1) * 30.5 round 0)
| ( (10 - 1) * 30.5 + 0.9 round 0 )
}}
- {{ #ifexpr: (10 <= 2) | 0 |
{{ #ifexpr: <!-- if leap year -->
(2007 / 4) = (2007 / 4 round 0) <!--If divisible by 4-->
and (2007 / 100 != 2007 / 100 round 0) <!--and not by 100-->
| 1 | 2
}}
}}
+ {{ #ifexpr: (10 <= 2) | 0 |
{{ #ifexpr: <!--400 year exception-->
(2007 / 400) = (2007 / 400 round 0)
| 1 | 0
}}
}}
+ 5
}}{{#ifexpr: 2007 < 1 |
_ERROR - Can not handle dates before January 1, 1 A.D.
}} }} }}'' days)
__NOTOC__
== My home(s) ==
[[File:Ponte D. Luís, Sé e Jardim do Morro vistos de Gaia.JPG|center|thumb|450px|[[:pt:Sé do Porto|Porto Cathedral]], [[:pt:Ponte Dom Luís I|Dom Luis I bridge]] and [[:pt:Serra do Pilar|Serra do Pilar Monastery]], 3 postcards of [[:en:Oporto|my town]].]]
[[File:Recife 2005 JAN 25 AncientAndModernCenter.jpg|center|thumb|450px|The new and the [[:en:Recife Antigo|old Recife]].]]
== Quotes ==
{| style="margin:auto; border-collapse:collapse; border-style:none; background-color:transparent; width:{{#if: | 100% | auto}}; {{#if: | border: 1px solid #AAAAAA;}}" class="cquote"
| width="20" valign="top" style="color:#B2B7F2;font-size:35px;font-family:'Times New Roman',serif;font-weight:bold;text-align:left;padding:10px 10px;" | “
| valign="top" style="padding:4px 10px;" | <div style="font-family:'Palatino Linotype'; font-style: italic; font-size:16px">La pensée est le labeur de l’intelligence, la rêverie en est la volupté.
| width="20" valign="bottom" style="color:#B2B7F2;font-size:36px;font-family:'Times New Roman',serif;font-weight:bold;text-align:right;padding:10px 10px;" | ”
|-
| colspan="3" style="padding-right: 4%" |<p style="font-size:smaller;text-align: right"><cite style="font-style:normal;">—[[:fr:Victor Hugo|Victor Hugo]] in [[:fr:Les Miserables|''Les Miserables'']].</cite></p>
|}
{| style="margin:auto; border-collapse:collapse; border-style:none; background-color:transparent; width:{{#if: | 100% | auto}}; {{#if: | border: 1px solid #AAAAAA;}}" class="cquote"
| width="20" valign="top" style="color:#B2B7F2;font-size:35px;font-family:'Times New Roman',serif;font-weight:bold;text-align:left;padding:10px 10px;" | “
| valign="top" style="padding:4px 10px;" | <div style="font-family:'Palatino Linotype'; font-style: italic; font-size:16px">There is in fact a heroism of virtue in the pride of this woman, who resists every seduction, the impulses of his own passion as well as the rapture of the senses</div>
| width="20" valign="bottom" style="color:#B2B7F2;font-size:36px;font-family:'Times New Roman',serif;font-weight:bold;text-align:right;padding:10px 10px;" | ”
|-
|colspan="3" style="padding-right: 4%" | <p style="font-size:smaller;text-align: right"><cite style="font-style:normal;">—[[:w:José de Alencar|José de Alencar]], in [[:s:pt:Senhora|''Senhora'']].</cite></p>
|}
{| style="margin:auto; border-collapse:collapse; border-style:none; background-color:transparent; width:{{#if: | 100% | auto}}; {{#if: | border: 1px solid #AAAAAA;}}" class="cquote"
| width="20" valign="top" style="color:#B2B7F2;font-size:35px;font-family:'Times New Roman',serif;font-weight:bold;text-align:left;padding:10px 10px;" | “
| valign="top" style="padding:4px 10px;" | <div style="font-family:'Palatino Linotype'; font-style: italic; font-size:16px">Der Irrtum ist viel leichter zu erkennen, als die Wahrheit zu finden; jener liegt auf der Oberfläche, damit läßt sich wohl fertig werden; diese ruht in der Tiefe, danach zu forschen ist nicht jedermanns Sache.
| width="20" valign="bottom" style="color:#B2B7F2;font-size:36px;font-family:'Times New Roman',serif;font-weight:bold;text-align:right;padding:10px 10px;" | ”
|-
| colspan="3" style="padding-right: 4%" |<p style="font-size:smaller;text-align: right"><cite style="font-style:normal;">—[[:de:Johann Wolfgang von Goethe|Johann Wolfgang von Goethe]] in [[:de:Maximen und Reflexionen|''Maximen und Reflexionen'']].</cite></p>
|}
== Other accounts ==
* [[:pt:User:Lucia Bot|Lucia Bot]]
* [[User:Ripchip Bot|Ripchip Bot]]
== [[:commons:Category:Images sent by Béria Lima|My pictures]] ==
<div style="width: 100%; -moz-column-count: 2;">
; Pictures taken by me
* [[:commons:Category:Files from Brazil by Béria Lima|Files from Brazil]]
* [[:commons:Category:Files from Portugal by Béria Lima|Files from Portugal]]
:* [[:commons:Category:Files from Aveiro by Béria Lima|Files from Aveiro]]
:* [[:commons:Category:Files from Braga by Béria Lima|Files from Braga]]
:* [[:commons:Category:Files from Lisboa by Béria Lima|Files from Lisbon]]
:* [[:commons:Category:Files from Porto by Béria Lima|Files from Oporto]]
:* [[:commons:Category:Files from Sintra by Béria Lima|Files from Sintra ]]
* [[:commons:Category:Files from Spain by Béria Lima|Files from Spain]]
; Files uploaded by me
* [[:commons:Category:Files from Flickr uploaded by Béria Lima|Files from Flickr]]
:* [[:commons:Category:Files of Lisboa uploaded by Béria Lima|Files of Lisbon from Flickr]]
:* [[:commons:Category:Files of Porto uploaded by Béria Lima|Files of Oporto from Flickr]]
* [[:commons:Category:Files from Wikimedia projects uploaded by Béria Lima|Files from Wikimedia projects]]
; Pictures of me
* [[:commons:Category:Béria Lima|Béria Lima]] (the category)
</div>
== Other Wikimedia projects ==
<!--- Projetos Correlatos! rsrs ----------->
<div style="clear:both;"></div>
<center>
{| class="toccolours"
| style="background:#d3d3d3;color:#a52a2a text-align:center;width:100%;" colspan="14" | <big style="font-size:110%;"><center>'''My [[:en:WP:UP|User pages]] in other wiki projects'''</center></big>
|-
| valign="middle" bgcolor="ffffff" | <center>[[image:Wikipedia-logo-pt.png|60px]]</center>
| valign="middle" bgcolor="ffffff" | <center>[[image:Wikipedia-logo-en.png|60px]]</center>
| valign="middle" bgcolor="ffffff" | <center>[[image:Commons-logo.svg|50px]]</center>
| valign="middle" bgcolor="ffffff" | <center>[[image:Wikiquote-logo.png|50px]]</center>
| valign="middle" bgcolor="ffffff" | <center>[[image:Wikinews-logo.svg|50px]]</center>
| valign="middle" bgcolor="ffffff" | <center>[[image:Wikisource-logo.svg|50px]]</center>
| valign="middle" bgcolor="ffffff" | <center>[[image:Wikibooks-logo.png|60px]]</center>
| valign="middle" bgcolor="ffffff" | <center>[[Image:Wiktionary-logo-pt.png|60px]]</center>
| valign="middle" bgcolor="ffffff" | <center>[[Image:Wikiversity-logo.svg|60px]]</center>
| valign="middle" bgcolor="ffffff" | <center>[[Image:Test wiki logo.png|60px]]</center>
|-
<!-- Páginas de Usuário -->
| valign="middle" bgcolor="d3d3d3" | <center>'''[[:w:pt:User:Beria|((pt)) Wikipedia]]'''
| valign="middle" bgcolor="d3d3d3" | <center>[[:en:User:Beria|((en)) Wikipedia]]
| valign="middle" bgcolor="d3d3d3" | <center>[[commons:User:Beria|Commons]]
| valign="middle" bgcolor="d3d3d3" | <center>[[:pt:q:Usuário:Beria|Wikiquote]]
| valign="middle" bgcolor="d3d3d3" | <center>[[:pt:n:Usuário:Beria|Wikinews]]
| valign="middle" bgcolor="d3d3d3" | <center>[[:pt:s:Usuário:Beria|Wikisource]]
| valign="middle" bgcolor="d3d3d3" | <center>[[:pt:b:Usuário:Beria|Wikibooks]]
| valign="middle" bgcolor="d3d3d3" | <center>[[:pt:wikt:Usuário:Beria|Wikcionário]]
| valign="middle" bgcolor="d3d3d3" | <center>[[:pt:v:Usuário:Beria|Wikiversidade]]
| valign="middle" bgcolor="d3d3d3" | <center><span class="plainlinks">[http://test.wikipedia.org/wiki/User:Beria Test Wiki]
|-
|}
<!--- Fim dos Projetos Correlatos! rsrs ----------->
<br style="clear:both" />
</div><!--
END OF MAIN BOX
START OF TOP RIGHT-FLOAT BOX (portrait)-->
<!-- Image section -->
| style="width: 20%; background-color: #EFF8FF; border: 1px solid #8888aa; -moz-border-radius:15px; border-right-width:4px; border-bottom-width:4px; vertical-align: top;" rowspan="1"|
[[Image:Spleen et ideal.jpg|220px|center|thumb|'''Spleen et Ideal'''<br /><p style="font-size:smaller;text-align: right">by Carlos Schwabe</p>]]
<!-- Userboxes section -->
|-
| style="width: 20%; background-color: #EFF8FF; border: 1px solid #8888aa; -moz-border-radius:15px; border-right-width:4px; border-bottom-width:4px; vertical-align: top; text-align: center; height: 10px;" rowspan="2"|
{|
[[Image:Crystal Clear app package.png|35px]] <big>'''Userboxes'''</big>
<!--- Babel -->
{{#babel:pt-N|en-3|es-2|ca-2|gl-2|mwl-2|fr-1|it-1|an-1|oc-1}}
<!-- Other userboxes -->
<!-- Meta Adm box -->
<div style="float:center; border:1px solid #999; margin:1px; width:238px">
{| cellspacing="0" style="width:238px; background:#EEE;"
| style="width:45px; height:45px; background:#DDD; text-align:center; font-size:14pt; color:black;" | '''[[File:Wikimedia Community Logo.svg|40 px]]'''
| style="font-size:8pt; padding:4pt; line-height:1.25em; color:#000;" | This user is an [[Meta:Administrators|administrator]] on Meta-Wiki. <small>(<span class="plainlinks">[{{fullurl:Special:Listusers|limit=1&username={{PAGENAMEE}} verify}}]</span>)</small>
|}</div>
<!-- Commons Adm box -->
<div style="float:center; border:1px solid #999; margin:1px; width:238px">
{| cellspacing="0" style="width:238px; background:#EEE;"
| style="width:45px; height:45px; background:#DDD; text-align:center; font-size:14pt; color:black;" | '''[[File:Commons-logo.svg|40 px]]'''
| style="font-size:8pt; padding:4pt; line-height:1.25em; color:#000;" | This user is an [[:commons:Commons:Administrators|administrator]] on Commons. <small>(<span class="plainlinks">[{{fullurl:commons:Special:Listusers|limit=1&username={{PAGENAMEE}} verify}}]</span>)</small>
|}</div>
<!-- Strategy Adm box -->
<div style="float:center; border:1px solid #999; margin:1px; width:238px">
{| cellspacing="0" style="width:238px; background:#EEE;"
| style="width:45px; height:45px; background:#DDD; text-align:center; font-size:14pt; color:black;" | '''[[File:Wikimedia Community Logo.svg|40 px]]'''
| style="font-size:8pt; padding:4pt; line-height:1.25em; color:#000;" | This user is an [[:strategy:Commons:Administrators|administrator]] on Strategy-Wiki. <small>(<span class="plainlinks">[{{fullurl:strategy:Special:Listusers|limit=1&username={{PAGENAMEE}} verify}}]</span>)</small>
|}</div>
<!-- Wikimedia Portugal -->
<div class="TemplateBUser" style="float:center; margin:1px; width:238px; border:1px solid #006300;">
{| border="0" cellspacing="0" cellpadding="1" style="background-color:#ffffff; color:#000000; width:100%;"
|-
|class="TemplateBUserLeft" style="width:45px; height:45px; background-color:#FFFFFF; color:#000000; text-align:center; vertical-align:middle;"|
[[Image:Wikimedia Portugal logo 135px.png|45px|Wikimedia Portugal logo 135px.png]]
|class="TemplateBUserInfo" style="padding:1px 4px; vertical-align:middle;"|
<div class="plainlinks TemplateBUserText" style="font-size:0.83em; direction:ltr; line-height:1.25;">Este utilizador é membro da [http://www.wikimedia.pt/ Wikimedia Portugal].</div>
|}</div>
<!-- Wikimedia Argentina -->
<div class="TemplateBUser" style="float:center; margin:1px; width:238px; border:1px solid #006300;">
{| border="0" cellspacing="0" cellpadding="1" style="background-color:#ffffff; color:#000000; width:100%;"
|-
|class="TemplateBUserLeft" style="width:45px; height:45px; background-color:#FFFFFF; color:#000000; text-align:center; vertical-align:middle;"|
[[File:Wikimedia Argentina logo.svg|45px|Wikimedia Argentina logo.svg]]
|class="TemplateBUserInfo" style="padding:1px 4px; vertical-align:middle;"|
<div class="plainlinks TemplateBUserText" style="font-size:0.83em; direction:ltr; line-height:1.25;">This user is member of [http://www.wikimedia.org.ar/ Wikimedia Argentina].</div>
|}</div>
<!-- IRC user -->
<div style="float: center; width: 238px; border: solid #1E90FF 1px; margin: 1px;">
{| cellspacing="0" style="width: 238px; color:#000000; background: #000000;"
| style="width: 45px; height: 45px; background: #77aaff; text-align: center; font-size:14pt; color:#FFCC11" |[[Image:Crystal kdmconfig.png|36px]]
| style="font-size: 8pt; padding: 4pt; line-height: 1.25em; background:#bbddff" | This user's [[IRC]] nick is '''Beria''' on the server '''[[:en:Freenode|Freenode]]'''.
|}</div><noinclude>
<!-- Time zone -->
<div style="float:center; border:1px solid #ccc; margin:1px;width:248px " class="wikipediauserbox ">
{| cellspacing="0" style="width:238px; background:#fff;"
| style="width:45px; height:45px; background:#ccc; text-align:center; font-size:12pt; color:black; padding:0 1px 0 0; line-height:1.25em; vertical-align: middle; " | [[Image:Nuvola apps kworldclock.png|43px|link=:en:Template:User time zone]]
| style="text-align:left; font-size:8pt; padding:0 4px 0 4px; height:45px; line-height:1.25em; color:black; vertical-align: middle; " | This user's time zone is '''[[:en:UTC-3|UTC-3]]'''.
|}</div>
<!-- Brazil <3 Portugal -->
<div style="float: center; border:solid #800 1px; margin: 1px;width:248px ">
{| cellspacing="0" style="width: 240px; background: #080;"
| style="width: 45px; height: 45px; background: #EEE; text-align: center; font-size: 12pt; color: #000;" | '''[[Image:Bandeira pt.gif|40px]]'''
| style="font-size: 8pt; padding: 4pt; line-height: 1.25em; color: #fff;" | This brazilian user loves '''[[Portugal|<span style="color:white">Portugal</span>]]'''.
| style="width: 45px; height: 45px; background: #EEE; text-align: center; font-size: 12pt; color: #000;" | '''[[Image:Flags of Brazil and Portugal.svg|50px]]'''
|}</div><div style="clear:both;"></div>
|}
|}
rgcfkqksbnelpld0ioomnxrohwtv4o2
Korisnik:Wikitanvir/common.js
2
4795
15632
15629
2011-06-23T07:01:04Z
Wikitanvir
685
fix
15632
javascript
text/javascript
mw.loader.load('http://meta.wikimedia.org/w/index.php?title=User:Wikitanvir/global.js&action=raw&ctype=text/javascript');
eu57oubmqbain3535mm4utqg91i5df7
Korisnik:Wikitanvir/common.css
2
4796
15631
15630
2011-06-23T06:57:36Z
Wikitanvir
685
Global CSS
15631
css
text/css
@import "http://meta.wikimedia.org/w/index.php?title=User:Wikitanvir/global.css&action=raw&ctype=text/css";
rolnl57kedhql98hla27k4s2cfq1tbq
Korisnik:GlobalEditBot
2
4798
15645
2011-07-01T12:38:30Z
GlobalEditBot
908
global userpage like requested [[:m:Syncbot|here]]
15645
wikitext
text/x-wiki
Hei!
I'm GlobalEditBot nice to meet you! I work for [[user:Dirt Diver]] and my task is to create global pages like userpages, talkpages and more. When you want more information or make a request please see my [[:m:User:Dirt Diver|Meta page]].
bahiignmrw6x1lwmy6copcdlv50thql
Korisnik:Dirt Diver
2
4799
15646
2011-07-01T14:24:49Z
GlobalEditBot
908
global userpage like requested [[:m:Syncbot|here]]
15646
wikitext
text/x-wiki
Hi,
I'm Dirt Diver, the bot operator for [[:m:User:GlobalEditBot]]. Please contact me on [[:m:|Meta]] if problems will occur.
qemawpdxhmp2w5nndxkqphkwjd7gpab
Korisnik:Teles
2
4800
15647
2011-07-01T16:56:57Z
Wikitanvir
685
Creating userpage per request
15647
wikitext
text/x-wiki
[[Image:Redirectltr.png|#REDIRECT]]<span class="redirectText" id="softredirect">[[:m:user:Teles]]</span>
hdsr4spn4wr4v6n75ioss6u7suyofmz
Korisnik:Vituzzu
2
4801
15648
2011-07-01T17:33:08Z
Wikitanvir
685
Creating userpage per request
15648
wikitext
text/x-wiki
Please contact me on [[:m:User talk:Vituzzu|meta]] or [[:m:w:it:User talk:Vituzzu|Wikipedia in Italian]], you can also find some information about my activities on Wikipedia [[:m:User:Vituzzu|here]].
n1g86ogj2adv0pec093rdzxsggl3ewg
Korisnik:Reza1615/common.js
2
4802
15649
2011-07-02T01:43:49Z
Pathoschild
81
global JavaScript ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
15649
javascript
text/javascript
mw.loader.load('http://meta.wikimedia.org/w/index.php?title=User:reza1615/global.js&action=raw&ctype=text/javascript');
0mj5e981kd714jtusacoh6geqylflkp
Korisnik:MacMed
2
4803
15650
2011-07-02T04:07:18Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
15650
wikitext
text/x-wiki
[[Image:Redirectltr.png|#REDIRECT]]<span class="redirectText" id="softredirect">[[m:w:en:user:MacMed]]</span>
gd65qnfv2c1mq94q8pdga76cpodptu5
Korisnik:Bencmq
2
4804
15651
2011-07-02T05:14:19Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
15651
wikitext
text/x-wiki
[[Image:Redirectltr.png|#REDIRECT]]<span class="redirectText" id="softredirect">[[w:m:user:Bencmq]]</span>
5g79f363gzrklr7n8gpjo400x572e8c
Korisnik:Bencmq/common.js
2
4805
43531
34507
2015-03-27T00:47:37Z
Pathoschild
81
global user pages ([[m:Synchbot|requested by Bencmq]])
43531
javascript
text/javascript
navigationPoint = document.getElementById('p-navigacija');
ok495gu5oduoqjb3f9c8aj4k033hypu
Korisnik:Dawid Deutschland
2
4806
15653
2011-07-02T16:21:13Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
15653
wikitext
text/x-wiki
* [[m:user:Dawid Deutschland|Meta]].
* [[m:ka:user:Dawid Deutschland|Georgische Wikipedia]].
* [[m:wikt:ka:user:Dawid Deutschland|Georgisches Wikiwörterbuch]].
* [[m:de:user:Dawid Deutschland|Deutsche Wikipedia]].
qkycphuqt8rmi17hd1j5tg82xcgs94j
Korisnik:Addihockey10
2
5547
16501
2011-07-19T21:34:49Z
Addihockey10
923
Creating global user page
16501
wikitext
text/x-wiki
{{DISPLAYTITLE:<span style="display:none;">User:</span><font color=red>Addi<font color=blue>hockey<font color=gold>10</font></font></font>}}
<div style="position: relative; height: 1%;">
<div style="position: relative; margin: 0 -1em; padding: 0; background-color: transparent; border: none; height: 1%;">
<div style="position: relative; margin: 0 auto; width: 800px; border: none; height: 1%;">
<div style="position: relative; overflow: hidden; height: 600px;"><!-- Height of the main image -->
<div style="position: relative; overflow: hidden; margin: 1000;">[[File:Flowers in my backyard {{#ifeq: {{#ifeq: {{#expr:({{NUMBEROFEDITS:R}} mod 20) + 1}}|3|20|{{#expr:({{NUMBEROFEDITS:R}} mod 20) + 1}}}}|7|1|{{#expr:({{NUMBEROFEDITS:R}} mod 20) + 1}}}}.jpg|left|900px]]</div>
<div style="position: absolute; top: 0; width: 100%; height: 100%;">
<div style="margin: 1em; font-size: 100%;">
</div>
<div style="position: absolute; left: 180px; top: 320px; z-index: 10; width: 300px; border: none; padding: 0.75em 1em; background-color:none; text-align:left; v-align:center;">
<span style="font-family:Times New Roman;color:white; font-size:400%;">'''''Addihockey10'''''</span></div>
<div style="position: absolute; left: 130px; top: 355px; z-index: 10; width: 300px; border: none; padding: 0.75em 1em; background-color:none; text-align:left; v-align:center;">
</div>
</div>
</div>
</div>
</div>
</div>
<center>
47r0zg6fizf1emqp57xy5brpmdbmxj8
Š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:ka-dekl
10
5782
58048
34960
2017-02-22T16:58:33Z
Srđan
1899
[[Help:Cat-a-lot|Cat-a-lot]]: Moving from [[Category:Deklinacije šablone (gruzijski)]] to [[Category:Šabloni deklinacije (gruzijski)]]
58048
wikitext
text/x-wiki
<div class="NavFrame" style="" >
<div class="NavHead" style="" >Deklinacija: {{Gru|{{{1}}}}}</div>
<div class="NavContent">
{| border="1px solid #DEDEDE" style="border-collapse:collapse; background:#F9F9F9; text-align:center; width:100%" class="inflection-table"
|-
! style="width:16%;background:#DEDEDE" |
! style="background:#DEDEDE" | Jednina <small>([[მხოლოობითი რიცხვი|მხოლოობითი]])</small>
! style="background:#DEDEDE" | Množina I <small>([[მრავლობითი რიცხვი|მრავლობითი 1]])</small>
! style="background:#DEDEDE" | Množina II <small>([[მრავლობითი რიცხვი|მრავლობითი 2]])</small>
|-
! style="background:#D0E0D0" | Nominativ <br> <small>([[სახელობითი ბრუნვა|სახელობითი]])</small>
| {{Gru|{{#if:{{{druga riječ|}}}|{{{druga riječ}}}ი }} {{{1}}}}} <br> ({{#if:{{{druga riječ_|}}}|{{{druga riječ_}}}i }}{{{2}}})
| {{#ifeq:{{{plural|}}}|no||{{Gru|{{#if:{{{druga riječ|}}}|{{{druga riječ}}}ი }} {{{3}}}}} <br> ({{#if:{{{druga riječ_|}}}|{{{druga riječ_}}}i }}{{{4}}})}}
| {{#ifeq:{{{plural|}}}|no||{{Gru|{{#if:{{{druga riječ|}}}|{{{druga riječ}}}ნი }} {{{5}}}}} <br> ({{#if:{{{druga riječ_|}}}|{{{druga riječ_}}}ni }}{{{6}}})}}
|-
! style="background:#D0E0D0" | Ergativ <br> <small>([[მოთხრობითი ბრუნვა|მოთხრობითი]])</small>
| {{Gru|{{#if:{{{druga riječ|}}}|{{{druga riječ}}}მა }} {{{7}}}}} <br> ({{#if:{{{druga riječ_|}}}|{{{druga riječ_}}}ma }}{{{8}}})
| {{#ifeq:{{{plural|}}}|no||{{Gru|{{#if:{{{druga riječ|}}}|{{{druga riječ}}}მა }} {{{9}}}}} <br> ({{#if:{{{druga riječ_|}}}|{{{druga riječ_}}}ma }}{{{10}}})}}
| {{#ifeq:{{{plural|}}}|no||{{Gru|{{#if:{{{druga riječ|}}}|{{{druga riječ}}}თა }} {{{11}}}}} <br> ({{#if:{{{druga riječ_|}}}|{{{druga riječ_}}}t'a }}{{{12}}})}}
|-
! style="background:#D0E0D0" | Dativ <br> <small>([[მიცემითი ბრუნვა|მიცემითი]])</small>
| {{Gru|{{#if:{{{druga riječ|}}}|{{{druga riječ}}} }} {{{13}}}}} <br> ({{#if:{{{druga riječ_|}}}|{{{druga riječ_}}} }}{{{14}}})
| {{#ifeq:{{{plural|}}}|no||{{Gru|{{#if:{{{druga riječ|}}}|{{{druga riječ}}}}} {{{15}}}}} <br> ({{#if:{{{druga riječ_|}}}|{{{druga riječ_}}} }}{{{16}}})}}
| {{#ifeq:{{{plural|}}}|no||{{Gru|{{#if:{{{druga riječ|}}}|{{{druga riječ}}} }} {{{17}}}}} <br> ({{#if:{{{druga riječ_|}}}|{{{druga riječ_}}} }}{{{18}}})}}
|-
! style="background:#D0E0D0" | Genitiv <br> <small>([[ნათესაობითი ბრუნვა|ნათესაობითი]])</small>
| {{Gru|{{#if:{{{druga riječ|}}}|{{{druga riječ}}}ი }} {{{19}}}}} <br> ({{#if:{{{druga riječ_|}}}|{{{druga riječ_}}}i }}{{{20}}})
| {{#ifeq:{{{plural|}}}|no||{{Gru|{{#if:{{{druga riječ|}}}|{{{druga riječ}}}ი }} {{{21}}}}} <br> ({{#if:{{{druga riječ_|}}}|{{{druga riječ_}}}i }}{{{22}}})}}
| {{#ifeq:{{{plural|}}}|no||{{Gru|{{#if:{{{druga riječ|}}}|{{{druga riječ}}} }} {{{23}}}}} <br> ({{#if:{{{druga riječ_|}}}|{{{druga riječ_}}} }}{{{24}}})}}
|-
! style="background:#D0E0D0" | Instrumental <br> <small>([[მოქმედებითი ბრუნვა|მოქმედებითი]])</small>
| {{Gru|{{#if:{{{druga riječ|}}}|{{{druga riječ}}}ი }} {{{25}}}}} <br> ({{#if:{{{druga riječ_|}}}|{{{druga riječ_}}}i }}{{{26}}})
| {{#ifeq:{{{plural|}}}|no||{{Gru|{{#if:{{{druga riječ|}}}|{{{druga riječ}}}ი }} {{{27}}}}} <br> ({{#if:{{{druga riječ_|}}}|{{{druga riječ_}}}i }}{{{28}}})}}
|-
! style="background:#D0E0D0" | Adverbial <br> <small>([[ვითარებითი ბრუნვა|ვითარებითი]])</small>
| {{Gru|{{#if:{{{druga riječ|}}}|{{{druga riječ}}} }} {{{29}}}}} <br> ({{#if:{{{druga riječ_|}}}|{{{druga riječ_}}} }}{{{30}}})
| {{#ifeq:{{{plural|}}}|no||{{Gru|{{#if:{{{druga riječ|}}}|{{{druga riječ}}} }} {{{31}}}}} <br> ({{#if:{{{druga riječ_|}}}|{{{druga riječ_}}} }}{{{32}}})}}
|-
! style="background:#D0E0D0" | Vokativ <br> <small>([[წოდებითი ბრუნვა|წოდებითი]])</small>
| {{Gru|{{#if:{{{druga riječ|}}}|{{{druga riječ}}}ო }} {{{33}}}}} <br> ({{#if:{{{druga riječ_|}}}|{{{druga riječ_}}}o }}{{{34}}})
| {{#ifeq:{{{plural|}}}|no||{{Gru|{{#if:{{{druga riječ|}}}|{{{druga riječ}}}ო }} {{{35}}}}} <br> ({{#if:{{{druga riječ_|}}}|{{{druga riječ_}}}o }}{{{36}}})}}
| {{#ifeq:{{{plural|}}}|no||{{Gru|{{#if:{{{druga riječ|}}}|{{{druga riječ}}}ნო }} {{{37}}}}} <br> ({{#if:{{{druga riječ_|}}}|{{{druga riječ_}}}no }}{{{38}}})}}
|}</div></div><noinclude>
[[Kategorija:Šabloni deklinacije (gruzijski)]]</noinclude>
9pylartzoe6he001svgug46pdkrs14l
Šablon:Hebr
10
5797
72149
16921
2024-07-07T21:56:15Z
Barishan
287
72149
wikitext
text/x-wiki
<span class="HE" style="font-family:{{HE fontovi}}; font-family :inherit; font-size:150%; font-size :150%">{{{1}}}</span>
c9mix5jbzj705j2klyqaflqu5i7sx9u
Šablon:HE fontovi
10
5799
16931
16929
2011-08-11T12:53:25Z
Barishan
287
16931
wikitext
text/x-wiki
Narkisim
gbw6oamoo8ypf18klq2syff40j4ykdu
Šablon:Gru
10
5801
72159
72150
2024-07-07T22:20:19Z
Barishan
287
72159
wikitext
text/x-wiki
<span class="KA" style="font-family:{{KA fontovi}}; font-family :inherit; font-size:125%; font-size :125%">{{{1}}}</span>
sh0b0iqs2rmg3bbcfob1so7uz6yl8dj
Šablon:KA fontovi
10
5802
16925
2011-08-11T12:40:19Z
Barishan
287
Nova stranica: Sylfaen
16925
wikitext
text/x-wiki
Sylfaen
s0rgdnv0e4l41dr82w6klei5oi9o36t
Korisnik:Lucia Bot
2
5876
17024
2011-08-13T16:20:42Z
Lucia Bot
938
Creating global user page
17024
wikitext
text/x-wiki
{| class="infobox" style="width:21em; font-size: 90%; text-align: left;"
! colspan="2" style="text-align: center; font-size: 130%;" | Lucia Bot [[File:Crystal Clear action run.svg|24px|This user is a bot.]]
|-
| colspan="2" style="text-align: center; font size: 95%;" | ([[{{TALKSPACE}}:Lucia Bot|talk]] · [[Special:Contributions/Lucia Bot|contribs]])
<tr><th>Operator:</th><td>Beria</td></tr>
<tr><th>[[Wikipedia:Bots/Requests for approval|Approved]]?</th><td>[[:pt:Wikipedia:Bots/Requests for approval/{{PAGENAME}}|in pt.wiki yes]], but not here</td></tr>
<tr><th>[[Wikipedia:User_access_levels#Bots|Flagged]]?</th><td>no</td></tr>
<tr><th>[[Wikipedia:Bot requests|Task/s]]:</th><td> (in [[:pt:|pt.wikipedia]]) general bot</td></tr>
<tr><th>Edit rate:</th><td>10 per minut</td></tr>
<tr><th>Edit period/s:</th><td>Periodically</td></tr>
<tr><th>Automatic or manual?</th><td>automatic</td></tr>
<tr><th>[[:w:Programming language|Programming language]]/s:</th><td>[[Python]]</td></tr>
<tr><th>Other information:</th><td>See too [[User:Ripchip Bot|Ripchip Bot]]</td></tr>
|}
{| border="0" align="left" style="margin-left:1em; margin-bottom:1em;" width="370px"
! colspan="2" |
{| align="center" |
{| cellpadding="10" style="border-collapse:collapse; background-color:transparent; border-style:none;"
| width="10" valign=top | [[Image:cquote1.png|20px]]
| ''Lúcia, esta continuou sempre com os mesmos cabelos dourados e a mesma alegria, e todos os príncipes desejavam que ela fosse a sua rainha. E foi chamada de Lúcia, a Destemida.''
| valign=bottom |[[Image:cquote2.png|20px]]
|}
|<br clear=all><div align="right"><small>'''[[w:Lucy Pevensie|A Rainha Lúcia]]'''</small></div>
|}
|}
<!-- BABEL -->
{| width="270px" style="background: transparent" align="right"
| valign="top"|
<div style="text-align:center; background:transparent; border:solid transparent 1px">
<div style="background:#F5F5F5">'''Babel'''</div>
<div align="center">
{|
| <div style="float: left; border:solid #99B3FF 1px">
{| cellspacing="0" style="width: 250px; background: #E0E8FF"
| style="width: 50px; height: 50px; background: #99B3FF; text-align: center; font-size: 14pt" | '''PY'''
| style="font-size: 8pt; padding: 4pt; line-height: 1.25em; color: black" | Este utilizador tem como língua '''materna''' o '''Pythonês'''.
|}</div>
|-
| <div style="float: left; border:solid #6ef7a7 1px">
{| cellspacing="0" style="width: 250px; background: #c5fcdc"
| style="width: 50px; height: 50px; background: #6ef7a7; text-align: center; font-size: 12pt" | '''[[Image:Gnome-globe.svg|50px]]'''
| style="font-size: 8pt; padding: 4pt; line-height: 1.25em; color: black" | Este utilizador é '''poliglota''', e/ou conhece '''todos''' os idiomas existentes.
|}</div>
|}
|}
<!-- BABEL -->
<!-- Userbox-->
{| width="270px" style="background: transparent" align="right"
| valign="top"|
<div style="text-align:center; background:transparent; border:solid transparent 1px">
<div style="background:#F5F5F5">'''Userbox'''</div>
<div align="center">
{|
| <div style="float:right;border:solid blue 1px;margin:1px;">
<table cellspacing="0" style="width:236px; background:snow">
<tr>
<td style="width:45px;height:45px; background: snow; text-align:center;font-size:13pt;">
[[Image:Narnia aslan.jpg|35px|Aslam]]
</td>
<td style="font-size:8pt;padding:4pt;line-height:1.25em; color:black;" align=left>
This '''[[Special:ListUsers/bot|Narnian]]''' is a daugther of '''[[User:Beria|Béria Lima]]''' and is at your service here and in [[:w:C. S. Lewis#The Chronicles of Narnia|Narnia]].</font></td>
</tr></table></div>
|}
|}
<br clear="all">
{| style="border: 1px solid #aaa; background-color: snow; width: 80%; margin: 0 auto 1em auto; padding: .2em;" class="plainlinks"
|align="center"|[[Image:Crystal Clear action run.png|50px]]
|align="left" width="100%"|'''This user account is a [[Wikiquote:Bots|bot]] operated by [[User:Beria|Béria Lima]].'''
It is not a [[w: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>
<small>''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].''</small>
|}</div>
[[Category:Bot accounts]]
f23kcdurxke1m716c6zt0m4n064w7hz
Korisnik:Trijnstel
2
5903
17073
2011-08-16T09:00:25Z
Trijnstel
864
new
17073
wikitext
text/x-wiki
__NOINDEX__
* My user page on Meta is [[:m:User:Trijnstel|here]].
5zeuwyxzz8eh25xdsqu38xve977tgtz
Šablon:kk-dekl
10
5915
17094
17092
2011-08-17T21:18:36Z
Barishan
287
17094
wikitext
text/x-wiki
<div class="NavFrame" style="width:65%">
<div class="NavHead" style="" >Deklinacija: {{PAGENAME}}</div>
<div class="NavContent">
{| style="background:#F9F9F9; text-align:center; width:100%" class="inflection-table"
|-
! style="width:33%;background:#DEDEDE" |
! style="background:#DEDEDE" | Jednina <small>([[жекеше]])</small>
! style="background:#DEDEDE" | Množina <small>([[көпше]])</small>
|-
!style="background:#EFEFEF"|Nominativ <small>([[атау]])</small>
| {{{1}}}
| {{{2}}}
|-
!style="background:#EFEFEF"|Genitiv <small>([[ілік]])</small>
| {{{3}}}
| {{{4}}}
|-
!style="background:#EFEFEF"|Dativ <small>([[барыс]])</small>
| {{{5}}}
| {{{6}}}
|-
!style="background:#EFEFEF"|Akuzativ <small>([[табыс]])</small>
| {{{7}}}
| {{{8}}}
|-
!style="background:#EFEFEF"|Lokativ <small>([[жатыс]])</small>
| {{{9}}}
| {{{10}}}
|-
!style="background:#EFEFEF"|Ablativ <small>([[шығыс]])</small>
| {{{11}}}
| {{{12}}}
|-
!style="background:#EFEFEF"|Instrumental <small>([[көмектес]])</small>
| {{{13}}}
| {{{14}}}
|}</div></div><noinclude>[[Category:Deklinacije šablone (kazahski)]]</noinclude>
4nmaqow7kk2wbnpye4oe734vw9kvbek
Šablon:fi-dekl-1
10
5957
58041
17170
2017-02-22T16:56:33Z
Srđan
1899
[[Help:Cat-a-lot|Cat-a-lot]]: Moving from [[Category:Deklinacije šablone (finski)]] to [[Category:Šabloni deklinacije (finski)]]
58041
wikitext
text/x-wiki
{| width="40%"
|-
|{{#if:{{{nonav|}}}||<div class="NavFrame">
<div class="NavHead" style="background:rgb(60%,60%,100%);">Deklinacija: {{PAGENAME}}</div>
<div class="NavContent">}}
{| class="inflection-table" style="width:100%; color:DEDEDE; border:solid 1px rgb(80%,80%,100%); text-align:left;" cellspacing="1" cellpadding="2"
|- style="background:rgb(80%,80%,100%);vertical-align:top;"
! style="width:33%;" |
! style="width:33%;" | Jednina
! style="width:33%;" | Množina
|- style="background:rgb(95%,95%,100%);vertical-align:top;" |
! style="background:rgb(80%,80%,100%);" | Nominativ
| {{{nom_sg}}}
| {{{nom_pl}}}
|- style="background:rgb(95%,95%,100%);vertical-align:top;" |
! style="background:rgb(80%,80%,100%);" | Genitiv
| {{{gen_sg}}}
| {{{gen_pl}}}
|- style="background:rgb(95%,95%,100%);vertical-align:top;" |
! style="background:rgb(80%,80%,100%);" | Partitiv
| {{{par_sg}}}
| {{{par_pl}}}
|- style="background:rgb(95%,95%,100%);vertical-align:top;" |
! style="background:rgb(80%,80%,100%);" | Akuzativ
| {{{acc_sg}}}
| {{{acc_pl}}}
|- style="background:rgb(95%,95%,100%);vertical-align:top;" |
! style="background:rgb(80%,80%,100%);" | Inesiv
| {{{ine_sg}}}
| {{{ine_pl}}}
|- style="background:rgb(95%,95%,100%);vertical-align:top;" |
! style="background:rgb(80%,80%,100%);" | Elativ
| {{{ela_sg}}}
| {{{ela_pl}}}
|- style="background:rgb(95%,95%,100%);vertical-align:top;" |
! style="background:rgb(80%,80%,100%);" | Ilativ
| {{{ill_sg}}}
| {{{ill_pl}}}
|- style="background:rgb(95%,95%,100%);vertical-align:top;" |
! style="background:rgb(80%,80%,100%);" | Adesiv
| {{{ade_sg}}}
| {{{ade_pl}}}
|- style="background:rgb(95%,95%,100%);vertical-align:top;" |
! style="background:rgb(80%,80%,100%);" | Ablativ
| {{{abl_sg}}}
| {{{abl_pl}}}
|- style="background:rgb(95%,95%,100%);vertical-align:top;" |
! style="background:rgb(80%,80%,100%);" | Alativ
| {{{all_sg}}}
| {{{all_pl}}}
|- style="background:rgb(95%,95%,100%);vertical-align:top;" |
! style="background:rgb(80%,80%,100%);" | Essiv
| {{{ess_sg}}}
| {{{ess_pl}}}
|- style="background:rgb(95%,95%,100%);vertical-align:top;" |
! style="background:rgb(80%,80%,100%);" | Translativ
| {{{tra_sg}}}
| {{{tra_pl}}}
|- style="background:rgb(95%,95%,100%);vertical-align:top;" |
! style="background:rgb(80%,80%,100%);" | Instruktiv
| {{{ins_sg}}}
| {{{ins_pl}}}
|- style="background:rgb(95%,95%,100%);vertical-align:top;" |
! style="background:rgb(80%,80%,100%);" | Abesiv
| {{{abe_sg}}}
| {{{abe_pl}}}
|- style="background:rgb(95%,95%,100%);vertical-align:top;" |
! style="background:rgb(80%,80%,100%);" | Komitativ
| –
| {{{com_pl}}}
|- style="background:rgb(95%,95%,100%);vertical-align:top;"
{{#if:{{{bottom|}}}<!--
-->|{{!}} colspan=3 {{!}} <!--
-->{{{bottom}}}<!--
-->}}
|}
{{#if:{{{nonav|}}}||</div>
</div>}}
|}<!--
--><noinclude>[[Kategorija:Šabloni deklinacije (finski)]]</noinclude>
si4505daj0bx8w9x5x0o1kbbflycuoh
Šablon:fi-dekl
10
5958
58040
17175
2017-02-22T16:56:33Z
Srđan
1899
[[Help:Cat-a-lot|Cat-a-lot]]: Moving from [[Category:Deklinacije šablone (finski)]] to [[Category:Šabloni deklinacije (finski)]]
58040
wikitext
text/x-wiki
{{fi-dekl-1<!--
-->|title={{{word|{{#if:{{{nom_sg|}}}|{{{nom_sg}}}|{{PAGENAME}}}}}}} {{#if:{{{type|}}}|(type [[Appendix:Finnish declension/{{{type}}}|{{{type}}}]])|(irregular)}}<!--
-->|nonav={{{appendix|}}}<!--
-->|nom_sg={{#if:{{{nosg|}}}|–|{{#if:{{{nom_sg|}}}|{{{nom_sg}}}|–}}<!--
-->{{#if:{{{appendix|}}}|{{#if:{{{nom_sg_obs|}}}|<br/>{{{nom_sg_obs}}}<sup>2</sup>}}}}<!--
-->}}<!--
-->|gen_sg={{#if:{{{nosg|}}}|–|{{#if:{{{gen_sg|}}}|{{{gen_sg}}}|–}}<!--
-->{{#if:{{{appendix|}}}|{{#if:{{{gen_sg_obs|}}}|<br/>{{{gen_sg_obs}}}<sup>2</sup>}}}}<!--
-->}}<!--
-->|par_sg={{#if:{{{nosg|}}}|–|{{#if:{{{par_sg|}}}|{{{par_sg}}}|–}}<!--
-->{{#if:{{{par_sg2|}}}|<br/>{{{par_sg2}}}}}<!--
-->{{#if:{{{appendix|}}}|<!--
-->{{#if:{{{par_sg_obs|}}}|<br/>{{{par_sg_obs}}}<sup>2</sup>}}<!--
-->{{#if:{{{par_sg_obs2|}}}|<br/>{{{par_sg_obs2}}}<sup>2</sup>}}<!--
-->}}<!--
-->}}<!--
-->|acc_sg={{#if:{{{nosg|}}}|–|{{#if:{{{acc_sg|{{{nom_sg|}}}}}}|{{{acc_sg|{{{nom_sg}}}}}}|–}}<!--
--><br/>{{{gen_sg|–}}}<!--
-->}}<!--
-->|ine_sg={{#if:{{{nosg|}}}|–|{{#if:{{{ine_sg|}}}|{{{ine_sg}}}|–}}}}<!--
-->|ela_sg={{#if:{{{nosg|}}}|–|{{#if:{{{ela_sg|}}}|{{{ela_sg}}}|–}}}}<!--
-->|ill_sg={{#if:{{{nosg|}}}|–|{{#if:{{{ill_sg|}}}|{{{ill_sg}}}|–}}<!--
-->{{#if:{{{ill_sg2|}}}|<br/>{{{ill_sg2}}}}}<!--
-->{{#if:{{{appendix|}}}|{{#if:{{{ill_sg_obs|}}}|<br/>{{{ill_sg_obs}}}<sup>2</sup>}}}}<!--
-->}}<!--
-->|ade_sg={{#if:{{{nosg|}}}|–|{{#if:{{{ade_sg|}}}|{{{ade_sg}}}|–}}}}<!--
-->|abl_sg={{#if:{{{nosg|}}}|–|{{#if:{{{abl_sg|}}}|{{{abl_sg}}}|–}}}}<!--
-->|all_sg={{#if:{{{nosg|}}}|–|{{#if:{{{all_sg|}}}|{{{all_sg}}}|–}}}}<!--
-->|ess_sg={{#if:{{{nosg|}}}|–|{{#if:{{{ess_sg|}}}|{{{ess_sg}}}|–}}<!--
-->{{#if:{{{appendix|}}}|<!--
-->{{#if:{{{ess_sg_obs|}}}|<br/>{{{ess_sg_obs}}}<sup>2</sup>}}<!--
-->{{#if:{{{ess_sg_obs2|}}}|<br/>{{{ess_sg_obs2}}}<sup>2</sup>}}<!--
-->}}<!--
-->}}<!--
-->|tra_sg={{#if:{{{nosg|}}}|–|{{#if:{{{tra_sg|}}}|{{{tra_sg}}}|–}}}}<!--
-->|ins_sg={{#if:{{{nosg|}}}|–|{{#if:{{{ins_sg|}}}|{{{ins_sg}}}|–}}}}<!--
-->|abe_sg={{#if:{{{nosg|}}}|–|{{#if:{{{abe_sg|}}}|{{{abe_sg}}}|–}}}}<!--
-->|nom_pl={{#if:{{{nopl|}}}|–|{{#if:{{{nom_pl|}}}|{{{nom_pl}}}|–}}}}<!--
-->|gen_pl={{#if:{{{nopl|}}}|–|{{#if:{{{gen_pl|}}}|{{{gen_pl}}}|–}}<!--
-->{{#if:{{{gen_pl2|}}}|<br/>{{{gen_pl2}}}}}<!--
-->{{#if:{{{gen_pl3|}}}|<br/>{{{gen_pl3}}}}}<!--
-->{{#if:{{{gen_pl4|}}}|<br/>{{{gen_pl4}}}}}<!--
-->{{#if:{{{gen_pl_rare|}}}|<br/>{{{gen_pl_rare}}}<sup>1</sup>}}<!--
-->{{#if:{{{gen_pl_rare2|}}}|<br/>{{{gen_pl_rare2}}}<sup>1</sup>}}<!--
-->{{#if:{{{gen_pl_rare3|}}}|<br/>{{{gen_pl_rare3}}}<sup>1</sup>}}<!--
-->{{#if:{{{appendix|}}}|<!--
-->{{#if:{{{gen_pl_obs|}}}|<br/>{{{gen_pl_obs}}}<sup>2</sup>}}<!--
-->{{#if:{{{gen_pl_obs2|}}}|<br/>{{{gen_pl_obs2}}}<sup>2</sup>}}<!--
-->}}<!--
-->}}<!--
-->|par_pl={{#if:{{{nopl|}}}|–|{{#if:{{{par_pl|}}}|{{{par_pl}}}|–}}<!--
-->{{#if:{{{par_pl2|}}}|<br/>{{{par_pl2}}}}}<!--
-->{{#if:{{{par_pl_rare|}}}|<br/>{{{par_pl_rare}}}<sup>1</sup>}}<!--
-->{{#if:{{{appendix|}}}|{{#if:{{{par_pl_obs|}}}|<br/>{{{par_pl_obs}}}<sup>2</sup>}}}}<!--
-->}}<!--
-->|acc_pl={{#if:{{{nopl|}}}|–|{{#if:{{{acc_pl|{{{nom_pl|}}}}}}|{{{acc_pl|{{{nom_pl}}}}}}|–}}}}<!--
-->|ine_pl={{#if:{{{nopl|}}}|–|{{#if:{{{ine_pl|}}}|{{{ine_pl}}}|–}}}}<!--
-->|ela_pl={{#if:{{{nopl|}}}|–|{{#if:{{{ela_pl|}}}|{{{ela_pl}}}|–}}}}<!--
-->|ill_pl={{#if:{{{nopl|}}}|–|{{#if:{{{ill_pl|}}}|{{{ill_pl}}}|–}}<!--
-->{{#if:{{{ill_pl2|}}}|<br/>[[{{{ill_pl2}}}]]}}<!--
-->{{#if:{{{ill_pl_rare|}}}|<br/>{{{ill_pl_rare}}}<sup>1</sup>}}<!--
-->{{#if:{{{appendix|}}}|{{#if:{{{ill_pl_obs|}}}|<br/>{{{ill_pl_obs}}}<sup>2</sup>}}}}<!--
-->}}<!--
-->|ade_pl={{#if:{{{nopl|}}}|–|{{#if:{{{ade_pl|}}}|{{{ade_pl}}}|–}}}}<!--
-->|abl_pl={{#if:{{{nopl|}}}|–|{{#if:{{{abl_pl|}}}|{{{abl_pl}}}|–}}}}<!--
-->|all_pl={{#if:{{{nopl|}}}|–|{{#if:{{{all_pl|}}}|{{{all_pl}}}|–}}}}<!--
-->|ess_pl={{#if:{{{nopl|}}}|–|{{#if:{{{ess_pl|}}}|{{{ess_pl}}}|–}}}}<!--
-->|tra_pl={{#if:{{{nopl|}}}|–|{{#if:{{{tra_pl|}}}|{{{tra_pl}}}|–}}}}<!--
-->|ins_pl={{#if:{{{nopl|}}}|–|{{#if:{{{ins_pl|}}}|{{{ins_pl}}}|–}}}}<!--
-->|abe_pl={{#if:{{{nopl|}}}|–|{{#if:{{{abe_pl|}}}|{{{abe_pl}}}|–}}}}<!--
-->|com_pl={{#if:{{{nopl|}}}|–|{{#if:{{{com_pl|}}}|{{{com_pl}}}|–}}}}<!--
-->|bottom=<!--
-->{{#if:<!--
-->{{{gen_pl_rare|}}}<!--
-->{{{gen_pl_rare2|}}}<!--
-->{{{par_pl_rare|}}}<!--
-->{{{ill_pl_rare|}}}<!--
-->|<sup>1)</sup> <span style="font-size:smaller">Rijedak. </span><!--
-->}}<!--
-->{{#if:{{{appendix|}}}<!--
-->{{#if:<!--
-->{{{nom_sg_obs|}}}<!--
-->{{{par_sg_obs|}}}<!--
-->{{{par_sg_obs2|}}}<!--
-->{{{gen_sg_obs|}}}<!--
-->{{{ill_sg_obs|}}}<!--
-->{{{ess_sg_obs|}}}<!--
-->{{{ess_sg_obs2|}}}<!--
-->{{{gen_pl_obs|}}}<!--
-->{{{gen_pl_obs2|}}}<!--
-->{{{ill_pl_obs|}}}<!--
-->|<sup>2)</sup> <span style="font-size:smaller">Starinski. </span><!--
-->}}<!--
-->}}<!--
-->}}<!--
--><includeonly><!--
-->{{#if:{{NAMESPACE}}||<!--
-->{{#ifeq:{{localurl:{{{word|{{#if:{{{nom_sg|}}}|{{{nom_sg}}}|{{PAGENAME}}}}}}}|{{localurl:{{PAGENAME}}}}||{{attention|fi}}}}}}<!--
-->{{#if:{{{nosg|}}}|[[Category:Finnish pluralia tantum]]}}<!--
-->{{#if:{{{nopl|}}}|[[Category:Finnish uncountable nouns]]}}<!--
-->{{#if:{{{type|}}}<!--
-->|[[Category:Finnish {{{type}}}-type nominals|{{ucfirst:{{PAGENAME}}}}]]<!--
-->|[[Category:Finnish irregular nominals]]<!--
-->}}<!--
-->}}<!--
-->{{#if:{{{r|}}}{{{o|}}}{{{c|}}}|[[Category:CodeCat's test category]]}}<!--
--></includeonly><!--
--><noinclude>[[Kategorija:Šabloni deklinacije (finski)]]</noinclude>
5dxtz3jq5jf29j4os4l7me4ffvnjigq
Šablon:!
10
5961
72669
72668
2025-04-15T19:57:34Z
Aca
2473
+
72669
wikitext
text/x-wiki
|
<noinclude>
__EXPECTUNUSEDTEMPLATE__
</noinclude>
oi38m7kzz2crq9gzv9ig1zwnsenmi3b
Korisnik:Royce
2
5965
17179
2011-08-19T23:35:08Z
Royce
942
Nova stranica: Hello! Welcome to my basic user page. ~~~~ * My unified username is [http://toolserver.org/~vvv/sulutil.php?&user=Royce Royce] ([http://toolserver.org/~vvv/sulutil.php?rights=1&use...
17179
wikitext
text/x-wiki
Hello! Welcome to my basic user page. [[Korisnik:Royce|Royce]] 23:35, 19 avgust 2011 (KSV)
* My unified username is [http://toolserver.org/~vvv/sulutil.php?&user=Royce Royce] ([http://toolserver.org/~vvv/sulutil.php?rights=1&user=Royce rights]).
* For more about me, see [http://en.wikipedia.org/wiki/User:Royce my English Wikipedia page].
ickkcujlb6gvo9rk8usz7ot7vt6nkzs
Korisnik:Waihorace
2
6092
41969
17401
2015-01-25T19:13:27Z
Pathoschild
81
global user pages ([[m:Synchbot|requested by Waihorace]])
41969
wikitext
text/x-wiki
{{#babel:en-3|yue-N|zh-hant-N}}
Hi! I am '''Waihorace''' and I am a member of the [[:m:SWMT|Small Wiki Monitoring Team]]. If you would like to contact me, it is recommended that you leave your message on my talk page on ''[[m:User talk:Waihorace|Meta-Wiki]]''.
2i1tajk7qqojtvn0r2vbyf7mzj9xgco
Korisnik:Cekli829
2
6093
17402
2011-08-25T05:53:50Z
Cekli829
787
Nova stranica: {{DISPLAYTITLE:<span style="font-family: 'Raceway'"><span style="display:none;">User:</span>Cekli</font><font color="blue">8</font><font color="red">2</font><font color="green">9</fon...
17402
wikitext
text/x-wiki
{{DISPLAYTITLE:<span style="font-family: 'Raceway'"><span style="display:none;">User:</span>Cekli</font><font color="blue">8</font><font color="red">2</font><font color="green">9</font></span>}}
[[Image:User Cekli829 31.12.2006.jpg|center|200px]]
<center>
<gallery>
File:6 Aralık 2009 Bakü toplantısı.jpg|06.12.2009
File:Baku4 meetup11.JPG|18.12.2010
</gallery>
</center>
[[az:İstifadəçi:Cekli829]]
0dn8cxzikqh5t679kmqxsj9valzmacf
Šablon:el-dekl
10
6095
58058
18927
2017-02-22T17:05:07Z
Srđan
1899
[[Help:Cat-a-lot|Cat-a-lot]]: Moving from [[Category:Deklinacije šablone (grčki)]] to [[Category:Šabloni deklinacije (grčki)]]
58058
wikitext
text/x-wiki
<div class="NavFrame" style="width:65%">
<div class="NavHead" style="" >Deklinacija: {{PAGENAME}}</div>
<div class="NavContent">
{| style="background:#F9F9F9; text-align:center; width:100%" class="inflection-table"
|-
! style="width:33%;background:#DEDEDE" |
! style="background:#DEDEDE" | Jednina <small>([[ενικός]])</small>
! style="background:#DEDEDE" | Množina <small>([[πληθυντικός]])</small>
|-
!style="background:#DEDEDE"|Nominativ <small>([[ονομαστική]])</small>
| {{{1}}}
| {{{2}}}
|-
!style="background:#DEDEDE"|Genitiv <small>([[γενική]])</small>
| {{{3}}}
| {{{4}}}
|-
!style="background:#DEDEDE"|Akuzativ <small>([[αιτιατική]])</small>
| {{{5}}}
| {{{6}}}
|-
!style="background:#DEDEDE"|Vokativ <small>([[κλητική]])</small>
| {{{7}}}
| {{{8}}}
|-
{{#if:{{{note|}}}|
{{!}}-
{{!}} colspan="4" align="left" style="background:#DEDEDE" {{!}} {{{Bilješka}}}}}
|}
</div></div><noinclude>[[Kategorija:Šabloni deklinacije (grčki)]]</noinclude>
k1pw0kuxpsdknasz8k46qgaqro8lt67
Šablon:Latn
10
6258
17610
2011-08-30T10:08:29Z
Barishan
287
Nova stranica: <{{#switch:{{{face|}}}|ital=i|head|bold=b|span}} class="Latn {{#ifeq:{{{face|}}}|term|mention-Latn}}" lang="{{{lang|}}}">{{{1}}}</{{#switch:{{{face|}}}|ital=i|head|bold=b|span}}>
17610
wikitext
text/x-wiki
<{{#switch:{{{face|}}}|ital=i|head|bold=b|span}} class="Latn {{#ifeq:{{{face|}}}|term|mention-Latn}}" lang="{{{lang|}}}">{{{1}}}</{{#switch:{{{face|}}}|ital=i|head|bold=b|span}}>
9ohtqtu77vpivevfvzdnd8q7accljak
Š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
Korisnik:Kukac
2
6346
17877
2011-09-06T12:26:20Z
Kukac
962
Nova stranica: {|align="center" border="1" {{prettytable}} |- |align="center"|Završio sam Opću gimnaziju u Mostaru, a nakon toga Fakultet humanističkih nauka u Mostaru, Odsjek za bosanski jezik i...
17877
wikitext
text/x-wiki
{|align="center" border="1" {{prettytable}}
|-
|align="center"|Završio sam Opću gimnaziju u Mostaru, a nakon toga Fakultet humanističkih nauka u Mostaru, Odsjek za bosanski jezik i književnost. Na bosanskoj Wikipediji registriran sam od 13. novembra 2008.
{|align="center" {{prettytable}}
|-
{|align="center" {{prettytable}}
|-
|{{Korisnik bs}}
|{{Korisnik en-3}}
|-
|{{Korisnik hr-4}}
|{{Korisnik sr-4}}
|-
|{{Korisnik fr-1}}
|}
qmduwb8gl44l9qx88es53jyd4o0sg9u
Razgovor s korisnikom:Kukac
3
6348
23519
23518
2012-04-29T20:34:15Z
Kukac
962
23519
wikitext
text/x-wiki
{{Stranica_za_razgovor}}
== Tezaurus ==
U časopisu ''Bibliotekarstvo : godišnjak Društva bibliotekara Bosne i Hercegovine'', (vjerojatno) za godinu 2002., spominje se na [http://books.google.hr/books?id=UllYAAAAMAAJ&q=Tezaurusi#search_anchor str. 18.] izraz ''tezaurusi''.
Citat: ''Tezaurusi su postkoordinirani sustavi pojmova među kojima se uspostavljaju logični odnosi,'' (…).
Ipak, vjerojatno je kako ta rečenica ne pripada bosanskome jeziku.
Ipak, rečenica, ''Za pristup tekstualnim podacima mora se formirati kriterijum za pretraživanje najčešće u obliku ključnih riječi ili deskriptora. Zato se pravi poseban program za pristup informacijama – tezaurus.'' '''iz''' ''Glasnika Arhivâ i Društva arhivskih radnika Bosne i Hercegovine'', 26 (1986), str. 258., govori u prilog [http://books.google.hr/books?id=VC9mAAAAMAAJ&q=tezaurus#search_anchor tezaurusu.]
Tako i [http://books.google.hr/books?id=kQbhAAAAMAAJ&q=tezaurusa#search_anchor ''Bosniaca'',] časopis Nacionalne i univerzitetske biblioteke Bosne i Hercegovine. Vjerojatno je riječ o broju za 2002. godinu.
Ako je [[w:bg:Тезаурус]], [[w:cs:Tezaurus]], [[w:mk:Тезаурус]], [[w:pl:Tezaurus]], [[w:ru:Тезаурус]], [[w:sk:Tezaurus]], [[w:sl:Tezaver]], [[w:uk:Тезаурус]], a pojavljuje se i riječ tezaur.... -- [[Korisnik:Bugoslav|Bugoslav]] 04:43, 7 septembar 2011 (KSV)
== Šablone ==
Bok Kukče,
vjerojatno je [[Šablon:Stranica za razgovor]] namijenjen postavljanju u <nowiki>{{ns:1}}</nowiki>, iako ga se postavlja i u <nowiki>{{ns:5}}</nowiki>, <nowiki>{{ns:7}}</nowiki>, <nowiki>{{ns:9}}</nowiki>, <nowiki>{{ns:11}}</nowiki>, <nowiki>{{ns:13}}</nowiki> te <nowiki>{{ns:15}}</nowiki>. [[Šablon:Dobrodošlica]] je namijenjen postavljanju u <nowiki>{{ns:3}}</nowiki>. Za više opisa vidi [[w:hr:Predložak:Wikivar]]. Nekako mi se čini nepreciznim postavljati [[Šablon:Stranica za razgovor]] u <nowiki>{{ns:3}}</nowiki>, stoga sam isto promijenio na jednome mjestu, što je vidljivo u [[Posebno:Nedavneizmjene]]. Hvala na razumijevanju. Lijep pozdrav. -- [[Korisnik:Bugoslav|Bugoslav]] 02:00, 8 septembar 2011 (KSV)
*P. S. Osobno bih stavljao [[Šablon:Stranica za razgovor]] isključivo u <nowiki>{{ns:1}}</nowiki> jer je upravo namijenjen takvom postavljanju. -- [[Korisnik:Bugoslav|Bugoslav]] 02:00, 8 septembar 2011 (KSV)
== Zdravo ==
Zdravo, Kukac! Kako si? Well, I'm planning to visit Bosna i Hercegovina this summer and I want to buy some language/grammar books and as you are a language and literature professor, I guess maybe you could give me some titles of books or names of writers to look for. Are there any particular books for foreign students to learn Bosnian? And I could use a good English-Bosnian and monolingual Bosnian dicitonary (Turkish would be so much better of course but I don't think there is a good one). Lastly, I guess there's a Turkish department in Sarajevo University under Orijentalna Filologija facultet. Have you ever heard anything about it? Thanks a million in advance! [[Korisnik:Barishan|Barishan]] 13:41, 2 januar 2012 (KSV)
: Oh, there you are! :-) I began getting worried a bit about where you are. :) Dobro sam, thanks for asking, and I hope it's same there. :) And now, the books. There is only 1 Bosnian grammar book now - ''Gramatika bosanskoga jezika'' (Dževad Jahić - Senahid Halilović - Ismail Palić, "Dom štampe", Zenica, 2000), but, of course, there are Serbian and Croatian books that you can use for learning. Language is practically the same; differences are mostly in the terminology. For Croatian grammar books see [http://hr.wikipedia.org/wiki/Hrvatske_gramatike here]. Also, a solid book is ''Savremeni srpskohrvatski jezik I i II'' (Mihailo Stevanović, "Naučna knjiga", Beograd, 1986 - I found it in PDF, but it's too big for e-mail, unfortunately). There are more books and authors, of course, but this will be good for the beginning (if you know a bit of our language/s/). All of these are written in B/C/S, which is an obvious obstacle for foreigners. But I have one other book in PDF (in English) and it's less than 2 MB big, so I can send it to you via e-mail. :) Just give me the address. And yes, there is a facultet for orientalistics in Sarajevo, and also there's an ''Orijentalni institut'' too. But I live in Mostar and I don't travel at all almost, so I am not familiar with their programme. About dictionaries: you can try to find some of them via Google. :-) I have some old 100.000-word English-Serbian dictionary from late 80s, but I mostly use Wiktionary and Google Translate when I don't know some word. :) In terms of monolingual dictionaries: currently, there are 3 of them (Bosnian ones). First was published by ''Institut za jezik'' (''Institute for language'') in Sarajevo in 2007 (leader of project was Ibrahim Čedić), then there is Senahid Halilović's ''Rječnik bosanskog jezika'' from 2010 (both of them are a single book), and there is ''Rječnik bosanskoga jezika'' by Dž. Jahić, also from 2010 (this one is planned to be in 10 books or so; 3 of them are published up to now). I hope I was of some help to you. Best wishes. -- [[Korisnik:Kukac|Kukac]] 19:50, 2 januar 2012 (KSV)
::Waow, thank you so so much! How great this is! :D Well I am currently staying at a dormitory in which there is an awful internet connection, so I can only reach here during holidays (speaking of the holiday, ''Happy New Year!''). You can send me an e-mail from Wiktionary, isn't my address visible here? Thanks in advance. Soo in which university are you teaching? I recently have just one dream that is to teach Turkish language (or English or psychology, since I study them :D ) in a university in Bosna-Hersek. And thanks again for the dictionaries, if someday I learn Bosnian fully, maybe I can write a multilingual grammar book :D [[Korisnik:Barishan|Barishan]] 22:40, 2 januar 2012 (KSV)
::: Check your e-haber. ;) :)) -- [[Korisnik:Kukac|Kukac]] 23:57, 2 januar 2012 (KSV)
:::: Got it, hvala :) [[Korisnik:Barishan|Barishan]] 12:19, 3 januar 2012 (KSV)
::By the way, can you please take a look at [[moći]]? Again, I need some help on the definiton part (I wrote the definitions in English and I'm not sure my examples are good enough). And if you notice any mistake in the conjugation table, please feel free to fix it :) Cheers [[Korisnik:Barishan|Barishan]] 21:04, 7 januar 2012 (KSV)
:::Ah merhaba! :) That's good to see you again :) Well I'm fine how about you? Actually I could use a little bit of help about entries like [[škole]]; I'm not sure if "Genitiv od škola", "Akuzativ množina od škola" are the correct ways to say it. Plus, "Imenički oblik" is a good title? (And also the category; "Imeničke oblici") [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 16:06, 28 april 2012 (KSV)
:::: Thanks God, I'm fine also. No major changes in the meantime. And "škola" is now corected. ;) -- [[Korisnik:Kukac|Kukac]] ([[Razgovor sa korisnikom:Kukac|razgovor]]) 16:13, 28 april 2012 (KSV)
::Oh thanks a lot :) I was never that sure about them :) [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 16:44, 28 april 2012 (KSV)
:Hi again, I created [[hladni rat]] in relation to the Wikipedia article but later I noticed it defines "the Cold War" between USSR and the USA, not the general term. So can you please translate this: ''a state of conflict between nations that does not involve direct military action but is pursued primarily through economic and political actions, propaganda, acts of espionage or proxy wars waged by surrogates.'' And plus, I may use your help about its declension. I don't know if I could do it correctly :) Thanks in advance [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 18:50, 29 april 2012 (KSV)
::I also created [[država]] and that came with a few more questions :D Firstly, '''sa''' državom or '''s''' državom? Sa has more google hits but s is pretty high, too. And secondly, does država has any other meanings? [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 19:54, 29 april 2012 (KSV)
::: "Sa" and "s" is the same - the difference is: "sa" comes (obligatory) in front of words which begin with S, Š, Z, Ž, DŽ, Đ (and also Č and Ć, but "s" can also be used in some cases) or which begin with a group of consonants which is hard to pronounce. Otherwise, "s" is preferable (but "sa" is also acceptable). In your example, both version are correct ("'''s drž'''avom" may look hard to pronounce, but it's not: we pronounce S as Z in front of D or B or G; these are 2 words, but they are pronounced as 1 word; and we have so-called "vocalic R" which acts like a vowel in consonant groups). -- [[Korisnik:Kukac|Kukac]] ([[Razgovor sa korisnikom:Kukac|razgovor]]) 20:32, 29 april 2012 (KSV)
suv5inpqgibjuvok129v4sz0eaasgft
Razgovor s korisnikom:Bugoslav
3
6351
17905
17893
2011-09-08T02:23:10Z
Bugoslav
692
17905
wikitext
text/x-wiki
<div style="border:1px solid #999999;background-color:#F5F5F5;padding:10px;">
[[Datoteka:Wiktionary-logo-en.svg|100px|lijevo]]<big>'''Dobrodošli na Wikirječnik na [[w:Bosanski jezik|bosanskom jeziku]] – slobodan rječnik, leksikon i tezaurus!'''</big><br>
<div style="border:1px solid #999999;background-color:#B0E0E6;padding:8px;">Pozdrav, {{PAGENAME}}!<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 [[Vikirječnik:Uređivanje|kako članci trebaju izgledati]]. '''Slobodno''' radite na Wikirječniku i '''razgovarajte''' s drugima.
Više informacija dostupno je na '''[[w:Wikipedia:Čaršija|Čaršiji]]''', gdje možete razgovarati s drugim korisnicima. Možete kontaktirati i neke 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 interesuje, čime se bavite i sl. Molimo Vas da se potpisujete na stranicama za razgovor korištenjem '''<tt><nowiki>~~~~</nowiki></tt>''' (četiri znaka ''tilda'').
Radite zajedno s 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:Recentchanges|nedavne izmjene]], gdje možete vidjeti nedavne aktivnosti na Wikipediji.
Prilikom [[Posebno:Upload|postavljanja]] slika koristite ispravne [[w:Wikipedia:Šabloni za slike|šablone za licencu]] i vodite računa o '''[[w:Wikipedia:Autorska prava|autorskim pravima]]''' prilikom pisanja članaka. Članci ili slike koje krše autorska prava bit će obrisani. Još jednom Vas lijepo pozdravljamo. {{#if:-- [[Korisnik:Bugoslav|Bugoslav]] 02:23, 8 septembar 2011 (KSV)|-- [[Korisnik:Bugoslav|Bugoslav]] 02:23, 8 septembar 2011 (KSV)}}
{|- style="background-color:#B0E0E6; text-align:center;"
| style="background: #F0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Slika: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;" | [[Slika:View-refresh.svg|18px]] <br/>[[Posebno:Recentchanges|Nedavne izmjene]]
| style="background: #F0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Slika:Wiktionary-logo.svg|18px]] <br/>[[w:Pravopis bosanskog jezika|Pravopis]]
| style="background: #E0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Slika:Nuvola apps kmessedwords.png|18px]] <br/>[[w:Wikipedia:Jezički standardi na bosanskoj Wikipediji|Jezički standardi]]
| style="background: #F0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Slika:čć.png|18px]] <br/>[[w:Wikipedia:Pravilno-nepravilno u bosanskome jeziku|Pravilno-nepravilno]]
| style="background: #E0FFFF; border:1px solid silver; 18px; font: 90% Verdana; width:16%; height:30;" | [[Slika: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 />[[Razgovor o šablonu:Dobrodošlica|Kliknite ovdje]].
|}</div></div>
is6tumpqza61a9izz6dbb787a0k3s83
Razgovor s korisnikom:Barishan
3
6352
70859
70855
2023-09-13T05:44:25Z
Camēlopardalis Germānica
3475
/* Bosnische sprache */ odgovor
70859
wikitext
text/x-wiki
<div style="border:1px solid #999999;background-color:#F5F5F5;padding:10px;">
[[Datoteka:Wiktionary-logo-en.svg|100px|lijevo]]<big>'''Dobrodošli na Wikirječnik na [[w:Bosanski jezik|bosanskom jeziku]] – slobodan rječnik, leksikon i tezaurus!'''</big><br>
<div style="border:1px solid #999999;background-color:#B0E0E6;padding:8px;">Pozdrav, {{PAGENAME}}!<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 [[Vikirječnik:Uređivanje|kako članci trebaju izgledati]]. '''Slobodno''' radite na Wikirječniku i '''razgovarajte''' s drugima.
Više informacija dostupno je na '''[[w:Wikipedia:Čaršija|Čaršiji]]''', gdje možete razgovarati s drugim korisnicima. Možete kontaktirati i neke 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 interesuje, čime se bavite i sl. Molimo Vas da se potpisujete na stranicama za razgovor korištenjem '''<tt><nowiki>~~~~</nowiki></tt>''' (četiri znaka ''tilda'').
Radite zajedno s 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:Recentchanges|nedavne izmjene]], gdje možete vidjeti nedavne aktivnosti na Wikipediji.
Prilikom [[Posebno:Upload|postavljanja]] slika koristite ispravne [[w:Wikipedia:Šabloni za slike|šablone za licencu]] i vodite računa o '''[[w:Wikipedia:Autorska prava|autorskim pravima]]''' prilikom pisanja članaka. Članci ili slike koje krše autorska prava bit će obrisani. Još jednom Vas lijepo pozdravljamo. {{#if:-- [[Korisnik:Bugoslav|Bugoslav]] 03:14, 8 septembar 2011 (KSV)|-- [[Korisnik:Bugoslav|Bugoslav]] 03:14, 8 septembar 2011 (KSV)}}
{|- style="background-color:#B0E0E6; text-align:center;"
| style="background: #F0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Slika: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;" | [[Slika:View-refresh.svg|18px]] <br/>[[Posebno:Recentchanges|Nedavne izmjene]]
| style="background: #F0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Slika:Wiktionary-logo.svg|18px]] <br/>[[w:Pravopis bosanskog jezika|Pravopis]]
| style="background: #E0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Slika:Nuvola apps kmessedwords.png|18px]] <br/>[[w:Wikipedia:Jezički standardi na bosanskoj Wikipediji|Jezički standardi]]
| style="background: #F0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Slika:čć.png|18px]] <br/>[[w:Wikipedia:Pravilno-nepravilno u bosanskome jeziku|Pravilno-nepravilno]]
| style="background: #E0FFFF; border:1px solid silver; 18px; font: 90% Verdana; width:16%; height:30;" | [[Slika: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 />[[Razgovor o šablonu:Dobrodošlica|Kliknite ovdje]].
|}</div></div>
== Statistics ==
Out of 1811 articles (pages) on Bosnian Wiktionary, there are:
* 533 pages of nouns of [[Türkçe]] (bos. [[turski]]), and
* 105 pages of proper nouns of [[Türkçe]] (bos. [[turski]]).
Bosnian Wiktionary reached 500 articles on 6 July 2011 and 1000 articles on 18 July 2011, primarily thanks to you. It has long had fewer than 500 articles since January/February 2007.
Congratulations for the good work. -- [[Korisnik:Bugoslav|Bugoslav]] 07:37, 12 septembar 2011 (KSV)
:Puno hvala, ja govorim malo bosanski and I wish I could speak more, so that I could help more :) Yeah when I first came here, there were approximately 300 articles. Trying to do my best :) Good to see a native speaker here :) [[Korisnik:Barishan|Barishan]] 21:08, 12 septembar 2011 (KSV)
== 2000! ==
Congratulations Barishan!
The page [[yağmur]] is the 2000th page with dictionary content on Bosnian Wiktionary! -- [[Korisnik:Bugoslav|Bugoslav]] <small><b>([[Razgovor sa korisnikom:Bugoslav|razg.]])</b></small>; nedjelja, 18. septembar 2011., 21:54 (CEST)
:Great for all of us, and Bosnian speakers, I hope someone uses these someday :) By the way, as I found you here, can I ask a few questions? I'm in trouble with some spellings, for example [[pobeda]] and [[pobjeda]]. Which one is Bosnian, which one is Croatian, or are they alternatives? The same thing with [[voleti]], [[voljeti]]. Should I always use the Ijekavian spellings here? Lastly, could you please add the aorist forms of [[plakati]], and imperfekts of [[doći]]? Thanks in advance! Hope to reach multiples of 2000 :) [[Korisnik:Barishan|Barishan]] 22:19, 18 septembar 2011 (KSV)
:P.S. Oops I thought you were a native speaker of Bosnian, sorry just noticed my mistake :D [[Korisnik:Barishan|Barishan]] 20:19, 11 oktobar 2011 (KSV)
:: Hello, Barishan. Since I am professor of Bosnian language and literature, I could help you a bit. ;) '''Voljeti''' and '''pobjeda''' are Bosnian (and Croatian and Montenegrin) standard variants, ''voleti'' and ''pobeda'' are Serbian. Only Serbian of these 4 languages use ekavian forms. 3 other languages use ijekavian forms (of course, we understand each others perfectly well, because it's just spelling/pronunciation difference in these cases - the meaning is same), but there are some exceptions from general rules, like this one: N sg. '''vrIJEme''' - G sg. '''vrEmena''' (Serbian: N sg. ''vreme'' - G sg. ''vremena'') etc. About aorist and imperfect? There's one thing you should know here: in terms of duration of the action they describe, verbs in our languages can be imperfective (like '''pjevati''' /''to sing'') and perfective (like '''zapjevati''' /''to start singing''). Aorist is made '''MOSTLY''' from perfective verbs (that is, every perfective verb has aorist) and imperfect is made '''ONLY''' from imperfective verbs (that is, perfective verbs don't have imperfect at all). However, some imperfective verbs (not all) do have aorist too, but perfect tense is usually used instead of it. In examples: verb '''doći''' (perfective) has aorist, but doesn't have imperfect, and '''plakati''' (imperfective) has both tenses, but aorist is rarely used. And now, I want to thank you for your work here. You don't even speak our language(s) yet you continuously contribute, which is astonishing for me. I would like to work more here, but (BS) Wikipedia distracts me, so to say. :) If you have more questions, just shoot. :-) I check here from time to time. -- [[Korisnik:Kukac|Kukac]] 22:22, 18 novembar 2011 (KSV)
::: Waow, thanks a million! Actually my grandparents are Bosnians so I grew up with the language spoken around me but now I remember only a few things, so I could use your help so frequently :) That'd be great to see you here as an active user :) Thank you so much again :) See you. [[Korisnik:Barishan|Barishan]] 18:13, 25 novembar 2011 (KSV)
:::: Oh, you have our roots. Even better. :-) I will help here and there, insha'Allah. You can check what I did in [[plakati]]. And revert if I did something wrong, of course. :) I put the accent marks because accent can change meaning in some cases. One more thing: I noticed that there is no 3. person of singular and plural for imperative in the conjugation template. But our language(s) can express them, albeit analitically. Example: verb ''raditi'' (''to do'', ''to work''): 3<sup>rd</sup> person imperative sg. ''neka radi''; 3<sup>rd</sup> person imperative pl. ''neka rade''. This word ''neka'' is an imperative word + present tense = imperative for 3<sup>rd</sup> persons. This should be added in the template's code. -- [[Korisnik:Kukac|Kukac]] 20:53, 26 novembar 2011 (KSV)
::::: Actually I didn't make [[Šablon:Konjugacija|that šablon]], it was made by another native speaker. But I'll try to add the sections now :) Thanks for noticing :) [[Korisnik:Barishan|Barishan]] 11:04, 27 novembar 2011 (KSV)
:::::I guess it's done. Can you check [[plakati]], [[doći]], [[jesti]] and [[voljeti]] if they all look OK now? And also can you please add them definitons, for example "To consume by putting it into the mouth and swallowing it." to [[jesti]]. And one more thing, Isn't '''prijevodi''' better than '''prevod''', for the "translations" title? [[Korisnik:Barishan|Barishan]] 11:09, 27 novembar 2011 (KSV)
It's done. And yes: "prijevod(i)" has slight advantage in our ortography, but both is correct. -- [[Korisnik:Kukac|Kukac]] 18:36, 27 novembar 2011 (KSV)
: Hi (or merhaba). :-) How are you? What's up, what's down? :-) Need any help? :) -- [[Korisnik:Kukac|Kukac]] ([[Razgovor sa korisnikom:Kukac|razgovor]]) 15:24, 28 april 2012 (KSV)
::Ah merhaba! :) That's good to see you again :) Well I'm fine how about you? Actually I could use a little bit of help about entries like [[škole]]; I'm not sure if "Genitiv od škola", "Akuzativ množina od škola" are the correct ways to say it. Plus, "Imenički oblik" is a good title? (And also the category; "Imeničke oblici") [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 15:30, 28 april 2012 (KSV)
::: Knock-knock! Anybody here? :-) It's Kukac who's knocking; I changed my username so I am letting you know that, just in case. ;) -- [[Korisnik:KWiki|KWiki]] ([[Razgovor sa korisnikom:KWiki|razgovor]]) 23:14, 16 juli 2012 (KSV)
:::: Hey there, I'm still here of course :) Thanks for pointing out, now I know who to disturb when I have another wide set of questions :) [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 11:35, 17 juli 2012 (KSV)
I'm still alive. :-) Just to say... hmmm... merhaba, perhaps? :D What's up here? :) -- [[Korisnik:KWiki|KWiki]] ([[Razgovor sa korisnikom:KWiki|razgovor]]) 09:54, 11 novembar 2012 (KSV)
== Great work ==
Hi,
I can't understand your language. But it seems you are doing great job. Impressive. !!! [[Korisnik:බිඟුවා|බිඟුවා]] 17:50, 11 oktobar 2011 (KSV)
:Hi there. And thanks a lot :) Are you a Sinhalese speaker? That'd be great to see words of [[sinhala]] [[jezik]] here :) [[Korisnik:Barishan|Barishan]] 20:19, 11 oktobar 2011 (KSV)
== Adminship ==
Welcome aboard! Since I'm barely ever here, and upon suggestion of Bugoslav, I've made you an administrator. Enjoy :) --[[Korisnik:Dijan|Dijan]] 04:45, 9 novembar 2011 (KSV)
:Waow, thanks :) I feel the authority :D [[Korisnik:Barishan|Barishan]] 22:00, 9 novembar 2011 (KSV)
::Congratulations for the adminship. [[File:Face-smile.svg|19px]] -- [[Korisnik:Bugoslav|'''<font color="ForestGreen">Bugoslav</font>''']] <small><sup>([[Razgovor sa korisnikom:Bugoslav|'''<font color="ForestGreen">razgovor</font>''']])</sup></small> 14:42, 16. novembra 2011. (CET)
== [[MediaWiki:August]] ==
Hello Barishan! Could you, please, fix [[MediaWiki:August]] so that it writes <code><font color="MediumBlue">august</font></code> instead of <code><font color="DarkRed">avgust</font></code>. Naturally in plain letters since no formating is needed. -- [[Korisnik:Bugoslav|'''<font color="ForestGreen">Bugoslav</font>''']] <small><sup>([[Razgovor sa korisnikom:Bugoslav|'''<font color="ForestGreen">razgovor</font>''']])</sup></small> 14:42, 16. novembra 2011. (CET)
:Done, and thanks for the suggestion and congratulation :) Too bad I can't hang out here as much as I used to do. [[Korisnik:Barishan|Barishan]] 23:46, 17 novembar 2011 (KSV)
::Or you could just delete that page since the default value is already correct (august). [[Korisnik:Malafaya|Malafaya]] ([[Razgovor sa korisnikom:Malafaya|razgovor]]) 22:13, 30 august 2012 (KSV)
== Names of months (calendar) ==
I have recently tried to find Turkish versions of month names of the Persian calendar, and found them in one of the works of [[w:tr:Kudret Emiroğlu| Kudret Emiroğlu]] (the publication was from 1995). In that publication (I've forgotten the title), he lists these month names: Farvardin, Ordibehest, Hordad, Tir, Amordad, Çahrivar, Mehr, Aban, Azar, Day, Bahman, Isfendarmaz. Those names are slightly different from what is written [[w:tr:İran takvimleri| here]] (on tr:wiki). There is also a very interesting category on [[en:|en:wikt]] named [[en:Category:fa:Months]].
With regards to Bosnian language, there are also Bosnian names of months of the Persian calendar. See [[w:bs:Mjesec (period)#Iranski/Perzijski kalendar|here]].
Do you know something about the month names of the Persian (Iranian) calendar, as they are written in the Turkish language? Please help. [[File:Face-smile.svg|20px]] -- [[User:Bugoslav|'''<font color="ForestGreen">Bugoslav</font>''']] <sup>[[User talk:Bugoslav|'''<font color="ForestGreen">(talk)</font>''']]</sup> 12:00, 11. maja 2012. – 19. džumadel-uhra 1433. (CEST)
:To be honest, I'm not educated about Orientalistics but I guess [http://tr.wikipedia.org/wiki/Fars%C3%A7a_s%C3%B6zc%C3%BCkler#Hicr.C3.AE-.C5.9Eems.C3.AE_Aylar:_.D9.85.D8.A7.D9.87.E2.80.8C.D9.87.D8.A7.DB.8C_.D9.87.D8.AC.D8.B1.DB.8C-.D8.B4.D9.85.D8.B3 this] one is the true list; Ferverdin, Ordibehşt, ..., İsfend. Emiroğlu's version seems to be a transliteration to me :) [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 16:58, 11 maj 2012 (KSV)
== Categories ==
Hi, Barishan.
You seem to be the only one around here and I would like to make a suggestion. If you see fit, please spread it to other contributors.
The category system here is a bit awkward for maintaining interwikis. For example, [[:Kategorija:Dani u sedmici]] is at the same time the base category for days of the weeks (in all languages) and the specific category for days of the week in Bosnian. Usually, other Wiktionaries adopt one of the following:
* a base category for their language, and a sub-category for keeping categories in other languages: Topic (Base + Bosnian) >> Topic in other languages >> Topic (language)
* a base category for all languages, and sub-categories for all languages, even local language: Topic (Base) >> Topic (language)
Lately I have been seeing Wiktionaries that had been using the first approach, changing to the second (i.e., Russian, English). So I would recommend that one. So, for example, for Days of the weeks, you would have:
* '''Kategorija:Dani u sedmici''' (base)
* '''Kategorija:en:Dani u sedmici''' (example for English, included inside the previous base category)
* '''Kategorija:bs:Dani u sedmici''' (example for Bosnian, included inside the previous base category). The Bosnian articles that are now in Kategorija:Dani u sedmici would be moved into this category.
What do you say? [[Korisnik:Malafaya|Malafaya]] ([[Razgovor sa korisnikom:Malafaya|razgovor]]) 13:00, 29 august 2012 (KSV)
:Hi there.
:Well that completely makes sense, I was also thinking of that as well, but being the only active user here is a bit boring. You gave me the spark to finally organise the categories. I also think that going with categories like '''Kategorija:bs:Dani u sedmici''' is a better idea. Thanks for pointing it out :) [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 18:47, 29 august 2012 (KSV)
::No problem. I'm also an interested part :), because I like to maintain category interwiki links among Wiktionaries, and usually links to Bosnian (among a few others) are a headache. [[Korisnik:Malafaya|Malafaya]] ([[Razgovor sa korisnikom:Malafaya|razgovor]]) 10:53, 30 august 2012 (KSV)
::Ah, another thing: when you create a category, and if possible, add at least an interwiki link to it. The English Wiktionary does not have a Bosnian language category (they use Serbo-Croatian), so I recommend using the appropriate [[:fr:Catégorie:bosniaque|French category]] (if you know some French) or, if it exists, the [[:tr:Kategori:Boşnakça|Turkish one]]. Thanks, [[Korisnik:Malafaya|Malafaya]] ([[Razgovor sa korisnikom:Malafaya|razgovor]]) 10:58, 30 august 2012 (KSV)
== Kategorija:tr:Imenički oblici ==
Kategorija:tr:Imenički oblici = Category:Turkish noun forms ? [[Korisnik:Malafaya|Malafaya]] ([[Razgovor sa korisnikom:Malafaya|razgovor]]) 13:31, 2 septembar 2012 (KSV)
:Yep, it is. [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 13:32, 2 septembar 2012 (KSV)
:: Sorry for being late. Work, work, work... :) I can't do anything with the template "tr-glagol" because, when I open it for editing, there's nothing to edit :-) except that sole word. I don't know if you did something with it meanwhile (just send me the link if you have something for me ;)). Also, you are not the only one who's active here ;) - you're just the only regular one. :D I just don't have time for all Wiki-projects, although the wish is in the heart. ;) -- [[Korisnik:KWiki|KWiki]] ([[Razgovor sa korisnikom:KWiki|razgovor]]) 22:57, 10 septembar 2012 (KSV)
== Vlastita imenica ==
Vlastita imenica is proper noun, right? It's not Place or topographic name, correct? Because I recall [[vlast]] having something to do with countries. [[Korisnik:Malafaya|Malafaya]] ([[Razgovor sa korisnikom:Malafaya|razgovor]]) 17:45, 3 septembar 2012 (KSV)
:Yes, it's proper noun. Vlast means "power" and "authority" :) [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 17:52, 3 septembar 2012 (KSV)
::Thanks. Apparently, I was thinking of Czech "[[:cs:vlast|vlast]]" which means "homeland". [[Korisnik:Malafaya|Malafaya]] ([[Razgovor sa korisnikom:Malafaya|razgovor]]) 19:24, 3 septembar 2012 (KSV)
Hi. What is [[:Kategorija:tr:Sisari]]? [[Korisnik:Malafaya|Malafaya]] ([[Razgovor sa korisnikom:Malafaya|razgovor]]) 17:16, 5 septembar 2012 (KSV)
:Sisari = Mammals. I've added the links to '''tr''' category but I have to go out now, so I can't add to the other languages for now. [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 17:20, 5 septembar 2012 (KSV)
::It's fine. I recorded it in my user page. Thanks, [[Korisnik:Malafaya|Malafaya]] ([[Razgovor sa korisnikom:Malafaya|razgovor]]) 19:23, 5 septembar 2012 (KSV)
== Months ==
Hi. Indulge me with the creation of [[:Kategorija:lv:Mjeseci]] as an example :). I will create others. Thanks, [[Korisnik:Malafaya|Malafaya]] ([[Razgovor sa korisnikom:Malafaya|razgovor]]) 13:42, 7 septembar 2012 (KSV)
:I just added the categories Mjeseci (months) and Letonski jezik (Latvian language). Is it enough, you think? [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 13:47, 7 septembar 2012 (KSV)
::<s>To create other categories for months, yes. Thank you, [[Korisnik:Malafaya|Malafaya]] ([[Razgovor sa korisnikom:Malafaya|razgovor]]) 14:03, 7 septembar 2012 (KSV)</s> Sorry, I misunderstood. I'm not sure how detailed you would like to go. Maybe a category for "Time" would be in order? [[Korisnik:Malafaya|Malafaya]] ([[Razgovor sa korisnikom:Malafaya|razgovor]]) 14:04, 7 septembar 2012 (KSV)
:::I added '''Kategorija:lv:Vrijeme''' ("time") as well :) [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 14:11, 7 septembar 2012 (KSV)
== Changing username ==
How can I "merge" "Kukac" with "KWiki" here, having known that I already worked here under new username? I know that that complicates the things now. -- [[Korisnik:KWiki|KWiki]] ([[Razgovor sa korisnikom:KWiki|razgovor]]) 23:47, 10 septembar 2012 (KSV)
:Whoa, I've never noticed that KWiki is a new account, I thought you've changed Kukac to KWiki. So there are two seperate acoounts now. I think you should take a look at [http://en.wiktionary.org/wiki/Wiktionary:Changing_username this]. [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 16:48, 11 septembar 2012 (KSV)
:: Since I work primarily on BS Wikipedia, I asked our bureaucrat to change my name and he did and it's all OK there. But I didn't know that the change is valid only for BS Wikipedia and not for other BS-Wikiprojects or Wikiprojects in general. When I realized that I have 2 accounts now and that I worked under this new name, it was late. I know you're an admin here (who else would be? :)), so I asked you to see if you can help me with this issue at least here. Thank you for the link, although I don't have will nor time to deal with this right now. -- [[Korisnik:KWiki|KWiki]] ([[Razgovor sa korisnikom:KWiki|razgovor]]) 18:46, 11 septembar 2012 (KSV)
== bot/interwiki ==
:Selam Barishan
:bu wikide herhangi bir bürokrat yok mu, yoksa Metda da mi bot hakki icin sormami gerek?selamlar--[[Korisnik:George Animal|George Animal]] ([[Razgovor sa korisnikom:George Animal|razgovor]]) 20:35, 9 novembar 2012 (KSV)
::Selam, açıkçası bu işlerin nasıl yürüdüğünü ben hiç bilmiyorum. Meta daha yararlı olacaktır. Bu arada, "vlastita imenica" "özel isim" anlamına geliyor. Bu yüzden [[malbat]]ın başlığını "Imenica" ("isim") olarak değiştiriyorum. Bir de, açıkçası Kürtçe gramer hakkında pek bilgi sahibi değilim ama ismin hâlleri için gerekli şablonları buraya taşımak da çok iyi olacaktır. İngilizce Wiktionary'de böyle şablonlar var mı? [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 20:39, 9 novembar 2012 (KSV)
:Ingilizce wiktionary de isimler ičin šablonlar var.Eril ve dišil isimler ičin.Ama burada ne anlama geldiklerini maalesef bilmiyorum.--[[Korisnik:George Animal|George Animal]] ([[Razgovor sa korisnikom:George Animal|razgovor]]) 20:43, 9 novembar 2012 (KSV)
::Ben şimdi bir göz atıp buraya taşıdıktan sonra açıklamalar yaparım :) [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 20:45, 9 novembar 2012 (KSV)
[http://en.wiktionary.org/wiki/heval örnek]Tešekkürler--[[Korisnik:George Animal|George Animal]] ([[Razgovor sa korisnikom:George Animal|razgovor]]) 20:47, 9 novembar 2012 (KSV)
::Sen Kürtče anliyor musun ya da?Olmazsa Türkče konušuruz.--[[Korisnik:George Animal|George Animal]] ([[Razgovor sa korisnikom:George Animal|razgovor]]) 20:57, 9 novembar 2012 (KSV)
:::Kürtçe bilmiyorum maalesef, ama Türkçede zorlanıyorsan Almanca veya İngilizce de konuşabiliriz. [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 21:01, 9 novembar 2012 (KSV)
::Danke für deine Hilfe für alles.Bald werde ich auch türkische Einträge einfügen, sobald ich mich mit dem bosnischen Wiktionary vertraut gemacht habe und die Regeln hier verstanden habe.Aber leider kein ich kein Wort Bosnisch und die von mir hinzugefügten kurdischen Einträge habe ich mit Hilfe der türkische Einträge geschafft.-Liebe Grüße--[[Korisnik:George Animal|George Animal]] ([[Razgovor sa korisnikom:George Animal|razgovor]]) 21:08, 9 novembar 2012 (KSV)
:::Nichts zu danken, dafür bin ich hier :) Ich werde dir die notwendigen Übersetzungen (z.B. siehe auch, Synonyme, Verb, Substantiv usw.) schreiben, sobald ich die kurdische Vorlagen beende. [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 21:18, 9 novembar 2012 (KSV)
:Grüß dich/selam
:ich danke dir vielmals für deine Mühe.Ich werde anfangen Wörter hinzuzufügen.Bald werde ich mit den dutschen/türkisch Wörter anfangen.Liebe Grüße und Danke--[[Korisnik:George Animal|George Animal]] ([[Razgovor sa korisnikom:George Animal|razgovor]]) 10:19, 10 novembar 2012 (KSV)
::Ach noch einmal, nichts zu danken :) Gern geschehen. Genieß es! [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 10:42, 10 novembar 2012 (KSV)
== Little surprise :) ==
Check [http://www.4shared.com/office/VHNV50Yi/Petar_Skok_-_Etimologijski_rje.html this]. ;-) I think you need to register to download it or it can be done via Facebook. You can find [http://www.scribd.com/doc/32934467/Petar-Skok-Etimologijski-Rjecnik-Hrvatskoga-Ili-Srpskoga-Jezika here] also, but you have to upload something first before downloading; second option is again via Facebook. Of course, you can just read it without downloading. :-) -- [[Korisnik:KWiki|KWiki]] ([[Razgovor sa korisnikom:KWiki|razgovor]]) 18:03, 19 decembar 2012 (KSV)
:Waow, that is a great surprise, indeed! I don't know how to thank you! I've just downloaded and right now I'm stucking my head into it :D [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 23:15, 19 decembar 2012 (KSV)
:But still I do have a question :D Can I also use this one for adding definitions here in Bosnian Vikirječnik? Or it's mainly for Serbian and Croatian entries? I see they're related to each other but I don't know if it's good for pointing out the differences. [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 23:21, 19 decembar 2012 (KSV)
:: P. Skok used a bit different style in this dictionary when you compare it with today's standard(s), so I wouldn't recommend using his definitions without some adaptations (in any of our languages). I sent you the dictionary to use it for etymological purposes (where it can be used) because it's the best dictionary of that kind in ex-Yugoslavia ever and because I noticed that BS Wikirječnik lacks this etymological aspect. ;) And I'm here for (new) questions, of course. :-) -- [[Korisnik:KWiki|KWiki]] ([[Razgovor sa korisnikom:KWiki|razgovor]]) 01:35, 20 decembar 2012 (KSV)
::: Yes, with some further examination I noticed the different style as well but it's still an amazing source. Not only for Vikirječnik, but also for me :D So thanks again! [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 15:14, 20 decembar 2012 (KSV)
Alive? :-) -- [[Korisnik:KWiki|KWiki]] ([[Razgovor sa korisnikom:KWiki|razgovor]]) 16:32, 19 septembar 2014 (KSV)
:Almost! How is it going with you? :) [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 16:20, 25 septembar 2014 (KSV)
:: Let me check: a) health: good; b) job: it depends; c) love: ____________ (this is no tabloid :))). It seems you're quite busy (and I don't know what to do here when you are not around :), although there's often a time issue too). But it's better than the contrary. :) -- [[Korisnik:KWiki|KWiki]] ([[Razgovor sa korisnikom:KWiki|razgovor]]) 12:17, 28 septembar 2014 (KSV)
== Bot flag ==
Hi Barishan. I would like to request a bot flag for EdinBot on this wiki but since there are no bureaucrats I will need to do that on meta instead. So it would be nice to get "community approval". Furthermore, I see that you are practically the only active administrator (and practically even user) here on bs-wiktionary. Even if I haven't any contributions I would like to suggest myself as an administrator, just to help out. My current activities are mainly focused on bs-wikipedia. My role here would (at least in the beginning) be mostly of technical nature. On bs-wiki I operate a bot with which I have accomplished a lot of important tasks that were useful for the community (and working on others at this moment). I think that many useful things can also be done here. On bs-wikibooks I recently got community approval for getting Administrator rights because of the same reasons that almost no activity is present there, while the pages are being vandalized without control but also some technical stuff has to be done. I hope that you'll agree with my point, but nonetheless, I would like to know your opinion on this matter. Thanks in advance. :) -- [[Korisnik:Edinwiki|Edinwiki]] ([[Razgovor sa korisnikom:Edinwiki|razgovor]]) 21:24, 14 januar 2013 (KSV)
: I confirm everything he said. ;) -- [[Korisnik:KWiki|KWiki]] ([[Razgovor sa korisnikom:KWiki|razgovor]]) 19:59, 16 januar 2013 (KSV)
::Oh so sorry, I was kind of sick so I just saw your messages. Well I totally agree with you, since I'm not even a native speaker of Bosnian/Serbo-Croatian language, regular bot contributions would be gladly appreciated. And about the administratorship, you got my full support again :) I'm sorry for my belated reply once again. And shame on me, I have exactly no idea about the bureaucracy here, should I do anything to nominate you for the adminship? [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 13:47, 19 januar 2013 (KSV)
::: Glad to hear that Barishan. You can nominate me here [[Vikirječnik:Administratori]], similar to what has been done [[b:Wikiknjige:Čaršija#Glasanje_za_administratora|here]]. I would also suggest to nominate KWiki as an administator here, since as you may recall, he's an expert in our language (and of course only if he agrees upon this). :) For the bureaucrat matter, it doesn't matter who fulfills that role. As long as it is someone of us so that bot-flag requests and administrator votings can be handled locally instead of relying on the stewards from Meta. So if you want to, you can nominate us and after a few days I can contact someone on Meta to perform the changes, if agreed upon. Thanks Barishan. -- [[Korisnik:Edinwiki|Edinwiki]] ([[Razgovor sa korisnikom:Edinwiki|razgovor]]) 14:06, 19 januar 2013 (KSV)
:::: I hope I did everything correct :) Great to see other users here, thank you :) [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 14:18, 19 januar 2013 (KSV)
::::: Thanks Barishan! Could you just please indicate somewhere that we are also requesting a local Bureaucrat. You can either nominate yourself, or otherwise put in the comments that I could fulfill that role. Anyway, I'm currently busy with two big projects on Wikipedia and Wikidata, so it will take a few weeks until I focus my activity here. But I will soon implement some bot welcoming stuff here (and other bs-projects). That should be a good start. :) -- [[Korisnik:Edinwiki|Edinwiki]] ([[Razgovor sa korisnikom:Edinwiki|razgovor]]) 14:32, 19 januar 2013 (KSV)
::::: Btw. since we are reorganizing all of this, and you indicated it yourself, we should also officially request for adminship removal for 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. -- [[Korisnik:Edinwiki|Edinwiki]] ([[Razgovor sa korisnikom:Edinwiki|razgovor]]) 14:37, 19 januar 2013 (KSV)
== Reptiles ==
Hi there. What is the category for "Reptiles" here? Thanks, [[Korisnik:Malafaya|Malafaya]] ([[Razgovor sa korisnikom:Malafaya|razgovor]]) 13:49, 1 april 2013 (KSV)
:Hey, I've just noticed that we don't have such a category. It's going to be '''Kategorija:Reptili''', though. Anytime :) [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 19:12, 2 april 2013 (KSV)
== Vulgarisms ==
I see you really like vulgarisms. :))) And what's up, man? :) Btw, Edinwiki and I are now admins. ;) -- [[Korisnik:KWiki|KWiki]] ([[Razgovor sa korisnikom:KWiki|razgovor]]) 21:52, 9 april 2013 (KSV)
:Oh I love those. The creamy part of any language :) I'm doing very well, kind of busy with real-world-stuff, well school mostly. How about you? I hope everything's great! Congratulations! That's very good to have 2 more admins here, especially native speakers :) I'll be back here with more contributions as soon as I can have some time. Next goal: 10.000 articles! :) [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 23:30, 9 april 2013 (KSV)
:: I'm fine, thank God. Pretty much all the same like before: work, Wiki, Wiki, work, some sleep in between and so. :) And you should be given some award for your work here (although I somehow think that the work is an award itself). :) -- [[Korisnik:KWiki|KWiki]] ([[Razgovor sa korisnikom:KWiki|razgovor]]) 00:06, 10 april 2013 (KSV)
:::Oh I love contributing here, it helps improving my Bosnian. Not about grammar maybe, but I learn lots of new words :) [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 12:56, 12 april 2013 (KSV)
== A lot to do ==
Hi Barishan. Let me first thank you for your support. I hope we can make a difference here. :) You should also know that if there is anything that you think that could be done by a bot, you can let me know on my talk page. At the moment I have already setup the [[Posebno:Doprinos/EdinBot|welcome messages to new users]]. Regards. -- [[Korisnik:Edinwiki|Edinwiki]] ([[Razgovor sa korisnikom:Edinwiki|razgovor]]) 22:03, 9 april 2013 (KSV)
:I'm positively sure that you can :) Well actually I pay extra attention to declension templates, I try to create at least one simple template for every language here. A bot contribution to create declined forms of the words like they do in English Wiktionary would be great I think (Like I've done in [[böğürtlen]] manual). Do you think that's reasonable? [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 23:30, 9 april 2013 (KSV)
:: Can you please point me to some links on en.wikt and also explain a bit more what you want to do? I'm not sure whether I understand what exactly has to be done. -- [[Korisnik:Edinwiki|Edinwiki]] ([[Razgovor sa korisnikom:Edinwiki|razgovor]]) 10:34, 10 april 2013 (KSV)
:::Well actually I have literally no idea how it functions, but as far as I see, [http://en.wiktionary.org/wiki/User:SemperBlottoBot SemperBlottoBot], for example, created tons of conjugated verb forms in Italian (see [http://en.wiktionary.org/wiki/aspettare#Conjugation aspettare]). Apart from bot uploads, in en.wiktionary some templates work with a one-click system, (including Turkish and Azeri) as long as the user allows that in his/her preferences. [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 12:56, 12 april 2013 (KSV)
:::: I'll take a look at it, but on a later moment when I find some time. -- [[Korisnik:Edinwiki|Edinwiki]] ([[Razgovor sa korisnikom:Edinwiki|razgovor]]) 18:24, 13 april 2013 (KSV)
::::: It was just the first thing that came to my mind, no pressure :) [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 18:33, 13 april 2013 (KSV)
== A hint ==
Just one hint: instead of "ortografija" you should use "pravopis". ;) Both is correct, but Slavic word is very common in B/C/S, so it has a "head start". :) -- [[Korisnik:KWiki|KWiki]] ([[Razgovor sa korisnikom:KWiki|razgovor]]) 23:16, 14 april 2013 (KSV)
:Thanks for the hint! :) And, for instance, it should be '''izborni/alternativni pravopisi''' and '''moldavijski pravopis''', right? [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 23:21, 14 april 2013 (KSV)
: Not at all, I am here to help. ;) "Izborni" and "alternativni" are not the same; you have to look at the context in which they are used. "Izborni" is derived from "izbori" (1. "choices"; 2. "elections"; the singular is "izbor" = "choice"), so you see what I'm talking about? :) If you meant "different form to writing some word", then you should use "alternativni oblik". And the second question: correct form is "moldavski". -- [[Korisnik:KWiki|KWiki]] ([[Razgovor sa korisnikom:KWiki|razgovor]]) 23:36, 14 april 2013 (KSV)
::Yes, I just wanted to know if that -i ending was correct. Thanks again, indeed :) [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 23:40, 14 april 2013 (KSV)
::: If you have a potential job for a bot (like replacing some words with others), remember Edinwiki. ;) The man is a machine. :)) -- [[Korisnik:KWiki|KWiki]] ([[Razgovor sa korisnikom:KWiki|razgovor]]) 23:45, 14 april 2013 (KSV)
Note: B/C/S (and some other languages probably) also have ''[[singular]]'' and ''[[plural]]'' (I mean: as words), besides ''[[jednina]]'' i ''[[množina]]'' (and ''[[dual]]'' = ''[[dvojina]]''). It is not limited to English alone. (Although you probably did not have time to work it all.) – [[Korisnik:KWiki|KWiki]] ([[Razgovor s korisnikom:KWiki|razgovor]]) 18:31, 26 juni 2020 (KSV)
:Yes, it's on my list to do in a free time. Thanks though! [[Korisnik:Barishan|Barishan]] ([[Razgovor s korisnikom:Barishan|razgovor]]) 07:45, 27 juni 2020 (KSV)
== Wikirječnik i Wikidata ==
Hi Barishan. There is a discussion page about implementing Wikidata on Wiktionary. If you are interested to participate you can find the "thread" [http://www.wikidata.org/wiki/Wikidata:Wiktionary here] (use talk page for discussions). -- [[Korisnik:Edinwiki|Edinwiki]] ([[Razgovor sa korisnikom:Edinwiki|razgovor]]) 09:35, 24 juni 2013 (KSV)
:Hi, sorry for my mega belated answer, but I was really busy with school and stuff. Actually I'm not sure how helpful I can be about this discussion, I'm such a dummy when it comes to this technical things. Sorry :/ [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 16:07, 15 juli 2013 (KSV)
== Global account ==
Hi Barishan! As a [[:m:Stewards|Steward]] I'm involved in the upcoming [[:m:Help:Unified login|unification]] of all accounts organized by the Wikimedia Foundation (see [[:m:Single User Login finalisation announcement]]). By looking at [[Special:CentralAuth/Barishan|your account]], I realized that you don't have a global account yet. In order to secure your name, I recommend you to create such account on your own by submitting your password on [[Special:MergeAccount]] and unifying your local accounts. If you have any problems with doing that or further questions, please don't hesitate to contact me on my [[User talk:DerHexer|talk page]]. Cheers, [[Korisnik:DerHexer|DerHexer]] ([[Razgovor sa korisnikom:DerHexer|razgovor]]) 15:02, 13 januar 2015 (KSV)
== Translating the interface in your language, we need your help ==
<div lang="en" dir="ltr" class="mw-content-ltr">Hello Barishan, thanks for working on this wiki in your language. [http://laxstrom.name/blag/2015/02/19/prioritizing-mediawikis-translation-strings/ We updated the list of priority translations] and I write you to let you know. The language used by this wiki (or by you in your preferences) needs [[translatewiki:Translating:Group_statistics|about 100 translations or less]] in the priority list. You're almost done!
[[Image:Translatewiki.net logo.svg|frame|link=translatewiki:|{{int:translateinterface}}]]
Please [[translatewiki:Special:MainPage|register on translatewiki.net]] if you didn't yet and then '''[[translatewiki:Special:Translate/core-0-mostused|help complete priority translations]]''' (make sure to select your language in the language selector). With a couple hours' work or less, you can make sure that nearly all visitors see the wiki interface fully translated. [[User:Nemo_bis|Nemo]] 14:06, 26 april 2015 (KSV)
</div>
<!-- Message sent by User:Nemo bis@metawiki using the list at http://meta.wikimedia.org/w/index.php?title=Meta:Sandbox&oldid=12031713 -->
:Hi Nemo, thank you for letting me know but I don't think that I could give accurate Bosnian translations for such either technical or sensitive codes. I can however work for the Turkish version for that. Thanks :) [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 10:44, 13 maj 2015 (KSV)
== Armenski / ermenski ==
Knock-knock! :-) Just a quick info: it seems that correct form in Bosnian is "ermenski" (< "Ermenija"; "Ermeni"). I suppose it is taken from Turkish "Ermenistan"), although "armenski" is very widely used. There is a Serbian form – "jermenski" ("Jermenija"; "Jermeni"); it's also used in communication (lesser than "armenski") but it is not standard form. -- [[Korisnik:KWiki|KWiki]] ([[Razgovor sa korisnikom:KWiki|razgovor]]) 13:33, 20 august 2015 (KSV)
:Oops. And I searched this pretty long, asked native speakers whether the standard Bosnian form is armenski or ermenski. So do we have to change all "armenski"s to "ermenski" here? Or is it acceptable to use armenski? [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 09:14, 11 septembar 2015 (KSV)
:: I am not sure yet. Personally, I prefer "Armenija/armenski" but on BS Wiki we accepted "Ermenija/ermenski". Here's an extract from the "Ermenija" talk page (in Bosnian), in which the source for "Ermenija" is given (the book by H. Muratagić-Tuna, page 429; that was the basis for change of the name on BS Wiki):
"''Rječnik bosanskog jezika'' (ISBN 995-862-00-89), izdat od Instituta za jezik u Sarajevu 2007, ne spominje ni Armeniju niti Ermeniju, ali u knjizi ''Bosanski, hrvatski, srpski – aktuelni pravopisi'' (Sarajevo, 2005), autorice Hasnije Muratagić-Tune, u izdanju Bosanskog filoškog društva (ISBN 9958-9309-0-0) na stranici 429. piše:
*''bosanski: Ermenija, pridj. ermenski, Ermen, Ermenka...''
*''hrvatski: Armenija''
*''srpski: Jermenija."''
-- [[Korisnik:KWiki|KWiki]] ([[Razgovor sa korisnikom:KWiki|razgovor]]) 21:47, 13 septembar 2015 (KSV)
::: Well, from now on I'll use ermenski then, but to be honest I don't feel like changing all "armenski"s to "ermenski" at all :D [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 11:49, 22 septembar 2015 (KSV)
:::: I understand you absolutely. :-) -- [[Korisnik:KWiki|KWiki]] ([[Razgovor sa korisnikom:KWiki|razgovor]]) 13:18, 23 septembar 2015 (KSV)
::::: Update: Last year the new edition of our orthography was published and now it is only "Armenija / Armenac / armenski" and so on. (You can download mobile app ''Pravopis.ba'' if needed.) Also, few days ago Institute for Language (of the University of Sarajevo) and Bosniak culture community "Preporod" announced that new orthography will be published sometimes in 2021 (that one will be worked on institutionally, unlike the previous one, and should be considered as the main one; but until then we use the one from 2019). – [[Korisnik:KWiki|KWiki]] ([[Razgovor s korisnikom:KWiki|razgovor]]) 10:12, 20 juni 2020 (KSV)
:::::: Thank you very much! That will be great for me! I really appreciate that [[Korisnik:Barishan|Barishan]] ([[Razgovor s korisnikom:Barishan|razgovor]]) 13:03, 20 juni 2020 (KSV)
== Difference ==
One important difference in order of cases (nothing to do with the meaning, but could be useful for declination templates): in Croatian it is locative - instrumental, in Bosnian (and Serbian) it is vice versa. – [[Korisnik:KWiki|KWiki]] ([[Razgovor s korisnikom:KWiki|razgovor]]) 16:34, 20 juni 2020 (KSV)
:Great! Thanks! Speaking of the cases, actually there is an important issue about the declination templates of Turkish. The genitive and instrumental exist in the language as well, but they are not counted as "cases" according to the Turkish grammar. All Wiktionaries (including the Turkish one) list the genitive on the declination templates for some reason. I don't want to remove it completely, I just want to add a footnote stating that it is not counted as a case. And since the instrumental exists in Bosnian, maybe it'd be OK to add it as well with the same note but I am not pretty sure about that as it is just considered "a word with the particle ''with''". What do you think? [[Korisnik:Barishan|Barishan]] ([[Razgovor s korisnikom:Barishan|razgovor]]) 16:53, 20 juni 2020 (KSV)
:: Hm... I don't know. It is your language (I suppose), so I will trust your knowledge. In Bosnian every case is counted as case. P. S.: When you have time, could you write these entries: [[koʻplik]] · [[singular]] · [[plural]] · [[40]] · [[50]] · [[60]] · [[70]]? (They are in the box on the top of "Recent changes" page.) (Note: For ''koʻplik'', check the form of apostrophe: I am not sure if this one is correct.) – [[Korisnik:KWiki|KWiki]] ([[Razgovor s korisnikom:KWiki|razgovor]]) 10:17, 21 juni 2020 (KSV)
::: I am definitely going to add a footnote to the genitive, I just wanted to ask for your opinion about the instrumental. If I add all particles, it would be possible to further add the abessive, essive... just like Finnish. I only thought of the instrumental because it exists in Bosnian. Anyways yeah, I guess it'd be a good idea to give them to (possible) readers of native Bosnian speakers. Is "''genitiv i instrumental ne smatraju se padežima prema turskoj gramatici''" correct?
::: Yeah, post-Soviet spellings of Turkic languages are always a challenge. I will tackle them as soon as possible. [[Korisnik:Barishan|Barishan]] ([[Razgovor s korisnikom:Barishan|razgovor]]) 13:09, 21 juni 2020 (KSV)
:::: "''Genitiv i instrumental ne smatraju se padežima u turskoj gramatici''" (upper case G if that is the beginning of sentence, otherwise lower case, i.e., if it is going to be a note in parenthesis). – [[Korisnik:KWiki|KWiki]] ([[Razgovor s korisnikom:KWiki|razgovor]]) 15:34, 24 juni 2020 (KSV)
== Template for adjectives ==
I saw that there are adjectives in the category "Imenice". We should have [https://en.wiktionary.org/wiki/Template:sh-decl-adj-1 this] declination template for them. – [[Korisnik:KWiki|KWiki]] ([[Razgovor s korisnikom:KWiki|razgovor]]) 14:30, 26 juli 2020 (KSV)
:I've imported 5 tables from sh.Wiktionary, pogledaj "[[turski]]" i "[[velik]]". (velik needs definitions and possible synonyms by the way :) -- [[Korisnik:Barishan|Barishan]] ([[Razgovor s korisnikom:Barishan|razgovor]]) 19:03, 26 juli 2020 (KSV)
== How we will see unregistered users ==
<div lang="en" dir="ltr" class="mw-content-ltr">
<section begin=content/>
Hi!
You get this message because you are an admin on a Wikimedia wiki.
When someone edits a Wikimedia wiki without being logged in today, we show their IP address. As you may already know, we will not be able to do this in the future. This is a decision by the Wikimedia Foundation Legal department, because norms and regulations for privacy online have changed.
Instead of the IP we will show a masked identity. You as an admin '''will still be able to access the IP'''. There will also be a new user right for those who need to see the full IPs of unregistered users to fight vandalism, harassment and spam without being admins. Patrollers will also see part of the IP even without this user right. We are also working on [[m:IP Editing: Privacy Enhancement and Abuse Mitigation/Improving tools|better tools]] to help.
If you have not seen it before, you can [[m:IP Editing: Privacy Enhancement and Abuse Mitigation|read more on Meta]]. If you want to make sure you don’t miss technical changes on the Wikimedia wikis, you can [[m:Global message delivery/Targets/Tech ambassadors|subscribe]] to [[m:Tech/News|the weekly technical newsletter]].
We have [[m:IP Editing: Privacy Enhancement and Abuse Mitigation#IP Masking Implementation Approaches (FAQ)|two suggested ways]] this identity could work. '''We would appreciate your feedback''' on which way you think would work best for you and your wiki, now and in the future. You can [[m:Talk:IP Editing: Privacy Enhancement and Abuse Mitigation|let us know on the talk page]]. You can write in your language. The suggestions were posted in October and we will decide after 17 January.
Thank you.
/[[m:User:Johan (WMF)|Johan (WMF)]]<section end=content/>
</div>
18:10, 4 januar 2022 (KSV)
<!-- Message sent by User:Johan (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:Johan_(WMF)/Target_lists/Admins2022(1)&oldid=22532492 -->
== Greetings ==
Just to check up on you. :-) (Whenever you see this.) [[Korisnik:KWiki|KWiki]] ([[Razgovor s korisnikom:KWiki|razgovor]]) 02:26, 8 decembar 2022 (KSV)
:Quite late, sorry! Just adding a couple of new words whenever I happen to find time. How are you doing? [[Korisnik:Barishan|Barishan]] ([[Razgovor s korisnikom:Barishan|razgovor]]) 14:06, 29 januar 2023 (KSV)
== Bosnische sprache ==
Diese Projekt ist gedacht für die Wörter welche eine Bedeutung in '''bosnische Sprache''' haben. Wenn Sie über Wörter aus türkische Sprache gern schreiben möchten, nutzen Sie ähnliches Projekt in türische Wiktionary! Danke! [[Korisnik:AnToni|AnToni]] ([[Razgovor s korisnikom:AnToni|razgovor]]) 18:32, 11 septembar 2023 (KSV)
:Hmm... nein? Vikirječnik ist das '''bosnischsprachige''' Wiktionary, ein '''mehrsprachiges''' Wörterbuch '''für den Wortschatz aller Sprachen'''; genau wie alle anderen Wikiwörterbuchprojekte. Alle Definitionen und Erklärungen sind natürlich auf Bosnisch, aber alle Benutzer können jede Sprache hinzufügen, in der sie beitragen können. Bitte machen Sie Ihre Änderungen rückgängig, mit denen Sie die Artikel geleert haben. Danke. [[Korisnik:Barishan|Barishan]] ([[Razgovor s korisnikom:Barishan|razgovor]]) 08:39, 12 septembar 2023 (KSV)
::Ich stimme dir vollkommen zu, @[[Korisnik:Barishan|Barishan]]. Totaler Quatsch. Soweit ich weiß, gilt im sh.wiktionary.org (allgemein für Serbo-Kroatisch) die Regelung, dass dort nur eigensprachige Wörter vorkommen. Ich glaube, im Simple English Wiktionary ist das auch so, aber ansonsten sollen es natürlich mehrsprachige Wörterbücher sein. Die logische Erklärung, wieso es in den zwei genannten Beispielen nicht so ist, ist, dass es eben die einzelnen Wörterbücher auf Bosnisch, Kroatisch und Serbisch gibt (u.a. auch für fremdsprachige Wörter) bzw. das normale englische Wiktionary mit allumfassenden Informationen zu jeglichen Sprachen.
::Du bist ja Administrator hier, könntest du nicht einfach mühelos alle vorgestrigen Bearbeitungen von @[[Korisnik:AnToni|AnToni]] revertieren? Es ist natürlich Quatsch, wenn wir jetzt hier so viele leere Seiten im Wikirječnik haben. --[[Korisnik:Camēlopardalis Germānica|Camēlopardalis Germānica]] ([[Razgovor s korisnikom:Camēlopardalis Germānica|razgovor]]) 05:44, 13 septembar 2023 (KSV)
ino4ve4y6trc45o82crylf54cvl4mfn
Razgovor s korisnikom:Curious
3
6403
17995
2011-09-09T22:40:55Z
Bugoslav
692
Nova stranica: {{subst:Dobrodošlica|1=-- ~~~~}}
17995
wikitext
text/x-wiki
<div style="border:1px solid #999999;background-color:#F5F5F5;padding:10px;">
[[Datoteka:Wiktionary-logo-en.svg|100px|lijevo]]<big>'''Dobrodošli na Wikirječnik na [[w:Bosanski jezik|bosanskom jeziku]] – slobodan rječnik, leksikon i tezaurus!'''</big><br>
<div style="border:1px solid #999999;background-color:#B0E0E6;padding:8px;">Pozdrav, {{PAGENAME}}!<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 [[Vikirječnik:Uređivanje|kako članci trebaju izgledati]]. '''Slobodno''' radite na Wikirječniku i '''razgovarajte''' s drugima.
Više informacija dostupno je na '''[[w:Wikipedia:Čaršija|Čaršiji]]''', gdje možete razgovarati s drugim korisnicima. Možete kontaktirati i neke 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 interesuje, čime se bavite i sl. Molimo Vas da se potpisujete na stranicama za razgovor korištenjem '''<tt><nowiki>~~~~</nowiki></tt>''' (četiri znaka ''tilda'').
Radite zajedno s 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:Recentchanges|nedavne izmjene]], gdje možete vidjeti nedavne aktivnosti na Wikipediji.
Prilikom [[Posebno:Upload|postavljanja]] slika koristite ispravne [[w:Wikipedia:Šabloni za slike|šablone za licencu]] i vodite računa o '''[[w:Wikipedia:Autorska prava|autorskim pravima]]''' prilikom pisanja članaka. Članci ili slike koje krše autorska prava bit će obrisani. Još jednom Vas lijepo pozdravljamo. {{#if:-- [[Korisnik:Bugoslav|Bugoslav]] 22:40, 9 septembar 2011 (KSV)|-- [[Korisnik:Bugoslav|Bugoslav]] 22:40, 9 septembar 2011 (KSV)}}
{|- style="background-color:#B0E0E6; text-align:center;"
| style="background: #F0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Slika: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;" | [[Slika:View-refresh.svg|18px]] <br/>[[Posebno:Recentchanges|Nedavne izmjene]]
| style="background: #F0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Slika:Wiktionary-logo.svg|18px]] <br/>[[w:Pravopis bosanskog jezika|Pravopis]]
| style="background: #E0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Slika:Nuvola apps kmessedwords.png|18px]] <br/>[[w:Wikipedia:Jezički standardi na bosanskoj Wikipediji|Jezički standardi]]
| style="background: #F0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Slika:čć.png|18px]] <br/>[[w:Wikipedia:Pravilno-nepravilno u bosanskome jeziku|Pravilno-nepravilno]]
| style="background: #E0FFFF; border:1px solid silver; 18px; font: 90% Verdana; width:16%; height:30;" | [[Slika: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 />[[Razgovor o šablonu:Dobrodošlica|Kliknite ovdje]].
|}</div></div>
1t7ct4p9o8o2shyyi3wfqhnjtr2dhnw
Korisnik:Vibhijain
2
6436
67187
18040
2020-03-03T05:57:06Z
CommonsDelinker
62
Removing [[:c:File:Vibhijain.jpg|Vibhijain.jpg]], it has been deleted from Commons by [[:c:User:Taivo|Taivo]] because: author's request.
67187
wikitext
text/x-wiki
Hi! I am Vaibhav from India! I am an administrator on Hindi Wiktionary and Pali Wikipedia and former admin at Sanskrit Wikipedia. I am a rollbacker and file mover on English. I am also a translator on Beta-Wiki and I am working on the test project of Sanskrit Wikiquote at incubator.<br />
[[m:w:sa:User:Vibhijain|HERE'S MY SANSKRIT WIKIPEDIA PAGE!!!]]<br />
[[m:w:en:User:Vibhijain|HERE'S MY ENGLISH WIKIPEDIA PAGE!!!]]
[[File:RCPatroller Badge.png|150px|thumb|This user is a Recent Changes Patroller.]]
4l7wz0ze5mrshf76swm3vzk559l6rva
Korisnik:Toto Azéro
2
6437
18041
2011-09-11T19:14:20Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
18041
wikitext
text/x-wiki
[[Image:Redirectltr.png|#REDIRECT]]<span class="redirectText" id="softredirect">[[:meta:user:Toto Azéro]]</span>
fiq0h8khtrt3woby2idcyjalpmmjod3
Korisnik:KuduIO/common.js
2
6455
18063
2011-09-11T20:29:22Z
Pathoschild
81
global JavaScript ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
18063
javascript
text/javascript
mw.loader.load('http://meta.wikimedia.org/w/index.php?title=User:KuduIO/global.js&action=raw&ctype=text/javascript');
8i4cm8eeykhurss7kuhrpirf4cuh5z9
Šablon:Kin
10
6499
72242
72154
2024-07-09T17:39:11Z
Barishan
287
72242
wikitext
text/x-wiki
<span class="KA" style="font-family:{{ZH fontovi}}; font-family :inherit; font-size:130%; font-size :130%">{{{1}}}</span>
n6c0tzsoib3zzkhcs0s0ncrsbx5jib8
Kategorija:Gruzijski jezik
14
6524
65518
56580
2017-06-24T10:25:05Z
Octahedron80
1996
Zamijenjen sadržaj stranice sa "[[Kategorija:Svi jezici]]"
65518
wikitext
text/x-wiki
[[Kategorija:Svi jezici]]
dyunws1tuqb34r1bteut5rdinjzjpto
Kategorija:Baškirski jezik
14
6528
65557
57202
2017-07-03T19:53:18Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65557
wikitext
text/x-wiki
[[Kategorija:Svi jezici]]
dyunws1tuqb34r1bteut5rdinjzjpto
Korisnik:Bugoslav
2
6657
18503
2011-09-18T21:09:44Z
Bugoslav
692
sitn.
18503
wikitext
text/x-wiki
*[[MediaWiki:January-gen]]
*[[MediaWiki:February-gen]]
*[[MediaWiki:March-gen]]
*[[MediaWiki:April-gen]]
*[[MediaWiki:May-gen]]
*[[MediaWiki:June-gen]]
*[[MediaWiki:July-gen]]
*[[MediaWiki:August-gen]]
*[[MediaWiki:September-gen]]
*[[MediaWiki:October-gen]]
*[[MediaWiki:November-gen]]
*[[MediaWiki:December-gen]]
*[[MediaWiki:January]]
*[[MediaWiki:February]]
*[[MediaWiki:March]]
*[[MediaWiki:April]]
*[[MediaWiki:May]]
*[[MediaWiki:June]]
*[[MediaWiki:July]]
*[[MediaWiki:August]]
*[[MediaWiki:September]]
*[[MediaWiki:October]]
*[[MediaWiki:November]]
*[[MediaWiki:December]]
h9150m02t1ter0kakg2mkhy9idbp34p
Šablon:el-dekl-prid-pozitiv
10
6769
18715
18709
2011-09-24T10:48:33Z
Barishan
287
18715
wikitext
text/x-wiki
<div class="NavFrame">
<div class="NavHead" style="background:#cce4fc; text-align:left"> {{#if:{{{header|}}}|'''{{{header}}}'''}}</div>
<div class="NavContent">
{| style="background:#fdfdfd;border-collapse:separate;border-spacing:1px;text-align:center;width:100%" class="inflection-table"
|-
! rowspan="2" width="20%" align="right" style="background:#cce4fc" |broj <br>padež \ rod
! colspan="3" style="background:#cce4fc" | jednina
! colspan="3" style="background:#cce4fc" | množina
|-
! style="background:#cce4fc" | muški
! style="background:#cce4fc" | ženski
! style="background:#cce4fc" | srednji
! style="background:#cce4fc" | muški
! style="background:#cce4fc" | ženski
! style="background:#cce4fc" | srednji
|-
{{ {{el-dekl-prid-šablon}}{{{dec|}}}<!-- produces "el-decl-adj" + dec -->
|stem={{{stem|}}}
|stem2={{{stem2|}}} }}
|-
{{#if:{{{pionote|}}}|
{{!}}-
{{!}} style="background:#ffffff" {{!}} izvedenice
{{!}} style="background:#ffffff" colspan="6" align="left" {{!}} {{{pionote}}}}}
{{#if:{{{note|}}}|
{{!}}-
{{!}} style="background:#ffffff" {{!}} bilješke
{{!}} style="background:#ffffff" colspan="6" align="left" {{!}} {{{note}}}}}
|}
</div></div><noinclude>
[[Kategorija:Šabloni deklinacije (grčki)]]
</noinclude>
gl82jjisqrb2vw9oeux6dm27cj92efa
Šablon:Grč
10
6773
18706
2011-09-24T10:18:59Z
Barishan
287
Nova stranica: <onlyinclude><{{#switch:{{{face|}}}|bold|head=b|#default=span}} class="Grek" {{#if:{{{lang|}}}|lang="{{{lang}}}" xml:lang="{{{lang}}}"}}>{{{1}}}</{{#switch:{{{face|}}}|bold|head=b|#de...
18706
wikitext
text/x-wiki
<onlyinclude><{{#switch:{{{face|}}}|bold|head=b|#default=span}} class="Grek" {{#if:{{{lang|}}}|lang="{{{lang}}}" xml:lang="{{{lang}}}"}}>{{{1}}}</{{#switch:{{{face|}}}|bold|head=b|#default=span}}></onlyinclude>
foiu60eu94iwbsgp13456h5kp48tgcz
Šablon:el-dekl-prid-šablon
10
6774
18710
2011-09-24T10:25:49Z
Barishan
287
Nova stranica: <noinclude> <!-- used to form template name with suffixed declension name (eg "-ος-η-ο") section --> </noinclude>el-dekl-prid-
18710
wikitext
text/x-wiki
<noinclude>
<!-- used to form template name with suffixed declension name (eg "-ος-η-ο") section -->
</noinclude>el-dekl-prid-
7xr2g3f9jp8dr74eovy88pza57jrgu8
Šablon:el-dekl-1
10
6868
18862
18861
2011-09-26T16:29:46Z
Barishan
287
18862
wikitext
text/x-wiki
<div class="NavFrame" style="width:40em">
<div class="NavHead" style="text-align:left" > Deklinacija: '''{{ELkar|{{PAGENAME}}}}'''</div>
<div class="NavContent">
{| style="background:#F9F9F9;text-align:center;width:40em;border-collapse:separate;border-spacing:1px" class="inflection-table"
|-
! style="width:50%;background:#DEDEDE" |
! style="background:#DEDEDE" | Jednina <small>([[ενικός]])</small>
|-
!style="background:#DEDEDE"|Nominativ <small>([[ονομαστική]])</small>
|{{{1}}}
|-
!style="background:#DEDEDE"|Genitiv <small>([[γενική]])</small>
|{{{2}}}
|-
!style="background:#DEDEDE"|Akuzativ <small>([[αιτιατική]])</small>
|{{{3}}}
|-
!style="background:#DEDEDE"|Vokativ <small>([[κλητική]])</small>
|{{{4}}}
|-
{{#if:{{{note|}}}|
{{!}}-
{{!}} colspan="3" align="left" style="background:#fdfdfd" {{!}} {{{note}}}}}
|}</div></div><noinclude>[[Kategorija:Šabloni deklinacije (grčki)]]</noinclude>
edmlm9d1sbzbnnwdnemnezm5y3l0r3t
Šablon:el-dekl-2
10
6899
18906
2011-09-27T17:34:50Z
Barishan
287
Nova stranica: <div class="NavFrame" style="width:40em"> <div class="NavHead" style="text-align:left" > Deklinacija: '''{{ELkar|{{PAGENAME}}}}'''</div> <div class="NavContent"> {| style...
18906
wikitext
text/x-wiki
<div class="NavFrame" style="width:40em">
<div class="NavHead" style="text-align:left" > Deklinacija: '''{{ELkar|{{PAGENAME}}}}'''</div>
<div class="NavContent">
{| style="background:#fdfdfd;text-align:center;width:40em;border-collapse:separate;border-spacing:1px" class="inflection-table"
|-
! style="width:50%;background:#DEDEDE" |
! style="background:#DEDEDE" | Množina <small>([[πληθυντικός]])</small>
|-
!style="background:#DEDEDE"|Nominativ <small>([[ονομαστική]])</small>
|{{{1}}}
|-
!style="background:#DEDEDE"|Genitiv <small>([[γενική]])</small>
|{{{2}}}
|-
!style="background:#DEDEDE"|Akuzativ <small>([[αιτιατική]])</small>
|{{{3}}}
|-
!style="background:#DEDEDE"|Vokativ <small>([[κλητική]])</small>
|{{{4}}}
|-
{{#if:{{{note|}}}|
{{!}}-
{{!}} colspan="3" align="left" style="background:#fdfdfd" {{!}} {{{note}}}}}
|}</div></div><noinclude>[[Kategorija:Šabloni deklinacije (grčki)]]</noinclude>
jeodwm03q00o8qide673zjcvur8tg85
Razgovor s korisnikom:බිඟුවා
3
7028
19192
2011-10-11T17:45:35Z
බිඟුවා
700
Preusmjereno na [[m:User:බිඟුවා]]
19192
wikitext
text/x-wiki
#REDIRECT [[m:User:බිඟුවා]]
oqfi7sc31oqcfftevquuuvfd5zh5scc
Korisnik:Hoo User Page Bot
2
7031
19207
2011-10-12T22:49:00Z
Hoo User Page Bot
985
Creating global bot page
19207
wikitext
text/x-wiki
{| class="infobox" style="width: 21em; font-size: 90%; text-align: left; float: right; background-color: rgb(249, 249, 249); border: 1px solid rgb(170, 170, 170);"
! colspan="2" style="text-align: center; font-size: 130%;" | {{BASEPAGENAME}} [[File:Crystal Clear action run.svg|24px|This user is a bot.]]
|-
| colspan="2" style="text-align: center; font size: 95%;" | ([[{{TALKSPACE}}:{{BASEPAGENAME}}|talk]] · [[Special:Contributions/{{BASEPAGENAME}}|contribs]])
|-
| Operator: || [[m:User:Hoo man|Hoo man]]
|-
| [[Wikipedia:Bots/Requests for approval|Approved]]? || No
|-
| [[Wikipedia:User_access_levels#Bots|Flagged]]? || No
|-
| [[Wikipedia:Bot requests|Task/s]]: || [[m:User:Hoo_man/Synchbot|Syncing user and user talk pages across all wikis]]
|-
| Edit rate: || Max. a few edits per month
|-
| Edit period/s: || Periodically
|-
| Automatic or manual? || half-automatic
|-
| [[w:en:Programming language|Programming language]]/s: || [[w:en:Python|Python]]
|-
|}
This bot syncs user and user talk pages across all wikis, request can be made [[m:User:Hoo_man/Synchbot|here]]. Feel free to complain if it does anything it shouldn't. Every request gets performed and reviewed by [[m:user:Hoo man|Hoo man]].
czscg30nvej6k7apod8zsjv1761ygs5
Korisnik:KamikazeBot
2
7039
19256
2011-10-18T12:49:42Z
Karol007
992
+ information about user
19256
wikitext
text/x-wiki
{|cellpadding="1" cellspacing="1" style="border:0px solid black; background-color:transparent;" width=100%
|- valign=top valign=center
|width=98% style="border:1px solid black; background-color:transparent;"|
{{#ifexist:{{ns:Template}}:Bot|{{Bot|Karol007|site=w:pl|status=globalbot|status=active}}|
<div>'''This user account is a [[Wikipedia:Bot policy|bot]] operated by [[:w:pl:User:Karol007|Karol007]] ([[:w:pl:User talk:Karol007|talk]]).'''
It is not a [[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>
<small>''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].''</small>
</div>
----
}}
<br style="clear:{{{1|both}}};" />
<div class="plainlinks plainlinks2" style="text-align:center;">
<strong style="font-size: 2em;">Emergency {{{titlename|robot}}} shutoff button</strong>
[[{{{icon|File:Crystal Clear action exit.svg}}}|{{{buttonsize|80}}}px|Emergency block button|link={{fullurl:Special:Block|wpBlockAddress={{BASEPAGENAMEE}}&wpBlockExpiry=indefinite&wpAnonOnly=0&wpEnableAutoblock=0&wpCreateAccount=0&wpBlockReason=Bot%20malfunctioning:%20}}]]
<strong>Administrators:</strong> Use this button if {{{name|the bot}}} is malfunctioning. (<strong>[{{fullurl:Special:Block|wpBlockAddress={{BASEPAGENAMEE}}&wpBlockExpiry=indefinite&wpAnonOnly=0&wpEnableAutoblock=0&wpCreateAccount=0&wpBlockReason=Bot%20malfunctioning:%20}} direct link]</strong>)
</div>
----
You can contact for the owner for requests, questions, and queries by either '''<span class="plainlinks">[http://pl.wikipedia.org/w/index.php?title=Dyskusja_wikipedysty:Karol007&action=edit§ion=new leaving a message on my polish talk page in Wikipedia]'''</span> (prefered) or [[Special:Emailuser/Karol007|emailing them]]. Please be aware I may deny requests at my discretion without giving any reason. I am also on [irc://irc.freenode.net/wikipedia-pl IRC].
----
<span class="plainlinks"><small>[[Special:Contributions/KamikazeBot|contribs]] • [http://toolserver.org/~soxred93/pcount/index.php?name=KamikazeBot&lang={{CONTENTLANG}}&wiki={{#switch:{{SERVERNAME}}
|{{CONTENTLANG}}.wikipedia.org = wikipedia
|{{CONTENTLANG}}.wikisource.org = wikisource
|{{CONTENTLANG}}.wikinews.org = wikinews
|{{CONTENTLANG}}.wiktionary.org = wiktionary
|{{CONTENTLANG}}.wikiquote.org = wikiquote
|{{CONTENTLANG}}.wikibooks.org = wikibooks
}} <span style="color:#002bb8">count 1</span>] • <small>[http://toolserver.org/~vvv/yaec.php?user=KamikazeBot&wiki={{#switch:{{SERVERNAME}}
|{{CONTENTLANG}}.wikipedia.org = {{CONTENTLANG}}wiki_p
|{{CONTENTLANG}}.wikisource.org = {{CONTENTLANG}}wikisource_p
|{{CONTENTLANG}}.wikinews.org = {{CONTENTLANG}}wikinews_p
|{{CONTENTLANG}}.wiktionary.org = {{CONTENTLANG}}wiktionary_p
|{{CONTENTLANG}}.wikiquote.org = {{CONTENTLANG}}wikiquote_p
|{{CONTENTLANG}}.wikibooks.org = {{CONTENTLANG}}wikibooks_p
|commons.wikimedia.org = commonswiki_p
}} <span style="color:#002bb8">count 2</span>] • [{{SERVER}}/wiki/Special:Log?user={{urlencode:KamikazeBot}} <span style="color:#002bb8">logs</span>] • [{{SERVER}}/wiki/Special:Log/move?user={{urlencode:KamikazeBot}} <span style="color:#002bb8">page moves</span>] • [[Special:Blockip/KamikazeBot|block user]] • [{{SERVER}}/wiki/Special:Log/block?page=User:{{urlencode:KamikazeBot}} <span style="color:#002bb8">block log</span>] • [{{SERVER}}/w/index.php?title=Special%3ALog&type=makebot&user=&page=User:{{urlencode:KamikazeBot}} flag log] • [[Special:Makebot/KamikazeBot|flag bot]]</small></span>
|}
[[pl:Wikipedysta:KamikazeBot]]
71uxj6i6omltokzosd8y0sum303rmix
Razgovor s korisnikom:KamikazeBot
3
7040
19257
2011-10-18T12:52:37Z
Karol007
992
+ soft redirect
19257
wikitext
text/x-wiki
[[Image:Redirectltr.png|#REDIRECT]]<span class="redirectText" id="softredirect">[[:w:pl:Dyskusja Wikipedysty:Karol007]]</span><br /><span style="font-size:85%; padding-left:52px;">This page is a [[:w:Wikipedia:Soft redirect|soft redirect]].</span>
<br style="clear:{{{1|both}}};" />
1jl239wc4z41fib1k3r1e2mlusiupkw
Razgovor s korisnikom:Karol007
3
7041
19260
2011-10-18T13:17:36Z
Karol007
992
+ soft redirect
19260
wikitext
text/x-wiki
[[Image:Redirectltr.png|#REDIRECT]]<span class="redirectText" id="softredirect">[[:w:pl:Dyskusja Wikipedysty:Karol007]]</span><br /><span style="font-size:85%; padding-left:52px;">This page is a [[:w:Wikipedia:Soft redirect|soft redirect]].</span>
<br style="clear:{{{1|both}}};" />
1jl239wc4z41fib1k3r1e2mlusiupkw
Šablon:Vrata zajednice
10
7042
19303
2011-10-18T19:49:16Z
Bugoslav
692
šablon
19303
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.
riay6m2qn55qsskgf26c14v1y0qr3c9
Korisnik:Bennylin
2
7043
19325
2011-10-19T00:14:17Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
19325
wikitext
text/x-wiki
{{#babel:id|en-4}}
Hi, I'm Benny and I'm probably doing some edits on this wiki as part of the [[m:countervandalism network|countervandalism network]]. You can view my profile and contact me through one of these wikis that I often visit.
<div class="plainlinks">
* [ [[m:User:Bennylin|User]] | [[m:User talk:Bennylin|Talk]] | [[m:Special:Contributions/Bennylin|Contribs]] | [{{fullurl:m:Special:ActiveUsers|limit=1&username=Bennylin}} Activity] | [[m:Special:Log/Bennylin|Logs]] | [http://toolserver.org/~vvv/yaec.php?user=Bennylin&wiki=metawiki_p Counts] | [{{fullurl:m:Special:ListUsers|limit=1&username=Bennylin}} Rights] ] at [ [[m:|Meta]] ]
* [ [[m:w:id:User:Bennylin|User]] | [[m:w:id:User talk:Bennylin|Talk]] | [[m:w:id:Special:Contributions/Bennylin|Contribs]] | [{{fullurl:m:w:id:Special:ActiveUsers|limit=1&username=Bennylin}} Activity] | [{{fullurl:m:w:id:Special:Log|user=Bennylin}} Logs] | [http://toolserver.org/~vvv/yaec.php?user=Bennylin&wiki=idwiki_p Counts] | [{{fullurl:m:w:id:Special:ListUsers|limit=1&username=Bennylin}} Rights] ] at [ [[m:w:id:|id Wikipedia]] ] [[File:Gnome-home.svg|x20px]]
* [ [[m:wikt:id:User:Bennylin|User]] | [[m:wikt:id:User talk:Bennylin|Talk]] | [[m:wikt:id:Special:Contributions/Bennylin|Contribs]] | [{{fullurl:m:wikt:id:Special:ActiveUsers|limit=1&username=Bennylin}} Activity] | [{{fullurl:m:wikt:id:Special:Log|user=Bennylin}} Logs] | [http://toolserver.org/~vvv/yaec.php?user=Bennylin&wiki=idwiktionary_p Counts] | [{{fullurl:m:wikt:id:Special:ListUsers|limit=1&username=Bennylin}} Rights] ] at [ [[m:wikt:id:|id Wiktionary]] ]
* [ [[m:s:id:User:Bennylin|User]] | [[m:s:id:User talk:Bennylin|Talk]] | [[m:s:id:Special:Contributions/Bennylin|Contribs]] | [{{fullurl:m:s:id:Special:ActiveUsers|limit=1&username=Bennylin}} Activity] | [{{fullurl:m:s:id:Special:Log|user=Bennylin}} Logs] | [http://toolserver.org/~vvv/yaec.php?user=Bennylin&wiki=idwikisource_p Counts] | [{{fullurl:m:s:id:Special:ListUsers|limit=1&username=Bennylin}} Rights] ] at [ [[m:s:id:|id Wikisource]] ]
* [ [[commons:User:Bennylin|User]] | [[commons:User talk:Bennylin|Talk]] | [[commons:Special:Contributions/Bennylin|Contribs]] | [{{fullurl:commons:Special:ActiveUsers|limit=1&username=Bennylin}} Activity] | [{{fullurl:commons:Special:Log|user=Bennylin}} Logs] | [http://toolserver.org/~vvv/yaec.php?user=Bennylin&wiki=commonswiki_p Counts] | [{{fullurl:commons:Special:ListUsers|limit=1&username=Bennylin}} Rights] ] at [ [[commons:|Commons]] ]
* [ [[m:w:en:User:Bennylin|User]] | [[m:w:en:User talk:Bennylin|Talk]] | [[m:w:en:Special:Contributions/Bennylin|Contribs]] | [{{fullurl:m:w:Special:ActiveUsers|limit=1&username=Bennylin}} Activity] | [{{fullurl:m:w:Special:Log|user=Bennylin}} Logs] | [http://toolserver.org/~vvv/yaec.php?user=Bennylin&wiki=enwiki_p Counts] | [{{fullurl:m:w:Special:ListUsers|limit=1&username=Bennylin}} Rights] ] at [ [[m:w:|en Wikipedia]] ]
* [[sulutil:Bennylin|Me on all Wikimedia projects]]
* [http://toolserver.org/~krinkle/MoreContributions/index.php?username=Bennylin&wikidb=&allwikis=on&submit=Go Recent edits]<!-- neat! -->
* [http://toolserver.org/~pathoschild/crossactivity/?user=Bennylin Cross-wiki activities]
* [http://toolserver.org/~luxo/contributions/contributions.php?user=Bennylin&lang=en Cross-wiki contributions]
* [http://toolserver.org/~erwin85/xcontribs.php?user=Bennylin Cross-wikiness]
* This wiki: [[Special:Statistics]], [[Special:NewPages]], [[Special:RecentChanges]]
</div>
cftwp8yoicb19sxew5c6dzravjkf5xj
Korisnik:Azariv-WMF
2
7053
44019
20251
2015-04-16T19:19:50Z
Jalexander-WMF
734
Jalexander-WMF je premjestio stranicu [[Korisnik:Azariv]] na [[Korisnik:Azariv-WMF]]: Automatsko premještanje stranice zbog preimenovanja korisnika „[[Special:CentralAuth/Azariv|Azariv]]“ u „[[Special:CentralAuth/Azariv-WMF|Azariv-WMF]]“
44019
wikitext
text/x-wiki
My name is Alex Zariv, I am a [[wmf:Job_openings/Fundraiser_Production_Coordinator|Production Coordinator]] with the [[wmf:Main Page|Wikimedia Foundation]] and am working on this year's [[m:Fundraising 2011|fundraiser]]. This account is used for edits while officially representing the foundation. In my volunteer capacity I can usually be found on [[m:|meta]] where I am an elected administrator.
You can reach me either through [[Special:EmailUser/Azariv|e-mail]] or on my Meta-Wiki [[m:User talk:Azariv|talk page]]. On wiki (on all wmf projects) I am [[m:User:Az1568|Az1568]] in my volunteer role and [[m:User:Azariv|Azariv]] in my WMF role.
2krx4dg1poqcfutqrxz7yheu0znw394
Razgovor s korisnikom:Random mess
3
7055
65219
20277
2017-06-15T23:01:28Z
Jmvkrecords
2238
Jmvkrecords premjestio je stranicu [[Razgovor s korisnikom:Marcin Łukasz Kiejzik]] na [[Razgovor s korisnikom:Random mess]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Marcin Łukasz Kiejzik|Marcin Łukasz Ki...
65219
wikitext
text/x-wiki
<div style="border:1px solid #999999;background-color:#F5F5F5;padding:10px;">
[[Datoteka:Wiktionary-logo-en.svg|100px|lijevo]]<big>'''Dobrodošli na Wikirječnik na [[w:Bosanski jezik|bosanskom jeziku]] – slobodan rječnik, leksikon i tezaurus!'''</big><br>
<div style="border:1px solid #999999;background-color:#B0E0E6;padding:8px;">Pozdrav, {{PAGENAME}}!<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 [[Vikirječnik:Uređivanje|kako članci trebaju izgledati]]. '''Slobodno''' radite na Wikirječniku i '''razgovarajte''' s drugima.
Više informacija dostupno je na '''[[w:Wikipedia:Čaršija|Čaršiji]]''', gdje možete razgovarati s drugim korisnicima. Možete kontaktirati i neke 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 interesuje, čime se bavite i sl. Molimo Vas da se potpisujete na stranicama za razgovor korištenjem '''<tt><nowiki>~~~~</nowiki></tt>''' (četiri znaka ''tilda'').
Radite zajedno s 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:Recentchanges|nedavne izmjene]], gdje možete vidjeti nedavne aktivnosti na Wikipediji.
Prilikom [[Posebno:Upload|postavljanja]] slika koristite ispravne [[w:Wikipedia:Šabloni za slike|šablone za licencu]] i vodite računa o '''[[w:Wikipedia:Autorska prava|autorskim pravima]]''' prilikom pisanja članaka. Članci ili slike koje krše autorska prava bit će obrisani. Još jednom Vas lijepo pozdravljamo. {{#if:-- [[Korisnik:Bugoslav|'''<font color="ForestGreen">Bugoslav</font>''']] <small><sup>([[Razgovor sa korisnikom:Bugoslav|'''<font color="ForestGreen">razgovor</font>''']])</sup></small> 16:21:42, 31. oktobra 2011. (CEST)|-- [[Korisnik:Bugoslav|'''<font color="ForestGreen">Bugoslav</font>''']] <small><sup>([[Razgovor sa korisnikom:Bugoslav|'''<font color="ForestGreen">razgovor</font>''']])</sup></small> 16:21:42, 31. oktobra 2011. (CEST)}}
{|- style="background-color:#B0E0E6; text-align:center;"
| style="background: #F0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Slika: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;" | [[Slika:View-refresh.svg|18px]] <br/>[[Posebno:Recentchanges|Nedavne izmjene]]
| style="background: #F0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Slika:Wiktionary-logo.svg|18px]] <br/>[[w:Pravopis bosanskog jezika|Pravopis]]
| style="background: #E0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Slika:Nuvola apps kmessedwords.png|18px]] <br/>[[w:Wikipedia:Jezički standardi na bosanskoj Wikipediji|Jezički standardi]]
| style="background: #F0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Slika:čć.png|18px]] <br/>[[w:Wikipedia:Pravilno-nepravilno u bosanskome jeziku|Pravilno-nepravilno]]
| style="background: #E0FFFF; border:1px solid silver; 18px; font: 90% Verdana; width:16%; height:30;" | [[Slika: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 />[[Razgovor o šablonu:Dobrodošlica|Kliknite ovdje]].
|}</div></div>
8zl0foa0d97ldqrjfaf1dm1rkr2p62t
Korisnik:Wangxuan8331800
2
7056
27071
20324
2012-09-03T02:39:24Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by Wangxuan8331800]])
27071
wikitext
text/x-wiki
{{#babel:zh-N|en-1|bs-0}}
[[File:Redirectltr.png|link=]]<span class="redirectText" id="softredirect">[[w:zh:User:Wangxuan8331800]]</span><br /><span style="font-size:85%; padding-left:52px;">[[meta:Help:Redirect|{{int:redirectpagesub}}]]</span>
nanc7ihniyekn3hhnox6acyfat7aas2
Razgovor s korisnikom:Wangxuan8331800
3
7057
20340
2011-11-04T23:50:37Z
Bugoslav
692
Nova stranica: {{subst:Dobrodošlica|1=-- ~~~}}
20340
wikitext
text/x-wiki
<div style="border:1px solid #999999;background-color:#F5F5F5;padding:10px;">
[[Datoteka:Wiktionary-logo-en.svg|100px|lijevo]]<big>'''Dobrodošli na Wikirječnik na [[w:Bosanski jezik|bosanskom jeziku]] – slobodan rječnik, leksikon i tezaurus!'''</big><br>
<div style="border:1px solid #999999;background-color:#B0E0E6;padding:8px;">Pozdrav, {{PAGENAME}}!<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 [[Vikirječnik:Uređivanje|kako članci trebaju izgledati]]. '''Slobodno''' radite na Wikirječniku i '''razgovarajte''' s drugima.
Više informacija dostupno je na '''[[w:Wikipedia:Čaršija|Čaršiji]]''', gdje možete razgovarati s drugim korisnicima. Možete kontaktirati i neke 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 interesuje, čime se bavite i sl. Molimo Vas da se potpisujete na stranicama za razgovor korištenjem '''<tt><nowiki>~~~~</nowiki></tt>''' (četiri znaka ''tilda'').
Radite zajedno s 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:Recentchanges|nedavne izmjene]], gdje možete vidjeti nedavne aktivnosti na Wikipediji.
Prilikom [[Posebno:Upload|postavljanja]] slika koristite ispravne [[w:Wikipedia:Šabloni za slike|šablone za licencu]] i vodite računa o '''[[w:Wikipedia:Autorska prava|autorskim pravima]]''' prilikom pisanja članaka. Članci ili slike koje krše autorska prava bit će obrisani. Još jednom Vas lijepo pozdravljamo. {{#if:-- [[Korisnik:Bugoslav|'''<font color="ForestGreen">Bugoslav</font>''']] <small><sup>([[Razgovor sa korisnikom:Bugoslav|'''<font color="ForestGreen">razgovor</font>''']])</sup></small> 23:50, 4. novembra 2011. (CET)|-- [[Korisnik:Bugoslav|'''<font color="ForestGreen">Bugoslav</font>''']] <small><sup>([[Razgovor sa korisnikom:Bugoslav|'''<font color="ForestGreen">razgovor</font>''']])</sup></small> 23:50, 4. novembra 2011. (CET)}}
{|- style="background-color:#B0E0E6; text-align:center;"
| style="background: #F0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Slika: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;" | [[Slika:View-refresh.svg|18px]] <br/>[[Posebno:Recentchanges|Nedavne izmjene]]
| style="background: #F0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Slika:Wiktionary-logo.svg|18px]] <br/>[[w:Pravopis bosanskog jezika|Pravopis]]
| style="background: #E0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Slika:Nuvola apps kmessedwords.png|18px]] <br/>[[w:Wikipedia:Jezički standardi na bosanskoj Wikipediji|Jezički standardi]]
| style="background: #F0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Slika:čć.png|18px]] <br/>[[w:Wikipedia:Pravilno-nepravilno u bosanskome jeziku|Pravilno-nepravilno]]
| style="background: #E0FFFF; border:1px solid silver; 18px; font: 90% Verdana; width:16%; height:30;" | [[Slika: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 />[[Razgovor o šablonu:Dobrodošlica|Kliknite ovdje]].
|}</div></div>
k3y7orxskc4i6z508rawptfyqaoqn4u
Razgovor s korisnikom:Jalexander-WMF
3
7058
40130
20341
2014-08-17T23:19:45Z
MF-Warburg
83
MF-Warburg je premjestio stranicu [[Razgovor sa korisnikom:Jalexander]] na [[Razgovor sa korisnikom:Jalexander-WMF]]: Automatically moved page while renaming the user "[[Special:CentralAuth/Jalexander|Jalexander]]" to "[[Special:CentralAuth/Jalexander-...
40130
wikitext
text/x-wiki
<div style="border:1px solid #999999;background-color:#F5F5F5;padding:10px;">
[[Datoteka:Wiktionary-logo-en.svg|100px|lijevo]]<big>'''Dobrodošli na Wikirječnik na [[w:Bosanski jezik|bosanskom jeziku]] – slobodan rječnik, leksikon i tezaurus!'''</big><br>
<div style="border:1px solid #999999;background-color:#B0E0E6;padding:8px;">Pozdrav, {{PAGENAME}}!<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 [[Vikirječnik:Uređivanje|kako članci trebaju izgledati]]. '''Slobodno''' radite na Wikirječniku i '''razgovarajte''' s drugima.
Više informacija dostupno je na '''[[w:Wikipedia:Čaršija|Čaršiji]]''', gdje možete razgovarati s drugim korisnicima. Možete kontaktirati i neke 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 interesuje, čime se bavite i sl. Molimo Vas da se potpisujete na stranicama za razgovor korištenjem '''<tt><nowiki>~~~~</nowiki></tt>''' (četiri znaka ''tilda'').
Radite zajedno s 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:Recentchanges|nedavne izmjene]], gdje možete vidjeti nedavne aktivnosti na Wikipediji.
Prilikom [[Posebno:Upload|postavljanja]] slika koristite ispravne [[w:Wikipedia:Šabloni za slike|šablone za licencu]] i vodite računa o '''[[w:Wikipedia:Autorska prava|autorskim pravima]]''' prilikom pisanja članaka. Članci ili slike koje krše autorska prava bit će obrisani. Još jednom Vas lijepo pozdravljamo. {{#if:-- [[Korisnik:Bugoslav|'''<font color="ForestGreen">Bugoslav</font>''']] <small><sup>([[Razgovor sa korisnikom:Bugoslav|'''<font color="ForestGreen">razgovor</font>''']])</sup></small> 00:52, 5. novembra 2011. (CET)|-- [[Korisnik:Bugoslav|'''<font color="ForestGreen">Bugoslav</font>''']] <small><sup>([[Razgovor sa korisnikom:Bugoslav|'''<font color="ForestGreen">razgovor</font>''']])</sup></small> 00:52, 5. novembra 2011. (CET)}}
{|- style="background-color:#B0E0E6; text-align:center;"
| style="background: #F0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Slika: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;" | [[Slika:View-refresh.svg|18px]] <br/>[[Posebno:Recentchanges|Nedavne izmjene]]
| style="background: #F0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Slika:Wiktionary-logo.svg|18px]] <br/>[[w:Pravopis bosanskog jezika|Pravopis]]
| style="background: #E0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Slika:Nuvola apps kmessedwords.png|18px]] <br/>[[w:Wikipedia:Jezički standardi na bosanskoj Wikipediji|Jezički standardi]]
| style="background: #F0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Slika:čć.png|18px]] <br/>[[w:Wikipedia:Pravilno-nepravilno u bosanskome jeziku|Pravilno-nepravilno]]
| style="background: #E0FFFF; border:1px solid silver; 18px; font: 90% Verdana; width:16%; height:30;" | [[Slika: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 />[[Razgovor o šablonu:Dobrodošlica|Kliknite ovdje]].
|}</div></div>
1lcsh4kr45rkgh1ce6u2dv4ecfn2ahq
Korisnik:Gzen92
2
7059
20420
2011-11-09T13:22:11Z
Gzen92
1003
Nova stranica: [http://fr.wiktionary.org/wiki/Utilisateur:Gzen92 Gzen92 (fr.wiktionary.org)]
20420
wikitext
text/x-wiki
[http://fr.wiktionary.org/wiki/Utilisateur:Gzen92 Gzen92 (fr.wiktionary.org)]
k5gtju3w68dfvagrpy004090uh0wxpe
Razgovor s korisnikom:Gzen92
3
7060
20421
2011-11-09T13:23:35Z
Gzen92
1003
Nova stranica: [http://fr.wiktionary.org/wiki/Discussion_utilisateur:Gzen92 Gzen92 (fr.wiktionary.org)]
20421
wikitext
text/x-wiki
[http://fr.wiktionary.org/wiki/Discussion_utilisateur:Gzen92 Gzen92 (fr.wiktionary.org)]
r0mlu558y3nzspir8rwgbo9irskv9bh
Razgovor s korisnikom:Caypartis
3
7064
20447
2011-11-11T19:34:10Z
Caypartis
980
global talk page
20447
wikitext
text/x-wiki
{| width="100%" cellspacing="0" cellpadding="0" valign="top" border="0" style="font-size:14px; border:1px solid #C2dfff; -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35); -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35); background: #E7FFFF; background: -moz-linear-gradient(top, #A7D7F9 0%, #7db9e8 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#E7FFFF), color-stop(100%,#7db9e8)); background: -webkit-linear-gradient(top, #E7FFFF 0%,#7db9e8 100%); background: -o-linear-gradient(top, #E7FFFF 0%,#7db9e8 100%); background: -ms-linear-gradient(top, #E7FFFF 0%,#7db9e8 100%); background: linear-gradient(top, #E7FFFF 0%,#7db9e8 100%); -moz-border-radius: 7px; -webkit-border-radius: 7px; border-radius: 7px; font-family:Calibri, Verdana, sans-serif; padding: 10px;"
|class="onglet" style="text-align: center; padding: 0.3em; 0; font-size: 100%; background-color:transparent; -moz-border-radius: 7px 0 0 7px; -webkit-border-radius: 7px 0 0 7px; border-radius: 7px 0 0 7px; font-size: 150%" width="14.666666666667%" |Hello, Please don't leave your message here, contact me at [[wikipedia:User_talk:Caypartis|enwiki]] or send me an [[wikipedia:Special:EmailUser/Caypartis|e-mail]]
|}
__NOINDEX__
__NONEWSECTIONLINK__
2zxr0w7yhdaxbq45w1bakg5lyv4cgon
Razgovor s korisnikom:Caypartisbot
3
7065
20468
2011-11-13T17:16:28Z
Caypartis
980
Preusmjereno na [[Razgovor sa korisnikom:Caypartis]]
20468
wikitext
text/x-wiki
#Redirect [[User talk:Caypartis]]
5w6gdei0m3ocj06iptez9hqo4hp6oar
Korisnik:Caypartisbot
2
7066
20470
20469
2011-11-13T17:22:30Z
Caypartis
980
20470
wikitext
text/x-wiki
{{bot|Caypartis|site=w:en}}
__NOINDEX__
nmlgzij15wkzczvd7adio9s858oefh6
Šablon:wlink
10
7067
20493
2011-11-15T12:15:08Z
Barishan
287
Nova stranica: {{#ifeq:{{{w|{{{1}}}}}}|-||{{#ifeq:[[:Special:Whatlinkshere/{{{w|{{{1}}}}}}]]|{{raw:Special:Whatlinkshere/{{{w|{{{1}}}}}}}}|[[{{{w|{{{1}}}}}}]]|{{{w|{{{1}}}}}}}}}}
20493
wikitext
text/x-wiki
{{#ifeq:{{{w|{{{1}}}}}}|-||{{#ifeq:[[:Special:Whatlinkshere/{{{w|{{{1}}}}}}]]|{{raw:Special:Whatlinkshere/{{{w|{{{1}}}}}}}}|[[{{{w|{{{1}}}}}}]]|{{{w|{{{1}}}}}}}}}}
4c963gzarr9xc5zvxsna836t8101qzt
Šablon:is-dekl-ime
10
7068
72725
20503
2025-04-26T00:49:33Z
Minorax
2705
72725
wikitext
text/x-wiki
<div class="NavFrame" style="width:80%">
<div class="NavHead">Deklinacija: {{PAGENAME}}</div>
<div class="NavContent">
{| class="inflection-table" style="width:100%;text-align:center"
|-
|width=15% style="background:#DCDCDC" | {{#if:{{{1|}}}|[[Special:WhatLinksHere/Šablon:is-dekl-ime-{{{1}}}|{{{1}}}]]|}}
! width=43% colspan="2" style="background:#DCDCDC" | Jednina
! width=43% colspan="2" style="background:#DCDCDC" | Množina
|-
! bgcolor="#dcdcdc" |
! bgcolor="#ffffff"| Neodređeni vid
! bgcolor="#efefef"| Određeni vid
! bgcolor="#ffffff"| Neodređeni vid
! bgcolor="#efefef"| Određeni vid
|-
! bgcolor="#dcdcdc" | Nominativ
|bgcolor="#ffffff"| {{#switch:{{{sg}}}|-=-|{{#switch:{{{indef}}}|-=-|'''{{{noms}}}'''}}}}
|bgcolor="#efefef"| {{#switch:{{{sg}}}|-=-|{{#switch:{{{def}}}|-=-|{{wlink|w={{{nomsd}}}}}}}}}
|bgcolor="#ffffff"| {{#switch:{{{pl}}}|-=-|{{#switch:{{{indef}}}|-=-|{{wlink|w={{{nomp}}}}}}}}}
|bgcolor="#efefef"| {{#switch:{{{pl}}}|-=-|{{#switch:{{{def}}}|-=-|{{wlink|w={{{nompd}}}}}}}}}
|-
! bgcolor="#dcdcdc" | Akuzativ
|bgcolor="#ffffff"| {{#switch:{{{sg}}}|-=-|{{#switch:{{{indef}}}|-=-|{{wlink|w={{{accs}}}}}}}}}
|bgcolor="#efefef"| {{#switch:{{{sg}}}|-=-|{{#switch:{{{def}}}|-=-|{{wlink|w={{{accsd}}}}}}}}}
|bgcolor="#ffffff"| {{#switch:{{{pl}}}|-=-|{{#switch:{{{indef}}}|-=-|{{wlink|w={{{accp}}}}}}}}}
|bgcolor="#efefef"| {{#switch:{{{pl}}}|-=-|{{#switch:{{{def}}}|-=-|{{wlink|w={{{accpd}}}}}}}}}
|-
! bgcolor="#dcdcdc" | Dativ
|bgcolor="#ffffff"| {{#switch:{{{sg}}}|-=-|{{#switch:{{{indef}}}|-=-|{{wlink|w={{{dats}}}}}}}}}
|bgcolor="#efefef"| {{#switch:{{{sg}}}|-=-|{{#switch:{{{def}}}|-=-|{{wlink|w={{{datsd}}}}}}}}}
|bgcolor="#ffffff"| {{#switch:{{{pl}}}|-=-|{{#switch:{{{indef}}}|-=-|{{wlink|w={{{datp}}}}}}}}}
|bgcolor="#efefef"| {{#switch:{{{pl}}}|-=-|{{#switch:{{{def}}}|-=-|{{wlink|w={{{datpd}}}}}}}}}
|-
! bgcolor="#dcdcdc" | Genitiv
|bgcolor="#ffffff"| {{#switch:{{{sg}}}|-=-|{{#switch:{{{indef}}}|-=-|{{wlink|w={{{gens}}}}}}}}}
|bgcolor="#efefef"| {{#switch:{{{sg}}}|-=-|{{#switch:{{{def}}}|-=-|{{wlink|w={{{gensd}}}}}}}}}
|bgcolor="#ffffff"| {{#switch:{{{pl}}}|-=-|{{#switch:{{{indef}}}|-=-|{{wlink|w={{{genp}}}}}}}}}
|bgcolor="#efefef"| {{#switch:{{{pl}}}|-=-|{{#switch:{{{def}}}|-=-|{{wlink|w={{{genpd}}}}}}}}}
|}</div></div><noinclude>[[Kategorija:Šabloni deklinacije (islandski)]]</noinclude>
aridnl3khxi4hdel10o06fatxbi824g
Šablon:is-u-mutation
10
7070
20496
2011-11-15T12:28:28Z
Barishan
287
Nova stranica: {{#switch:{{{1}}}|a|ja|A={{#switch:{{{1}}}|a=ö|ja=jö|A=Ö}}|{{{1|}}}}}<noinclude>[[Kategorija:Šabloni (islandski)|m]]</noinclude>
20496
wikitext
text/x-wiki
{{#switch:{{{1}}}|a|ja|A={{#switch:{{{1}}}|a=ö|ja=jö|A=Ö}}|{{{1|}}}}}<noinclude>[[Kategorija:Šabloni (islandski)|m]]</noinclude>
bzaofq1h3wbkj3tmmsss6tbgu9juo33
Korisnik:Man77/common.css
2
7082
20561
2011-11-20T04:33:50Z
Pathoschild
81
global CSS ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
20561
css
text/css
@import "//meta.wikimedia.org/w/index.php?title=User:Man77/global.css&action=raw&ctype=text/css";
k4a5otem87q3bqo2scekjudlsbs69jz
Korisnik:Der Buckesfelder/common.js
2
7083
20573
2011-11-21T04:16:06Z
Pathoschild
81
global JavaScript ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
20573
javascript
text/javascript
mw.loader.load("//de.wikipedia.org/w/index.php?title=Benutzer:Der_Buckesfelder/global.js&action=raw&ctype=text/javascript");
a7p0swpbmn4nyeor8lc0eb59iyyon31
Korisnik:AleXXw
2
7084
20582
2011-11-21T23:59:46Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
20582
wikitext
text/x-wiki
{{#babel:de-at|de|en-2|fr-1}}
[[:m:w:de:Benutzer:AleXXw|Me@de-WP]]
p3gp65sknf5oqvup1faw385y5h0x7xg
Korisnik:Der Buckesfelder
2
7085
20603
20583
2011-11-24T00:13:46Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
20603
wikitext
text/x-wiki
[[File:Redirectltr.png]][[m:w:de:User talk:Der Buckesfelder|w:de:{{ns:2}}:Der Buckesfelder]]
0f48i4mljazkhfa857nbkeoxcb3wrak
Razgovor s korisnikom:Der Buckesfelder
3
7086
20604
20585
2011-11-24T00:41:35Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
20604
wikitext
text/x-wiki
[[File:Redirectltr.png]][[m:w:de:User talk:Der Buckesfelder|w:de:{{ns:3}}:Der Buckesfelder]]
9n2v72zuyl2v4hnhc54u4icc1goeoap
Korisnik:PeterSymonds/common.js
2
7087
20591
2011-11-22T18:20:30Z
Wikitanvir
685
Creating global JavaScript
20591
javascript
text/javascript
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:PeterSymonds/global.js&action=raw&ctype=text/javascript');
mmg2um66229wd3g61019pivj01rch4b
Šablon:Bot
10
7088
66849
26325
2017-07-20T13:44:32Z
JAnDbot
878
Bot: čišćenje starih međuwiki linkova; kozmetičke promjene
66849
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>
3kieainl3qwqkm812qfvuei5k3cr5t1
Korisnik:Micki/common.css
2
7089
20596
2011-11-23T06:26:11Z
Wikitanvir
685
Creating global CSS as [[m:User:Hoo man/Synchbot|requested]]
20596
css
text/css
@import "//meta.wikimedia.org/w/index.php?title=User:Micki/global.css&action=raw&ctype=text/css";
cpr3xntm9rzjg23ilb2hue0i4y8kz3h
Korisnik:Buckesfelder
2
7090
20606
2011-11-24T01:15:27Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
20606
wikitext
text/x-wiki
#REDIRECT[[User:Der Buckesfelder]]
23k07le0nklkphoyfxykgk1277lnrpm
Razgovor s korisnikom:Buckesfelder
3
7091
20607
2011-11-24T01:35:43Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
20607
wikitext
text/x-wiki
#REDIRECT[[User talk:Der Buckesfelder]]
5mru9et2v2qwhwni0dkjmpjjek5ei3u
Korisnik:Buckesfelder/common.js
2
7092
20610
2011-11-24T01:56:38Z
Pathoschild
81
global JavaScript ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
20610
javascript
text/javascript
mw.loader.load("//de.wikipedia.org/w/index.php?title=Benutzer:Der_Buckesfelder/global.js&action=raw&ctype=text/javascript");
a7p0swpbmn4nyeor8lc0eb59iyyon31
Korisnik:Addihockey10 (automated)
2
7102
20653
2011-11-25T23:03:52Z
Addihockey10 (automated)
1023
Creating global bot page, per user request
20653
wikitext
text/x-wiki
{{bot|Addihockey10}}
98xfvu14qwd905kpf1brmr0zqkrzlvr
Razgovor s korisnikom:Malafaya
3
7108
26889
26886
2012-08-31T09:31:26Z
Barishan
287
26889
wikitext
text/x-wiki
{{Dobrodošlica|[[Korisnik:Kukac|Kukac]] 19:17, 29 novembar 2011 (KSV)}}
== Categories ==
I corrected all the words in '''Kategorija:Imenice''' (=nouns) to '''bs:Imenice''' and I'll do the same if I bump into any other uncategorized word. Well yes, English Wiktionary uses Serbo-Croatian rather than seperately Serbian, Croatian and Bosnian. But as you've noticed, Turkish Wiktionary uses Bosnian. I'll add links after this.
And by the way, I've created templates for Volapük nouns if you're interested in this language. You can check out them on [[bukiselidöp]] and [[Türkän]]. [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 18:54, 30 august 2012 (KSV)
:Thank you! [[Korisnik:Malafaya|Malafaya]] ([[Razgovor sa korisnikom:Malafaya|razgovor]]) 21:03, 30 august 2012 (KSV)
::I guess Bosnian uses "sinhala jezik" as I've searched it on bs.wikipedia. Sinhaleški seems to be Serbian, and singaleški for Croatian. So I've changed the title of {{Sin|[[පොත]]}} to Sinhala. [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 08:48, 31 august 2012 (KSV)
:::OK, thanks. [[Korisnik:Malafaya|Malafaya]] ([[Razgovor sa korisnikom:Malafaya|razgovor]]) 09:28, 31 august 2012 (KSV)
::::De nada :) [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 09:31, 31 august 2012 (KSV)
l4wbt6bptfiyveyfe9nxo1mhm1oddbc
Razgovor s korisnikom:Piet-c
3
7109
20772
2011-11-30T23:28:08Z
Kukac
962
Nova stranica: {{Dobrodošlica|~~~~}}
20772
wikitext
text/x-wiki
{{Dobrodošlica|[[Korisnik:Kukac|Kukac]] 23:28, 30 novembar 2011 (KSV)}}
mtt26ysswnnu95wl8zj9ogy4134b9g2
Korisnik:Djsasso
2
7111
20887
2011-12-04T16:36:04Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
20887
wikitext
text/x-wiki
__NOTOC__
{| class="toccolours plainlinks" style="width:95%; margin:0 1em 0 1em; text-align:center;"
|- style="color:#FFF;"
! style="background:#0B0B3B;" | Host wiki
! style="background:#0B0B3B;" | Account
! style="background:#0B0B3B;" | User page
! style="background:#0B0B3B;" | User talk
! style="background:#0B0B3B;" | Contributions
! style="background:#0B0B3B;" | Logs
! style="background:#0B0B3B;" | Edits
|- style="background:#F0F0F0;"
| style="text-align:left;" | [[File:Wikipedia-logo.png|20px]] [[m:en:Main Page|Wikipedia (en)]]
| Admin
| [[m:en:User:Djsasso|User:DJSasso]]
| [[m:en:User talk:Djsasso|User talk:DJSasso]]
| [[m:en:Special:Contributions/Djsasso|Contribs]]
| [[m:en:Special:Log/Djsasso|Logs]]
| [http://toolserver.org/~interiot/cgi-bin/count_edits?user=Djsasso&dbname=enwiki_p Count]
|- style="background:#DCDCDC;"
| style="text-align:left;" | [[File:Wikipedia-logo.png|20px]] [[m:simple:Main Page|Wikipedia (simple)]]
| Bureaucrat / CheckUser / Oversighter
| [[m:simple:User:Djsasso|User:DJSasso]]
| [[m:simple:User talk:Djsasso|User talk:DJSasso]]
| [[m:simple:Special:Contributions/Djsasso|Contribs]]
| [[m:simple:Special:Log/Djsasso|Logs]]
| [http://toolserver.org/~interiot/cgi-bin/count_edits?user=Djsasso&dbname=enwiki_p Count]
|}
mskhgbka83jasomr6987xe9svv3ducf
Razgovor s korisnikom:TAKASUGI Shinji
3
7112
20922
20892
2011-12-06T03:56:37Z
TAKASUGI Shinji
1029
20922
wikitext
text/x-wiki
{{DISPLAYTITLE:Razgovor sa korisnikom:T<small>AKASUGI</small> Shinji}}
{{Dobrodošlica|[[Korisnik:Kukac|Kukac]] 19:51, 4 decembar 2011 (KSV)}}
218p1kbtntg12g51x3s2wc0fs8iubgr
Korisnik:Tegel
2
7113
20896
2011-12-05T01:03:01Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
20896
wikitext
text/x-wiki
[[File:Redirectltr.png]][[m:User:Tegel|m:{{ns:2}}:Tegel]]
1ls590wy7tm43ip8hjonuo93v1ge5pu
Korisnik:Waldyrious
2
7114
66990
20897
2019-07-01T10:34:58Z
1997kB
2363
1997kB premjestio je stranicu [[Korisnik:Waldir]] na [[Korisnik:Waldyrious]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Waldir|Waldir]]" u "[[Special:CentralAuth/Waldyrious|Waldyrious]]"
20897
wikitext
text/x-wiki
[[m:user:waldir|Waldir@meta.wikimedia]]
21phdoloxh3aqsmm2exmbqr3q3ipo83
Korisnik:TAKASUGI Shinji
2
7115
66848
44912
2017-07-19T09:00:17Z
TAKASUGI Shinji
1029
no longer necessary thanks to [[mw:Extension:Cognate]]
66848
wikitext
text/x-wiki
{{DISPLAYTITLE:Korisnik:T<small>AKASUGI</small> Shinji}}
{{#babel:ja|ko-4|en-3|fr-3|zh-1|bs-0}}
→ [[:fr:Utilisateur:TAKASUGI Shinji|fr:Utilisateur:T<small>AKASUGI</small> Shinji]].
[[en:User:TAKASUGI Shinji]]
[[fr:Utilisateur:TAKASUGI Shinji]]
[[ja:利用者:TAKASUGI Shinji]]
qvw6mxhmc14vsb213qj6qmst3o3zcup
Razgovor s korisnikom:Sanya3
3
7116
20987
2011-12-10T16:34:47Z
Kukac
962
Nova stranica: {{Dobrodošlica|~~~~}}
20987
wikitext
text/x-wiki
{{Dobrodošlica|[[Korisnik:Kukac|Kukac]] 16:34, 10 decembar 2011 (KSV)}}
qy247as7xt29gak3nkgvs7op2zw8j87
Korisnik:Twonex
2
7118
21061
2011-12-14T23:07:26Z
Twonex
929
Nova stranica: '''Twonex''', obični čovjek.
21061
wikitext
text/x-wiki
'''Twonex''', obični čovjek.
dnyyt1myrzo3z6momtl8yapfktzyyir
Razgovor s korisnikom:Twonex
3
7119
21085
2011-12-15T18:01:37Z
Kukac
962
Nova stranica: {{Dobrodošlica|~~~~}}
21085
wikitext
text/x-wiki
{{Dobrodošlica|[[Korisnik:Kukac|Kukac]] 18:01, 15 decembar 2011 (KSV)}}
2onija7qsb60ggea46fhru6lgk32gp2
Korisnik:AddihockeyBot
2
7202
21667
21642
2012-01-07T19:27:17Z
Hoo User Page Bot
985
Creating global user page, per request
21667
wikitext
text/x-wiki
This interwiki bot is operated by [[m:User:Addihockey10]]
{{bot|Addihockey10}}
024q1j4xmvpg75yujfppprftgwapqk7
Korisnik:Sue Gardner
2
7271
21757
2012-01-12T00:53:15Z
Jalexander-WMF
734
creating global user pages for WMF Staff member upon request ([[m:User:Jalexander|Questions?]])
21757
wikitext
text/x-wiki
[[File:Wikimedia Foundation Sue Gardner Red BG Sept 2010.jpg|thumb|Sue Gardner the Executive Director of the Wikimedia Foundation]]
I'm the Executive Director of the Wikimedia Foundation. I've been working at the Foundation since June 2007 - first in St. Petersburg, Florida, and now in San Francisco, California.
Before that, I ran CBC.CA, the website of Canada's national public broadcaster. And before that, I was a radio and television journalist for 10 years.
I can read and understand simple text in French and Spanish, at a very basic level, slowly and imperfectly. But I am only fluent in English. I frequently use Google Translate to understand discussions on the wikis in other languages, and I sometimes leave people messages in their own languages that I wrote using Google Translate or with the help of a colleague. I very much appreciate when people are able to correspond with me in English :-)
You can reach me these ways:
* The best & fastest way is by e-mail at sue[[Image:Nospam at.svg|13px| -at- |link=]]wikimedia.org
* In the office at (415) 839-6885
* Skype is susanpgardner
* My username on the projects is ''Sue Gardner''
* Mailing address is Wikimedia Foundation, 149 New Montgomery Street, Third Floor, San Francisco CA 94105
* http://www.linkedin.com/in/suegardner
''The information on this page is meant to give answers to the questions I'm most often asked. If you have a question that's not answered here, please ask it on my talk page, or e-mail me at sue[[Image:Nospam at.svg|13px| -at- |link=]]wikimedia.org. Thanks. [[User:Sue Gardner|Sue Gardner]] 04:13, 18 May 2010 (UTC)''
;Do you edit the Wikimedia projects, and if so, do you have any special status? How are other editors supposed to treat your edits?
:I occasionally edit articles on the English Wikipedia. My Wikipedia editing is purely opportunistic and reactive: while using Wikipedia, if I see a mistake or problem, I sometimes try to fix it. When I edit, I am in no way acting as an official representative of the Wikimedia Foundation, and my edits should be treated like anyone else's.
;I have a question or a comment about Wikipedia. Where can I send it?
:Please send it to info-en[[Image:Nospam at.svg|13px| -at- |link=]]wikimedia.org. Mail sent to that address is handled by a global network of volunteers - the same people who write Wikipedia - and they will be happy to reply to you. Please note that if you have a concern about the article about you, your organization, or someone you know, it might be worth your while to [[w:en:Wikipedia:FAQ/Article subjects|read the Article Subjects FAQ]] first. And thank you for reading Wikipedia.
;I am angry about an editorial dispute I'm having on one of the Wikimedia projects. Can you help me?
:No, I'm sorry, I can't. The Wikimedia editorial community is responsible for resolving editorial disputes, and I don't interfere with those processes.
;I am angry about the way I or my company is being characterized on one of the Wikimedia projects. What can I do?
:If you have questions or concerns about a Wikipedia article covering you or your organization, [[w:en:Wikipedia:FAQ/Article subjects|please see the Article Subjects FAQ]].
;I would like to make a donation, or, I have a question about my donation.
:If you are a Wikimedia donor or prospective donor, or if you have questions about our fundraising operations, first: thank you! You can send donation-related questions, comments and feedback to our fundraising team, at donate[[Image:Nospam at.svg|13px| -at- |link=]]wikimedia.org. Or, just [[wmf:Support Wikipedia/en|go here to donate]].
;I'm a journalist, and would like to speak with you for a story I'm working on. Who do I contact?
:You can e-mail me directly at sue[[Image:Nospam at.svg|13px| -at- |link=]]wikimedia.org, or e-mail Wikimedia's spokesperson and Head of Communications, Jay Walsh, at jwalsh[[Image:Nospam at.svg|13px| -at- ]]wikimedia.org. Sometimes it is faster to go to Jay first, rather than trying to reach me directly.
;Where can I send a speaking invitation?
:Please send speaking invitations to The Lavin Agency, at info[[Image:Nospam at.svg|13px| -at- |link=]]thelavinagency.com or +1 800 265 4870. I like to speak, but I only have time to do it a half-dozen or so times a year, so unfortunately I need to turn down most requests. Your invitation is likeliest to be accepted if your event is large and/or education-focused; if your audience is primarily people that Wikimedia wants to reach as partners or prospective new editors (e.g., teachers/students, NGO/NPO staff, women); and if your event is taking place in a region that's a high priority for us: primarily India, Brazil, the Arabic-speaking Middle East / North Africa.
:Please note: if you're a Wikimedian, you don't need to go through Lavin. In that case, it's probably fastest for you to just write me and [[User:James Owen|James]].
;Do you provide reference-type letters for Wikimedians?
:Yes, definitely. If you want a reference letter, please just ask whoever you know best on the staff: we are all happy to provide reference letters. If you want one from me, please mail me or James. If you don't know anybody on the staff personally, please e-mail Philippe Beaudette at pbeaudette[[Image:Nospam at.svg|13px| -at- |link=]]wikimedia.org. Please note I don't do LinkedIn recommendations.
;How can I find out about jobs at the Wikimedia Foundation?
:[[wmf:Job openings|All Wikimedia Foundation jobs are posted here]].
;I would like permission to reuse material from Wikipedia or one of the other Wikimeda projects.
:First, please be aware that you can reuse Wikipedia article text anywhere you like, without asking permission, as long as you adhere to the conditions of the license. Wikipedia is freely licensed under the Creative Commons license CC-BY-SA: [http://creativecommons.org/licenses/by-sa/3.0 go here to read a simple explanation of the CC-BY-SA license], or [http://creativecommons.org/licenses/by-sa/3.0/legalcode go here to read the full legal text]. If you want to use the Wikipedia trademark, please read [[wmf:Trademark Policy|our trademark policy]].
;I would like to send you a business proposal.
:First, please be aware that I get lots of proposals: I cannot and do not respond to them all. If your proposal doesn't seem rooted in a pretty good understanding of who we are and what we do, I will almost certainly ignore it. (We are interested in partnerships that would accelerate the growth of Wikipedia's readership particularly outside Europe and North America, that help us recruit new editors, and/or that improve article quality.) Regardless, there will often be a delay of several weeks before you get a response: this is completely normal. Most proposals I receive, I on-pass to the relevant staff - business proposals go to Kul Takanao Wadhwa at kul[[Image:Nospam at.svg|13px| -at- |link=]]wikimedia.org, and proposals offering technical services or products go to CT Woo at ctwoo[[Image:Nospam at.svg|13px| -at- |link=]]wikimedia.org. Please don't send us proposals for staffing solutions: we have good help for that, and we're not looking for more.
;Can I get an official photo?
:[[wmf:File:Sue Gardner May 2008 B.JPG|Here's my official photo]].
;Can I get your official biography?
:Yes, it's below. Please note this version may not be up-to-date. If you need a bio that's guaranteed to be current, please contact my assistant James Owen, at jowen[[Image:Nospam at.svg|13px| -at- |link=]]wikimedia.org.
{| align="center" style="border-collapse:collapse; border-style:none; background-color:transparent;" class="cquote"
| width="20" valign="top" style="color:#B2B7F2;font-size:35px;font-family:'Times New Roman',serif;font-weight:bold;text-align:left;padding:10px 10px;" | “
| valign="top" style="padding:4px 10px;" |
Sue Gardner is Executive Director of the Wikimedia Foundation, the non-profit organization behind Wikipedia - the world's largest and most popular encyclopedia, which is free to use and free of advertising. Wikipedia contains more than 15 million volunteer-authored articles in 250+ languages, and is visited by more than 365 million people every month, making it the number five most-popular website in the world. Since joining the Wikimedia Foundation in summer of 2007, Gardner has more than tripled revenues, supported an 85% increase in global readership, and instituted projects and activities designed to grow readership and attract new editors.
Gardner, a seasoned journalist, was formerly head of CBC.CA, the website for the Canadian Broadcasting Corporation, one of Canada's most prominent and best-loved cultural institutions. Under her leadership, CBC.CA won many international awards for excellence, and grew to become Canada's most popular news site. Gardner started her career in 1990 as a producer with CBC's “As It Happens,” an internationally-recognized groundbreaking news and current events radio program. She has since worked in radio, television, newspapers, magazines and online.
| width="20" valign="bottom" style="color:#B2B7F2;font-size:36px;font-family:'Times New Roman',serif;font-weight:bold;text-align:right;padding:10px 10px;" | ”
|-
|}
0ebyob4e7ofrgtm99ma6lwob11p9hbw
Razgovor s korisnikom:Addihockey10 (automated)
3
7321
22172
2012-02-01T20:10:40Z
Hoo User Page Bot
985
Creating global talk page, per user request on IRC
22172
wikitext
text/x-wiki
{{#ifexist: Template:Soft redirect | {{Soft redirect|meta:User talk:Addihockey10}} | {{#ifexist: Template:Softredirect | {{Softredirect|meta:User talk:Addihockey10}} | [[meta:User talk:Addihockey10]] }}}}
ks9odd5s4vztq8w748arewrnrh2uw4l
Razgovor s korisnikom:Thamizhpparithi Maari
3
7324
22258
2012-02-10T23:38:06Z
Kukac
962
Nova stranica: {{Dobrodošlica|~~~~}}
22258
wikitext
text/x-wiki
{{Dobrodošlica|[[Korisnik:Kukac|Kukac]] 23:38, 10 februar 2012 (KSV)}}
75obuntkkf0cua0535coujwwfh0hmtv
Razgovor s korisnikom:NICEMOVIE
3
7325
22259
2012-02-10T23:38:23Z
Kukac
962
Nova stranica: {{Dobrodošlica|~~~~}}
22259
wikitext
text/x-wiki
{{Dobrodošlica|[[Korisnik:Kukac|Kukac]] 23:38, 10 februar 2012 (KSV)}}
75obuntkkf0cua0535coujwwfh0hmtv
Korisnik:Nihonjoe
2
7337
22284
2012-02-12T21:14:49Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
22284
wikitext
text/x-wiki
Greetings! Please contact me at my [[m:w:en:User talk:Nihonjoe|main user talk page]] on the English Wikipedia.
gmzxbovrm68w3c5eakdn2dd4uhj14r7
Šablon:Delete
10
7341
22339
22337
2012-02-15T13:41:32Z
Quentinv57
723
Preusmjereno na [[Šablon:delete]]
22339
wikitext
text/x-wiki
#REDIRECT [[Šablon:delete]]
kxardnjp2z6druiks3ihnsrgex9olz1
Korisnik:Tadiranscopus
2
7384
25407
22474
2012-07-21T08:22:34Z
Tadiranscopus
1084
25407
wikitext
text/x-wiki
{{#babel:en-2|tr|az-3|diq}}
[[en:User:Tadiranscopus]]
[[tr:User:Tadiranscopus]]
[[de:User:Tadiranscopus]]
[[nl:User:Tadiranscopus]]
[[ru:User:Tadiranscopus]]
[[se:User:Tadiranscopus]]
[[gag:User:Tadiranscopus]]
[[ar:User:Tadiranscopus]]
[[fa:User:Tadiranscopus]]
[[kk:User:Tadiranscopus]]
[[tt:User:Tadiranscopus]]
[[pt:User:Tadiranscopus]]
[[es:User:Tadiranscopus]]
[[hy:User:Tadiranscopus]]
[[fr:User:Tadiranscopus]]
[[it:User:Tadiranscopus]]
[[la:User:Tadiranscopus]]
6aqaann9z990nxkcfcn0l9nnf54bngu
Korisnik:Mwpnl
2
7387
22488
2012-02-20T13:02:00Z
Hoo User Page Bot
985
Creating global user page, per request https://meta.wikimedia.org/w/index.php?diff=3424958
22488
wikitext
text/x-wiki
For more information about me or to get in touch, please visit my [[m:User:Mwpnl|User page]] and [[m:User talk:Mwpnl|talk page]] on meta-wiki.
Thanks, [[m:User:Mwpnl|<font color="#2B88FE">nl:'''Mark W'''</font>]] <small>(Mwpnl) ¦ [[m:User talk:Mwpnl|<font color="#66AA33">talk</font>]]</small>
is36zqujj4yd8wa9nfrj6w4wucbn3ku
Razgovor s korisnikom:Mwpnl
3
7388
22492
22491
2012-02-20T16:55:12Z
Hoo User Page Bot
985
Creating global user talk page, per request https://meta.wikimedia.org/w/index.php?diff=3424958
22492
wikitext
text/x-wiki
For more information about me or to get in touch, please visit my [[m:User:Mwpnl|User page]] and [[m:User talk:Mwpnl|talk page]] on meta-wiki. Thanks, [[m:User:Mwpnl|<font color="#2B88FE">nl:'''Mark W'''</font>]] <small>(Mwpnl) ¦ [[m:User talk:Mwpnl|<font color="#66AA33">talk</font>]]</small>
ddov55vaiv5a1vlmeso3ulm8mhvrsxp
Korisnik:Mwpnl/common.js
2
7389
22494
2012-02-21T13:10:33Z
Wikitanvir
685
Creating user JS page per request
22494
javascript
text/javascript
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:Mwpnl/global.js&action=raw&ctype=text/javascript');
a1xu2k17fjilscncb6cxhxmbeuiinbl
Korisnik:Psubhashish
2
7390
31865
22495
2012-12-27T18:37:30Z
Wikitanvir
685
Editing user page on user's request
31865
wikitext
text/x-wiki
{{User info
| full name = Subhashish Panigrahi
| image name = Subhashish Panigrahi cropped.png
| job title = Programme Officer
| organization = [[m:India Access To Knowledge|Access To Knowledge]], [[m:w:Centre for Internet and Society (India)|Centre for Internet and Society]]
| short quote = Imagine a world in which every single human being can freely share in the sum of all knowledge. Help us make it a reality!
| about me = I work as a Programme Officer for Community and Program Support, [[m:India Access To Knowledge|Access To Knowledge]] for [[m:w:Centre for Internet and Society (India)|Centre for Internet and Society]]. I have a background in Business development in Corporate Communications. My personal username is found [[m:User:Psubhashish|here]].
| about my work = I'm with the [[m:India Access To Knowledge|Access To Knowledge]] [[m:Access To Knowledge/Team|team]] - and we work on supporting, building and expanding the community in India.
| contact me =
* E-mail: subhashish[[File:At sign.svg|17px| at |link=]]cis-india.org
* English Wikipedia: [[m:en:User:Psubhashish|Psubhashish]]
* Meta: [[m:User:psubhashish|Psubhashish]]
}}
== Details of my work ==
{{#babel:or|en-4|pi-1|kn-1}}
My work broadly includes providing support to community in engaging new editors and supporting [[m:India Access To Knowledge|Access To Knowledge]] in terms of managing administrative and basic finance matters.
; Provided support for:
* New editors on [[m:India Program/Pilot Designs/Social Media|social media]]
* [[m:India Program/Outreach Programs|Outreach Programs]]
* On wiki support to new editors
My work details can be found under the following headers: Community and Program Support. If you still have any further questions about my work, please write to me at subhashish[[File:At sign.svg|17px| at |link=]]cis-india.org.
ezvhazazj3ttsdqy5ljtcopbb89qy39
Razgovor s korisnikom:Tadiranscopus
3
7391
22560
2012-02-25T23:03:16Z
Kukac
962
Nova stranica: {{Dobrodošlica}}
22560
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Hoo man
3
7392
22561
2012-02-25T23:03:42Z
Kukac
962
Nova stranica: {{Dobrodošlica}}
22561
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Korisnik:VasilievVV/common.js
2
7394
22599
2012-02-29T23:46:45Z
VasilievVV
638
creating new JS file
22599
javascript
text/javascript
mw.loader.load( "//meta.wikimedia.org/w/index.php?action=raw&ctype=text/javascript&title=User:VasilievVV/global.js", "text/javascript" );
sb5332vmtmczw8e6taxjgklrcvvrtj5
Razgovor s korisnikom:Snowolf
3
7396
22618
2012-03-01T16:47:46Z
Quentinv57
723
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
22618
wikitext
text/x-wiki
{| style="top:2px; width:100%; padding-bottom:0px; background:orange;" valign="middle"
|-
|<center><big>Page not monitored, write to [[:meta:User talk:Snowolf]] instead.</big></center>
|}
0v8v947jtpxr6w6ftwv7hsdlwr8eh4y
Korisnik:MBisanz/common.js
2
7397
22627
2012-03-02T15:34:00Z
Quentinv57
723
global JavaScript ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
22627
javascript
text/javascript
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:MBisanz/global.js&action=raw&ctype=text/javascript');
f7coylqjl911ai3ccdxujym5ympanto
Razgovor s korisnikom:VasilievVV
3
7398
22634
2012-03-02T21:26:15Z
Kukac
962
Nova stranica: {{Dobrodošlica|~~~~}}
22634
wikitext
text/x-wiki
{{Dobrodošlica|[[Korisnik:Kukac|Kukac]] ([[Razgovor sa korisnikom:Kukac|razgovor]]) 21:26, 2 mart 2012 (KSV)}}
anxniqemul0dzjmmw9tg52qsgq1m0i6
Razgovor s korisnikom:Dcljr
3
7406
22763
2012-03-14T22:51:23Z
Kukac
962
Nova stranica: {{Dobrodošlica}}
22763
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Jan Luca
3
7407
22776
2012-03-18T03:15:50Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
22776
wikitext
text/x-wiki
'''Please write any comment on [[m:v:de:User talk:Jan Luca|my usertalk on de.wikiversity]]'''
1bri8n55wqrqompd1tmjsk0ty0hz0us
Korisnik:Sae1962
2
7410
22839
2012-03-22T20:54:50Z
Sae1962
621
Nova stranica: <!--{{Babel|de|en-4|tr-4|sv-1|ar-1|bs-0|no-0}}--> Hello! I am a computer specialist, interested in scientific knowledge. I studied electronics and computer science and have more t...
22839
wikitext
text/x-wiki
<!--{{Babel|de|en-4|tr-4|sv-1|ar-1|bs-0|no-0}}-->
Hello!
I am a computer specialist, interested in scientific knowledge. I studied electronics and computer science and have more than 15 years of experience in hardware and software design and implementation.
My hobbies are sciences, R&D, technologies, humanities (philosophy, psychology, sociology, cultures, civilizations and their [http://campus.fortunecity.com/business/350/menschundmoderne/moderne.htm interactions still only in German language], religions, sports (I like to follow Formula One|F1 racing and like biking, jogging, and trekking), music (any tonal music, like classical music, pop, rock, folk music, new age, ...).
You can find out my age, if you scrutinize my nickname!
Wikigreetings!
<!-- Interwikis -->
[[ar:مستخدم:Sae1962]]
[[de:Benutzer:Sae1962]]
[[en:User:Sae1962]]
[[simple:User:Sae1962]]
[[sv:Användare:Sae1962]]
[[tr:Kullanıcı:Sae1962]]
jvuzd2qr5i6qvk2j0zr1coplb0wbbqi
Razgovor s korisnikom:Sae1962
3
7421
22919
2012-03-28T21:33:15Z
Kukac
962
Nova stranica: {{Dobrodošlica}}
22919
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Allan Javier Aguilar Castillo
3
7422
22954
2012-04-01T01:43:49Z
Pathoschild
81
updated global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
22954
wikitext
text/x-wiki
{{#babel:es-N|en-3|bs-0}} [[m:w:es:Usuario Discusión:Allan Javier Aguilar Castillo|Talk to me on Spanish Wikipedia]]
buy1ryc3bdoql3afp7gxij0zmo9gsg4
Korisnik:Tomtomn00/common.js
2
7430
22976
2012-04-03T02:26:40Z
Pathoschild
81
global JavaScript ([[m:User:Pathoschild/Scripts/Synchbot|requested by Tomtomn00]])
22976
javascript
text/javascript
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:Tomtomn00/global.js&action=raw&ctype=text/javascript');
1rlhjrmntfzgsyx4nxeefb759y2k6ht
Razgovor s korisnikom:Tomtomn00
3
7431
23023
23008
2012-04-04T23:43:06Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by Tomtomn00]])
23023
wikitext
text/x-wiki
<div style="text-align:center; color:#F00; font-size:x-large;">'''See [[m:en:User talk:Tomtomn00|en]] for a faster response.'''</div>
----
5wnezylscbm3ki3ydt3lj4tyavkf8u6
Korisnik:Tomtomn00
2
7432
23024
2012-04-05T01:05:26Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by Tomtomn00]])
23024
wikitext
text/x-wiki
{{#babel:en|de-1|fr-1|lv-1|nl-2|ru-2|uk-2|ab-3|af-3|rn-2}} [[File:Redirect arrow without text.svg|46px|link=]][[m:en:User:Tomtomn00|en]]
kd77rk449915j7xuetzpqb8hzsy0htx
Korisnik:Thehelpfulone
2
7436
23051
2012-04-08T17:23:57Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by Thehelpfulone]])
23051
wikitext
text/x-wiki
Hi! Welcome to my user page, please see my [[m:User:Thehelpfulone|Meta-Wiki user page]] for more information about me. If you'd like to get in contact with me, please contact me on my [[:m:User talk:Thehelpfulone|Meta-Wiki talk page]] or by [[m:Special:EmailUser/Thehelpfulone|e-mail]]. [[User:Thehelpfulone|<font color="red">'''The'''</font>]] [[User_talk:Thehelpfulone|<font color="black"> '''Helpful'''</font>]] [[Special:Contributions/Thehelpfulone|<font color="red"> '''One'''</font>]]
oegzpzbljca8w0vcsp1ivo5u15oaxxh
Razgovor s korisnikom:Thehelpfulone
3
7437
23052
2012-04-08T17:58:10Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by Thehelpfulone]])
23052
wikitext
text/x-wiki
Hi! Welcome to my user talk page, please see my [[m:User:Thehelpfulone|Meta-Wiki user page]] for more information about me. If you'd like to get in contact with me, please contact me on my [[:m:User talk:Thehelpfulone|Meta-Wiki talk page]] or by [[m:Special:EmailUser/Thehelpfulone|e-mail]]. [[User:Thehelpfulone|<font color="red">'''The'''</font>]] [[User_talk:Thehelpfulone|<font color="black"> '''Helpful'''</font>]] [[Special:Contributions/Thehelpfulone|<font color="red"> '''One'''</font>]]
bb66o0o9in5auhu2oz69opie3261fvk
Korisnik:Pundit
2
7438
23079
2012-04-11T02:13:02Z
Hoo User Page Bot
985
Creating global user page, per request https://meta.wikimedia.org/w/index.php?diffonly=1&diff=3631030&oldid=3588687
23079
wikitext
text/x-wiki
{{#babel:pl|en-4|de-1|ru-1|}} <center>'''[[:m:User:Pundit|(click here for my user page on meta.wikimedia)]]'''</center>
1eio4tg200n4g0j0gxxwoeapxt6zgh7
Šablon:de-dekl-ime
10
7441
67798
58147
2020-11-19T12:03:41Z
Barishan
287
67798
wikitext
text/x-wiki
<div class="NavFrame" style="">
<div class="NavHead" style="" >Deklinacija: {{{ns|{{{1}}}}}}</div>
<div class="NavContent">
{| border="1px solid #505050" style="border-collapse:collapse; background:#FAFAFA; text-align:center; width:100%" class="inflection-table"
! style="background:#AAB8C0;width:15%" |
! colspan="3" style="background:#AAB8C0" | Jednina
! colspan="2" style="background:#AAB8C0" | Množina
|-
! style="background:#BBC9D0" | (''rod:'' {{#if:{{{g|}}}|{{#switch:{{{g|}}}|m={{m}}|f={{f}}|n={{n}}|?}}}})
! style="background:#BBC9D0;width:7%" | Neodređeni član
! style="background:#BBC9D0;width:7%" | Određeni član
! style="background:#BBC9D0;width:27%" | Imenica
! style="background:#BBC9D0;width:7%" | Određeni član
! style="background:#BBC9D0;width:27%" | Imenica
|-
! style="background:#BBC9D0" | Nominativ
| style="background:#EEEEEE" | {{#if:{{{g|}}}|{{#switch:{{{g|}}}|m=ein|f=eine|n=ein|?}}}}
| style="background:#EEEEEE" | {{#if:{{{g|}}}|{{#switch:{{{g|}}}|m=der|f=die|n=das|?}}}}
| {{{ns|{{{1}}}}}}
| style="background:#EEEEEE" | die
| {{{np|{{{5}}}}}}
|-
! style="background:#BBC9D0" | Genitiv
| style="background:#EEEEEE" | {{#if:{{{g|}}}|{{#switch:{{{g|}}}|m=eines|f=einer|n=eines|?}}}}
| style="background:#EEEEEE" | {{#if:{{{g|}}}|{{#switch:{{{g|}}}|m=des|f=der|n=des|?}}}}
| {{{gs|{{{4}}}}}}
| style="background:#EEEEEE" | der
| {{{gp|{{{8}}}}}}
|-
! style="background:#BBC9D0" | Dativ
| style="background:#EEEEEE" | {{#if:{{{g|}}}|{{#switch:{{{g|}}}|m=einem|f=einer|n=einem|?}}}}
| style="background:#EEEEEE" | {{#if:{{{g|}}}|{{#switch:{{{g|}}}|m=dem|f=der|n=dem|?}}}}
| {{{ds|{{{3}}}}}}
| style="background:#EEEEEE" | den
| {{{dp|{{{7}}}}}}
|-
! style="background:#BBC9D0" | Akuzativ
| style="background:#EEEEEE" | {{#if:{{{g|}}}|{{#switch:{{{g|}}}|m=einen|f=eine|n=ein|?}}}}
| style="background:#EEEEEE" | {{#if:{{{g|}}}|{{#switch:{{{g|}}}|m=den|f=die|n=das|?}}}}
| {{{as|{{{2}}}}}}
| style="background:#EEEEEE" | die
| {{{ap|{{{6}}}}}}
|}</div></div><noinclude>
[[Kategorija:Šabloni deklinacije (njemački)]]
[[de:Vorlage:Deutsch Substantiv Übersicht]]
[[fr:Modèle:de-tab-cas]]
[[ga:Teimpléad:de-Substantiv-Tabelle]]
[[pt:Predefinição:decl.de.subst]]
</noinclude>
huecn9wjyovhzjmgtiwbzwann111rw2
Korisnik:Mabifixem
2
7455
25211
23110
2012-07-05T11:44:47Z
Mabifixem
928
lands
25211
wikitext
text/x-wiki
[[Image:Alien-hack-master.png|100px]]
[[File:Redirectltr.png]]<b>[[:fr:Utilisateur:Mabifixem|Mabifixem]]</b>
[[af:Gebruiker:Mabifixem]]
[[als:Benutzer:Mabifixem]]
[[am:አባል:Mabifixem]]
[[an:Usuario:Mabifixem]]
[[ar:مستخدم:Mabifixem]]
[[ast:Usuariu:Mabifixem]]
[[as:সদস্য:Mabifixem]]
[[az:İstifadəçi:Mabifixem]]
[[bar:Benutzer:Mabifixem]]
[[bat-smg:Nauduotuos:Mabifixem]]
[[ba:Ҡатнашыусы:Mabifixem]]
[[be-x-old:Удзельнік:Mabifixem]]
[[be:Удзельнік:Mabifixem]]
[[bg:Потребител:Mabifixem]]
<!--[[bm:Utilisateur:Mabifixem]]-->
[[bn:ব্যবহারকারী:Mabifixem]]
[[bpy:আতাকুরা:Mabifixem]]
[[br:Implijer:Mabifixem]]
<!--[[bs:Korisnik:Mabifixem]]-->
<!--[[bug:Pengguna:Mabifixem]]-->
[[ca:Usuari:Mabifixem]]
[[ceb:Gumagamit:Mabifixem]]
<!--[[commons:User:Mabifixem]]-->
[[cs:Wikipedista:Mabifixem]]
[[cv:Хутшăнакан:Mabifixem]]
[[cy:Defnyddiwr:Mabifixem]]
[[da:Bruger:Mabifixem]]
[[de:Benutzer:Mabifixem]]
[[diq:Bruger:Mabifixem]]
[[el:Χρήστης:Mabifixem]]
[[en:User:Mabifixem]]
[[eo:Uzanto:Mabifixem]]
[[es:Usuario:Mabifixem]]
[[et:Kasutaja:Mabifixem]]
[[eu:Lankide:Mabifixem]]
[[fa:کاربر:Mabifixem]]
[[fi:Käyttäjä:Mabifixem]]
[[fr:Utilisateur:Mabifixem]]
[[fy:Meidogger:Mabifixem]]
[[ga:Úsáideoir:Mabifixem]]
[[gl:Usuario:Mabifixem]]
[[gu:સભ્ય:Mabifixem]]
[[he:משתמש:Mabifixem]]
[[hi:सदस्य:Mabifixem]]
[[hr:Suradnik:Mabifixem]]
[[ht:Itilizatè:Mabifixem]]
[[hu:Szerkesztő:Mabifixem]]
[[hy:Մասնակից:Mabifixem]]
[[ia:Usator:Mabifixem]]
[[id:Pengguna:Mabifixem]]
[[io:Uzanto:Mabifixem]]
[[is:Notandi:Mabifixem]]
[[it:Utente:Mabifixem]]
[[ja:利用者:Mabifixem]]
[[jv:Panganggo:Mabifixem]]
[[ka:მომხმარებელი:Mabifixem]]
[[kk:Қатысушы:Mabifixem]]
[[kn:ಸದಸ್ಯ:Mabifixem]]
[[ko:사용자:Mabifixem]]
[[ku:Bikarhêner:Mabifixem]]
[[la:Usor:Mabifixem]]
[[lb:Benotzer:Mabifixem]]
[[lmo:Druvadur:Mabifixem]]
[[ln:Utilisateur:Mabifixem]]
[[lt:Naudotojas:Mabifixem]]
[[lv:Lietotājs:Mabifixem]]
[[map-bms:Panganggo:Mabifixem]]
[[mg:Mpikambana:Mabifixem]]
[[mk:Корисник:Mabifixem]]
[[ml:ഉപയോക്താവ്:Mabifixem]]
[[mr:सदस्य:Mabifixem]]
[[ms:Pengguna:Mabifixem]]
<!--[[my:User:Mabifixem]]-->
[[nap:Utente:Mabifixem]]
[[nds:Bruker:Mabifixem]]
[[ne:प्रयोगकर्ता:Mabifixem]]
[[new:छ्येलेमि:Mabifixem]]
[[nl:Gebruiker:Mabifixem]]
[[nn:Brukar:Mabifixem]]
[[no:Bruker:Mabifixem]]
[[oc:Utilizaire:Mabifixem]]
<!--[[outreach:User:Mabifixem]]-->
[[pl:Wikipedysta:Mabifixem]]
[[pms:Utent:Mabifixem]]
[[pnb:User:Mabifixem]]
[[pt:Usuário:Mabifixem]]
[[qu:Ruraq:Mabifixem]]
[[ro:Utilizator:Mabifixem]]
[[roa-rup:User:Mabifixem]]
[[ru:Участник:Mabifixem]]
[[rue:Хоснователь:Mabifixem]]
[[scn:Utenti:Mabifixem]]
[[sh:Korisnik:Mabifixem]]
[[simple:User:Mabifixem]]
[[sk:Redaktor:Mabifixem]]
[[sl:Uporabnik:Mabifixem]]
[[sq:Përdoruesi:Mabifixem]]
[[sr:Корисник:Mabifixem]]
[[su:Pamaké:Mabifixem]]
[[sv:Användare:Mabifixem]]
[[sw:Mtumiaji:Mabifixem]]
[[ta:பயனர்:Mabifixem]]
<!--[[test:User:Mabifixem]]-->
[[te:వాడుకరి:Mabifixem]]
[[th:ผู้ใช้:Mabifixem]]
[[tl:Tagagamit:Mabifixem]]
[[tr:Kullanıcı:Mabifixem]]
[[tt:Кулланучы:Mabifixem]]
<!--[[Image:Alien-hack-master.png|100px]]-->
[[uk:Користувач:Mabifixem]]
[[ur:صارف:Mabifixem]]
[[vi:Thành viên:Mabifixem]]
[[vo:Geban:Mabifixem]]
[[war:User:Mabifixem]]
[[wa:Uzeu:Mabifixem]]
[[yi:באַניצער:Mabifixem]]
[[yo:Oníṣe:Mabifixem]]
[[zh-yue:User:Mabifixem]]
[[zh:User:Mabifixem]]
o251s5w6ps3tcnrygdhpe35j44ookkn
Razgovor s korisnikom:Ponpan
3
7460
23163
2012-04-15T11:29:29Z
Kukac
962
Nova stranica: {{Dobrodošlica}}
23163
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Mabifixem
3
7461
23164
2012-04-15T11:29:50Z
Kukac
962
Nova stranica: {{Dobrodošlica}}
23164
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Korisnik:Colourful Bling
2
7462
23168
2012-04-15T17:21:40Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by Colourful Bling]])
23168
wikitext
text/x-wiki
{{#babel:en|de-2|fr-3}} Hi, I'm '''Colourful Bling'''. To contact me, use my [[:m:en:User talk:Colourful Bling|talk page]] on the English Wikipedia. -- [[:m:en:User:Colourful Bling|Colourful Bling]] ([[:m:en:Special:Contributions/Colourful Bling|contribs]])
bq2eujkykpgmf22zugb47p8ph63q5b4
Korisnik:Codeks
2
7505
56529
23312
2016-09-08T03:35:59Z
Jianhui67
1670
Jianhui67 premjestio je stranicu [[Korisnik:Reder]] na [[Korisnik:Codeks]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Reder|Reder]]" u "[[Special:CentralAuth/Codeks|Codeks]]"
56529
wikitext
text/x-wiki
*[[File:Wikimedia Community Logo.svg|25px]] [http://meta.wikimedia.org/wiki/User:Reder Meta-Wiki - User:Reder]
pdmsb22xmfb6care1b89v3a9g6rx6r7
Šablon:la-dekl
10
7535
23382
23378
2012-04-22T11:12:01Z
Barishan
287
23382
wikitext
text/x-wiki
<div class="NavFrame" style="clear:both; width:{{{width|60}}}em">
<div class="NavHead" align=center> Deklinacija: '''{{PAGENAME}}'''</div>
<div class="NavContent">
{| style="width:{{{width|60}}}em;" class="inflection-table"
! style="width:33%;background:#DEDEDE" |
! style="background:#DEDEDE" | Jednina <small>([[singularis]])</small>
! style="background:#DEDEDE" | Množina <small>([[pluralis]])</small>
|-
! style="background:#DEDEDE" | Nominativ <small>([[nominativus]])</small>
| {{{nom-sg}}}
| {{{nom-pl}}}
|-
! style="background:#DEDEDE" | Genitiv <small>([[genetivus]])</small>
| {{{gen-sg}}}
| {{{gen-pl}}}
|-
! style="background:#DEDEDE" | Dativ <small>([[dativus]])</small>
| {{{dat-sg}}}
| {{{dat-pl}}}
|-
! style="background:#DEDEDE" | Akuzativ <small>([[accusativus]])</small>
| {{{acc-sg}}}
| {{{acc-pl}}}
|-
! style="background:#DEDEDE" | Ablativ <small>([[ablativus]])</small>
| {{{abl-sg}}}
| {{{abl-pl}}}
|-
! style="background:#DEDEDE" | Vokativ <small>([[vocativus]])</small>
| {{{voc-sg}}}
| {{{voc-pl}}}
|-
! style="background:#DEDEDE" | Lokativ <small>([[locativus]])</small>
| {{{loc-sg|}}}
| {{{loc-pl|}}}
|}
</div></div><noinclude>
[[Category:Šabloni deklinacije (latinski)]]</noinclude>
78t53gmaqvv8vii4m9ik34u1fp2dpq7
Šablon:sq-dekl-ime
10
7548
72724
23397
2025-04-26T00:49:31Z
Minorax
2705
72724
wikitext
text/x-wiki
<div class="NavFrame">
<div class="NavHead" style="background:#DFDFDF" >Deklinacija: '''{{{1}}}'''</div>
<div class="NavContent">
{| border="1px solid #aaaaaa" style="border-collapse:collapse; background:#F9F9F9; text-align:center; width:100%" class="inflection-table"
|-
! rowspan="2" style="width:20%;background:#DFDFDF" |
! colspan="2" style="background:#DFDFDF" | Neodređeni vid <small>([[trajtë|trajta]] [[pashquar|të pashquara]])</small>
! rowspan="7" style="background:#DFDFDF;width:.75em" |
! colspan="2" style="background:#DFDFDF" | Određeni vid <small>([[trajtë|trajta]] [[shquar|të shquara]])</small>
|-
! style="background:#EFEFEF" | Jednina <small>([[numri njëjës|njëjës]])</small>
! style="background:#EFEFEF" | Množina <small>([[numri shumës|shumës]])</small>
! style="background:#EFEFEF" | Jednina <small>([[numri njëjës|njëjës]])</small>
! style="background:#EFEFEF" | Množina <small>([[numri shumës|shumës]])</small>
|-
! style="background:#EFEFEF" | Nominativ <small>([[emërore]])</small>
| {{{1}}}
| {{{2}}}
| {{{3}}}
| {{{4}}}
|-
! style="background:#EFEFEF" | Akuzativ <small>([[kallëzore]])</small>
| {{{5}}}
| {{{6}}}
| {{{7}}}
| {{{8}}}
|-
! style="background:#EFEFEF" | Genitiv <small>([[gjinore]])</small>
| {{{9}}}
| {{{10}}}
| {{{11}}}
| {{{12}}}
|-
! style="background:#EFEFEF" | Dativ <small>([[dhanore]])</small>
| {{{9}}}
| {{{10}}}
| {{{11}}}
| {{{12}}}
|-
! style="background:#EFEFEF" | Ablativ <small>([[rrjedhore]])</small>
| {{{9}}}
| {{{13}}}
| {{{11}}}
| {{{12}}}
|}</div></div><noinclude>
[[Kategorija:Šabloni deklinacije (albanski)]]</noinclude>
eno3petoja1une40h311euy8ptz0ofs
Razgovor s korisnikom:Termininja
3
7556
23428
2012-04-25T17:15:31Z
Kukac
962
Nova stranica: {{Dobrodošlica}}
23428
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Codeks
3
7557
56527
23429
2016-09-08T03:35:59Z
Jianhui67
1670
Jianhui67 premjestio je stranicu [[Razgovor s korisnikom:Reder]] na [[Razgovor s korisnikom:Codeks]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Reder|Reder]]" u "[[Special:CentralAuth/Codeks|Codeks]]"
56527
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Krenair
3
7581
23492
2012-04-29T11:58:22Z
Kukac
962
Nova stranica: {{Dobrodošlica}}
23492
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Šablon:hu-dekl
10
7849
58136
24066
2017-02-22T17:09:38Z
Srđan
1899
[[Help:Cat-a-lot|Cat-a-lot]]: Moving from [[Category:Deklinacije šablone (mađarski)]] to [[Category:Šabloni deklinacije (mađarski)]]
58136
wikitext
text/x-wiki
<div class="NavFrame" style="clear:both; width:{{{width|60}}}em">
<div class="NavHead" align=center> Deklinacija: '''{{PAGENAME}}'''</div>
<div class="NavContent">
{| style="width:{{{width|60}}}em;" class="inflection-table"
! style="width:33%;background:#DEDEDE" |
! style="background:#DEDEDE" | Jednina <small>([[egyes szám|egyes]])</small>
! style="background:#DEDEDE" | Množina <small>([[többes szám|többes]])</small>
|-
! style="background:#DEDEDE" | Nominativ <small>([[alanyeset]])</small>
| {{{1}}}
| {{{2}}}
|-
! style="background:#DEDEDE" | Akuzativ <small>([[tárgyeset]])</small>
| {{{3}}}
| {{{4}}}
|-
! style="background:#DEDEDE" | Dativ <small>([[részes eset|részes]])</small>
| {{{5}}}
| {{{6}}}
|-
! style="background:#DEDEDE" | Instrumental <small>([[eszközhatározói eset|eszközhatározói]])</small>
| {{{9}}}
| {{{10}}}
|-
! style="background:#DEDEDE" | Kauzal-Final <small>([[causativus-finalis]])</small>
| {{{11}}}
| {{{12}}}
|-
! style="background:#DEDEDE" | Translativ <small>([[translativus]])</small>
| {{{13}}}
| {{{14}}}
|-
! style="background:#DEDEDE" | Terminativ <small>([[terminativus]])</small>
| {{{15}}}
| {{{16}}}
|-
! style="background:#DEDEDE" | Esiv-Formal <small>([[essivus-formalis]])</small>
| {{{17}}}
| {{{18}}}
|-
! style="background:#DEDEDE" | Esiv-Modal <small>([[essivus-modalis]])</small>
| {{{19}}}
| {{{20}}}
|-
! style="background:#DEDEDE" | Inesiv <small>([[inessivus]])</small>
| {{{21}}}
| {{{22}}}
|-
! style="background:#DEDEDE" | Superesiv <small>([[superessivus]])</small>
| {{{23}}}
| {{{24}}}
|-
! style="background:#DEDEDE" | Adesiv <small>([[adessivus]])</small>
| {{{25}}}
| {{{26}}}
|-
! style="background:#DEDEDE" | Ilativ <small>([[illativus]])</small>
| {{{27}}}
| {{{28}}}
|-
! style="background:#DEDEDE" | Sublativ <small>([[sublativus]])</small>
| {{{29}}}
| {{{30}}}
|-
! style="background:#DEDEDE" | Alativ <small>([[allativus]])</small>
| {{{31}}}
| {{{32}}}
|-
! style="background:#DEDEDE" | Elativ <small>([[elativus]])</small>
| {{{33}}}
| {{{34}}}
|-
! style="background:#DEDEDE" | Delativ <small>([[delativus]])</small>
| {{{35}}}
| {{{36}}}
|-
! style="background:#DEDEDE" | Ablativ <small>([[határozóeset]])</small>
| {{{37}}}
| {{{38}}}
|}
</div></div><noinclude>[[Kategorija:Šabloni deklinacije (mađarski)]]</noinclude>
6dmffw4gga703cpdcyik63hekziz2y1
Šablon:hu-digraf
10
7851
24058
2012-05-05T11:34:50Z
Barishan
287
Nova stranica: {{#switch: {{{1}}} | cs = ccs | ccs = ccs | dz = ddz | ddz=ddz | dzs = ddzs | ddzs=ddzs | gy = ggy | ggy = ggy | ly = lly | lly=lly | ny = nny | nny = nny | sz = ssz | ssz=ssz | ty...
24058
wikitext
text/x-wiki
{{#switch: {{{1}}}
| cs = ccs
| ccs = ccs
| dz = ddz
| ddz=ddz
| dzs = ddzs
| ddzs=ddzs
| gy = ggy
| ggy = ggy
| ly = lly
| lly=lly
| ny = nny
| nny = nny
| sz = ssz
| ssz=ssz
| ty = tty
| tty = tty
| zs = zzs
| zzs=zzs
| bb = bb
| cc = cc
| dd = dd
| ff = ff
| gg = gg
| hh = hh
| jj = jj
| kk = kk
| ll = ll
| mm = mm
| nn = nn
| pp = pp
| rr = rr
| ss = ss
| tt = tt
| vv = vv
| zz = zz
| x = xsz
| i = iv
| #default = {{{1}}}{{{1}}}
}}<noinclude>[[Kategorija:Šablone (mađarski)]]</noinclude>
peyqlqolpxjujur5a06vnu4lv3cyd0o
Šablon:hu-nn
10
7852
24059
2012-05-05T11:35:37Z
Barishan
287
Nova stranica: {{#switch: {{{1}}} | nn = n | #default = {{{1}}} }}<noinclude>[[Kategorija:Šablone (mađarski)]]</noinclude>
24059
wikitext
text/x-wiki
{{#switch: {{{1}}}
| nn = n
| #default = {{{1}}}
}}<noinclude>[[Kategorija:Šablone (mađarski)]]</noinclude>
e778qkdghhu4hrqahh108zrg4kstjmy
Šablon:hu-rr
10
7853
24060
2012-05-05T11:36:24Z
Barishan
287
Nova stranica: {{#switch: {{{1}}} | rr = r | #default = {{{1}}} }}<noinclude>[[Kategorija:Šablone (mađarski)]]</noinclude>
24060
wikitext
text/x-wiki
{{#switch: {{{1}}}
| rr = r
| #default = {{{1}}}
}}<noinclude>[[Kategorija:Šablone (mađarski)]]</noinclude>
0f92lt17ieyys5y0mutrei0zapf272m
Šablon:hu-kk
10
7854
24061
2012-05-05T11:36:42Z
Barishan
287
Nova stranica: {{#switch: {{{1}}} | kk = k | #default = {{{1}}} }}<noinclude>[[Kategorija:Šablone (mađarski)]]</noinclude>
24061
wikitext
text/x-wiki
{{#switch: {{{1}}}
| kk = k
| #default = {{{1}}}
}}<noinclude>[[Kategorija:Šablone (mađarski)]]</noinclude>
0efvtasezphri23cqnjtenayzq9kewz
Šablon:hu-bb
10
7855
24062
2012-05-05T11:37:22Z
Barishan
287
Nova stranica: {{#switch: {{{1}}} | bb = b | #default = {{{1}}} }}<noinclude>[[Kategorija:Šablone (mađarski)]]</noinclude>
24062
wikitext
text/x-wiki
{{#switch: {{{1}}}
| bb = b
| #default = {{{1}}}
}}<noinclude>[[Kategorija:Šablone (mađarski)]]</noinclude>
7w5usy31daqs26z1uywinxbs6fqolvd
Šablon:hu-tt
10
7856
24063
2012-05-05T11:37:52Z
Barishan
287
Nova stranica: {{#switch: {{{1}}} | tt = t | #default = {{{1}}} }}<noinclude>[[Kategorija:Šablone (mađarski)]]</noinclude>
24063
wikitext
text/x-wiki
{{#switch: {{{1}}}
| tt = t
| #default = {{{1}}}
}}<noinclude>[[Kategorija:Šablone (mađarski)]]</noinclude>
cw6seiy6acyjg74odscug5mcekrnat2
Šablon:hu-hh
10
7857
24064
2012-05-05T11:38:18Z
Barishan
287
Nova stranica: {{#switch: {{{1}}} | hh = h | #default = {{{1}}} }}<noinclude>[[Kategorija:Šablone (mađarski)]]</noinclude>
24064
wikitext
text/x-wiki
{{#switch: {{{1}}}
| hh = h
| #default = {{{1}}}
}}<noinclude>[[Kategorija:Šablone (mađarski)]]</noinclude>
kcv06nltzkouge6s8mxbyfqsrjr5tiy
Razgovor s korisnikom:Vikiçizer
3
7929
24170
2012-05-05T20:22:27Z
Kukac
962
Nova stranica: {{Dobrodošlica}}
24170
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Korisnik:Toto Azéro/common.js
2
7997
24282
2012-05-06T17:08:07Z
Pathoschild
81
global JavaScript ([[m:User:Pathoschild/Scripts/Synchbot|requested by Toto Azéro]])
24282
javascript
text/javascript
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:Toto_Azéro/global.js&action=raw&ctype=text/javascript');
etglild9qjn78ivjyk1nrudbdtw0m7z
Korisnik:Érico/common.js
2
8001
52473
24286
2015-11-02T12:44:10Z
Steinsplitter
1382
Steinsplitter premjestio je stranicu [[Korisnik:Érico Júnior Wouters/common.js]] na [[Korisnik:Érico/common.js]]: Automatsko premještanje stranice zbog preimenovanja korisnika „[[Special:CentralAuth/Érico Júnior Wouters|Érico Júnior Wouters]]...
52473
javascript
text/javascript
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:Érico Júnior Wouters/global.js&action=raw&ctype=text/javascript');
1xcvynfi1b20fgpjoswsqi93z5whq08
Korisnik:HydrizBot
2
8004
68432
68430
2022-07-26T18:51:50Z
Savh
853
Vraćene izmjene korisnika [[Special:Contributions/2400:2412:2820:3F00:7060:5E57:3C34:BBB2|2400:2412:2820:3F00:7060:5E57:3C34:BBB2]] ([[User talk:2400:2412:2820:3F00:7060:5E57:3C34:BBB2|razgovor]]) na posljednju izmjenu korisnika [[User:CommonsDelinker|CommonsDelinker]]
66918
wikitext
text/x-wiki
{| class="messagebox"
|align="center"|[[Image:Crystal Clear action run.png|50px]]
|align="left" width="100%"|'''This user is a bot run by [[:simple:User:Hydriz|Hydriz]] ([[:simple:User talk:Hydriz|talk]]).'''
It is used for helping to make many small changes that would take a long time for a person to do alone.
<br>
<small>''Administrators: if this bot isn't working right or doing bad things, please [[Special:Blockip/HydrizBot|block it]].''</small>
|}
[[File:Wikimedia Cloud Services small logo.png|right]]
I am HydrizBot. My owner is Hydriz and I can run only when he orders me to. I currently add interwiki links to the pages in this Wiktionary.
'''WARNING: If you block this bot, please ''TURN OFF AUTOBLOCK'', so that the other [[mw:Wikimedia Labs|WMF Labs]] bots keep working.'''
i9sgpg1t908lzes7mqpn127mcqf1xj0
Korisnik:DzWiki
2
8161
24776
2012-05-23T18:57:06Z
DzWiki
1158
Preusmjereno na [[wikipedia:bs:Korisnik:DzWiki]]
24776
wikitext
text/x-wiki
#REDIRECT [[Wikipedia:bs:Korisnik:DzWiki]]
0el4otdifxb6fsgb288771c6k7lgc9y
Razgovor s korisnikom:BRUTE
3
8162
24777
2012-05-23T19:16:35Z
Kukac
962
Nova stranica: {{Dobrodošlica}}
24777
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:DzWiki
3
8163
24778
2012-05-23T19:17:05Z
Kukac
962
;)
24778
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Pgehres (WMF)
3
8164
24779
2012-05-23T19:17:51Z
Kukac
962
Nova stranica: {{Dobrodošlica}}
24779
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:ZxxZxxZ
3
8166
24803
2012-05-26T15:26:14Z
Kukac
962
Nova stranica: {{Dobrodošlica}}
24803
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Korisnik:Lavallen
2
8167
24831
2012-05-29T18:47:00Z
Hoo User Page Bot
985
Creating global user page, per request https://meta.wikimedia.org/w/index.php?diffonly=1&diff=3796945&oldid=3636963
24831
wikitext
text/x-wiki
{{#babel:sv|en-2|no-1|nn-1|da-1|nds-1}} [[Special:Contributions/Innocent bot|Innocent bot]]<br/>
[[Special:Contributions/Innocent iwbot|Innocent iwbot]] [[File:Lavallens skugga.jpg|thumb|left|Moi]] [[sv:Användare:Lavallen]]
rocy8rz6t73e90eajdsl5svxhqtarvw
Korisnik:Jasper Deng
2
8169
25345
24839
2012-07-17T02:32:50Z
Jasper Deng
1162
Global userpage
25345
wikitext
text/x-wiki
[[:w:en:User:Jasper Deng]] {{#ifeq:{{CONTENTLANGUAGE}}|en|{{#babel:en-N|fr-2}}|{{#babel:en-N|fr-2|{{CONTENTLANGUAGE}}-0}}}} __NOINDEX__
ebh8tv06p67jfaj67zzszp3bosdnxxw
Razgovor s korisnikom:Jasper Deng
3
8170
24841
2012-05-31T12:36:26Z
Kukac
962
Nova stranica: {{Dobrodošlica}}
24841
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Billinghurst
3
8178
24865
2012-06-02T04:44:27Z
Billinghurst
1141
Nova stranica: softredirect [[m:user talk:billinghurst]]
24865
wikitext
text/x-wiki
softredirect [[m:user talk:billinghurst]]
jkvso8yuhy5dg1yiorkt43ql4x75epg
Korisnik:Bill william compton/common.js
2
8182
24883
2012-06-02T15:19:08Z
Pathoschild
81
global JavaScript ([[m:User:Pathoschild/Scripts/Synchbot|requested by Bill william compton]])
24883
javascript
text/javascript
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:Bill_william_compton/global.js&action=raw&ctype=text/javascript');
mjptpgy7k8hn98e59mxm1lcz1y5wmgn
Korisnik:Frigotoni
2
8185
24887
2012-06-02T18:19:40Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by Frigotoni]])
24887
wikitext
text/x-wiki
<center>Hello, I am <span style="font-family:Bradley Hand ITC; color:black">'''Frigotoni'''</span>[[User talk:Frigotoni|<small> ...<span style="font-family:Segoe Script; color:navy" >'''i'm here'''</span></small>]]. I'm a member of the [[m:Small Wiki Monitoring Team|Small Wiki Monitoring Team]] and globally active in countervandalism. Feel free to leave me a message on [[m:User talk:Frigotoni|meta]] or on my [[m:it:Discussioni utente:Frigotoni|home]] Wiki. [[File:Face-grin.svg]]<small><br /><span class="plainlinks">[//toolserver.org/~pathoschild/crossactivity/?user=Frigotoni Crossactivity] & [//toolserver.org/~pathoschild/stalktoy/?target=Frigotoni StalkToy]</span> • If you need further information, you can click [[m:User:Frigotoni|here]]. Have I done something wrong? I apologise for this. Report it to me please.</small></center>
5w4xk8jje5ivh1j1e6b5y557pl8iowz
Korisnik:タチコマ robot
2
8186
24918
24915
2012-06-05T17:38:05Z
タチコマ robot
1016
r2.7.3) (Bot dodaje: af, am, an, ang, ar, ast, ay, az, be, bg, bn, br, ca, chr, co, cs, csb, cy, da, de, dv, el, eo, es, et, eu, fa, fi, fj, fo, fr, fy, ga, gd, gl, gn, gu, gv, ha, he, hi, hr, hsb, hu, hy, ia, id, ie, ik, io, is, it, iu, ja, jbo, ...
24918
wikitext
text/x-wiki
{{Bot|とある白い猫|site=meta}}
{{Emergency-bot-shutoff}}
[[af:Gebruiker:タチコマ robot]]
[[am:አባል:タチコマ robot]]
[[an:Usuario:タチコマ robot]]
[[ang:User:タチコマ robot]]
[[ar:مستخدم:タチコマ robot]]
[[ast:Usuariu:タチコマ robot]]
[[ay:Usuario:タチコマ robot]]
[[az:İstifadəçi:タチコマ robot]]
[[be:Удзельнік:タチコマ robot]]
[[bg:Потребител:タチコマ robot]]
[[bn:ব্যবহারকারী:タチコマ robot]]
[[br:Implijer:タチコマ robot]]
[[ca:Usuari:タチコマ robot]]
[[chr:User:タチコマ robot]]
[[co:User:タチコマ robot]]
[[cs:Uživatel:タチコマ robot]]
[[csb:Brëkòwnik:タチコマ robot]]
[[cy:Defnyddiwr:タチコマ robot]]
[[da:Bruger:タチコマ robot]]
[[de:Benutzer:タチコマ robot]]
[[dv:މެމްބަރު:タチコマ robot]]
[[el:Χρήστης:タチコマ robot]]
[[en:User:タチコマ robot]]
[[eo:Uzanto:タチコマ robot]]
[[es:Usuario:タチコマ robot]]
[[et:Kasutaja:タチコマ robot]]
[[eu:Lankide:タチコマ robot]]
[[fa:کاربر:タチコマ robot]]
[[fi:Käyttäjä:タチコマ robot]]
[[fj:User:タチコマ robot]]
[[fo:Brúkari:タチコマ robot]]
[[fr:Utilisateur:タチコマ robot]]
[[fy:Meidogger:タチコマ robot]]
[[ga:Úsáideoir:タチコマ robot]]
[[gd:Cleachdaiche:タチコマ robot]]
[[gl:Usuario:タチコマ robot]]
[[gn:Puruhára:タチコマ robot]]
[[gu:સભ્ય:タチコマ robot]]
[[gv:Ymmydeyr:タチコマ robot]]
[[ha:User:タチコマ robot]]
[[he:משתמש:タチコマ robot]]
[[hi:सदस्य:タチコマ robot]]
[[hr:Suradnik:タチコマ robot]]
[[hsb:Wužiwar:タチコマ robot]]
[[hu:Szerkesztő:タチコマ robot]]
[[hy:Մասնակից:タチコマ robot]]
[[ia:Usator:タチコマ robot]]
[[id:Pengguna:タチコマ robot]]
[[ie:Usator:タチコマ robot]]
[[ik:User:タチコマ robot]]
[[io:Uzanto:タチコマ robot]]
[[is:Notandi:タチコマ robot]]
[[it:Utente:タチコマ robot]]
[[iu:User:タチコマ robot]]
[[ja:利用者:タチコマ robot]]
[[jbo:User:タチコマ robot]]
[[jv:Panganggo:タチコマ robot]]
[[ka:მომხმარებელი:タチコマ robot]]
[[kk:Қатысушы:タチコマ robot]]
[[kl:Atuisoq:タチコマ robot]]
[[km:អ្នកប្រើប្រាស់:タチコマ robot]]
[[kn:ಸದಸ್ಯ:タチコマ robot]]
[[ko:사용자:タチコマ robot]]
[[ks:User:タチコマ robot]]
[[ku:Bikarhêner:タチコマ robot]]
[[kw:Devnydhyer:タチコマ robot]]
[[ky:Колдонуучу:タチコマ robot]]
[[la:Usor:タチコマ robot]]
[[lb:Benotzer:タチコマ robot]]
[[li:Gebroeker:タチコマ robot]]
[[ln:Utilisateur:タチコマ robot]]
[[lo:ຜູ້ໃຊ້:タチコマ robot]]
[[lt:Naudotojas:タチコマ robot]]
[[lv:Lietotājs:タチコマ robot]]
[[mg:Mpikambana:タチコマ robot]]
[[mi:User:タチコマ robot]]
[[mk:Корисник:タチコマ robot]]
[[ml:ഉപയോക്താവ്:タチコマ robot]]
[[mn:Хэрэглэгч:タチコマ robot]]
[[mr:सदस्य:タチコマ robot]]
[[ms:Pengguna:タチコマ robot]]
[[mt:Utent:タチコマ robot]]
[[my:User:タチコマ robot]]
[[na:User:タチコマ robot]]
[[nah:Tlatequitiltilīlli:タチコマ robot]]
[[nds:Bruker:タチコマ robot]]
[[ne:प्रयोगकर्ता:タチコマ robot]]
[[nl:Gebruiker:タチコマ robot]]
[[nn:Brukar:タチコマ robot]]
[[no:Bruker:タチコマ robot]]
[[oc:Utilizaire:タチコマ robot]]
[[om:User:タチコマ robot]]
[[or:ବ୍ୟବହାରକାରୀ:タチコマ robot]]
[[pa:ਮੈਂਬਰ:タチコマ robot]]
[[pl:Wikipedysta:タチコマ robot]]
[[pnb:User:タチコマ robot]]
[[ps:کارن:タチコマ robot]]
[[pt:Utilizador:タチコマ robot]]
[[qu:Ruraq:タチコマ robot]]
[[ro:Utilizator:タチコマ robot]]
[[roa-rup:User:タチコマ robot]]
[[ru:Участник:タチコマ robot]]
[[rw:User:タチコマ robot]]
[[sa:योजकः:タチコマ robot]]
[[scn:Utenti:タチコマ robot]]
[[sd:يوزر:タチコマ robot]]
[[sg:Utilisateur:タチコマ robot]]
[[sh:Korisnik:タチコマ robot]]
[[si:පරිශීලක:タチコマ robot]]
[[simple:User:タチコマ robot]]
[[sk:Redaktor:タチコマ robot]]
[[sl:Uporabnik:タチコマ robot]]
[[sm:User:タチコマ robot]]
[[so:User:タチコマ robot]]
[[sq:Përdoruesi:タチコマ robot]]
[[sr:Корисник:タチコマ robot]]
[[ss:User:タチコマ robot]]
[[st:User:タチコマ robot]]
[[su:Pamaké:タチコマ robot]]
[[sv:Användare:タチコマ robot]]
[[sw:Mtumiaji:タチコマ robot]]
[[ta:பயனர்:タチコマ robot]]
[[te:వాడుకరి:タチコマ robot]]
[[tg:Корбар:タチコマ robot]]
[[th:ผู้ใช้:タチコマ robot]]
[[ti:User:タチコマ robot]]
[[tk:Ulanyjy:タチコマ robot]]
[[tl:Tagagamit:タチコマ robot]]
[[tn:User:タチコマ robot]]
[[tpi:User:タチコマ robot]]
[[tr:Kullanıcı:タチコマ robot]]
[[ts:User:タチコマ robot]]
[[tt:Кулланучы:タチコマ robot]]
[[ug:ئىشلەتكۈچى:タチコマ robot]]
[[uk:Користувач:タチコマ robot]]
[[ur:صارف:タチコマ robot]]
[[uz:Foydalanuvchi:タチコマ robot]]
[[vi:Thành viên:タチコマ robot]]
[[vo:Geban:タチコマ robot]]
[[wa:Uzeu:タチコマ robot]]
[[wo:Jëfandikukat:タチコマ robot]]
[[yi:באַניצער:タチコマ robot]]
[[za:用户:タチコマ robot]]
[[zh:User:タチコマ robot]]
[[zh-min-nan:User:タチコマ robot]]
[[zu:User:タチコマ robot]]
m8y2rs17u8yw9dlex7w1egqfvadlmau
Razgovor s korisnikom:タチコマ robot
3
8187
24916
2012-06-05T10:05:56Z
タチコマ robot
1016
Create
24916
wikitext
text/x-wiki
#REDIRECT [[User talk:とある白い猫]]
kkrg56volz0eoyi7rc9seh78x9sdbsx
Korisnik:とある白い猫
2
8188
24923
24921
2012-06-05T22:53:02Z
タチコマ robot
1016
r2.7.3) (Bot dodaje: af, am, an, ang, ar, ast, ay, az, be, bg, bn, br, ca, chr, co, cs, csb, cy, da, de, dv, el, eo, es, et, eu, fa, fi, fj, fo, fr, fy, ga, gd, gl, gn, gu, gv, ha, he, hi, hr, hsb, hu, hy, ia, id, ie, ik, io, is, it, iu, ja, jbo, ...
24923
wikitext
text/x-wiki
:<small>''This is the user page of [[Meta:User:とある白い猫]]''</small>
----
{{/bs}}
[[af:Gebruiker:とある白い猫]]
[[am:አባል:とある白い猫]]
[[an:Usuario:とある白い猫]]
[[ang:User:とある白い猫]]
[[ar:مستخدم:とある白い猫]]
[[ast:Usuariu:とある白い猫]]
[[ay:Usuario:とある白い猫]]
[[az:İstifadəçi:とある白い猫]]
[[be:Удзельнік:とある白い猫]]
[[bg:Потребител:とある白い猫]]
[[bn:ব্যবহারকারী:とある白い猫]]
[[br:Implijer:とある白い猫]]
[[ca:Usuari:とある白い猫]]
[[chr:User:とある白い猫]]
[[co:User:とある白い猫]]
[[cs:Uživatel:とある白い猫]]
[[csb:Brëkòwnik:とある白い猫]]
[[cy:Defnyddiwr:とある白い猫]]
[[da:Bruger:とある白い猫]]
[[de:Benutzer:とある白い猫]]
[[dv:މެމްބަރު:とある白い猫]]
[[el:Χρήστης:とある白い猫]]
[[en:User:とある白い猫]]
[[eo:Uzanto:とある白い猫]]
[[es:Usuario:とある白い猫]]
[[et:Kasutaja:とある白い猫]]
[[eu:Lankide:とある白い猫]]
[[fa:کاربر:とある白い猫]]
[[fi:Käyttäjä:とある白い猫]]
[[fj:User:とある白い猫]]
[[fo:Brúkari:とある白い猫]]
[[fr:Utilisateur:とある白い猫]]
[[fy:Meidogger:とある白い猫]]
[[ga:Úsáideoir:とある白い猫]]
[[gd:Cleachdaiche:とある白い猫]]
[[gl:Usuario:とある白い猫]]
[[gn:Puruhára:とある白い猫]]
[[gu:સભ્ય:とある白い猫]]
[[gv:Ymmydeyr:とある白い猫]]
[[ha:User:とある白い猫]]
[[he:משתמש:とある白い猫]]
[[hi:सदस्य:とある白い猫]]
[[hr:Suradnik:とある白い猫]]
[[hsb:Wužiwar:とある白い猫]]
[[hu:Szerkesztő:とある白い猫]]
[[hy:Մասնակից:とある白い猫]]
[[ia:Usator:とある白い猫]]
[[id:Pengguna:とある白い猫]]
[[ie:Usator:とある白い猫]]
[[ik:User:とある白い猫]]
[[io:Uzanto:とある白い猫]]
[[is:Notandi:とある白い猫]]
[[it:Utente:とある白い猫]]
[[iu:User:とある白い猫]]
[[ja:利用者:とある白い猫]]
[[jbo:User:とある白い猫]]
[[jv:Panganggo:とある白い猫]]
[[ka:მომხმარებელი:とある白い猫]]
[[kk:Қатысушы:とある白い猫]]
[[kl:Atuisoq:とある白い猫]]
[[km:អ្នកប្រើប្រាស់:とある白い猫]]
[[kn:ಸದಸ್ಯ:とある白い猫]]
[[ko:사용자:とある白い猫]]
[[ks:User:とある白い猫]]
[[ku:Bikarhêner:とある白い猫]]
[[kw:Devnydhyer:とある白い猫]]
[[ky:Колдонуучу:とある白い猫]]
[[la:Usor:とある白い猫]]
[[lb:Benotzer:とある白い猫]]
[[li:Gebroeker:とある白い猫]]
[[ln:Utilisateur:とある白い猫]]
[[lo:ຜູ້ໃຊ້:とある白い猫]]
[[lt:Naudotojas:とある白い猫]]
[[lv:Lietotājs:とある白い猫]]
[[mg:Mpikambana:とある白い猫]]
[[mi:User:とある白い猫]]
[[mk:Корисник:とある白い猫]]
[[ml:ഉപയോക്താവ്:とある白い猫]]
[[mn:Хэрэглэгч:とある白い猫]]
[[mr:सदस्य:とある白い猫]]
[[ms:Pengguna:とある白い猫]]
[[mt:Utent:とある白い猫]]
[[my:User:とある白い猫]]
[[na:User:とある白い猫]]
[[nah:Tlatequitiltilīlli:とある白い猫]]
[[nds:Bruker:とある白い猫]]
[[ne:प्रयोगकर्ता:とある白い猫]]
[[nl:Gebruiker:とある白い猫]]
[[nn:Brukar:とある白い猫]]
[[no:Bruker:とある白い猫]]
[[oc:Utilizaire:とある白い猫]]
[[om:User:とある白い猫]]
[[or:ବ୍ୟବହାରକାରୀ:とある白い猫]]
[[pa:ਮੈਂਬਰ:とある白い猫]]
[[pl:Wikipedysta:とある白い猫]]
[[pnb:User:とある白い猫]]
[[ps:کارن:とある白い猫]]
[[pt:Utilizador:とある白い猫]]
[[qu:Ruraq:とある白い猫]]
[[ro:Utilizator:とある白い猫]]
[[roa-rup:User:とある白い猫]]
[[ru:Участник:とある白い猫]]
[[rw:User:とある白い猫]]
[[sa:योजकः:とある白い猫]]
[[scn:Utenti:とある白い猫]]
[[sd:يوزر:とある白い猫]]
[[sg:Utilisateur:とある白い猫]]
[[sh:Korisnik:とある白い猫]]
[[si:පරිශීලක:とある白い猫]]
[[simple:User:とある白い猫]]
[[sk:Redaktor:とある白い猫]]
[[sl:Uporabnik:とある白い猫]]
[[sm:User:とある白い猫]]
[[so:User:とある白い猫]]
[[sq:Përdoruesi:とある白い猫]]
[[sr:Корисник:とある白い猫]]
[[ss:User:とある白い猫]]
[[st:User:とある白い猫]]
[[su:Pamaké:とある白い猫]]
[[sv:Användare:とある白い猫]]
[[sw:Mtumiaji:とある白い猫]]
[[ta:பயனர்:とある白い猫]]
[[te:వాడుకరి:とある白い猫]]
[[tg:Корбар:とある白い猫]]
[[th:ผู้ใช้:とある白い猫]]
[[ti:User:とある白い猫]]
[[tk:Ulanyjy:とある白い猫]]
[[tl:Tagagamit:とある白い猫]]
[[tn:User:とある白い猫]]
[[tpi:User:とある白い猫]]
[[tr:Kullanıcı:とある白い猫]]
[[ts:User:とある白い猫]]
[[tt:Кулланучы:とある白い猫]]
[[ug:ئىشلەتكۈچى:とある白い猫]]
[[uk:Користувач:とある白い猫]]
[[ur:صارف:とある白い猫]]
[[uz:Foydalanuvchi:とある白い猫]]
[[vi:Thành viên:とある白い猫]]
[[vo:Geban:とある白い猫]]
[[wa:Uzeu:とある白い猫]]
[[wo:Jëfandikukat:とある白い猫]]
[[yi:באַניצער:とある白い猫]]
[[za:用户:とある白い猫]]
[[zh:User:とある白い猫]]
[[zh-min-nan:User:とある白い猫]]
[[zu:User:とある白い猫]]
lgam688t09izho5z489gxcezf90f7c1
Razgovor s korisnikom:とある白い猫
3
8189
24922
2012-06-05T22:20:41Z
タチコマ robot
1016
Create
24922
wikitext
text/x-wiki
:<small>''This is the user talk page of [[Meta:User talk:とある白い猫]]''</small>
----
{{/bs}}
=Posts=
g7nz0b7yww0h23fhyz2qc55fs764lhh
Korisnik:とある白い猫/common.js
2
8190
24991
2012-06-11T02:02:54Z
Pathoschild
81
global JavaScript ([[m:User:Pathoschild/Scripts/Synchbot|requested by とある白い猫]])
24991
javascript
text/javascript
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:とある白い猫/global.js&action=raw&ctype=text/javascript');
demytpwy3j0kikuliopbe5oi6sufviy
Korisnik:Σ/common.js
2
8193
25050
2012-06-18T04:27:57Z
Pathoschild
81
global JavaScript ([[m:User:Pathoschild/Scripts/Synchbot|requested by Σ]])
25050
javascript
text/javascript
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:Σ/global.js&action=raw&ctype=text/javascript');
sek291bim4m77l7h0nbx6kyxp0ozaje
Š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
Korisnik:JAn Dudík
2
8243
25149
25144
2012-06-25T07:07:57Z
JAnDbot
878
r2.7.2) (Bot dodaje: af, am, an, ang, ar, ast, ay, az, be, bg, br, ca, chr, co, cs, csb, cy, da, de, dv, el, en, eo, es, et, eu, fa, fi, fj, fo, fr, fy, ga, gd, gl, gn, gu, gv, ha, he, hi, hr, hsb, hu, hy, ia, id, ie, ik, io, is, it, iu, ja, jbo, ...
25149
wikitext
text/x-wiki
[[:cs:User:JAn Dudík]], owner of [[user:JAnDbot]]
[[af:Gebruiker:JAn Dudík]]
[[am:አባል:JAn Dudík]]
[[an:Usuario:JAn Dudík]]
[[ang:User:JAn Dudík]]
[[ar:مستخدم:JAn Dudík]]
[[ast:Usuariu:JAn Dudík]]
[[ay:Usuario:JAn Dudík]]
[[az:İstifadəçi:JAn Dudík]]
[[be:Удзельнік:JAn Dudík]]
[[bg:Потребител:JAn Dudík]]
[[br:Implijer:JAn Dudík]]
[[ca:Usuari:JAn Dudík]]
[[chr:User:JAn Dudík]]
[[co:User:JAn Dudík]]
[[cs:Uživatel:JAn Dudík]]
[[csb:Brëkòwnik:JAn Dudík]]
[[cy:Defnyddiwr:JAn Dudík]]
[[da:Bruger:JAn Dudík]]
[[de:Benutzer:JAn Dudík]]
[[dv:މެމްބަރު:JAn Dudík]]
[[el:Χρήστης:JAn Dudík]]
[[en:User:JAn Dudík]]
[[eo:Uzanto:JAn Dudík]]
[[es:Usuario:JAn Dudík]]
[[et:Kasutaja:JAn Dudík]]
[[eu:Lankide:JAn Dudík]]
[[fa:کاربر:JAn Dudík]]
[[fi:Käyttäjä:JAn Dudík]]
[[fj:User:JAn Dudík]]
[[fo:Brúkari:JAn Dudík]]
[[fr:Utilisateur:JAn Dudík]]
[[fy:Meidogger:JAn Dudík]]
[[ga:Úsáideoir:JAn Dudík]]
[[gd:Cleachdaiche:JAn Dudík]]
[[gl:Usuario:JAn Dudík]]
[[gn:Puruhára:JAn Dudík]]
[[gu:સભ્ય:JAn Dudík]]
[[gv:Ymmydeyr:JAn Dudík]]
[[ha:User:JAn Dudík]]
[[he:משתמש:JAn Dudík]]
[[hi:सदस्य:JAn Dudík]]
[[hr:Suradnik:JAn Dudík]]
[[hsb:Wužiwar:JAn Dudík]]
[[hu:Szerkesztő:JAn Dudík]]
[[hy:Մասնակից:JAn Dudík]]
[[ia:Usator:JAn Dudík]]
[[id:Pengguna:JAn Dudík]]
[[ie:Usator:JAn Dudík]]
[[ik:User:JAn Dudík]]
[[io:Uzanto:JAn Dudík]]
[[is:Notandi:JAn Dudík]]
[[it:Utente:JAn Dudík]]
[[iu:User:JAn Dudík]]
[[ja:利用者:JAn Dudík]]
[[jbo:User:JAn Dudík]]
[[jv:Panganggo:JAn Dudík]]
[[ka:მომხმარებელი:JAn Dudík]]
[[kk:Қатысушы:JAn Dudík]]
[[kl:Atuisoq:JAn Dudík]]
[[km:អ្នកប្រើប្រាស់:JAn Dudík]]
[[kn:ಸದಸ್ಯ:JAn Dudík]]
[[ko:사용자:JAn Dudík]]
[[ks:User:JAn Dudík]]
[[ku:Bikarhêner:JAn Dudík]]
[[kw:Devnydhyer:JAn Dudík]]
[[ky:Колдонуучу:JAn Dudík]]
[[la:Usor:JAn Dudík]]
[[lb:Benotzer:JAn Dudík]]
[[li:Gebroeker:JAn Dudík]]
[[ln:Utilisateur:JAn Dudík]]
[[lo:ຜູ້ໃຊ້:JAn Dudík]]
[[lt:Naudotojas:JAn Dudík]]
[[lv:Lietotājs:JAn Dudík]]
[[mg:Mpikambana:JAn Dudík]]
[[mi:User:JAn Dudík]]
[[mk:Корисник:JAn Dudík]]
[[ml:ഉപയോക്താവ്:JAn Dudík]]
[[mn:Хэрэглэгч:JAn Dudík]]
[[mr:सदस्य:JAn Dudík]]
[[ms:Pengguna:JAn Dudík]]
[[mt:Utent:JAn Dudík]]
[[my:User:JAn Dudík]]
[[na:User:JAn Dudík]]
[[nah:Tlatequitiltilīlli:JAn Dudík]]
[[nds:Bruker:JAn Dudík]]
[[ne:प्रयोगकर्ता:JAn Dudík]]
[[nl:Gebruiker:JAn Dudík]]
[[nn:Brukar:JAn Dudík]]
[[no:Bruker:JAn Dudík]]
[[oc:Utilizaire:JAn Dudík]]
[[om:User:JAn Dudík]]
[[or:ବ୍ୟବହାରକାରୀ:JAn Dudík]]
[[pa:ਮੈਂਬਰ:JAn Dudík]]
[[pl:Wikipedysta:JAn Dudík]]
[[pnb:User:JAn Dudík]]
[[ps:کارن:JAn Dudík]]
[[pt:Utilizador:JAn Dudík]]
[[qu:Ruraq:JAn Dudík]]
[[ro:Utilizator:JAn Dudík]]
[[roa-rup:User:JAn Dudík]]
[[ru:Участник:JAn Dudík]]
[[rw:User:JAn Dudík]]
[[sa:योजकः:JAn Dudík]]
[[scn:Utenti:JAn Dudík]]
[[sd:يوزر:JAn Dudík]]
[[sg:Utilisateur:JAn Dudík]]
[[sh:Korisnik:JAn Dudík]]
[[si:පරිශීලක:JAn Dudík]]
[[simple:User:JAn Dudík]]
[[sk:Redaktor:JAn Dudík]]
[[sl:Uporabnik:JAn Dudík]]
[[sm:User:JAn Dudík]]
[[so:User:JAn Dudík]]
[[sq:Përdoruesi:JAn Dudík]]
[[ss:User:JAn Dudík]]
[[st:User:JAn Dudík]]
[[su:Pamaké:JAn Dudík]]
[[sv:Användare:JAn Dudík]]
[[sw:Mtumiaji:JAn Dudík]]
[[ta:பயனர்:JAn Dudík]]
[[te:వాడుకరి:JAn Dudík]]
[[tg:Корбар:JAn Dudík]]
[[th:ผู้ใช้:JAn Dudík]]
[[ti:User:JAn Dudík]]
[[tk:Ulanyjy:JAn Dudík]]
[[tl:Tagagamit:JAn Dudík]]
[[tn:User:JAn Dudík]]
[[tpi:User:JAn Dudík]]
[[tr:Kullanıcı:JAn Dudík]]
[[ts:User:JAn Dudík]]
[[tt:Кулланучы:JAn Dudík]]
[[ug:ئىشلەتكۈچى:JAn Dudík]]
[[uk:Користувач:JAn Dudík]]
[[ur:صارف:JAn Dudík]]
[[uz:Foydalanuvchi:JAn Dudík]]
[[vi:Thành viên:JAn Dudík]]
[[vo:Geban:JAn Dudík]]
[[wa:Uzeu:JAn Dudík]]
[[wo:Jëfandikukat:JAn Dudík]]
[[yi:באַניצער:JAn Dudík]]
[[za:用户:JAn Dudík]]
[[zh:User:JAn Dudík]]
[[zh-min-nan:User:JAn Dudík]]
[[zu:User:JAn Dudík]]
q5daiildowqjq0xgj5u2zptzo1idzdt
Razgovor s korisnikom:Alan ffm
3
8244
25145
2012-06-24T20:27:33Z
Kukac
962
Nova stranica: {{Dobrodošlica|~~~~}}
25145
wikitext
text/x-wiki
{{Dobrodošlica|[[Korisnik:Kukac|Kukac]] ([[Razgovor sa korisnikom:Kukac|razgovor]]) 20:27, 24 juni 2012 (KSV)}}
qr1pk9al3bfi55hd9nddgnicv8blk74
Razgovor s korisnikom:JAn Dudík
3
8245
45749
45744
2015-05-21T12:34:54Z
KWiki
1197
/* A note */
45749
wikitext
text/x-wiki
{{Dobrodošlica|[[Korisnik:Kukac|Kukac]] ([[Razgovor sa korisnikom:Kukac|razgovor]]) 20:27, 24 juni 2012 (KSV)}}
== A note ==
Hello. I have to thank you for your contribution here, but I also have to tell you that you made some mistakes in the names of categories/languages. I corrected them; you should check Recent changes or [https://bs.wiktionary.org/wiki/Posebno:Doprinos/KWiki my contribution] and remember what were the mistakes for future work. With duly respect. P. S: I work mostly on BS Wikipedia, but I am also an admin here and you can always ask me if you have some language questions. -- [[Korisnik:KWiki|KWiki]] ([[Razgovor sa korisnikom:KWiki|razgovor]]) 13:05, 15 maj 2015 (KSV)
:Hello, I used names of languages from [http://www.unicode.org/cldr/charts/26/summary/bs.html CLDR] with parser function eg. <nowiki>{{#language:kaa|bs}}</nowiki> (gives {{#language:kaa|bs}}). If there are incorrect names of languages, try to contact CLDR and propose change. [[Korisnik:JAn Dudík|JAn Dudík]] ([[Razgovor sa korisnikom:JAn Dudík|razgovor]]) 08:41, 21 maj 2015 (KSV)
:BTW, exists two ''romani'' languages: rmy: {{#language:rmy|bs}}/{{#language:rmy|en}} and rom: {{#language:rom|bs}}/{{#language:rom|en}}. [[Korisnik:JAn Dudík|JAn Dudík]] ([[Razgovor sa korisnikom:JAn Dudík|razgovor]]) 09:03, 21 maj 2015 (KSV)
:: Thank you. I will consider that. And I didn't know about Romani, so thanks again. :) -- [[Korisnik:KWiki|KWiki]] ([[Razgovor sa korisnikom:KWiki|razgovor]]) 12:34, 21 maj 2015 (KSV)
1hnexu310zsebhv93r0laz6uc421zd4
Korisnik:JAnDbot
2
8246
41415
41414
2014-11-25T22:26:05Z
JAnDbot
878
r2.7.6) (Bot dodaje: [[vec:Utente:JAnDbot]]
41415
wikitext
text/x-wiki
interwiki bot owned by [[User:JAn Dudík|JAn Dudík]] from cs.wikt. Please, contact my owner on his [[:cs:USer talk:JAn Dudík|czech talk page]]. Before complaining, please check if the removed / changed link wasn't a redirect, disambiguation page, or redundant.
[[af:Gebruiker:JAnDbot]]
[[am:አባል:JAnDbot]]
[[an:Usuario:JAnDbot]]
[[ang:User:JAnDbot]]
[[ar:مستخدم:JAnDbot]]
[[ast:Usuariu:JAnDbot]]
[[ay:Usuario:JAnDbot]]
[[az:İstifadəçi:JAnDbot]]
[[be:Удзельнік:JAnDbot]]
[[bg:Потребител:JAnDbot]]
[[bn:ব্যবহারকারী:JAnDbot]]
[[br:Implijer:JAnDbot]]
[[ca:Usuari:JAnDbot]]
[[chr:User:JAnDbot]]
[[co:Utente:JAnDbot]]
[[cs:Uživatel:JAnDbot]]
[[csb:Brëkòwnik:JAnDbot]]
[[cy:Defnyddiwr:JAnDbot]]
[[da:Bruger:JAnDbot]]
[[de:Benutzer:JAnDbot]]
[[dv:މެމްބަރު:JAnDbot]]
[[el:Χρήστης:JAnDbot]]
[[en:User:JAnDbot]]
[[eo:Uzanto:JAnDbot]]
[[es:Usuario:JAnDbot]]
[[et:Kasutaja:JAnDbot]]
[[eu:Lankide:JAnDbot]]
[[fa:کاربر:JAnDbot]]
[[fi:Käyttäjä:JAnDbot]]
[[fj:User:JAnDbot]]
[[fo:Brúkari:JAnDbot]]
[[fr:Utilisateur:JAnDbot]]
[[fy:Meidogger:JAnDbot]]
[[ga:Úsáideoir:JAnDbot]]
[[gd:Cleachdaiche:JAnDbot]]
[[gl:Usuario:JAnDbot]]
[[gn:Puruhára:JAnDbot]]
[[gu:સભ્ય:JAnDbot]]
[[gv:Ymmydeyr:JAnDbot]]
[[ha:User:JAnDbot]]
[[he:משתמש:JAnDbot]]
[[hi:सदस्य:JAnDbot]]
[[hr:Suradnik:JAnDbot]]
[[hsb:Wužiwar:JAnDbot]]
[[hu:Szerkesztő:JAnDbot]]
[[hy:Մասնակից:JAnDbot]]
[[ia:Usator:JAnDbot]]
[[id:Pengguna:JAnDbot]]
[[ie:Usator:JAnDbot]]
[[io:Uzanto:JAnDbot]]
[[is:Notandi:JAnDbot]]
[[it:Utente:JAnDbot]]
[[iu:User:JAnDbot]]
[[ja:利用者:JAnDbot]]
[[jbo:User:JAnDbot]]
[[jv:Panganggo:JAnDbot]]
[[ka:მომხმარებელი:JAnDbot]]
[[kk:Қатысушы:JAnDbot]]
[[kl:Atuisoq:JAnDbot]]
[[km:អ្នកប្រើប្រាស់:JAnDbot]]
[[kn:ಸದಸ್ಯ:JAnDbot]]
[[ko:사용자:JAnDbot]]
[[ks:رُکُن:JAnDbot]]
[[ku:Bikarhêner:JAnDbot]]
[[kw:Devnydhyer:JAnDbot]]
[[ky:Колдонуучу:JAnDbot]]
[[la:Usor:JAnDbot]]
[[lb:Benotzer:JAnDbot]]
[[li:Gebroeker:JAnDbot]]
[[ln:Utilisateur:JAnDbot]]
[[lo:ຜູ້ໃຊ້:JAnDbot]]
[[lt:Naudotojas:JAnDbot]]
[[lv:Lietotājs:JAnDbot]]
[[mg:Mpikambana:JAnDbot]]
[[mi:User:JAnDbot]]
[[mk:Корисник:JAnDbot]]
[[ml:ഉപയോക്താവ്:JAnDbot]]
[[mn:Хэрэглэгч:JAnDbot]]
[[mr:सदस्य:JAnDbot]]
[[ms:Pengguna:JAnDbot]]
[[mt:Utent:JAnDbot]]
[[my:User:JAnDbot]]
[[na:User:JAnDbot]]
[[nah:Tlatequitiltilīlli:JAnDbot]]
[[nds:Bruker:JAnDbot]]
[[ne:प्रयोगकर्ता:JAnDbot]]
[[nl:Gebruiker:JAnDbot]]
[[nn:Brukar:JAnDbot]]
[[no:Bruker:JAnDbot]]
[[oc:Utilizaire:JAnDbot]]
[[om:User:JAnDbot]]
[[or:ବ୍ୟବହାରକାରୀ:JAnDbot]]
[[pa:ਵਰਤੋਂਕਾਰ:JAnDbot]]
[[pl:Wikipedysta:JAnDbot]]
[[pnb:User:JAnDbot]]
[[ps:کارن:JAnDbot]]
[[pt:Utilizador:JAnDbot]]
[[qu:Ruraq:JAnDbot]]
[[ro:Utilizator:JAnDbot]]
[[roa-rup:User:JAnDbot]]
[[ru:Участник:JAnDbot]]
[[rw:User:JAnDbot]]
[[sa:योजकः:JAnDbot]]
[[scn:Utenti:JAnDbot]]
[[sd:يوزر:JAnDbot]]
[[sg:Utilisateur:JAnDbot]]
[[sh:Korisnik:JAnDbot]]
[[si:පරිශීලක:JAnDbot]]
[[simple:User:JAnDbot]]
[[sk:Redaktor:JAnDbot]]
[[sl:Uporabnik:JAnDbot]]
[[sm:User:JAnDbot]]
[[so:User:JAnDbot]]
[[sq:Përdoruesi:JAnDbot]]
[[sr:Корисник:JAnDbot]]
[[ss:User:JAnDbot]]
[[st:User:JAnDbot]]
[[su:Pamaké:JAnDbot]]
[[sv:Användare:JAnDbot]]
[[sw:Mtumiaji:JAnDbot]]
[[ta:பயனர்:JAnDbot]]
[[te:వాడుకరి:JAnDbot]]
[[tg:Корбар:JAnDbot]]
[[th:ผู้ใช้:JAnDbot]]
[[ti:User:JAnDbot]]
[[tk:Ulanyjy:JAnDbot]]
[[tl:Tagagamit:JAnDbot]]
[[tn:User:JAnDbot]]
[[tpi:Yusa:JAnDbot]]
[[tr:Kullanıcı:JAnDbot]]
[[ts:User:JAnDbot]]
[[tt:Кулланучы:JAnDbot]]
[[ug:ئىشلەتكۈچى:JAnDbot]]
[[uk:Користувач:JAnDbot]]
[[ur:صارف:JAnDbot]]
[[uz:Foydalanuvchi:JAnDbot]]
[[vec:Utente:JAnDbot]]
[[vi:Thành viên:JAnDbot]]
[[vo:Geban:JAnDbot]]
[[wa:Uzeu:JAnDbot]]
[[wo:Jëfandikukat:JAnDbot]]
[[yi:באַניצער:JAnDbot]]
[[zh:User:JAnDbot]]
[[zh-min-nan:用戶:JAnDbot]]
[[zu:User:JAnDbot]]
5tf56w0lnctcw81qp8x1o0v9u1gnd2x
Korisnik:Zscout370
2
8247
25152
2012-06-25T22:41:07Z
Hoo User Page Bot
985
Creating global user page, per request https://meta.wikimedia.org/w/index.php?diff=3800927
25152
wikitext
text/x-wiki
[[w:en:User:Zscout370|Zscout370]]
88eioklo2l6a0lkomuepwxcw2agm36e
Razgovor s korisnikom:Érico
3
8259
52470
25219
2015-11-02T11:09:38Z
Steinsplitter
1382
Steinsplitter premjestio je stranicu [[Razgovor sa korisnikom:Érico Júnior Wouters]] na [[Razgovor sa korisnikom:Érico]]: Automatsko premještanje stranice zbog preimenovanja korisnika „[[Special:CentralAuth/Érico Júnior Wouters|Érico Júnior W...
52470
wikitext
text/x-wiki
{{Dobrodošlica|[[Korisnik:Kukac|Kukac]] ([[Razgovor sa korisnikom:Kukac|razgovor]]) 19:27, 7 juli 2012 (KSV)}}
71yp5138hefpc5urjlz7s7t1pii81v6
Razgovor s korisnikom:Barras
3
8334
25554
2012-07-30T19:22:29Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
25554
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Ruslik0
3
8335
25555
2012-07-30T19:23:56Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
25555
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Korisnik:Lixer
2
8361
25684
2012-08-04T11:34:30Z
Lixer
1211
Nova stranica: {{Babel|sv|en-2|no-2|da-2|nn-1|fi-1|{{CONTENTLANGUAGE}}-0}} '''Lixer''', Swedish user from the Swedish Wikipedia. I will probably not be active here. Please leave a message on my...
25684
wikitext
text/x-wiki
{{Babel|sv|en-2|no-2|da-2|nn-1|fi-1|{{CONTENTLANGUAGE}}-0}}
'''Lixer''', Swedish user from the Swedish Wikipedia. I will probably not be active here.
Please leave a message on my talk page if you want something. If you need a quick response, you should contact me on my Swedish talk page or my English talk page.
-----
[[File:Animated-Flag-Sweden.gif|45px]] [http://sv.wikipedia.org/wiki/Anv%C3%A4ndare:Lixer Swedish Wikipedia] ([http://sv.wikipedia.org/wiki/Anv%C3%A4ndardiskussion:Lixer Talk])
[[File:Animated-Flag-United-Kingdom.gif|45px]] [http://en.wikipedia.org/wiki/User:Lixer English Wikipedia] ([http://en.wikipedia.org/wiki/User_talk:Lixer Talk])
-----
qnap53nwxzwd9e01begpyg1p8iz68rn
Korisnik:Mathonius
2
8380
25721
2012-08-06T02:26:09Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by Mathonius]])
25721
wikitext
text/x-wiki
{{#Babel:nl|en-3|fr-1|de-1|af-1|bs-0}}
<center>''I'm a member of the [[:m:SWMT|Small Wiki Monitoring Team]]. See [[:sulutil:Mathonius]] for more information. Feel free to leave me a message on [[:User talk:Mathonius|my talk page]].''<br />[[:m:User:Mathonius|(click here for my user page on meta.wikimedia)]]</center>
----
taucf8kw7gi8qf76hjuaaqds27c76iw
Korisnik:Osiris
2
8439
25803
2012-08-07T23:04:17Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by Osiris]])
25803
wikitext
text/x-wiki
Hello! I am <span class="plainlinks userlinks">[[User:Osiris|Osiris]] ([[User talk:Osiris|talk]] · [[Special:Contributions/Osiris|contribs]] · [[Special:DeletedContributions/Osiris|deleted contribs]] · [{{fullurl:Special:Log|user=Osiris}} logs] · [{{fullurl:Special:AbuseLog|wpSearchUser=Osiris}} edit filter log] · [[Special:Block/Osiris|block user]] · [{{fullurl:Special:Log|type=block&page=User:Osiris}} block log])</span>.
Most of my activity on this project will be related to patrolling recent changes and reverting vandalism. You will find me most active on the [[w:en:User talk:Osiris|English]] and [[w:simple:User talk:Osiris|Simple English Wikipedias]], [[commons:User talk:Osiris|Commons]], [[m:User talk:Osiris|Meta]] and [[incubator:User talk:Osiris|Incubator]]. You can post to my talk page here, but I might be slow in replying.
afipsvbpoyfq1p4ynv7lj0kn08mjlg2
Šablon:ba-dekl
10
8459
25878
2012-08-12T13:56:33Z
Barishan
287
Nova stranica: <div class="NavFrame" style="width:65%"> <div class="NavHead" style="" >Deklinacija: {{PAGENAME}}</div> <div class="NavContent"> {| style="background:#F9F9F9; text-align:center; w...
25878
wikitext
text/x-wiki
<div class="NavFrame" style="width:65%">
<div class="NavHead" style="" >Deklinacija: {{PAGENAME}}</div>
<div class="NavContent">
{| style="background:#F9F9F9; text-align:center; width:100%" class="inflection-table"
|-
! style="width:33%;background:#DEDEDE" |
! style="background:#DEDEDE" | Jednina
! style="background:#DEDEDE" | Množina
|-
! style="background:#DEDEDE" | Nominativ
| {{{1}}} || {{{2}}}
|-
! style="background:#DEDEDE" | Genitiv
| {{{3}}} || {{{4}}}
|-
! style="background:#DEDEDE" | Dativ
| {{{5}}} || {{{6}}}
|-
! style="background:#DEDEDE" | Akuzativ
| {{{7}}} || {{{8}}}
|-
! style="background:#DEDEDE" | Lokativ
| {{{9}}} || {{{10}}}
|-
! style="background:#DEDEDE" | Ablativ
| {{{11}}} || {{{12}}}
|}
</div></div><noinclude>
[[Category:Šabloni deklinacije (baškirski)]]</noinclude>
by8bf9gyxu01jfn48j7o9a9eju459ly
Razgovor s korisnikom:Jitrixis
3
8734
26472
2012-08-23T22:42:37Z
Jitrixis
1220
Nova stranica: <center><table style="width:95%;border-style:solid;border-radius:10px;background-color:{{User:Jitrixis|cadre}};border-color:{{User:Jitrixis|bordure}};"> <tr> <td style="width:25%;p...
26472
wikitext
text/x-wiki
<center><table style="width:95%;border-style:solid;border-radius:10px;background-color:{{User:Jitrixis|cadre}};border-color:{{User:Jitrixis|bordure}};">
<tr>
<td style="width:25%;padding:20px;color:red"><center><big><big>'''This user doesn't speak very well your language.'''</big></big><br/><br/>But he can speak another language (see Babel).</center><br/>→ <span class="plainlinks">[http://en.wikipedia.org/wiki/User:Jitrixis Main page in english]</span><br/>→ <span class="plainlinks">[http://fr.wikipedia.org/wiki/Utilisateur:Jitrixis Main page in french]</span><br/>→ <span class="plainlinks">[http://fr.wikipedia.org/wiki/Discussion_utilisateur:Jitrixis Talk page in multilinguage]</span></td>
<td style="width:50%;padding:20px"><center><big><big>{{User:Jitrixis|nom|trad}} '''[[Julien]] G.''' aka '''Jitrixis''' {{User:Jitrixis|noms|trad}}</big></big><br/><br/>
Ma langue maternelle est le '''Français''', but I'm able to speek with an advanced level of '''English''' und Ich kann sprechen ein wenig '''Deutsch'''.
{{User:Jitrixis|nee|trad}}.
</center></td>
<td style="width:25%"><center>{{#babel:{{User:Jitrixis|lang|trad}}-0|fr|en-3|de-1}}</center></td>
</tr>
<tr>
<td colspan="3"><center><table class="wikitable centre" style="width:80%;border:1px black;">
<tr>
<td style="border-color:{{User:Jitrixis|bordure}};width:100%;text-align:center;vertical-align:middle;background-color:{{User:Jitrixis|onglets}}">
<big>'''<span class="plainlinks">[http://fr.wikipedia.org/w/index.php?title=Discussion_utilisateur:{{PAGENAMEE}}&action=edit§ion=new <span style="color:{{User:Jitrixis/Couleurs|police}}">New Section</span></span>'''</big>
</td>
</tr>
</table></center></td>
</tr>
</table></center>
<center><table class="wikitable centre" style="border-radius:8px;width:80%;border:1px black;">
<tr>
<td style="border-color:{{User:Jitrixis|bordure}};width:100%;text-align:center;vertical-align:middle;color:red;background-color:{{User:Jitrixis|cadre}}">
<big><big>[[File:Nuvola apps important.svg|90px|right]][[File:Nuvola apps important.svg|90px|left]]'''Thank you to writing nothing on this page.'''</big>
By clicking on new section you will be redirected on the French talk page of Jitrixis.
However you can still writing your messages in English or in another language which he understands.</big>
</td>
</tr>
</table></center>
51k0y2cpfg7771p9oxoso9vo1cdqxc8
Razgovor s korisnikom:KWiki
3
8781
68159
67462
2022-01-04T18:10:27Z
MediaWiki message delivery
1685
/* How we will see unregistered users */ novi odlomak
68159
wikitext
text/x-wiki
<div style="border:1px solid #999999;background-color:#F5F5F5;padding:10px;">
[[Datoteka:Wiktionary-logo-en.svg|100px|lijevo]]<big>'''Dobrodošli na Wikirječnik na [[w:Bosanski jezik|bosanskom jeziku]] – slobodan rječnik, leksikon i tezaurus!'''</big><br>
<div style="border:1px solid #999999;background-color:#B0E0E6;padding:8px;">Pozdrav, {{PAGENAME}}!<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 [[Vikirječnik:Uređivanje|kako članci trebaju izgledati]]. '''Slobodno''' radite na Wikirječniku i '''razgovarajte''' s drugima.
Više informacija dostupno je na '''[[w:Wikipedia:Čaršija|Čaršiji]]''', gdje možete razgovarati s drugim korisnicima. Možete kontaktirati i neke 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 interesuje, čime se bavite i sl. Molimo Vas da se potpisujete na stranicama za razgovor korištenjem '''<tt><nowiki>~~~~</nowiki></tt>''' (četiri znaka ''tilda'').
Radite zajedno s 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:Recentchanges|nedavne izmjene]], gdje možete vidjeti nedavne aktivnosti na Wikipediji.
Prilikom [[Posebno:Upload|postavljanja]] slika koristite ispravne [[w:Wikipedia:Šabloni za slike|šablone za licencu]] i vodite računa o '''[[w:Wikipedia:Autorska prava|autorskim pravima]]''' prilikom pisanja članaka. Članci ili slike koje krše autorska prava bit će obrisani. Još jednom Vas lijepo pozdravljamo. {{#if:-- [[Korisnik:Bugoslav|Bugoslav]] 22:40, 9 septembar 2011 (KSV)|-- [[Korisnik:Bugoslav|Bugoslav]] 22:40, 9 septembar 2011 (KSV)}}
{|- style="background-color:#B0E0E6; text-align:center;"
| style="background: #F0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Slika: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;" | [[Slika:View-refresh.svg|18px]] <br/>[[Posebno:Recentchanges|Nedavne izmjene]]
| style="background: #F0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Slika:Wiktionary-logo.svg|18px]] <br/>[[w:Pravopis bosanskog jezika|Pravopis]]
| style="background: #E0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Slika:Nuvola apps kmessedwords.png|18px]] <br/>[[w:Wikipedia:Jezički standardi na bosanskoj Wikipediji|Jezički standardi]]
| style="background: #F0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Slika:čć.png|18px]] <br/>[[w:Wikipedia:Pravilno-nepravilno u bosanskome jeziku|Pravilno-nepravilno]]
| style="background: #E0FFFF; border:1px solid silver; 18px; font: 90% Verdana; width:16%; height:30;" | [[Slika: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 />[[Razgovor o šablonu:Dobrodošlica|Kliknite ovdje]].
|}</div></div>
==Glagoli==
Zdravoo! Kako si? I've made a conjugation template for Turkish verbs, it'd be great if you could check [[sevmek]]. Something's incorrect or weird on that template? I found the tenses online, so... :D I'm not that sure. And I know, the tables look a bit crushed, working on it :D [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 12:43, 27 august 2012 (KSV)
: Sorry for being late. Work, work, work... :) I can't do anything with the template "tr-glagol" because, when I open it for editing, there's nothing to edit. :-) I don't know if you did something with it meanwhile (just send me the link if you have something for me ;)). Also, you are not the only one who's active here ;) - you're just the only regular one. :D I just don't have time for all Wiki-projects, although the wish is in the heart. ;) -- [[Korisnik:KWiki|KWiki]] ([[Razgovor sa korisnikom:KWiki|razgovor]]) 12:08, 8 septembar 2012 (KSV)
:: This is the main template, [[Šablon:tr-konj-sug]] and the one that is editable, the conjugations in the articles (for example in [[vermek]]) are automatically shown. Well so sorry, this sole activeness makes me feel kind of alone :D Ah I feel you. I guess I won't be able to be here that much, after 2-3 weeks. [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 23:13, 10 septembar 2012 (KSV)
::: Hehe, I understand that feeling. :) Well, I made just one repeated correction in the template because I remembered that I don't know anything about Turkish grammar (including Turkish /names for/ tenses). :-) So, I left the rest of it unchanged - it's no problem for it to stay like this. You did quite good job here. If I had some medals, I know who would receive them. :-) Stay well, arkadaș. :) I will continue to check the things here from time to time, insha'llah. -- [[Korisnik:KWiki|KWiki]] ([[Razgovor sa korisnikom:KWiki|razgovor]]) 23:40, 10 septembar 2012 (KSV)
:::: Well, thanks a lot :) I wish I spoke Bosnian better to contribute more, but that's all I got :D Anyway, the tenses are respectively '''Simple Present, Present Continuous, Simple Past, Past Continuous''' and '''Future'''. And about your username, I'll try to do something but I'm really ignorant about this rules and formalities stuff :D [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 23:00, 11 septembar 2012 (KSV)
Hey, it's so good to know that you're still (-occasionally-) around here :) Well I guess we have a lot more languages to contribute now here in bs.wiktionary, I'm trying to prepare declension templates in several languages. I also want to prepare something like [[Šablon:Broj-bs]], just in the same form with [[Šablon:Broj-tr]]. Would you be interested in getting this one? Because I don't want to make any mistakes in Bosnian numerals. As you see, everything's same here. How is it going on your side? :) [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 03:09, 12 novembar 2012 (KSV)
: OK. Just like before: when you finish, just (b)link me. :)) I'll check when I got time. Mistakes are there to be corrected, so take it easy. :) On my side? Well, work is chasing me around. :) I'm trying to get away, but he's quite persistent. :) -- [[Korisnik:KWiki|KWiki]] ([[Razgovor sa korisnikom:KWiki|razgovor]]) 09:51, 12 novembar 2012 (KSV)
::Uh, you really need a break at your work, I see it's tiring you already :) Well actually I created [[Šablon:Broj-bs]], no, I have to admit that I just copy-pasted it from the [http://eu.wiktionary.org/wiki/Txantiloi:Kroazierazko_zenbaki_aurkibidea Basque page] :) But I'm not sure about the "i". Should it be, for example, [[sedamdeset i jedan]] or just [[sedamdeset jedan]]? And are there any differences between Bosnian, Croatian and Serbian cardinal numbers? I thought that "i" might be one of them, among other (probable) spelling differences. [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 02:18, 13 novembar 2012 (KSV)
::: There's no difference, with or without "i" - both is correct in B/C/S(/M). But, language is economical so it's more common to use numbers without "i". We usually use "i" in numbers when we want to emphasize (second) number. I'll check the template later. -- [[Korisnik:KWiki|KWiki]] ([[Razgovor sa korisnikom:KWiki|razgovor]]) 13:51, 13 novembar 2012 (KSV)
::::Thank you so much! That's going to be awesome! :) [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 00:44, 19 novembar 2012 (KSV)
::::: Not at all. I'm here to help (occasionally). :) Check [http://bs.wikipedia.org/wiki/Jedan this]. ;) --[[Korisnik:KWiki|KWiki]] ([[Razgovor sa korisnikom:KWiki|razgovor]]) 00:56, 19 novembar 2012 (KSV)
== babel ==
Za početak stavljaj odma te babele na svojoj korisničkoj stranici. Na wiki rječniku si čovječe. :) -- [[Korisnik:Edinwiki|Edinwiki]] ([[Razgovor sa korisnikom:Edinwiki|razgovor]]) 22:08, 9 april 2013 (KSV)
: Hahaha. :) OK. A ti si fakat munja od čovjeka. :) "Mr. Project Man". :) -- [[Korisnik:KWiki|KWiki]] ([[Razgovor sa korisnikom:KWiki|razgovor]]) 22:18, 9 april 2013 (KSV)
== botovski poslovi ==
Ako tokom rada, bilo šta nađeš da misliš da se može automatizirati, samo mi javi. Pošto se još nisam udubio u rad ovdje ne znam kvakve su ove mogućnosti, ali očekivam da se dosta toga može automatski odraditi. Samo eto da znaš. :) -- [[Korisnik:Edinwiki|Edinwiki]] ([[Razgovor sa korisnikom:Edinwiki|razgovor]]) 20:18, 14 april 2013 (KSV)
== Verb forms ==
Hi there, everything seems OK in conjugated verb forms such as [[förstod]] and [[förståtts]]? I'm not exactly sure if they're really Particip prezenta and P. preterita, so the conjugation table in [[förstå]] needs to be checked, too :) Thanks in advance! [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 23:24, 18 april 2013 (KSV)
: Checked. ;) ''förstå'' is OK. Although I don't have a clue about Swedish grammar. :D But I do have some clue about grammar. :) -- [[Korisnik:KWiki|KWiki]] ([[Razgovor sa korisnikom:KWiki|razgovor]]) 23:58, 18 april 2013 (KSV)
:: Thanks a lot, as always! :) [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 19:23, 19 april 2013 (KSV)
Just a quick check, is that correct about izborni/alternativni pravopisi in {{FAkar|[[ایسیم]]}} ? Or should it be just the opposite? :D [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 14:02, 22 april 2013 (KSV)
:Oops! :D You're the best! [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 17:41, 23 april 2013 (KSV)
:: I know, I know... :D -- [[Korisnik:KWiki|KWiki]] ([[Razgovor sa korisnikom:KWiki|razgovor]]) 17:46, 23 april 2013 (KSV)
== objedinio račune ==
pa između ostalih, i ovdje navratio--[[Korisnik:Palapa|Palapa]] ([[Razgovor sa korisnikom:Palapa|razgovor]]) 18:17, 6 maj 2013 (KSV)
== pe(t)ci ==
Da provjeriš: [http://bs.wiktionary.org/w/index.php?title=petak&diff=35864&oldid=32339] -- [[Korisnik:Edinwiki|Edinwiki]] ([[Razgovor sa korisnikom:Edinwiki|razgovor]]) 11:41, 3 juni 2013 (KSV)
== Wikirječnik i Wikidata ==
Postavljena je diskusija uvezi uvođenja Wikidata na Wikirječnik, i šta bi se sve moglo uraditi. Ako te interesuje pogledaj [http://www.wikidata.org/wiki/Wikidata:Wiktionary ovdje] (diskusija je na stranici za razgovor). -- [[Korisnik:Edinwiki|Edinwiki]] ([[Razgovor sa korisnikom:Edinwiki|razgovor]]) 09:33, 24 juni 2013 (KSV)
== Hi! ==
Hey there! It's been a long time, how are you doing? [[Korisnik:Barishan|Barishan]] ([[Razgovor s korisnikom:Barishan|razgovor]]) 16:40, 8 juni 2020 (KSV)
: [[Korisnik:Barishan|Barishan]]: Well, this is one of the longest "a-whiles" that I saw. :-)) I am good (thanks for asking) and I wish the same for you. Same old, same old: Monday–Friday busy, weekends free. You did not miss much. What's up over there? – [[Korisnik:KWiki|KWiki]] ([[Razgovor s korisnikom:KWiki|razgovor]]) 23:26, 8 juni 2020 (KSV)
:: It is indeed a long one! Well, the routine goes on, except we've been experiencing some extraordinary days lately :) But I am OK. [[Korisnik:Barishan|Barishan]] ([[Razgovor s korisnikom:Barishan|razgovor]]) 15:21, 13 juni 2020 (KSV)
== Bosanski rječnik ==
Speaking of pravopis, is there a good online monolingual dictionary of the Bosnian language? Or maybe an app? Although I do it rarely, it's still a real challenge for me to add definitions when I create Bosnian words. And is there an online (or app) bilingual (EN-BS) dictionary you would recommend?
Also, what is the singular form of "knjigoljupci"? Thank you so much again in advance! [[Korisnik:Barishan|Barishan]] ([[Razgovor s korisnikom:Barishan|razgovor]]) 13:11, 20 juni 2020 (KSV)
: @[[Korisnik:Barishan|Barishan]]: In my work I mostly use [http://hjp.znanje.hr/index.php?show=main Hrvatski jezični portal (HJP)]. Yes, it is for Croatian, but the differences are very minor; I recommend it to everyone. Go to "Upute o čitanju rječničke baze" to see details about their word base (I will translate what you can't understand, just send me the sentence/s/ in question.) I don't know about apps – I never looked for them. Singular of "knjigoljupci" is "knjigoljubac" ("a" in ''-ac'' disappears from most cases except from N sg. and G pl /knjigoljubaca/; consequently, voiced B is then influenced by unvoiced C and changes to its unvoiced pair, P.) – [[Korisnik:KWiki|KWiki]] ([[Razgovor s korisnikom:KWiki|razgovor]]) 14:06, 20 juni 2020 (KSV)
:: When you are checking a word on HJP, for many of them there is a complete declination or conjugation (click on "Izvedeni oblici"). – [[Korisnik:KWiki|KWiki]] ([[Razgovor s korisnikom:KWiki|razgovor]]) 14:13, 20 juni 2020 (KSV)
::: Thanks a lot! I also thought it'd be ''-ac'' but I searched it as "knjigoljupac" instead. Now it is clear, ''lju'''b'''iti'' of course. Yes I knew about and was using HJP, just can't always be sure about the differences between bosanski and hrvatski. [[Korisnik:Barishan|Barishan]] ([[Razgovor s korisnikom:Barishan|razgovor]]) 14:22, 20 juni 2020 (KSV)
:::: I know, but you can always ask me here when you are not sure. :) (Although, I might not answer immediately every time.) – [[Korisnik:KWiki|KWiki]] ([[Razgovor s korisnikom:KWiki|razgovor]]) 14:28, 20 juni 2020 (KSV)
::::: A quick request then, can you please translate the example of Evlija Čelebija in the etimologija section of [[denizanası]]? I wrote it in English, and I thought it was a hilarious euphemism. [[Korisnik:Barishan|Barishan]] ([[Razgovor s korisnikom:Barishan|razgovor]]) 15:25, 20 juni 2020 (KSV)
:::::: Hahaha :-D :-D It really means... this? Really? What a language! :-)) ;-) – [[Korisnik:KWiki|KWiki]] ([[Razgovor s korisnikom:KWiki|razgovor]]) 15:41, 20 juni 2020 (KSV)
: I know right! I had no idea either... The modern word itself sounds funny as well ("morska majka") so I just wanted to know where it came from, couldn't be more satisfied with any research! [[Korisnik:Barishan|Barishan]] ([[Razgovor s korisnikom:Barishan|razgovor]]) 15:57, 20 juni 2020 (KSV)
== How we will see unregistered users ==
<div lang="en" dir="ltr" class="mw-content-ltr">
<section begin=content/>
Hi!
You get this message because you are an admin on a Wikimedia wiki.
When someone edits a Wikimedia wiki without being logged in today, we show their IP address. As you may already know, we will not be able to do this in the future. This is a decision by the Wikimedia Foundation Legal department, because norms and regulations for privacy online have changed.
Instead of the IP we will show a masked identity. You as an admin '''will still be able to access the IP'''. There will also be a new user right for those who need to see the full IPs of unregistered users to fight vandalism, harassment and spam without being admins. Patrollers will also see part of the IP even without this user right. We are also working on [[m:IP Editing: Privacy Enhancement and Abuse Mitigation/Improving tools|better tools]] to help.
If you have not seen it before, you can [[m:IP Editing: Privacy Enhancement and Abuse Mitigation|read more on Meta]]. If you want to make sure you don’t miss technical changes on the Wikimedia wikis, you can [[m:Global message delivery/Targets/Tech ambassadors|subscribe]] to [[m:Tech/News|the weekly technical newsletter]].
We have [[m:IP Editing: Privacy Enhancement and Abuse Mitigation#IP Masking Implementation Approaches (FAQ)|two suggested ways]] this identity could work. '''We would appreciate your feedback''' on which way you think would work best for you and your wiki, now and in the future. You can [[m:Talk:IP Editing: Privacy Enhancement and Abuse Mitigation|let us know on the talk page]]. You can write in your language. The suggestions were posted in October and we will decide after 17 January.
Thank you.
/[[m:User:Johan (WMF)|Johan (WMF)]]<section end=content/>
</div>
18:10, 4 januar 2022 (KSV)
<!-- Message sent by User:Johan (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:Johan_(WMF)/Target_lists/Admins2022(1)&oldid=22532492 -->
ir4wlaqu4ep2ma29a8l95k6d2zd7r0e
Korisnik:Malafaya
2
8857
39733
37782
2014-05-26T12:47:00Z
MalafayaBot
1248
r2.7.5) (Bot dodaje: [[sh:Korisnik:Malafaya]]
39733
wikitext
text/x-wiki
{{#babel:pt|en-3|fr-2|es-2|ka-1|eo-1|io-1|vo-1|bs-0}}
==Links==
* [http://www.wikistatistics.net/wiktionary/bs/articles/90 Article count history]
==Keywords==
* Animals = [[:Kategorija:Životinje]]
* Birds = [[:Kategorija:Ptice]]
* Countries = [[:Kategorija:Države]]
* Mammals = [[:Kategorija:Sisari]]
* Months = [[:Kategorija:Mjeseci]]
* Vertebrates = [[:Kategorija:Kičmenjaci]]
==Fame==
* Number of '''bs''' interwikis in the [[:pt:|Portuguese Wiktionary]]
** 26/08/2012: Articles (ns:0): '''921'''; Categories (ns:14): '''306'''
** 05/09/2012: Articles (ns:0): '''944'''; Categories (ns:14): '''337'''
** 24/09/2012: Articles (ns:0): '''1002'''; Categories (ns:14): '''364'''
** 15/10/2013: Articles (ns:0): '''1346'''; Categories (ns:14): '''432'''
<!------->
[[an:Usuario:Malafaya]]
[[ast:Usuariu:Malafaya]]
[[az:İstifadəçi:Malafaya]]
[[be:Удзельнік:Malafaya]]
[[bg:Потребител:Malafaya]]
[[br:Implijer:Malafaya]]
[[ca:Usuari:Malafaya]]
[[cs:Uživatel:Malafaya]]
[[da:Bruger:Malafaya]]
[[de:Benutzer:Malafaya]]
[[el:Χρήστης:Malafaya]]
[[en:User:Malafaya]]
[[eo:Uzanto:Malafaya]]
[[es:Usuario:Malafaya]]
[[et:Kasutaja:Malafaya]]
[[eu:Lankide:Malafaya]]
[[fi:Käyttäjä:Malafaya]]
[[fo:Brúkari:Malafaya]]
[[fr:Utilisateur:Malafaya]]
[[fy:Meidogger:Malafaya]]
[[ga:Úsáideoir:Malafaya]]
[[gl:Usuario:Malafaya]]
[[hr:Suradnik:Malafaya]]
[[hu:Szerkesztő:Malafaya]]
[[ia:Usator:Malafaya]]
[[id:Pengguna:Malafaya]]
[[io:Uzanto:Malafaya]]
[[is:Notandi:Malafaya]]
[[it:Utente:Malafaya]]
[[ja:利用者:Malafaya]]
[[ka:მომხმარებელი:Malafaya]]
[[ko:사용자:Malafaya]]
[[ku:Bikarhêner:Malafaya]]
[[lb:Benotzer:Malafaya]]
[[li:Gebroeker:Malafaya]]
[[lt:Naudotojas:Malafaya]]
[[mg:Mpikambana:Malafaya]]
[[mk:Корисник:Malafaya]]
[[nds:Bruker:Malafaya]]
[[nl:Gebruiker:Malafaya]]
[[nn:Brukar:Malafaya]]
[[no:Bruker:Malafaya]]
[[oc:Utilizaire:Malafaya]]
[[om:User:Malafaya]]
[[pt:Utilizador:Malafaya]]
[[ro:Utilizator:Malafaya]]
[[ru:Участник:Malafaya]]
[[sh:Korisnik:Malafaya]]
[[simple:User:Malafaya]]
[[sk:Redaktor:Malafaya]]
[[sr:Корисник:Malafaya]]
[[sv:Användare:Malafaya]]
[[tr:Kullanıcı:Malafaya]]
[[uk:Користувач:Malafaya]]
[[vec:Utente:Malafaya]]
[[vo:Geban:Malafaya]]
[[zh:User:Malafaya]]
8uvjgankmec5k6h6ubp0y2j20ropxn5
Razgovor s korisnikom:Avocato
3
8859
26846
2012-08-30T21:25:56Z
Avocato
952
Creating
26846
wikitext
text/x-wiki
<div dir=ltr><div style="background: #FFFFFF; text-align: center; font-family: Calibri; font-size: 1.6em; font-weight: bold;"><div style="padding: 5px; border: 3px solid #003882; -moz-border-radius: 10px; -webkit-border-radius: 10px; border-radius: 10px;">Please, Do not leave your message here. You can contact me using any of the following:
<div style="margin-top: 10px; padding: 2px; background: #f4f3f0; border: 2px solid #fb139e; -moz-border-radius: 10px; -webkit-border-radius: 10px; border-radius: 10px;">[[w:ar:User talk:Avocato|w:ar:user talk:Avocato]] | [[w:en:User talk:Avocato|w:en:user talk:Avocato]] | [[m:User talk:Avocato|meta:user talk:Avocato]]</div></div></div></div>
3hadats3wp6ted874jwt08stykc5rdi
Šablon:Sin
10
8864
26872
26871
2012-08-31T08:52:12Z
Barishan
287
26872
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>
kjref7h1b4nkri4nvpfo2h5z9ks8itn
Korisnik:AvocatoBot
2
8899
27534
26939
2012-09-09T06:45:12Z
AvocatoBot
991
r2.7.3) (Bot dodaje: af, am, an, ang, ast, ay, az, be, bg, bn, br, ca, chr, co, cs, csb, cy, da, de, dv, el, en, eo, es, et, eu, fa, fi, fj, fo, fr, fy, ga, gd, gl, gn, gu, gv, ha, he, hi, hr, hsb, hu, hy, ia, id, ie, ik, io, is, it, iu, ja, jbo, jv, k...
27534
wikitext
text/x-wiki
<div dir=ltr>
{| width="80%" align="center" style="text-align:justify; border:1px solid #aaaaaa; background-color:#f9f9f9; color:#000000;"
|- padding:1em;padding-top:0.5em;padding-right:2em;padding-left:3em"
|[[File:Crystal Clear action run.svg|60px|link=]]
|'''This user account is a [[w:en:Wikipedia:Bot policy|bot]] operated by [[w:ar:مستخدم:Avocato|Avocato]] ([[w:ar:نقاش المستخدم:Avocato|talk]]).'''<br />
It is a legitimate alternative account, used to make repetitive automated or semi-automated edits that would be extremely tedious to do manually.
|}
</div>
[[af:Gebruiker:AvocatoBot]]
[[am:አባል:AvocatoBot]]
[[an:Usuario:AvocatoBot]]
[[ang:User:AvocatoBot]]
[[ar:مستخدم:AvocatoBot]]
[[ast:Usuariu:AvocatoBot]]
[[ay:Usuario:AvocatoBot]]
[[az:İstifadəçi:AvocatoBot]]
[[be:Удзельнік:AvocatoBot]]
[[bg:Потребител:AvocatoBot]]
[[bn:ব্যবহারকারী:AvocatoBot]]
[[br:Implijer:AvocatoBot]]
[[ca:Usuari:AvocatoBot]]
[[chr:User:AvocatoBot]]
[[co:User:AvocatoBot]]
[[cs:Uživatel:AvocatoBot]]
[[csb:Brëkòwnik:AvocatoBot]]
[[cy:Defnyddiwr:AvocatoBot]]
[[da:Bruger:AvocatoBot]]
[[de:Benutzer:AvocatoBot]]
[[dv:މެމްބަރު:AvocatoBot]]
[[el:Χρήστης:AvocatoBot]]
[[en:User:AvocatoBot]]
[[eo:Uzanto:AvocatoBot]]
[[es:Usuario:AvocatoBot]]
[[et:Kasutaja:AvocatoBot]]
[[eu:Lankide:AvocatoBot]]
[[fa:کاربر:AvocatoBot]]
[[fi:Käyttäjä:AvocatoBot]]
[[fj:User:AvocatoBot]]
[[fo:Brúkari:AvocatoBot]]
[[fr:Utilisateur:AvocatoBot]]
[[fy:Meidogger:AvocatoBot]]
[[ga:Úsáideoir:AvocatoBot]]
[[gd:Cleachdaiche:AvocatoBot]]
[[gl:Usuario:AvocatoBot]]
[[gn:Puruhára:AvocatoBot]]
[[gu:સભ્ય:AvocatoBot]]
[[gv:Ymmydeyr:AvocatoBot]]
[[ha:User:AvocatoBot]]
[[he:משתמש:AvocatoBot]]
[[hi:सदस्य:AvocatoBot]]
[[hr:Suradnik:AvocatoBot]]
[[hsb:Wužiwar:AvocatoBot]]
[[hu:Szerkesztő:AvocatoBot]]
[[hy:Մասնակից:AvocatoBot]]
[[ia:Usator:AvocatoBot]]
[[id:Pengguna:AvocatoBot]]
[[ie:Usator:AvocatoBot]]
[[ik:User:AvocatoBot]]
[[io:Uzanto:AvocatoBot]]
[[is:Notandi:AvocatoBot]]
[[it:Utente:AvocatoBot]]
[[iu:User:AvocatoBot]]
[[ja:利用者:AvocatoBot]]
[[jbo:User:AvocatoBot]]
[[jv:Panganggo:AvocatoBot]]
[[ka:მომხმარებელი:AvocatoBot]]
[[kk:Қатысушы:AvocatoBot]]
[[kl:Atuisoq:AvocatoBot]]
[[km:អ្នកប្រើប្រាស់:AvocatoBot]]
[[kn:ಸದಸ್ಯ:AvocatoBot]]
[[ko:사용자:AvocatoBot]]
[[ks:User:AvocatoBot]]
[[ku:Bikarhêner:AvocatoBot]]
[[kw:Devnydhyer:AvocatoBot]]
[[ky:Колдонуучу:AvocatoBot]]
[[la:Usor:AvocatoBot]]
[[lb:Benotzer:AvocatoBot]]
[[li:Gebroeker:AvocatoBot]]
[[ln:Utilisateur:AvocatoBot]]
[[lo:ຜູ້ໃຊ້:AvocatoBot]]
[[lt:Naudotojas:AvocatoBot]]
[[lv:Lietotājs:AvocatoBot]]
[[mg:Mpikambana:AvocatoBot]]
[[mi:User:AvocatoBot]]
[[mk:Корисник:AvocatoBot]]
[[ml:ഉപയോക്താവ്:AvocatoBot]]
[[mn:Хэрэглэгч:AvocatoBot]]
[[mr:सदस्य:AvocatoBot]]
[[ms:Pengguna:AvocatoBot]]
[[mt:Utent:AvocatoBot]]
[[my:User:AvocatoBot]]
[[na:User:AvocatoBot]]
[[nah:Tlatequitiltilīlli:AvocatoBot]]
[[nds:Bruker:AvocatoBot]]
[[ne:प्रयोगकर्ता:AvocatoBot]]
[[nl:Gebruiker:AvocatoBot]]
[[nn:Brukar:AvocatoBot]]
[[no:Bruker:AvocatoBot]]
[[oc:Utilizaire:AvocatoBot]]
[[om:User:AvocatoBot]]
[[or:ବ୍ୟବହାରକାରୀ:AvocatoBot]]
[[pa:ਮੈਂਬਰ:AvocatoBot]]
[[pl:Wikipedysta:AvocatoBot]]
[[pnb:User:AvocatoBot]]
[[ps:کارن:AvocatoBot]]
[[pt:Utilizador:AvocatoBot]]
[[qu:Ruraq:AvocatoBot]]
[[ro:Utilizator:AvocatoBot]]
[[roa-rup:User:AvocatoBot]]
[[ru:Участник:AvocatoBot]]
[[rw:User:AvocatoBot]]
[[sa:योजकः:AvocatoBot]]
[[scn:Utenti:AvocatoBot]]
[[sd:يوزر:AvocatoBot]]
[[sg:Utilisateur:AvocatoBot]]
[[sh:Korisnik:AvocatoBot]]
[[si:පරිශීලක:AvocatoBot]]
[[simple:User:AvocatoBot]]
[[sk:Redaktor:AvocatoBot]]
[[sl:Uporabnik:AvocatoBot]]
[[sm:User:AvocatoBot]]
[[so:User:AvocatoBot]]
[[sq:Përdoruesi:AvocatoBot]]
[[sr:Корисник:AvocatoBot]]
[[ss:User:AvocatoBot]]
[[st:User:AvocatoBot]]
[[su:Pamaké:AvocatoBot]]
[[sv:Användare:AvocatoBot]]
[[sw:Mtumiaji:AvocatoBot]]
[[ta:பயனர்:AvocatoBot]]
[[te:వాడుకరి:AvocatoBot]]
[[tg:Корбар:AvocatoBot]]
[[th:ผู้ใช้:AvocatoBot]]
[[ti:User:AvocatoBot]]
[[tk:Ulanyjy:AvocatoBot]]
[[tl:Tagagamit:AvocatoBot]]
[[tn:User:AvocatoBot]]
[[tpi:User:AvocatoBot]]
[[tr:Kullanıcı:AvocatoBot]]
[[ts:User:AvocatoBot]]
[[tt:Кулланучы:AvocatoBot]]
[[ug:ئىشلەتكۈچى:AvocatoBot]]
[[uk:Користувач:AvocatoBot]]
[[ur:صارف:AvocatoBot]]
[[uz:Foydalanuvchi:AvocatoBot]]
[[vi:Thành viên:AvocatoBot]]
[[vo:Geban:AvocatoBot]]
[[wa:Uzeu:AvocatoBot]]
[[wo:Jëfandikukat:AvocatoBot]]
[[yi:באַניצער:AvocatoBot]]
[[za:用户:AvocatoBot]]
[[zh:User:AvocatoBot]]
[[zh-min-nan:User:AvocatoBot]]
[[zu:User:AvocatoBot]]
9qg2t4gzwchxv2vw8qatzb6r221opdy
Razgovor s korisnikom:AvocatoBot
3
8900
26947
2012-08-31T21:13:04Z
AvocatoBot
991
Creating
26947
wikitext
text/x-wiki
<div dir=ltr><div style="background: #FFFFFF; text-align: center; font-family: Calibri; font-size: 1.6em; font-weight: bold;"><div style="padding: 5px; border: 3px solid #003882; -moz-border-radius: 10px; -webkit-border-radius: 10px; border-radius: 10px;">Please, Do not leave your message here. You can contact my operator using any of the following:
<div style="margin-top: 10px; padding: 2px; background: #f4f3f0; border: 2px solid #fb139e; -moz-border-radius: 10px; -webkit-border-radius: 10px; border-radius: 10px;">[[w:ar:User talk:Avocato|w:ar:user talk:Avocato]] | [[w:en:User talk:Avocato|w:en:user talk:Avocato]] | [[m:User talk:Avocato|meta:user talk:Avocato]]</div></div></div></div>
sp61nkc3vi6lvhlea1ecl2bxwlit01z
Korisnik:Antonorsi
2
8970
27067
2012-09-02T23:28:10Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by Antonorsi]])
27067
wikitext
text/x-wiki
{{#babel:es|en-3|bs-0}}
''Hello, I'm [[:m:User:Antonorsi|Antonorsi]], from es.wiki. You can contact me in [[:m:User talk:Antonorsi|my talk page on meta]].''<br />
----
kb02ldanilw04x35hp8bnck8xwqmp3l
Korisnik:Shujenchang/common.js
2
8972
27069
2012-09-03T00:55:41Z
Pathoschild
81
global JavaScript ([[m:User:Pathoschild/Scripts/Synchbot|requested by Shujenchang]])
27069
javascript
text/javascript
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:Shujenchang/global.js&action=raw&ctype=text/javascript');
qrhxsoxscudtwxlfngb7psz1fhrepcr
Korisnik:Lukas²³/common.js
2
8973
27070
2012-09-03T02:06:29Z
Pathoschild
81
global JavaScript ([[m:User:Pathoschild/Scripts/Synchbot|requested by Lukas²³]])
27070
javascript
text/javascript
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:Lukas²³/global.js&action=raw&ctype=text/javascript');
83yd8rgqpt0d0uokqpva51quireg5a7
Korisnik:MalafayaBot
2
9008
38069
37217
2013-11-25T15:02:35Z
MalafayaBot
1248
r2.7.5) (Bot dodaje: [[no:Bruker:MalafayaBot]]
38069
wikitext
text/x-wiki
This is an interwiki bot operated by [[Korisnik:Malafaya]].
{{Bot|Malafaya}}
[[az:İstifadəçi:MalafayaBot]]
[[bg:Потребител:MalafayaBot]]
[[br:Implijer:MalafayaBot]]
[[ca:Usuari:MalafayaBot]]
[[da:Bruger:MalafayaBot]]
[[de:Benutzer:MalafayaBot]]
[[el:Χρήστης:MalafayaBot]]
[[en:User:MalafayaBot]]
[[es:Usuario:MalafayaBot]]
[[fi:Käyttäjä:MalafayaBot]]
[[fr:Utilisateur:MalafayaBot]]
[[gl:Usuario:MalafayaBot]]
[[hu:Szerkesztő:MalafayaBot]]
[[ia:Usator:MalafayaBot]]
[[io:Uzanto:MalafayaBot]]
[[is:Notandi:MalafayaBot]]
[[ka:მომხმარებელი:MalafayaBot]]
[[ku:Bikarhêner:MalafayaBot]]
[[li:Gebroeker:MalafayaBot]]
[[lt:Naudotojas:MalafayaBot]]
[[mg:Mpikambana:MalafayaBot]]
[[nds:Bruker:MalafayaBot]]
[[nl:Gebruiker:MalafayaBot]]
[[nn:Brukar:MalafayaBot]]
[[no:Bruker:MalafayaBot]]
[[oc:Utilizaire:MalafayaBot]]
[[pt:Utilizador:MalafayaBot]]
[[ro:Utilizator:MalafayaBot]]
[[sv:Användare:MalafayaBot]]
[[tr:Kullanıcı:MalafayaBot]]
[[uk:Користувач:MalafayaBot]]
[[vec:Utente:MalafayaBot]]
[[vo:Geban:MalafayaBot]]
[[zh:User:MalafayaBot]]
k046hi0ew1t230eifrzid2ysvfsk2hb
Korisnik:Shujenchang
2
9010
27358
2012-09-06T06:50:36Z
Shujenchang
1224
Nova stranica: {{#babel:zh|en-4|zh-classical-2|eo-1|ko-1|ja-0|fr-0||{{subst:#switch:{{subst:CONTENTLANG}}|en|ko|ja|fr=|{{subst:CONTENTLANG}}-0}}}} Sometimes this user works as a member of [[m:Sm...
27358
wikitext
text/x-wiki
{{#babel:zh|en-4|zh-classical-2|eo-1|ko-1|ja-0|fr-0||bs-0}}
Sometimes this user works as a member of [[m:Small Wiki Monitoring Team|SWMT]] and helps some anti-vandalism and anti-spam works here. To know more about this user, you can see his user page on [[w:en:User:Shujenchang|English Wikipedia]]. You can contact him via [[User talk:Shujenchang|talk page]], [[w:en:Special:EmailUser/Shujenchang|email]] or [[w:en:User:Shujenchang/Contact#IMs|IMs]] (Note: Please use English).
'''Note''': Because of this user perhaps do not know the language on this project totally, so may be sometimes he will do something wrong when he do anti-vandalism and anti-spam works. If he did something wrong, please [[User talk:Shujenchang|let him know]].
mnf55dbhzdmi64vnmqhv41nh5y2zlgh
Razgovor s korisnikom:YS-Bot
3
9011
27365
2012-09-06T07:55:28Z
Yoursmile
904
new
27365
wikitext
text/x-wiki
Please post comments on [[de:User talk:Yoursmile|Yoursmile's talk page]]
ecbk05lwaru4xs81y489y0oubgv0hxi
Korisnik:YS-Bot
2
9012
31851
27366
2012-12-27T07:53:51Z
YS-Bot
1217
r2.7.3) (Bot dodaje: af, ar, ast, bg, br, ca, cs, da, de, el, en, eo, es, et, eu, fi, fj, fr, fy, gl, hi, hr, hu, io, is, it, ja, kn, ko, ku, la, li, lo, lt, mg, ml, my, nah, nds, nl, nn, no, oc, pl, pt, ro, ru, sa, simple, sk, sq, sv, sw, ta, te, th, ...
31851
wikitext
text/x-wiki
This is a bot of [[user:Yoursmile]]
[[af:Gebruiker:YS-Bot]]
[[ar:مستخدم:YS-Bot]]
[[ast:Usuariu:YS-Bot]]
[[bg:Потребител:YS-Bot]]
[[br:Implijer:YS-Bot]]
[[ca:Usuari:YS-Bot]]
[[cs:Uživatel:YS-Bot]]
[[da:Bruger:YS-Bot]]
[[de:Benutzer:YS-Bot]]
[[el:Χρήστης:YS-Bot]]
[[en:User:YS-Bot]]
[[eo:Uzanto:YS-Bot]]
[[es:Usuario:YS-Bot]]
[[et:Kasutaja:YS-Bot]]
[[eu:Lankide:YS-Bot]]
[[fi:Käyttäjä:YS-Bot]]
[[fj:User:YS-Bot]]
[[fr:Utilisateur:YS-Bot]]
[[fy:Meidogger:YS-Bot]]
[[gl:Usuario:YS-Bot]]
[[hi:सदस्य:YS-Bot]]
[[hr:Suradnik:YS-Bot]]
[[hu:Szerkesztő:YS-Bot]]
[[io:Uzanto:YS-Bot]]
[[is:Notandi:YS-Bot]]
[[it:Utente:YS-Bot]]
[[ja:利用者:YS-Bot]]
[[kn:ಸದಸ್ಯ:YS-Bot]]
[[ko:사용자:YS-Bot]]
[[ku:Bikarhêner:YS-Bot]]
[[la:Usor:YS-Bot]]
[[li:Gebroeker:YS-Bot]]
[[lo:ຜູ້ໃຊ້:YS-Bot]]
[[lt:Naudotojas:YS-Bot]]
[[mg:Mpikambana:YS-Bot]]
[[ml:ഉപയോക്താവ്:YS-Bot]]
[[my:User:YS-Bot]]
[[nah:Tlatequitiltilīlli:YS-Bot]]
[[nds:Bruker:YS-Bot]]
[[nl:Gebruiker:YS-Bot]]
[[nn:Brukar:YS-Bot]]
[[no:Bruker:YS-Bot]]
[[oc:Utilizaire:YS-Bot]]
[[pl:Wikipedysta:YS-Bot]]
[[pt:Utilizador:YS-Bot]]
[[ro:Utilizator:YS-Bot]]
[[ru:Участник:YS-Bot]]
[[sa:योजकः:YS-Bot]]
[[simple:User:YS-Bot]]
[[sk:Redaktor:YS-Bot]]
[[sq:Përdoruesi:YS-Bot]]
[[sv:Användare:YS-Bot]]
[[sw:Mtumiaji:YS-Bot]]
[[ta:பயனர்:YS-Bot]]
[[te:వాడుకరి:YS-Bot]]
[[th:ผู้ใช้:YS-Bot]]
[[tl:Tagagamit:YS-Bot]]
[[tr:Kullanıcı:YS-Bot]]
[[vi:Thành viên:YS-Bot]]
[[zh:User:YS-Bot]]
ookgatv3nu08p8eoopff9ybna30xz2w
Korisnik:Erdemaslancan
2
9108
27571
2012-09-10T14:43:13Z
Erdemaslancan
1200
Nova stranica: {{#babel:tr|diq|kiu-4|az-3|en-2|tly-2|tk-4|ttt-1}}
27571
wikitext
text/x-wiki
{{#babel:tr|diq|kiu-4|az-3|en-2|tly-2|tk-4|ttt-1}}
cjf1nxnxaag8mdurtjn7z5cm8sexhqp
Razgovor s korisnikom:Moe Epsilon
3
9258
28250
2012-10-14T08:45:25Z
Moe Epsilon
191
+
28250
wikitext
text/x-wiki
#REDIRECT [[w:en:User talk:Moe Epsilon]]
a4su0mk4f15ynu1rx33yaqu4fmud8ve
Korisnik:Translation Notification Bot
2
9341
28692
2012-10-25T18:48:11Z
Quentinv57
723
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
28692
wikitext
text/x-wiki
<div style="min-height: 57px; border: 1px solid #aaaaaa; background-color: #f9f9f9; width: 50%; margin: 0 auto 1em auto; padding: .2em; text-align: justify;">
<div style="float: left">[[File:Wikimedia Community Logo.svg|50px|link=]]</div>
<div style="margin-left: 60px">'''[[:m:User:Translation Notification Bot|m:User:Translation Notification Bot]]'''.<br />(''[[m:Interwiki redirect|{{int:redirectpagesub}}]]'')</div>
</div>
59xrrxfkj8xh7jw11em0s4rnuulbz9j
Korisnik:Mr.Ajedrez
2
9349
28705
2012-10-26T09:27:29Z
Quentinv57
723
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
28705
wikitext
text/x-wiki
{{#babel:es|ast|en-3|fr-2|bs-0}} ''Hello, I'm [[:w:es:User:Mr.Ajedrez|Mr.Ajedrez]], from es.wiki. You can contact me in [[:w:es:User talk:Mr.Ajedrez|my talk page in es.wiki]].''<br /> ----
befrqef467s7l3bsdrwzaqzr1sjxsom
Korisnik:ChessBOT
2
9350
28706
2012-10-26T09:27:40Z
Quentinv57
723
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by user]])
28706
wikitext
text/x-wiki
{{bot|Mr.Ajedrez|site=w:es}}
pp903u1bf9hm4qev44qoez4ypbpdb73
Šablon:HYkar
10
9620
29178
2012-11-09T20:13:06Z
Barishan
287
Nova stranica: <span class="EL" style="font-family:{{HY fontovi}}; font-family :inherit; font-size:{{HY font veličina}}; font-size :inherit">{{{1}}}</span>
29178
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>
rsf40nkfwz42mbpzw909pvtdjqimonc
Šablon:HY font veličina
10
9622
29181
29180
2012-11-09T20:17:31Z
Barishan
287
29181
wikitext
text/x-wiki
125%
kgla8hp5tdrvhxa8a768q7fkblj7wo2
Korisnik:Şêr
2
9627
57272
29200
2016-12-08T07:10:33Z
Stephen G. Brown
924
Stephen G. Brown premjestio je stranicu [[Korisnik:George Animal]] na [[Korisnik:Şêr]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/George Animal|George Animal]]" u "[[Special:CentralAuth/Şêr|Şêr]]"
57272
wikitext
text/x-wiki
{{Babel-1|de-4}}
:{{[[:Special:Statistics]]}}
:{{[[:Special:NewPages]]}}
frft3au2a1b6fst5p7xte677is6od4b
Razgovor s korisnikom:Şêr
3
9632
57274
29782
2016-12-08T07:10:33Z
Stephen G. Brown
924
Stephen G. Brown premjestio je stranicu [[Razgovor s korisnikom:George Animal]] na [[Razgovor s korisnikom:Şêr]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/George Animal|George Animal]]" u "[[Special:Centra...
57274
wikitext
text/x-wiki
<div style="border:1px solid #999999;background-color:#F5F5F5;padding:10px;">
[[Datoteka:Wiktionary-logo-en.svg|100px|lijevo]]<big>'''Dobrodošli na Wikirječnik na [[w:Bosanski jezik|bosanskom jeziku]] – slobodan rječnik, leksikon i tezaurus!'''</big><br>
<div style="border:1px solid #999999;background-color:#B0E0E6;padding:8px;">Pozdrav, {{PAGENAME}}!<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 [[Vikirječnik:Uređivanje|kako članci trebaju izgledati]]. '''Slobodno''' radite na Wikirječniku i '''razgovarajte''' s drugima.
Više informacija dostupno je na '''[[w:Wikipedia:Čaršija|Čaršiji]]''', gdje možete razgovarati s drugim korisnicima. Možete kontaktirati i neke 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 interesuje, čime se bavite i sl. Molimo Vas da se potpisujete na stranicama za razgovor korištenjem '''<tt><nowiki>~~~~</nowiki></tt>''' (četiri znaka ''tilda'').
Radite zajedno s 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:Recentchanges|nedavne izmjene]], gdje možete vidjeti nedavne aktivnosti na Wikipediji.
Prilikom [[Posebno:Upload|postavljanja]] slika koristite ispravne [[w:Wikipedia:Šabloni za slike|šablone za licencu]] i vodite računa o '''[[w:Wikipedia:Autorska prava|autorskim pravima]]''' prilikom pisanja članaka. Članci ili slike koje krše autorska prava bit će obrisani. Još jednom Vas lijepo pozdravljamo. {{#if:-- [[Korisnik:Bugoslav|Bugoslav]] 03:14, 8 septembar 2011 (KSV)|-- [[Korisnik:Bugoslav|Bugoslav]] 03:14, 8 septembar 2011 (KSV)}}
{|- style="background-color:#B0E0E6; text-align:center;"
| style="background: #F0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Slika: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;" | [[Slika:View-refresh.svg|18px]] <br/>[[Posebno:Recentchanges|Nedavne izmjene]]
| style="background: #F0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Slika:Wiktionary-logo.svg|18px]] <br/>[[w:Pravopis bosanskog jezika|Pravopis]]
| style="background: #E0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Slika:Nuvola apps kmessedwords.png|18px]] <br/>[[w:Wikipedia:Jezički standardi na bosanskoj Wikipediji|Jezički standardi]]
| style="background: #F0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Slika:čć.png|18px]] <br/>[[w:Wikipedia:Pravilno-nepravilno u bosanskome jeziku|Pravilno-nepravilno]]
| style="background: #E0FFFF; border:1px solid silver; 18px; font: 90% Verdana; width:16%; height:30;" | [[Slika: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 />[[Razgovor o šablonu:Dobrodošlica|Kliknite ovdje]].
|}</div></div> [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 20:42, 9 novembar 2012 (KSV)
== Şablon ==
Şablonların kullanım şeklini anlamak için soruyorum, İngilizce Wiktionary'deki çekimden anladığım kadarıyla [[heval]], hem [[Freund]], hem [[Freundin]] hem de [[Freunde]] anlamlarına mı geliyor? (İngilizce Wiktionary'den hatırladığım kadarıyla Almanca biliyorsun, bu yüzden Almanca yazdım) '''hevalek''' de '''eine Freundin''' ve '''ein Freund'''? Bir de '''construct''' olarak yazan hâl nasıl kullanılıyor? Doğru Boşnakça ismi yazabilmek için soruyorum. [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 21:00, 9 novembar 2012 (KSV)
:Söyleediklerin dogrudur.Birčok kelimeleri birleštirmek ičin kullanilan bir haldir.Örnek hevalê min -benim arkadašim / hevalê dibistanê- okul arkadaši vsr.--[[Korisnik:George Animal|George Animal]] ([[Razgovor sa korisnikom:George Animal|razgovor]]) 21:04, 9 novembar 2012 (KSV)
::Also, [[Šablon:ku-ime-mž]] (für m und f Substantive) ist fertig, aber ich habe den Ausblick ein wenig verändert. Du kannst es in [[heval]] sehen.
::Außerdem, hier sind einige nützliche Übersetzungen:
::Substantiv: Imenica (pl. Imenice)
::Eigenname: Vlastita imenica (pl: Vlastite imenice)
::Verb: Glagol (pl. Glagoli)
::Adjektiv: Pridjev (pl. Pridjevi)
::Synonyme/Antonyme: Sinonimi/Antonimi
::Siehe auch: Također pogledajte
::Deklination: Deklinacija
::Derivationen: Izvedenice
::Maskulinum: Muški rod (Vorlage: {{m}})
::Femininum: Ženski rod (Vorlage: {{ž}})
::Neutrum: Srednji rod (Vorlage: {{s}})
::Singular: Jednina
::Plural: Množina
::Wenn du etwas anderes wissen möchtest, kannst du mir fragen! [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 22:07, 9 novembar 2012 (KSV)
:::[[Šablon:ku-ime-m]] und [[Šablon:ku-ime-ž]] sind auch fertig, aber ich konnte keine Wörter in Englisch Wiktionary finden, die diese Vorlagen benutzen. Also jetzt kannst du kurdische Wörter mit diesen Vorlagen hinzufügen (wie ich in [[heval]] und [[ferhengvan]] gemacht habe) [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 23:05, 9 novembar 2012 (KSV)
::::Das (de) Wikiwörterbuch sagt dass [[dîrok]] ist männlich, aber (en) Wiktonary erwähnt Femininum. Außerdem gibt es eine Deklinationstabelle im Wikiwörterbuch, aber hier kann ich nicht das gleiche Ergebnis bekommen, weder mit [[Šablon:ku-ime-m]] noch mit [[Šablon:ku-ime-ž]]. Was ist das korrekte Genus und die entsprechende Deklination? [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 01:31, 13 novembar 2012 (KSV)
::Das was hier und auf en.wikt verwendet wird, ist korrekt.Der richtige Kasus ist f und einige Quellen geben andere Deklinationsformen, denn es gibt Nord- Zentral Und Südkurdisch, bei denen die Geschlechter unterschiedlich behandelt werrden.Z.b. Soranî, ein dialek des kurdischen, kennt zum Beispiel keine Geschelchter und andere Dialekte wiederum andere Geschlechter.Einige Formen sind auf de.wikt sind umgangssprachlich.--[[Korisnik:George Animal|George Animal]] ([[Razgovor sa korisnikom:George Animal|razgovor]]) 15:19, 13 novembar 2012 (KSV)
:::Ach soo und welcher Dialekt haben wir hier in bs.Wiktionary? Es wäre gut zu äußern, glaube ich. Und noch eine kurze Frage, jetzt haben wir keine Vorlagen für manche Worte, oder diese Worte werden nicht dekliniert in diesem Dialekt? [[Korisnik:Barishan|Barishan]] ([[Razgovor sa korisnikom:Barishan|razgovor]]) 11:24, 16 novembar 2012 (KSV)
am1qq7m3tm4b1po6knf4t66domz0do6
Korisnik:GanimalBot
2
9681
29347
2012-11-10T19:40:07Z
Şêr
851
Nova stranica: This is a bot operated by [[:User:George Animal|George Animal]].
29347
wikitext
text/x-wiki
This is a bot operated by [[:User:George Animal|George Animal]].
2wjvei2or7lnwi6ig3av5uc9n0boeyu
Razgovor s korisnikom:GanimalBot
3
9682
57281
29348
2016-12-10T19:15:16Z
タチコマ robot
1016
Bot: Popravlja dvostruka preusmjerenja na [[Razgovor s korisnikom:Şêr]]
57281
wikitext
text/x-wiki
#PREUSMJERI [[Razgovor s korisnikom:Şêr]]
3trds09hm72qhvisq30vscwwloojhpj
Kategorija:Šabloni deklinacije (islandski)
14
9693
66727
58163
2017-07-03T23:36:54Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66727
wikitext
text/x-wiki
[[Kategorija:Šabloni deklinacije|Islandski]]
[[Kategorija:Islandski jezik]]
6fa9p8rlq42vd6j7duogidf2v5qalzb
Kategorija:Šabloni deklinacije (latinski)
14
9698
66728
58164
2017-07-03T23:37:03Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66728
wikitext
text/x-wiki
[[Kategorija:Šabloni deklinacije|Latinski]]
[[Kategorija:Latinski jezik]]
52g4xdfqkumtzk3h377pe3c37902ofg
Kategorija:Šabloni deklinacije (albanski)
14
9702
58156
29714
2017-02-22T17:15:22Z
Srđan
1899
new key for [[Category:Šabloni deklinacije]]: "Albanski" using [[Help:Gadget-HotCat|HotCat]]
58156
wikitext
text/x-wiki
[[Kategorija:Šabloni deklinacije|Albanski]]
[[Kategorija:Albanski jezik]]
iizer18dwwril0fdk2tqn3dz3x7ui8q
Kategorija:Šabloni deklinacije (baškirski)
14
9707
58159
29719
2017-02-22T17:16:31Z
Srđan
1899
new key for [[Category:Šabloni deklinacije]]: "Baškirski" using [[Help:Gadget-HotCat|HotCat]]
58159
wikitext
text/x-wiki
[[Kategorija:Šabloni deklinacije|Baškirski]]
[[Kategorija:Baškirski jezik]]
qz185atqavrvrq72ir4d1nradna1er9
Kategorija:Šabloni deklinacije (švedski)
14
9708
66742
58177
2017-07-03T23:39:24Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66742
wikitext
text/x-wiki
[[Kategorija:Šabloni deklinacije|Švedski]]
[[Kategorija:Švedski jezik]]
btmkp7dz7nf0hn0nigq7pbnc6j8o42u
Šablon:de-dekl-prid+ime
10
10197
70566
58149
2023-08-01T13:16:26Z
195.175.80.134
70566
wikitext
text/x-wiki
<div class="NavFrame" style="">
<div class="NavHead" style="">Deklinacija: {{PAGENAME}}</div>
<div class="NavContent">
{| border="1px solid #505050" style="border-collapse:collapse; background:#FAFAFA; text-align:center; width:100%" class="inflection-table"
! style="background:#BBC9D0;width:15%" |
! colspan="2" style="background:#BBC9D0" | Jednina
! colspan="2" style="background:#BBC9D0" | Množina
|-
! style="background:#AAB8C0" | {{#if:{{{g|}}}|{{#switch:{{{g|}}}|m={{m}}|ž={{ž}}|s={{s}}|?}}}} ''rod''
! colspan="4" style="background:#AAB8C0" | Bez člana
|-
! style="background:#BBC9D0" | Nominativ
| colspan="2" | {{{sns|{{{1}}}}}}
| colspan="2" | {{{snp|{{{5}}}}}}
|-
! style="background:#BBC9D0" | Genitiv
| colspan="2" | {{{sgs|{{{2}}}}}}
| colspan="2" | {{{sgp|{{{6}}}}}}
|-
! style="background:#BBC9D0" | Dativ
| colspan="2" | {{{sds|{{{3}}}}}}
| colspan="2" | {{{sdp|{{{7}}}}}}
|-
! style="background:#BBC9D0" | Akuzativ
| colspan="2" | {{{sas|{{{4}}}}}}
| colspan="2" | {{{sap|{{{8}}}}}}
|-
! style="background:#AAB8C0" |
! colspan="4" style="background:#AAB8C0" | Određeni član
|-
! style="background:#BBC9D0" | Nominative
| style="background:#EEEEEE;width:5em" | {{#if:{{{g|}}}|{{#switch:{{{g|}}}|m=der|ž=die|s=das|?}}}}
| {{{wns|{{{9}}}}}}
| style="background:#EEEEEE;width:5em" | die
| {{{wnp|{{{13}}}}}}
|-
! style="background:#BBC9D0" | Genitiv
| style="background:#EEEEEE;width:5em" | {{#if:{{{g|}}}|{{#switch:{{{g|}}}|m=des|ž=der|s=des|?}}}}
| {{{wgs|{{{10}}}}}}
| style="background:#EEEEEE;width:5em" | der
| {{{wgp|{{{14}}}}}}
|-
! style="background:#BBC9D0" | Dativ
| style="background:#EEEEEE;width:5em" | {{#if:{{{g|}}}|{{#switch:{{{g|}}}|m=dem|ž=der|s=dem|?}}}}
| {{{wds|{{{11}}}}}}
| style="background:#EEEEEE;width:5em" | den
| {{{wdp|{{{15}}}}}}
|-
! style="background:#BBC9D0" | Akuzativ
| style="background:#EEEEEE;width:5em" | {{#if:{{{g|}}}|{{#switch:{{{g|}}}|m=den|ž=die|s=das|?}}}}
| {{{was|{{{12}}}}}}
| style="background:#EEEEEE;width:5em" | die
| {{{wap|{{{16}}}}}}
|-
! style="background:#AAB8C0" |
! colspan="4" style="background:#AAB8C0" | Neodređeni član
|-
! style="background:#BBC9D0" | Nominativ
| style="background:#EEEEEE;width:5em" | {{#if:{{{g|}}}|{{#switch:{{{g|}}}|m=ein|ž=eine|s=ein|?}}}}
| {{{mns|{{{17}}}}}}
| style="background:#EEEEEE;width:5em;width:5em" | (keine)
| {{{mnp|{{{21}}}}}}
|-
! style="background:#BBC9D0" | Genitiv
| style="background:#EEEEEE;width:5em" | {{#if:{{{g|}}}|{{#switch:{{{g|}}}|m=eines|ž=einer|s=eines|?}}}}
| {{{mgs|{{{18}}}}}}
| style="background:#EEEEEE;width:5em" | (keiner)
| {{{mgp|{{{22}}}}}}
|-
! style="background:#BBC9D0" | Dativ
| style="background:#EEEEEE;width:5em" | {{#if:{{{g|}}}|{{#switch:{{{g|}}}|m=einem|ž=einer|s=einem|?}}}}
| {{{mds|{{{19}}}}}}
| style="background:#EEEEEE;width:5em" | (keinen)
| {{{mdp|{{{23}}}}}}
|-
! style="background:#BBC9D0" | Akuzativ
| style="background:#EEEEEE;width:5em" | {{#if:{{{g|}}}|{{#switch:{{{g|}}}|m=einen|ž=eine|s=ein|?}}}}
| {{{mas|{{{20}}}}}}
| style="background:#EEEEEE;width:5em" | (keine)
| {{{map|{{{24}}}}}}
|}</div></div><noinclude>
[[Kategorija:Šabloni deklinacije (njemački)]]</noinclude>
61y2lva6dvkl8aqhhalvgxa5vh9uw7i
Korisnik:Noommos/common.js
2
10246
30766
2012-12-09T21:32:25Z
Pathoschild
81
global JavaScript ([[m:User:Pathoschild/Scripts/Synchbot|requested by Noommos]])
30766
javascript
text/javascript
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:Noommos/global.js&action=raw&ctype=text/javascript');
heon0uvy8qznbjj7gzy0htsedh4nvuy
Korisnik:Sotiale/common.js
2
10247
30767
2012-12-09T22:35:16Z
Pathoschild
81
global JavaScript ([[m:User:Pathoschild/Scripts/Synchbot|requested by Sotiale]])
30767
javascript
text/javascript
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:Sotiale/global.js&action=raw&ctype=text/javascript');
03gc5bhcnt2oox5rx9ogo1n6m4nvu95
Šablon:ro-dekl-ime
10
10259
72721
71693
2025-04-26T00:48:05Z
Minorax
2705
72721
wikitext
text/x-wiki
<div class="NavFrame" style="width:80%">
<div class="NavHead">Deklinacija: {{PAGENAME}}</div>
<div class="NavContent">
{| class="inflection-table" style="width:100%;text-align:center"
|-
|width=15% style="background:#DCDCDC" |
! width=43% colspan="2" style="background:#DCDCDC" | Jednina <small>([[singular]])</small>
! width=43% colspan="2" style="background:#DCDCDC" | Množina <small>([[plural]])</small>
|-
! bgcolor="#dcdcdc" |
! bgcolor="#ffffff"| Neodređeni <small>([[articol nehotărât]])</small>
! bgcolor="#efefef"| Određeni <small>([[articol hotărât]])</small>
! bgcolor="#ffffff"| Neodređeni <small>([[articol nehotărât]])</small>
! bgcolor="#efefef"| Određeni <small>([[articol hotărât]])</small>
|-
! bgcolor="#dcdcdc" | Nominativ <small>([[nominativ]])</small>
|bgcolor="#ffffff"| {{#if:{{{g|}}}|{{#switch:{{{g}}}|m|n=(un)|f=(o)}}}} {{{1}}}
|bgcolor="#efefef"| {{{2}}}
|bgcolor="#ffffff"| (niște) {{{3}}}
|bgcolor="#efefef"| {{{4}}}
|-
! bgcolor="#dcdcdc" | Akuzativ <small>([[acuzativ]])</small>
|bgcolor="#ffffff"| {{#if:{{{g|}}}|{{#switch:{{{g}}}|m|n=(un)|f=(o)}}}} {{{1}}}
|bgcolor="#efefef"| {{{2}}}
|bgcolor="#ffffff"| (niște) {{{3}}}
|bgcolor="#efefef"| {{{4}}}
|-
! bgcolor="#dcdcdc" | Genitiv <small>([[genitiv]])</small>
|bgcolor="#ffffff"| {{#if:{{{g|}}}|{{#switch:{{{g}}}|m|n=(unui)|f=(unei)}}}} {{{5}}}
|bgcolor="#efefef"| {{{6}}}
|bgcolor="#ffffff"| (unor) {{{7}}}
|bgcolor="#efefef"| {{{8}}}
|-
! bgcolor="#dcdcdc" | Dativ <small>([[dativ]])</small>
|bgcolor="#ffffff"| {{#if:{{{g|}}}|{{#switch:{{{g}}}|m|n=(unui)|f=(unei)}}}} {{{5}}}
|bgcolor="#efefef"| {{{6}}}
|bgcolor="#ffffff"| (unor) {{{7}}}
|bgcolor="#efefef"| {{{8}}}
|}</div></div><noinclude>[[Kategorija:Šabloni deklinacije (rumunski)]]</noinclude>
iyz6781jthuz1sau1dv9h3ohhccbefw
Korisnik:Base/vector.js
2
10299
30823
2012-12-11T18:54:04Z
Base
1311
creating new ownjs page
30823
javascript
text/javascript
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:Base/global.js&action=raw&ctype=text/javascript');
9giyxj7vuxbzl3gw9t8r2790bzkcnaa
Korisnik:Makecat
2
10449
58884
31062
2017-04-04T07:49:35Z
CommonsDelinker
62
Replacing File-Ngc5866_hst_big.png with [[File:Ngc5866_hst_big.png]] (by [[:c:User:CommonsDelinker|CommonsDelinker]] because: [[:c:COM:FR|File renamed]]: [[:c:COM:FR#reasons|File renaming criterion #6]]: Non-controversial maintenance and bug fixes, includ
58884
wikitext
text/x-wiki
<div style="margin-left:-1em; margin-right:-1em; margin-bottom:15em;" class="plainlinks">
<div style="padding:0px; background:#99CCCC; border:1px solid #42526C; font-family:Calibri; color:#AAA;">
{| style="border:1px solid #99CCCC; background:#99CCCC; color:#333333;" align="center"
|- style="padding:1em;"
| width="17%" |
<div style="padding:0.5em; margin:0.5em; width:200px; float:left;">[[File:Ngc5866 hst big.png|200px]]</div>
|
{{#Babel:zh|en-2}}
<big>Hello, I am '''Makecat'''. I am an [[w:zh:Wikipedia:管理员|administrator]] on the Chinese Wikipedia, which is my home wiki. I am a member of [[m:SWMT|Small Wiki Monitoring Team]] and may make some edits here occasionally, such as reverting vandalism and requesting pages for speedy deletion. If you want to contact me, please leave a message at [[w:zh:User talk:Makecat|here]].</big>
|}
</div>
</div>
[[en:User:Makecat]]
[[zh:User:Makecat]]
b2u9kso1moq7ec4u7cx2unvgq97vewy
Korisnik:Edinwiki
2
10525
45704
37877
2015-05-19T21:11:51Z
Edinwiki
523
45704
wikitext
text/x-wiki
{{#Babel:bs|nl|en-4|hr-4|sr-4|de-3|li-2|af-2|fr-1}}
Najviše aktivan na [[w:Korisnik:Edinwiki|bs-wikiju]].
== Bot ==
* [[Korisnik:EdinBot|EdinBot]]
== Podstranice ==
* [[/Spisak]]
== Todo ==
* [[MediaWiki:Sitetitle]]
* [[Razgovor_sa_korisnikom:Barishan#A_lot_to_do]]
* Vrata zajednice -> Treba se stranica napraviti..
r791k4196rxnueikn6nckkf64o63pyf
Razgovor s korisnikom:Edinwiki
3
10526
66933
66931
2018-04-12T11:57:17Z
علاء
2270
/* IMPORTANT: Admin activity review */ fix
66933
wikitext
text/x-wiki
Najviše aktivan na [[w:Korisnik:Edinwiki|bs-wikiju]].
<div align="center" class="usermessage">
[[Slika:Internet-group-chat.svg|left|25px]] '''<span class="plainlinks">Ostavite mi poruku [http://bs.wikipedia.org/w/index.php?title=Razgovor_sa_korisnikom:Edinwiki&action=edit§ion=new OVDJE]
<small><font color="red">(Odgovaram na poruku tamo gdje se i postavi!)</font></small>
</div>
== Your administrator status on the bs.wiktionary==
Hello. A [[:m:Admin activity review|policy]] regarding the removal of "advanced rights" (administrator, bureaucrat, etc.) was adopted by [[:m:Requests for comment/Activity levels of advanced administrative rights holders|community consensus]] in 2013. According to this policy, the stewards are reviewing activity on wikis with no inactivity policy.
You meet the inactivity criteria (no edits and no log actions for 2 years) on the wiki listed above. Since that wiki does not have its own rights review process, the global one applies.
If you want to keep your rights, you should inform the community of the wiki about the fact that the stewards have sent you this information about your inactivity. If the community has a discussion about it and then wants you to keep your rights, please contact the stewards at [[:m:Stewards' noticeboard]], and link to the discussion of the local community, where they express their wish to continue to maintain the rights.
If you wish to resign your rights, you can reply here or [[m:SRP|request removal of your rights on Meta]].
If there is no response at all after approximately one month, stewards will proceed to remove your administrator and/or bureaucrat rights. In ambiguous cases, stewards will evaluate the responses and will refer a decision back to the local community for their comment and review. If you have any questions, please contact the [[:m:Stewards' noticeboard|stewards]].
Yours faithfully.-- [[Korisnik:علاء|علاء]] ([[Razgovor s korisnikom:علاء|razgovor]]) 12:33, 9 april 2018 (KSV)
aus93r0hfjx8zamd1txqltlrja87o66
Korisnik:EdinBot
2
10527
32277
32276
2013-01-14T15:54:20Z
Edinwiki
523
32277
wikitext
text/x-wiki
{{Bot|Edinwiki|bs}}
<center>
{| {| class="messagebox"
|- align="left" colspan="2"
| width="10%" style="font-weight:bold" | Ime
| width="30%" | EdinBot
|- align="left"
| style="font-weight:bold" | Početak rada
| 15. februar 2012 (na Wikipediji).
|- align="left"
| style="font-weight:bold" | Vrsta
| [[:mw:Manual:Pywikipediabot|pywikipediabot]]
|- align="left"
| style="font-weight:bold" | Radno vrijeme
| Kako kad.
|- align="left"
| style="font-weight:bold" | Kontroliše me
| <tt><strong>[[Korisnik:Edinwiki|Edinwiki]]</tt>
|- align="left"
| style="font-weight:bold" | Poslovi
| Svašta po malo.
|- align="left"
| style="font-weight:bold" | Trenutni status
| Ručno puštanje bota.
|- align="left"
| style="font-weight:bold" | Izmjene
| [[Posebno:Doprinos/EdinBot|Doprinos]]
|- align="left"
| style="font-weight:bold" | Broj izmjena
| [http://bs.wikipedia.org/w/index.php?title=Posebno%3ASredisnjaAutent&target=EdinBot wiki] [http://toolserver.org/~vvv/yaec.php?user=EdinBot&wiki=bswiki_p ~vvv] [http://toolserver.org/~quentinv57/sulinfo/EdinBot sulinfo]
|- align="left"
| style="font-weight:bold" | Statistike svih botova na bs-rječniku
| [http://stats.wikimedia.org/wiktionary/EN/TablesWikipediaBS.htm#bots]
|- align="left"
| style="font-weight:bold" | Ima flag na
| [http://toolserver.org/~quentinv57/sulinfo/EdinBot sulinfo]
|}
[[Kategorija:Wiki botovi]]
9li80of2fgfnw1nsyfksg1v6ky1wb4b
Razgovor s korisnikom:EdinBot
3
10528
32229
2013-01-13T12:42:29Z
EdinBot
1333
Nova stranica: {{Softredirect|Razgovor sa korisnikom:Edinwiki}}
32229
wikitext
text/x-wiki
{{Softredirect|Razgovor sa korisnikom:Edinwiki}}
99vopqmfpdxt676r90x38kgfcrxqchf
Razgovor s korisnikom:AmandaNP
3
10587
67524
32711
2020-06-26T10:19:47Z
Sakretsu
2868
Sakretsu premjestio je stranicu [[Razgovor s korisnikom:DeltaQuad]] na [[Razgovor s korisnikom:AmandaNP]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/DeltaQuad|DeltaQuad]]" u "[[Special:CentralAuth/AmandaNP|AmandaNP]]"
32711
wikitext
text/x-wiki
#REDIRECT [[m:User talk:DeltaQuad]]
hx582ovme1j4qgwq2pp7qrvxx5iap4c
Korisnik:Yethrosh
2
10589
66992
32723
2019-07-20T00:13:54Z
Ejs-80
2073
Ejs-80 premjestio je stranicu [[Korisnik:محمد شعیب]] na [[Korisnik:Yethrosh]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/محمد شعیب|محمد شعیب]]" u "[[Special:CentralAuth/Yethrosh|Yethrosh]]"
32723
wikitext
text/x-wiki
#REDIRECT [[ur:User talk:محمد شعیب]]
fpj2rfbakrb6r7d9uc8reqq7szgsp8m
Razgovor s korisnikom:Yethrosh
3
10590
66993
32725
2019-07-20T00:13:54Z
Ejs-80
2073
Ejs-80 premjestio je stranicu [[Razgovor s korisnikom:محمد شعیب]] na [[Razgovor s korisnikom:Yethrosh]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/محمد شعیب|محمد شعیب]]" u "[[Special:CentralAuth/Yethrosh|Yethrosh]]"
32725
wikitext
text/x-wiki
#REDIRECT [[ur:User talk:محمد شعیب]]
fpj2rfbakrb6r7d9uc8reqq7szgsp8m
Korisnik:Base/vector.css
2
10591
32726
2013-02-03T16:39:34Z
Base
1311
Global CSS creation/upgrade
32726
css
text/css
@import url('http://meta.wikimedia.org/w/index.php?title=User:Base/global.css&action=raw&ctype=text/css');
0ad8lnwox1r6cybruweme61168kinbz
Korisnik:Green Mostaza/common.js
2
10592
57820
41418
2017-02-16T12:06:31Z
Savh
853
Savh premjestio je stranicu [[Korisnik:Allan Aguilar/common.js]] na [[Korisnik:Green Mostaza/common.js]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Allan Aguilar|Allan Aguilar]]" u "[[Special:CentralAuth/Gree...
57820
javascript
text/javascript
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:Ralgis/global.js&action=raw&ctype=text/javascript');
oo0enx1togksp1hr5zyhtjklhr9da8p
Korisnik:Gwickwire/common.js
2
10593
32732
2013-02-05T03:46:22Z
Pathoschild
81
global JavaScript ([[m:User:Pathoschild/Scripts/Synchbot|requested by Gwickwire]])
32732
javascript
text/javascript
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:Gwickwire/global.js&action=raw&ctype=text/javascript');
oaavw6b7a7c9mzidklcpj7cy103llx9
Korisnik:Sumone10154/common.js
2
10594
32966
2013-02-18T01:27:44Z
Pathoschild
81
global JavaScript ([[m:User:Pathoschild/Scripts/Synchbot|requested by Sumone10154]])
32966
javascript
text/javascript
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:Sumone10154/global.js&action=raw&ctype=text/javascript');
3kscmjhjt7420t3gpmzm2hurkmq8zey
Korisnik:Meisam/common.js
2
10595
32967
2013-02-18T02:57:57Z
Pathoschild
81
global JavaScript ([[m:User:Pathoschild/Scripts/Synchbot|requested by Meisam]])
32967
javascript
text/javascript
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:Meisam/global.js&action=raw&ctype=text/javascript');
q97zabc65asw699merw8wy1dbbqvvpq
Razgovor s korisnikom:The Bible in Metre
3
10606
33520
33463
2013-03-21T16:38:42Z
The Bible in Metre
1402
jezik
33520
wikitext
text/x-wiki
__NOTOC__
Ako želite ostaviti poruku, zamolio bih vas da to činite [http://en.wikisource.org/wiki/User_talk:The_Bible_in_Metre ovdje], hvala.
b8ne4tk4nhavp6b5tbpuomritcsamol
Korisnik:The Bible in Metre
2
10607
33519
33464
2013-03-21T16:38:27Z
The Bible in Metre
1402
jezik
33519
wikitext
text/x-wiki
__NOTOC__
Ako želite ostaviti poruku, zamolio bih vas da to činite [http://en.wikisource.org/wiki/User_talk:The_Bible_in_Metre ovdje], hvala.
b8ne4tk4nhavp6b5tbpuomritcsamol
Korisnik:GhalyBot
2
10701
33623
2013-03-24T16:04:38Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by GhalyBot]])
33623
wikitext
text/x-wiki
[[File:Redirectltr.png|#REDIRECT|link=]]<span style="font-size: 150%"> Hello, this is a bot account run by [[:m:arz:User:Ghaly|Ghaly]]. My main wiki is the Masry (Egyptian Arabic) Wikipedia. GhalyBot account has a global bot flag. For any issues related to the bot you can leave a message on [[:m:arz:User talk:Ghaly]].</span><br /><span style="font-size:85%; padding-left:52px;">This page is a soft redirect.</span>
shmxs3o3p54w2v16devbf97xnomwbi0
Korisnik:MJ94/common.js
2
10702
33624
2013-03-24T16:44:03Z
Pathoschild
81
global JavaScript ([[m:User:Pathoschild/Scripts/Synchbot|requested by MJ94]])
33624
javascript
text/javascript
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:MJ94/global.js&action=raw&ctype=text/javascript');
h49gs4mgd3t5c9wyrikjug5zvkpn7kv
Korisnik:Vacation9/common.js
2
10703
33625
2013-03-24T17:49:52Z
Pathoschild
81
global JavaScript ([[m:User:Pathoschild/Scripts/Synchbot|requested by Vacation9]])
33625
javascript
text/javascript
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:Vacation9/global.js&action=raw&ctype=text/javascript');
d2r5k2culovici3hq4kxyskbldp19jp
Korisnik:MarcGarver/common.js
2
10706
68152
33629
2021-12-23T10:12:08Z
Ternarius
3176
Ternarius premjestio je stranicu [[Korisnik:QuiteUnusual/common.js]] na [[Korisnik:MarcGarver/common.js]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/QuiteUnusual|QuiteUnusual]]" u "[[Special:CentralAuth/MarcGarver|MarcGarver]]"
33629
javascript
text/javascript
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:QuiteUnusual/global.js&action=raw&ctype=text/javascript');
ozkxsiaxnjtqzex00x2y77f845nf2wv
Korisnik:Soul Train/common.js
2
10707
33630
2013-03-25T01:11:30Z
Pathoschild
81
global JavaScript ([[m:User:Pathoschild/Scripts/Synchbot|requested by Soul Train]])
33630
javascript
text/javascript
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:Soul Train/global.js&action=raw&ctype=text/javascript');
6qwcojg9yj8tlbkjmf64ogd88cnbepz
Korisnik:Razr Nation/common.js
2
10708
53291
33631
2015-12-30T19:07:10Z
Steinsplitter
1382
Steinsplitter premjestio je stranicu [[Korisnik:Hahc21/common.js]] na [[Korisnik:Razr Nation/common.js]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Hahc21|Hahc21]]" u "[[Special:CentralAuth/Razr Nation|Razr N...
53291
javascript
text/javascript
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:Hahc21/global.js&action=raw&ctype=text/javascript');
bs42x31d4gl13hy71n4x1xvrisbvycp
Korisnik:VIGNERON
2
10975
34267
2013-04-06T11:25:45Z
VIGNERON
1419
+ IWL
34267
wikitext
text/x-wiki
[[fr:user:VIGNERON]]
[[:fr:user:VIGNERON]]
4jfr7f94p5j0lw8xzjxm35lukv5rlc1
Razgovor s korisnikom:JrgenEcke
3
11027
34364
2013-04-09T21:57:56Z
EdinBot
1333
Dobrodošli!
34364
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:Rachele82
3
11028
34365
2013-04-09T21:58:21Z
EdinBot
1333
Dobrodošli!
34365
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:KarenRosa
3
11029
34366
2013-04-09T21:58:23Z
EdinBot
1333
Dobrodošli!
34366
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:CharlaBur
3
11030
34367
2013-04-09T21:58:24Z
EdinBot
1333
Dobrodošli!
34367
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:MildredMe
3
11031
34368
2013-04-09T21:58:26Z
EdinBot
1333
Dobrodošli!
34368
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:Katrin05W
3
11032
34369
2013-04-09T21:58:27Z
EdinBot
1333
Dobrodošli!
34369
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:Bstranslator
3
11033
56805
44137
2016-10-12T13:33:40Z
Céréales Killer
1864
Céréales Killer premjestio je stranicu [[Razgovor s korisnikom:Senad~bswiktionary]] na [[Razgovor s korisnikom:Bstranslator]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Senad~bswiktionary|Senad~bswiktionary...
56805
wikitext
text/x-wiki
{{Dobrodošlica|}}
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Senad. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Senad~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
5ewuyvdgc6rbmvqs6mtp56xvzlpfot3
Razgovor s korisnikom:LindseySQ
3
11034
34371
2013-04-09T21:58:30Z
EdinBot
1333
Dobrodošli!
34371
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:LSommer
3
11035
34372
2013-04-09T21:58:32Z
EdinBot
1333
Dobrodošli!
34372
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:Pamrdo5
3
11036
34373
2013-04-09T21:58:33Z
EdinBot
1333
Dobrodošli!
34373
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:DaniellaMr
3
11037
34374
2013-04-09T21:58:35Z
EdinBot
1333
Dobrodošli!
34374
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:Hans94~bswiktionary
3
11038
44122
44036
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44122
wikitext
text/x-wiki
{{Dobrodošlica|}}
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Hans94. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Hans94~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
937t57803dx8hg9hkpi3psq137pf3u5
Razgovor s korisnikom:IrvingQfl
3
11039
34376
2013-04-09T21:58:38Z
EdinBot
1333
Dobrodošli!
34376
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:GertieOno
3
11040
34377
2013-04-09T21:58:39Z
EdinBot
1333
Dobrodošli!
34377
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:Ertzuioplificator
3
11041
34378
2013-04-09T21:58:41Z
EdinBot
1333
Dobrodošli!
34378
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:Emily~bswiktionary
3
11042
44117
44035
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44117
wikitext
text/x-wiki
{{Dobrodošlica|}}
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Emily. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Emily~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
rbhj8dpogiyt5d3d3s1yegmnp4rvdh1
Razgovor s korisnikom:Ily~bswiktionary
3
11043
44121
44066
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44121
wikitext
text/x-wiki
{{Dobrodošlica|}}
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Ily. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Ily~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
jqtimcb6r4fs4yd5u4t1hjbpt3fuyz3
Razgovor s korisnikom:Zisko~bswiktionary
3
11044
44144
44077
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44144
wikitext
text/x-wiki
{{Dobrodošlica|}}
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Zisko. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Zisko~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:28, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
i399qhc70hgnco795pt6dzv2t1152s7
Razgovor s korisnikom:Fico224
3
11045
34382
2013-04-09T21:58:48Z
EdinBot
1333
Dobrodošli!
34382
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:Marijan~bswiktionary
3
11046
44142
44056
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44142
wikitext
text/x-wiki
{{Dobrodošlica|}}
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Marijan. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Marijan~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
0rgnbcmqkbtohk7dqjloxnxe2a0hoz1
Razgovor s korisnikom:Buljubasice
3
11047
34384
2013-04-09T21:58:51Z
EdinBot
1333
Dobrodošli!
34384
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:Gaudio
3
11048
34385
2013-04-09T21:58:52Z
EdinBot
1333
Dobrodošli!
34385
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:Sparky~bswiktionary
3
11049
44134
44062
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44134
wikitext
text/x-wiki
{{Dobrodošlica|}}
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Sparky. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Sparky~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
flmmaguov3my1meyvp6r6rd8s3kplyd
Razgovor s korisnikom:Rift~bswiktionary
3
11050
44141
44057
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44141
wikitext
text/x-wiki
{{Dobrodošlica|}}
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Rift. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Rift~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
5r2dvy9soqhsr7qb481pgbqncu0d5bs
Razgovor s korisnikom:Edina~bswiktionary
3
11051
44115
44051
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44115
wikitext
text/x-wiki
{{Dobrodošlica|}}
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Edina. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Edina~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
rk1u4cmg6vpd8mjjdoeuz1n4vrclb7q
Razgovor s korisnikom:Pearl~bswiktionary
3
11052
44143
44052
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44143
wikitext
text/x-wiki
{{Dobrodošlica|}}
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Pearl. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Pearl~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
j5fr4xr7i174j8evywb8o4183val0l1
Razgovor s korisnikom:Janica21
3
11053
34390
2013-04-09T21:58:59Z
EdinBot
1333
Dobrodošli!
34390
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:Zu~bswiktionary
3
11054
44148
44080
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44148
wikitext
text/x-wiki
{{Dobrodošlica|}}
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Zu. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Zu~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
qky9n0ew5vs0vu1bp21f8hunf9tuoa2
Razgovor s korisnikom:Iske~bswiktionary
3
11055
44119
44065
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44119
wikitext
text/x-wiki
{{Dobrodošlica|}}
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Iske. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Iske~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
mn16ki69a73309u36c1wricriv2bhph
Razgovor s korisnikom:Bosnewy~bswiktionary
3
11056
44108
44032
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44108
wikitext
text/x-wiki
{{Dobrodošlica|}}
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Bosnewy. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Bosnewy~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
7dnudqqduy0emh8oo75fr0tsudnwn8x
Razgovor s korisnikom:Mikez
3
11057
34394
2013-04-09T21:59:06Z
EdinBot
1333
Dobrodošli!
34394
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:EllenFalls
3
11058
34395
2013-04-09T21:59:07Z
EdinBot
1333
Dobrodošli!
34395
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:Brunoy Anastasiya Seryozhenko
3
11059
34396
2013-04-09T21:59:08Z
EdinBot
1333
Dobrodošli!
34396
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:Sanko~bswiktionary
3
11060
44135
44070
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44135
wikitext
text/x-wiki
{{Dobrodošlica|}}
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Sanko. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Sanko~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
oki1stf87axmwpi465eh5yh0p5xxew5
Razgovor s korisnikom:ZgEmB0
3
11061
34398
2013-04-09T21:59:11Z
EdinBot
1333
Dobrodošli!
34398
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:Armen~bswiktionary
3
11062
44110
44030
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44110
wikitext
text/x-wiki
{{Dobrodošlica|}}
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Armen. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Armen~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
mcxvnooyidps55u5kvs37rw7a9iz0oy
Razgovor s korisnikom:Liesel
3
11063
34400
2013-04-09T21:59:15Z
EdinBot
1333
Dobrodošli!
34400
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:Kanjy
3
11064
34401
2013-04-09T21:59:17Z
EdinBot
1333
Dobrodošli!
34401
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:Alexsh
3
11065
34402
2013-04-09T21:59:18Z
EdinBot
1333
Dobrodošli!
34402
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:Dungodung
3
11066
34403
2013-04-09T21:59:19Z
EdinBot
1333
Dobrodošli!
34403
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:Mirjana16
3
11067
34404
2013-04-09T21:59:21Z
EdinBot
1333
Dobrodošli!
34404
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:Cbrown1023
3
11068
34405
2013-04-09T21:59:22Z
EdinBot
1333
Dobrodošli!
34405
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:Tarawneh
3
11069
34406
2013-04-09T21:59:23Z
EdinBot
1333
Dobrodošli!
34406
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:MF-Warburg
3
11070
34407
2013-04-09T21:59:25Z
EdinBot
1333
Dobrodošli!
34407
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:DerHexer
3
11071
34456
34408
2013-04-09T22:15:05Z
DerHexer
82
aw
34456
wikitext
text/x-wiki
{{Dobrodošlica|}}
:Thanks for your welcome! [[Korisnik:DerHexer|DerHexer]] ([[Razgovor sa korisnikom:DerHexer|razgovor]]) 22:15, 9 april 2013 (KSV)
gwvpilubpppxdozw2rokt3ecxvn7dwq
Razgovor s korisnikom:Az1568
3
11072
34409
2013-04-09T21:59:28Z
EdinBot
1333
Dobrodošli!
34409
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:Magister Mathematicae
3
11073
34410
2013-04-09T21:59:31Z
EdinBot
1333
Dobrodošli!
34410
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:Honey~bswiktionary
3
11074
44114
44041
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44114
wikitext
text/x-wiki
{{Dobrodošlica|}}
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Honey. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Honey~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
bqby9x00idzj5uzojcvw7ucdng2dite
Razgovor s korisnikom:Ahoerstemeier
3
11075
34412
2013-04-09T21:59:34Z
EdinBot
1333
Dobrodošli!
34412
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:Armedon
3
11076
34413
2013-04-09T21:59:36Z
EdinBot
1333
Dobrodošli!
34413
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:AdnanSa
3
11077
34414
2013-04-09T21:59:37Z
EdinBot
1333
Dobrodošli!
34414
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:Millosh
3
11078
34415
2013-04-09T21:59:39Z
EdinBot
1333
Dobrodošli!
34415
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:Sida~bswiktionary
3
11079
44136
44059
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44136
wikitext
text/x-wiki
{{Dobrodošlica|}}
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Sida. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Sida~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
78kd0dw6dx5udireqhpagd8jbsqvkkl
Razgovor s korisnikom:Princeza~bswiktionary
3
11080
44131
44042
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44131
wikitext
text/x-wiki
{{Dobrodošlica|}}
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Princeza. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Princeza~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
m0w30tmps2ivsu60s3m9wkxl8zbwqlo
Razgovor s korisnikom:Andry~bswiktionary
3
11081
44105
44039
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44105
wikitext
text/x-wiki
{{Dobrodošlica|}}
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Andry. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Andry~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
dwc8044flv63lshlksnphn44nxwplgu
Razgovor s korisnikom:Piolinfax
3
11082
34419
2013-04-09T21:59:44Z
EdinBot
1333
Dobrodošli!
34419
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:Sule~bswiktionary
3
11083
44132
44074
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44132
wikitext
text/x-wiki
{{Dobrodošlica|}}
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Sule. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Sule~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
deefhl8ku2dq61rex6jdd1ofvcvqmbu
Razgovor s korisnikom:Ella~bswiktionary
3
11084
44116
44028
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44116
wikitext
text/x-wiki
{{Dobrodošlica|}}
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Ella. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Ella~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
gqz00ri7v1x3naibx49ssccg1jp2ziw
Razgovor s korisnikom:CommonsDelinker
3
11085
34422
2013-04-09T21:59:48Z
EdinBot
1333
Dobrodošli!
34422
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:Llull~bswiktionary
3
11086
44123
44044
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44123
wikitext
text/x-wiki
{{Dobrodošlica|}}
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Llull. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Llull~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
35wlbx7w4rmbkp9w1mabpr8ivdo7m9k
Razgovor s korisnikom:Purodha
3
11087
43128
34424
2015-03-17T19:27:55Z
MediaWiki message delivery
1685
Vaš korisnički račun će biti preimenovan
43128
wikitext
text/x-wiki
{{Dobrodošlica|}}
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Purodha. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Purodha~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
cg6kio1yakyn2v2b69809fmyr1jchdd
Razgovor s korisnikom:Koavf
3
11088
34425
2013-04-09T21:59:53Z
EdinBot
1333
Dobrodošli!
34425
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:Vildricianus~bswiktionary
3
11089
44133
44075
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44133
wikitext
text/x-wiki
{{Dobrodošlica|}}
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Vildricianus. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Vildricianus~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:28, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
6rasnurzihl3aw8xfjveo9eoelirgs7
Razgovor s korisnikom:Jon Harald Søby
3
11090
34427
2013-04-09T21:59:57Z
EdinBot
1333
Dobrodošli!
34427
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:Mery~bswiktionary
3
11091
44145
44069
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44145
wikitext
text/x-wiki
{{Dobrodošlica|}}
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Mery. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Mery~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
flm3osn1wxu963op5ttdm0i9rhk99mq
Razgovor s korisnikom:Hamza~bswiktionary
3
11092
44113
44040
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44113
wikitext
text/x-wiki
{{Dobrodošlica|}}
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Hamza. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Hamza~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
p2ovdb9d9iwf471slap2yaec421hv5w
Razgovor s korisnikom:Crveni Baron~bswiktionary
3
11093
44109
44034
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44109
wikitext
text/x-wiki
{{Dobrodošlica|}}
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Crveni Baron. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Crveni Baron~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
4h28m1i5blwuu5zo39zx4ew6esldglz
Razgovor s korisnikom:Benko
3
11094
34431
2013-04-09T22:00:03Z
EdinBot
1333
Dobrodošli!
34431
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:Hikica
3
11095
34432
2013-04-09T22:00:04Z
EdinBot
1333
Dobrodošli!
34432
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:GerardM
3
11096
34433
2013-04-09T22:00:06Z
EdinBot
1333
Dobrodošli!
34433
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:Raphael~bswiktionary
3
11097
44147
44058
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44147
wikitext
text/x-wiki
{{Dobrodošlica|}}
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Raphael. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Raphael~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
dtvijv8ar2ui6fop39iw2miz2wfb84t
Razgovor s korisnikom:Arijana~bswiktionary
3
11098
44107
44029
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44107
wikitext
text/x-wiki
{{Dobrodošlica|}}
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Arijana. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Arijana~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
3212ksd48q9xaed9c8qlbcbeqycnnuv
Razgovor s korisnikom:Iboric
3
11099
34436
2013-04-09T22:00:10Z
EdinBot
1333
Dobrodošli!
34436
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:Balû
3
11100
34437
2013-04-09T22:00:12Z
EdinBot
1333
Dobrodošli!
34437
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:Dbenbenn
3
11101
34438
2013-04-09T22:00:13Z
EdinBot
1333
Dobrodošli!
34438
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:Krule~bswiktionary
3
11102
44118
44043
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44118
wikitext
text/x-wiki
{{Dobrodošlica|}}
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Krule. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Krule~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
l6grqroicaqiwdrd83stnmxkh8iixzb
Razgovor s korisnikom:Walter
3
11103
34440
2013-04-09T22:00:16Z
EdinBot
1333
Dobrodošli!
34440
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:Emx~bswiktionary
3
11104
44120
44048
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44120
wikitext
text/x-wiki
{{Dobrodošlica|}}
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Emx. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Emx~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
25czc48c9mt7vvbwep5jxsa6mfwlzlx
Razgovor s korisnikom:Prevert
3
11105
34442
2013-04-09T22:00:19Z
EdinBot
1333
Dobrodošli!
34442
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:Huremovic
3
11106
34443
2013-04-09T22:00:21Z
EdinBot
1333
Dobrodošli!
34443
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:Korg
3
11107
34444
2013-04-09T22:00:22Z
EdinBot
1333
Dobrodošli!
34444
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:Zumbulka~bswiktionary
3
11108
44149
44082
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44149
wikitext
text/x-wiki
{{Dobrodošlica|}}
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Zumbulka. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Zumbulka~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
6ji9mplgruzz58upm1mslbfa5do8sb3
Razgovor s korisnikom:Bosvik~bswiktionary
3
11109
44106
44033
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44106
wikitext
text/x-wiki
{{Dobrodošlica|}}
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Bosvik. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Bosvik~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
js6vmmo4v49agixr6o5zlhny5717ned
Razgovor s korisnikom:Webkid~bswiktionary
3
11110
44130
44081
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44130
wikitext
text/x-wiki
{{Dobrodošlica|}}
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Webkid. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Webkid~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:28, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
9kzzqbsgarf4r1ullrbnxiy9mbe5rgs
Razgovor s korisnikom:Ævar Arnfjörð Bjarmason
3
11111
34448
2013-04-09T22:00:29Z
EdinBot
1333
Dobrodošli!
34448
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:MF911
3
11112
34449
2013-04-09T22:00:31Z
EdinBot
1333
Dobrodošli!
34449
wikitext
text/x-wiki
{{Dobrodošlica|}}
7l0uum2gawvktnzuok4r92wllcqp5b4
Razgovor s korisnikom:Sprinkler~bswiktionary
3
11113
44150
44072
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44150
wikitext
text/x-wiki
{{Dobrodošlica|}}
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Sprinkler. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Sprinkler~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
9hxcfp55hir99sovk7chdqgclyyhu7f
Razgovor s korisnikom:Hos~bswiktionary
3
11114
44124
44063
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44124
wikitext
text/x-wiki
{{Dobrodošlica|}}
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Hos. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Hos~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
ko6k6yes5gop9950lyypmbbvharboc2
Razgovor s korisnikom:Mitras~bswiktionary
3
11115
44129
44045
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44129
wikitext
text/x-wiki
{{Dobrodošlica|}}
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Mitras. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Mitras~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
1rv1w0w75nj8433udsm90hc60my3jgk
Korisnik:KWiki
2
11116
34458
2013-04-09T22:24:59Z
KWiki
1197
Nova stranica: {{#Babel:bs|en-3|hr-4|sr-4|fr-1}} Najviše aktivan na [[w:Korisnik:KWiki|BS-Wikipediji]].
34458
wikitext
text/x-wiki
{{#Babel:bs|en-3|hr-4|sr-4|fr-1}}
Najviše aktivan na [[w:Korisnik:KWiki|BS-Wikipediji]].
9yehl1u83kw3uekonyq37ikc13o63f5
Razgovor s korisnikom:AraxStall
3
11177
34622
2013-04-14T22:55:59Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
34622
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Calq
3
11185
34662
2013-04-15T15:17:22Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
34662
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Korisnik:RileyBot/Stop
2
11186
34667
2013-04-16T01:54:49Z
RileyBot
1435
Disabling checkpage on all Wikimedia sites RileyBot is not flagged to run on.
34667
wikitext
text/x-wiki
disable
nxtahk3t41kbuldajcexl2qzue0v1og
Razgovor s korisnikom:RegenaRoc
3
11187
34698
2013-04-16T19:27:35Z
EdinBot
1333
Dobrodošli!
34698
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Earnest78
3
11188
34699
2013-04-16T19:27:36Z
EdinBot
1333
Dobrodošli!
34699
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Šablon:sv-konj
10
11192
34703
2013-04-16T20:43:25Z
Barishan
287
Nova stranica: <div class="NavFrame" style="width:65%"> <div class="NavHead" style="" >Konjugacija: {{PAGENAME}}</div> <div class="NavContent"> {| style="background:#F9F9F9; text-align:center; w...
34703
wikitext
text/x-wiki
<div class="NavFrame" style="width:65%">
<div class="NavHead" style="" >Konjugacija: {{PAGENAME}}</div>
<div class="NavContent">
{| style="background:#F9F9F9; text-align:center; width:100%" class="inflection-table"
|-
! style="width:33%;background:#DEDEDE" |
! style="background:#DEDEDE" | Aktiv <small>([[aktiv]])</small>
! style="background:#DEDEDE" | Pasiv <small>([[passiv]])</small>
|-
! style="background:#DEDEDE" | Infinitiv <small>([[infinitiv]])</small>
| {{{1}}}
| {{{8}}}
|-
! style="background:#DEDEDE" | Prezent <small>([[presens]])</small>
| {{{2}}}
| {{{9}}}
|-
! style="background:#DEDEDE" | Prošlost <small>([[preteritum]])</small>
| {{{3}}}
| {{{10}}}
|-
! style="background:#DEDEDE" | Supin <small>([[supinum]])</small>
| {{{4}}}
| {{{11}}}
|-
! style="background:#DEDEDE" | Imperativ <small>([[imperativ]])</small>
| {{{5}}}
| {{{12}}}
|-
! style="background:#DEDEDE" | Particip prezenta <small>([[presensparticip|presensp.]])</small>
| {{{6}}}
|
|-
! style="background:#DEDEDE" | Particip preterita <small>([[perfektparticip|perfektp.]])</small>
| {{{7}}}
|
|}
</div></div><noinclude>
[[Category:Šabloni deklinacije (švedski)]]</noinclude>
eyh93p9bvbkrp4vw2pzfzmf0glbomqt
Korisnik:Edinwiki/Spisak/Korisnici po broju izmjena
2
11373
34896
2013-04-17T01:04:34Z
EdinBot
1333
Ažuriranje spiska
34896
wikitext
text/x-wiki
Generisano: 02:11, 17 April 2013. Bez botova. Aktivni korisnici označeni žutom a neaktivni plavom bojom.
{| style="white-space:nowrap; background:#95B9C7; color:#FFF"
|-
! #
! Korisnik
! Broj izmjena
|- style="background:#FDD017; color:#FFF; font-weight: bold;"
| 1
| [[Korisnik:Barishan|<span style="color:#084B8A; text-decoration:underline;">Barishan</span>]]
| [[Posebno:SredisnjaAutent/Barishan|<span style="color:#084B8A; text-decoration:underline;">8,244</span>]]
|- style="background:#FDD017; color:#FFF; font-weight: bold;"
| 2
| [[Korisnik:Dijan|<span style="color:#084B8A; text-decoration:underline;">Dijan</span>]]
| [[Posebno:SredisnjaAutent/Dijan|<span style="color:#084B8A; text-decoration:underline;">4,421</span>]]
|- style="background:#FDD017; color:#FFF; font-weight: bold;"
| 3
| [[Korisnik:HydrizBot|<span style="color:#084B8A; text-decoration:underline;">HydrizBot</span>]]
| [[Posebno:SredisnjaAutent/HydrizBot|<span style="color:#084B8A; text-decoration:underline;">3,138</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 4
| [[Korisnik:KamikazeBot|<span style="color:#FFF; text-decoration:underline;">KamikazeBot</span>]]
| [[Posebno:SredisnjaAutent/KamikazeBot|<span style="color:#FFF; text-decoration:underline;">1,822</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 5
| [[Korisnik:Interwicket|<span style="color:#FFF; text-decoration:underline;">Interwicket</span>]]
| [[Posebno:SredisnjaAutent/Interwicket|<span style="color:#FFF; text-decoration:underline;">1,676</span>]]
|- style="background:#FDD017; color:#FFF; font-weight: bold;"
| 6
| [[Korisnik:JAnDbot|<span style="color:#084B8A; text-decoration:underline;">JAnDbot</span>]]
| [[Posebno:SredisnjaAutent/JAnDbot|<span style="color:#084B8A; text-decoration:underline;">1,365</span>]]
|- style="background:#FDD017; color:#FFF; font-weight: bold;"
| 7
| [[Korisnik:MalafayaBot|<span style="color:#084B8A; text-decoration:underline;">MalafayaBot</span>]]
| [[Posebno:SredisnjaAutent/MalafayaBot|<span style="color:#084B8A; text-decoration:underline;">817</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 8
| [[Korisnik:AvocatoBot|<span style="color:#FFF; text-decoration:underline;">AvocatoBot</span>]]
| [[Posebno:SredisnjaAutent/AvocatoBot|<span style="color:#FFF; text-decoration:underline;">311</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 9
| [[Korisnik:WarddrBOT|<span style="color:#FFF; text-decoration:underline;">WarddrBOT</span>]]
| [[Posebno:SredisnjaAutent/WarddrBOT|<span style="color:#FFF; text-decoration:underline;">311</span>]]
|- style="background:#FDD017; color:#FFF; font-weight: bold;"
| 10
| [[Korisnik:Pathoschild|<span style="color:#084B8A; text-decoration:underline;">Pathoschild</span>]]
| [[Posebno:SredisnjaAutent/Pathoschild|<span style="color:#084B8A; text-decoration:underline;">265</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 11
| [[Korisnik:WikitanvirBot|<span style="color:#FFF; text-decoration:underline;">WikitanvirBot</span>]]
| [[Posebno:SredisnjaAutent/WikitanvirBot|<span style="color:#FFF; text-decoration:underline;">218</span>]]
|- style="background:#FDD017; color:#FFF; font-weight: bold;"
| 12
| [[Korisnik:Malafaya|<span style="color:#084B8A; text-decoration:underline;">Malafaya</span>]]
| [[Posebno:SredisnjaAutent/Malafaya|<span style="color:#084B8A; text-decoration:underline;">133</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 13
| [[Korisnik:RoggBot|<span style="color:#FFF; text-decoration:underline;">RoggBot</span>]]
| [[Posebno:SredisnjaAutent/RoggBot|<span style="color:#FFF; text-decoration:underline;">98</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 14
| [[Korisnik:Kukac|<span style="color:#FFF; text-decoration:underline;">Kukac</span>]]
| [[Posebno:SredisnjaAutent/Kukac|<span style="color:#FFF; text-decoration:underline;">79</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 15
| [[Korisnik:Connel MacKenzie|<span style="color:#FFF; text-decoration:underline;">Connel MacKenzie</span>]]
| [[Posebno:SredisnjaAutent/Connel MacKenzie|<span style="color:#FFF; text-decoration:underline;">75</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 16
| [[Korisnik:Live Forever|<span style="color:#FFF; text-decoration:underline;">Live Forever</span>]]
| [[Posebno:SredisnjaAutent/Live Forever|<span style="color:#FFF; text-decoration:underline;">56</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 17
| [[Korisnik:Gangleri|<span style="color:#FFF; text-decoration:underline;">Gangleri</span>]]
| [[Posebno:SredisnjaAutent/Gangleri|<span style="color:#FFF; text-decoration:underline;">56</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 18
| [[Korisnik:WikimediaNotifier|<span style="color:#FFF; text-decoration:underline;">WikimediaNotifier</span>]]
| [[Posebno:SredisnjaAutent/WikimediaNotifier|<span style="color:#FFF; text-decoration:underline;">54</span>]]
|- style="background:#FDD017; color:#FFF; font-weight: bold;"
| 19
| [[Korisnik:KWiki|<span style="color:#084B8A; text-decoration:underline;">KWiki</span>]]
| [[Posebno:SredisnjaAutent/KWiki|<span style="color:#084B8A; text-decoration:underline;">41</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 20
| [[Korisnik:Kahriman|<span style="color:#FFF; text-decoration:underline;">Kahriman</span>]]
| [[Posebno:SredisnjaAutent/Kahriman|<span style="color:#FFF; text-decoration:underline;">38</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 21
| [[Korisnik:George Animal|<span style="color:#FFF; text-decoration:underline;">George Animal</span>]]
| [[Posebno:SredisnjaAutent/George Animal|<span style="color:#FFF; text-decoration:underline;">35</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 22
| [[Korisnik:Mjbmrbot|<span style="color:#FFF; text-decoration:underline;">Mjbmrbot</span>]]
| [[Posebno:SredisnjaAutent/Mjbmrbot|<span style="color:#FFF; text-decoration:underline;">35</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 23
| [[Korisnik:Zu|<span style="color:#FFF; text-decoration:underline;">Zu</span>]]
| [[Posebno:SredisnjaAutent/Zu|<span style="color:#FFF; text-decoration:underline;">35</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 24
| [[Korisnik:Bugoslav|<span style="color:#FFF; text-decoration:underline;">Bugoslav</span>]]
| [[Posebno:SredisnjaAutent/Bugoslav|<span style="color:#FFF; text-decoration:underline;">33</span>]]
|- style="background:#FDD017; color:#FFF; font-weight: bold;"
| 25
| [[Korisnik:Edinwiki|<span style="color:#084B8A; text-decoration:underline;">Edinwiki</span>]]
| [[Posebno:SredisnjaAutent/Edinwiki|<span style="color:#084B8A; text-decoration:underline;">30</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 26
| [[Korisnik:Demicx|<span style="color:#FFF; text-decoration:underline;">Demicx</span>]]
| [[Posebno:SredisnjaAutent/Demicx|<span style="color:#FFF; text-decoration:underline;">28</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 27
| [[Korisnik:Sae1962|<span style="color:#FFF; text-decoration:underline;">Sae1962</span>]]
| [[Posebno:SredisnjaAutent/Sae1962|<span style="color:#FFF; text-decoration:underline;">27</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 28
| [[Korisnik:Benko|<span style="color:#FFF; text-decoration:underline;">Benko</span>]]
| [[Posebno:SredisnjaAutent/Benko|<span style="color:#FFF; text-decoration:underline;">24</span>]]
|- style="background:#FDD017; color:#FFF; font-weight: bold;"
| 29
| [[Korisnik:Makecat-bot|<span style="color:#084B8A; text-decoration:underline;">Makecat-bot</span>]]
| [[Posebno:SredisnjaAutent/Makecat-bot|<span style="color:#084B8A; text-decoration:underline;">24</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 30
| [[Korisnik:Wikitanvir|<span style="color:#FFF; text-decoration:underline;">Wikitanvir</span>]]
| [[Posebno:SredisnjaAutent/Wikitanvir|<span style="color:#FFF; text-decoration:underline;">23</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 31
| [[Korisnik:Hoo User Page Bot|<span style="color:#FFF; text-decoration:underline;">Hoo User Page Bot</span>]]
| [[Posebno:SredisnjaAutent/Hoo User Page Bot|<span style="color:#FFF; text-decoration:underline;">17</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 32
| [[Korisnik:Quentinv57|<span style="color:#FFF; text-decoration:underline;">Quentinv57</span>]]
| [[Posebno:SredisnjaAutent/Quentinv57|<span style="color:#FFF; text-decoration:underline;">15</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 33
| [[Korisnik:Jalexander|<span style="color:#FFF; text-decoration:underline;">Jalexander</span>]]
| [[Posebno:SredisnjaAutent/Jalexander|<span style="color:#FFF; text-decoration:underline;">13</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 34
| [[Korisnik:Hégésippe Cormier|<span style="color:#FFF; text-decoration:underline;">Hégésippe Cormier</span>]]
| [[Posebno:SredisnjaAutent/Hégésippe Cormier|<span style="color:#FFF; text-decoration:underline;">11</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 35
| [[Korisnik:Vikiçizer|<span style="color:#FFF; text-decoration:underline;">Vikiçizer</span>]]
| [[Posebno:SredisnjaAutent/Vikiçizer|<span style="color:#FFF; text-decoration:underline;">11</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 36
| [[Korisnik:Purodha|<span style="color:#FFF; text-decoration:underline;">Purodha</span>]]
| [[Posebno:SredisnjaAutent/Purodha|<span style="color:#FFF; text-decoration:underline;">9</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 37
| [[Korisnik:Zumbulka|<span style="color:#FFF; text-decoration:underline;">Zumbulka</span>]]
| [[Posebno:SredisnjaAutent/Zumbulka|<span style="color:#FFF; text-decoration:underline;">8</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 38
| [[Korisnik:Hoo man|<span style="color:#FFF; text-decoration:underline;">Hoo man</span>]]
| [[Posebno:SredisnjaAutent/Hoo man|<span style="color:#FFF; text-decoration:underline;">8</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 39
| [[Korisnik:Mitras|<span style="color:#FFF; text-decoration:underline;">Mitras</span>]]
| [[Posebno:SredisnjaAutent/Mitras|<span style="color:#FFF; text-decoration:underline;">8</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 40
| [[Korisnik:Blaabeck|<span style="color:#FFF; text-decoration:underline;">Blaabeck</span>]]
| [[Posebno:SredisnjaAutent/Blaabeck|<span style="color:#FFF; text-decoration:underline;">8</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 41
| [[Korisnik:Jafeluv|<span style="color:#FFF; text-decoration:underline;">Jafeluv</span>]]
| [[Posebno:SredisnjaAutent/Jafeluv|<span style="color:#FFF; text-decoration:underline;">7</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 42
| [[Korisnik:Spl908455|<span style="color:#FFF; text-decoration:underline;">Spl908455</span>]]
| [[Posebno:SredisnjaAutent/Spl908455|<span style="color:#FFF; text-decoration:underline;">7</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 43
| [[Korisnik:Avocato|<span style="color:#FFF; text-decoration:underline;">Avocato</span>]]
| [[Posebno:SredisnjaAutent/Avocato|<span style="color:#FFF; text-decoration:underline;">7</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 44
| [[Korisnik:Spacebirdy|<span style="color:#FFF; text-decoration:underline;">Spacebirdy</span>]]
| [[Posebno:SredisnjaAutent/Spacebirdy|<span style="color:#FFF; text-decoration:underline;">7</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 45
| [[Korisnik:Armen|<span style="color:#FFF; text-decoration:underline;">Armen</span>]]
| [[Posebno:SredisnjaAutent/Armen|<span style="color:#FFF; text-decoration:underline;">7</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 46
| [[Korisnik:Sir Lestaty de Lioncourt|<span style="color:#FFF; text-decoration:underline;">Sir Lestaty de Lioncourt</span>]]
| [[Posebno:SredisnjaAutent/Sir Lestaty de Lioncourt|<span style="color:#FFF; text-decoration:underline;">6</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 47
| [[Korisnik:Magister Mathematicae|<span style="color:#FFF; text-decoration:underline;">Magister Mathematicae</span>]]
| [[Posebno:SredisnjaAutent/Magister Mathematicae|<span style="color:#FFF; text-decoration:underline;">6</span>]]
|- style="background:#FDD017; color:#FFF; font-weight: bold;"
| 48
| [[Korisnik:DerHexer|<span style="color:#084B8A; text-decoration:underline;">DerHexer</span>]]
| [[Posebno:SredisnjaAutent/DerHexer|<span style="color:#084B8A; text-decoration:underline;">6</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 49
| [[Korisnik:Abigor|<span style="color:#FFF; text-decoration:underline;">Abigor</span>]]
| [[Posebno:SredisnjaAutent/Abigor|<span style="color:#FFF; text-decoration:underline;">6</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 50
| [[Korisnik:ChuispastonBot|<span style="color:#FFF; text-decoration:underline;">ChuispastonBot</span>]]
| [[Posebno:SredisnjaAutent/ChuispastonBot|<span style="color:#FFF; text-decoration:underline;">6</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 51
| [[Korisnik:Piet-c|<span style="color:#FFF; text-decoration:underline;">Piet-c</span>]]
| [[Posebno:SredisnjaAutent/Piet-c|<span style="color:#FFF; text-decoration:underline;">6</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 52
| [[Korisnik:EdwardsBot|<span style="color:#FFF; text-decoration:underline;">EdwardsBot</span>]]
| [[Posebno:SredisnjaAutent/EdwardsBot|<span style="color:#FFF; text-decoration:underline;">6</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 53
| [[Korisnik:Zigger|<span style="color:#FFF; text-decoration:underline;">Zigger</span>]]
| [[Posebno:SredisnjaAutent/Zigger|<span style="color:#FFF; text-decoration:underline;">6</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 54
| [[Korisnik:MenoBot|<span style="color:#FFF; text-decoration:underline;">MenoBot</span>]]
| [[Posebno:SredisnjaAutent/MenoBot|<span style="color:#FFF; text-decoration:underline;">6</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 55
| [[Korisnik:Curious|<span style="color:#FFF; text-decoration:underline;">Curious</span>]]
| [[Posebno:SredisnjaAutent/Curious|<span style="color:#FFF; text-decoration:underline;">6</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 56
| [[Korisnik:Thogo|<span style="color:#FFF; text-decoration:underline;">Thogo</span>]]
| [[Posebno:SredisnjaAutent/Thogo|<span style="color:#FFF; text-decoration:underline;">6</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 57
| [[Korisnik:タチコマ robot|<span style="color:#FFF; text-decoration:underline;">タチコマ robot</span>]]
| [[Posebno:SredisnjaAutent/タチコマ robot|<span style="color:#FFF; text-decoration:underline;">6</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 58
| [[Korisnik:Urhixidur|<span style="color:#FFF; text-decoration:underline;">Urhixidur</span>]]
| [[Posebno:SredisnjaAutent/Urhixidur|<span style="color:#FFF; text-decoration:underline;">5</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 59
| [[Korisnik:Mike.lifeguard|<span style="color:#FFF; text-decoration:underline;">Mike.lifeguard</span>]]
| [[Posebno:SredisnjaAutent/Mike.lifeguard|<span style="color:#FFF; text-decoration:underline;">5</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 60
| [[Korisnik:Mjbmr|<span style="color:#FFF; text-decoration:underline;">Mjbmr</span>]]
| [[Posebno:SredisnjaAutent/Mjbmr|<span style="color:#FFF; text-decoration:underline;">5</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 61
| [[Korisnik:Moe Epsilon|<span style="color:#FFF; text-decoration:underline;">Moe Epsilon</span>]]
| [[Posebno:SredisnjaAutent/Moe Epsilon|<span style="color:#FFF; text-decoration:underline;">5</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 62
| [[Korisnik:CERminator|<span style="color:#FFF; text-decoration:underline;">CERminator</span>]]
| [[Posebno:SredisnjaAutent/CERminator|<span style="color:#FFF; text-decoration:underline;">5</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 63
| [[Korisnik:Carsrac|<span style="color:#FFF; text-decoration:underline;">Carsrac</span>]]
| [[Posebno:SredisnjaAutent/Carsrac|<span style="color:#FFF; text-decoration:underline;">4</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 64
| [[Korisnik:Jorunn|<span style="color:#FFF; text-decoration:underline;">Jorunn</span>]]
| [[Posebno:SredisnjaAutent/Jorunn|<span style="color:#FFF; text-decoration:underline;">4</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 65
| [[Korisnik:Jasper Deng|<span style="color:#FFF; text-decoration:underline;">Jasper Deng</span>]]
| [[Posebno:SredisnjaAutent/Jasper Deng|<span style="color:#FFF; text-decoration:underline;">4</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 66
| [[Korisnik:Sanya3|<span style="color:#FFF; text-decoration:underline;">Sanya3</span>]]
| [[Posebno:SredisnjaAutent/Sanya3|<span style="color:#FFF; text-decoration:underline;">4</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 67
| [[Korisnik:TAKASUGI Shinji|<span style="color:#FFF; text-decoration:underline;">TAKASUGI Shinji</span>]]
| [[Posebno:SredisnjaAutent/TAKASUGI Shinji|<span style="color:#FFF; text-decoration:underline;">4</span>]]
|- style="background:#FDD017; color:#FFF; font-weight: bold;"
| 68
| [[Korisnik:The Bible in Metre|<span style="color:#084B8A; text-decoration:underline;">The Bible in Metre</span>]]
| [[Posebno:SredisnjaAutent/The Bible in Metre|<span style="color:#084B8A; text-decoration:underline;">4</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 69
| [[Korisnik:A112CRO|<span style="color:#FFF; text-decoration:underline;">A112CRO</span>]]
| [[Posebno:SredisnjaAutent/A112CRO|<span style="color:#FFF; text-decoration:underline;">4</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 70
| [[Korisnik:Korg|<span style="color:#FFF; text-decoration:underline;">Korg</span>]]
| [[Posebno:SredisnjaAutent/Korg|<span style="color:#FFF; text-decoration:underline;">4</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 71
| [[Korisnik:Wutsje|<span style="color:#FFF; text-decoration:underline;">Wutsje</span>]]
| [[Posebno:SredisnjaAutent/Wutsje|<span style="color:#FFF; text-decoration:underline;">4</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 72
| [[Korisnik:Caypartis|<span style="color:#FFF; text-decoration:underline;">Caypartis</span>]]
| [[Posebno:SredisnjaAutent/Caypartis|<span style="color:#FFF; text-decoration:underline;">4</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 73
| [[Korisnik:Emx|<span style="color:#FFF; text-decoration:underline;">Emx</span>]]
| [[Posebno:SredisnjaAutent/Emx|<span style="color:#FFF; text-decoration:underline;">4</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 74
| [[Korisnik:Pgehres (WMF)|<span style="color:#FFF; text-decoration:underline;">Pgehres (WMF)</span>]]
| [[Posebno:SredisnjaAutent/Pgehres (WMF)|<span style="color:#FFF; text-decoration:underline;">4</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 75
| [[Korisnik:බිඟුවා|<span style="color:#FFF; text-decoration:underline;">බිඟුවා</span>]]
| [[Posebno:SredisnjaAutent/බිඟුවා|<span style="color:#FFF; text-decoration:underline;">4</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 76
| [[Korisnik:Billinghurst|<span style="color:#FFF; text-decoration:underline;">Billinghurst</span>]]
| [[Posebno:SredisnjaAutent/Billinghurst|<span style="color:#FFF; text-decoration:underline;">4</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 77
| [[Korisnik:Bastique|<span style="color:#FFF; text-decoration:underline;">Bastique</span>]]
| [[Posebno:SredisnjaAutent/Bastique|<span style="color:#FFF; text-decoration:underline;">3</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 78
| [[Korisnik:Jitrixis|<span style="color:#FFF; text-decoration:underline;">Jitrixis</span>]]
| [[Posebno:SredisnjaAutent/Jitrixis|<span style="color:#FFF; text-decoration:underline;">3</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 79
| [[Korisnik:Egmontaz|<span style="color:#FFF; text-decoration:underline;">Egmontaz</span>]]
| [[Posebno:SredisnjaAutent/Egmontaz|<span style="color:#FFF; text-decoration:underline;">3</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 80
| [[Korisnik:VasilievVV|<span style="color:#FFF; text-decoration:underline;">VasilievVV</span>]]
| [[Posebno:SredisnjaAutent/VasilievVV|<span style="color:#FFF; text-decoration:underline;">3</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 81
| [[Korisnik:Ruslik0|<span style="color:#FFF; text-decoration:underline;">Ruslik0</span>]]
| [[Posebno:SredisnjaAutent/Ruslik0|<span style="color:#FFF; text-decoration:underline;">3</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 82
| [[Korisnik:Makecat|<span style="color:#FFF; text-decoration:underline;">Makecat</span>]]
| [[Posebno:SredisnjaAutent/Makecat|<span style="color:#FFF; text-decoration:underline;">3</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 83
| [[Korisnik:Zisko|<span style="color:#FFF; text-decoration:underline;">Zisko</span>]]
| [[Posebno:SredisnjaAutent/Zisko|<span style="color:#FFF; text-decoration:underline;">3</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 84
| [[Korisnik:Plastika|<span style="color:#FFF; text-decoration:underline;">Plastika</span>]]
| [[Posebno:SredisnjaAutent/Plastika|<span style="color:#FFF; text-decoration:underline;">3</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 85
| [[Korisnik:Twonex|<span style="color:#FFF; text-decoration:underline;">Twonex</span>]]
| [[Posebno:SredisnjaAutent/Twonex|<span style="color:#FFF; text-decoration:underline;">3</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 86
| [[Korisnik:Seha|<span style="color:#FFF; text-decoration:underline;">Seha</span>]]
| [[Posebno:SredisnjaAutent/Seha|<span style="color:#FFF; text-decoration:underline;">3</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 87
| [[Korisnik:Romaine|<span style="color:#FFF; text-decoration:underline;">Romaine</span>]]
| [[Posebno:SredisnjaAutent/Romaine|<span style="color:#FFF; text-decoration:underline;">3</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 88
| [[Korisnik:Emijrp|<span style="color:#FFF; text-decoration:underline;">Emijrp</span>]]
| [[Posebno:SredisnjaAutent/Emijrp|<span style="color:#FFF; text-decoration:underline;">3</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 89
| [[Korisnik:ZgEmB0|<span style="color:#FFF; text-decoration:underline;">ZgEmB0</span>]]
| [[Posebno:SredisnjaAutent/ZgEmB0|<span style="color:#FFF; text-decoration:underline;">3</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 90
| [[Korisnik:Jedudedek|<span style="color:#FFF; text-decoration:underline;">Jedudedek</span>]]
| [[Posebno:SredisnjaAutent/Jedudedek|<span style="color:#FFF; text-decoration:underline;">3</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 91
| [[Korisnik:Karol007|<span style="color:#FFF; text-decoration:underline;">Karol007</span>]]
| [[Posebno:SredisnjaAutent/Karol007|<span style="color:#FFF; text-decoration:underline;">3</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 92
| [[Korisnik:Addihockey10|<span style="color:#FFF; text-decoration:underline;">Addihockey10</span>]]
| [[Posebno:SredisnjaAutent/Addihockey10|<span style="color:#FFF; text-decoration:underline;">3</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 93
| [[Korisnik:Thamizhpparithi Maari|<span style="color:#FFF; text-decoration:underline;">Thamizhpparithi Maari</span>]]
| [[Posebno:SredisnjaAutent/Thamizhpparithi Maari|<span style="color:#FFF; text-decoration:underline;">3</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 94
| [[Korisnik:Dcljr|<span style="color:#FFF; text-decoration:underline;">Dcljr</span>]]
| [[Posebno:SredisnjaAutent/Dcljr|<span style="color:#FFF; text-decoration:underline;">3</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 95
| [[Korisnik:Yoursmile|<span style="color:#FFF; text-decoration:underline;">Yoursmile</span>]]
| [[Posebno:SredisnjaAutent/Yoursmile|<span style="color:#FFF; text-decoration:underline;">3</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 96
| [[Korisnik:Jfblanc|<span style="color:#FFF; text-decoration:underline;">Jfblanc</span>]]
| [[Posebno:SredisnjaAutent/Jfblanc|<span style="color:#FFF; text-decoration:underline;">2</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 97
| [[Korisnik:Catrope|<span style="color:#FFF; text-decoration:underline;">Catrope</span>]]
| [[Posebno:SredisnjaAutent/Catrope|<span style="color:#FFF; text-decoration:underline;">2</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 98
| [[Korisnik:Alan ffm|<span style="color:#FFF; text-decoration:underline;">Alan ffm</span>]]
| [[Posebno:SredisnjaAutent/Alan ffm|<span style="color:#FFF; text-decoration:underline;">2</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 99
| [[Korisnik:Gzen92|<span style="color:#FFF; text-decoration:underline;">Gzen92</span>]]
| [[Posebno:SredisnjaAutent/Gzen92|<span style="color:#FFF; text-decoration:underline;">2</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 100
| [[Korisnik:Tadiranscopus|<span style="color:#FFF; text-decoration:underline;">Tadiranscopus</span>]]
| [[Posebno:SredisnjaAutent/Tadiranscopus|<span style="color:#FFF; text-decoration:underline;">2</span>]]
|- style="background:#FDD017; color:#FFF; font-weight: bold;"
| 101
| [[Korisnik:Calq|<span style="color:#084B8A; text-decoration:underline;">Calq</span>]]
| [[Posebno:SredisnjaAutent/Calq|<span style="color:#084B8A; text-decoration:underline;">2</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 102
| [[Korisnik:Krenair|<span style="color:#FFF; text-decoration:underline;">Krenair</span>]]
| [[Posebno:SredisnjaAutent/Krenair|<span style="color:#FFF; text-decoration:underline;">2</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 103
| [[Korisnik:Rschen7754|<span style="color:#FFF; text-decoration:underline;">Rschen7754</span>]]
| [[Posebno:SredisnjaAutent/Rschen7754|<span style="color:#FFF; text-decoration:underline;">2</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 104
| [[Korisnik:Base|<span style="color:#FFF; text-decoration:underline;">Base</span>]]
| [[Posebno:SredisnjaAutent/Base|<span style="color:#FFF; text-decoration:underline;">2</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 105
| [[Korisnik:GhalyBot|<span style="color:#FFF; text-decoration:underline;">GhalyBot</span>]]
| [[Posebno:SredisnjaAutent/GhalyBot|<span style="color:#FFF; text-decoration:underline;">2</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 106
| [[Korisnik:GlobalEditBot|<span style="color:#FFF; text-decoration:underline;">GlobalEditBot</span>]]
| [[Posebno:SredisnjaAutent/GlobalEditBot|<span style="color:#FFF; text-decoration:underline;">2</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 107
| [[Korisnik:Crochet.david.bot|<span style="color:#FFF; text-decoration:underline;">Crochet.david.bot</span>]]
| [[Posebno:SredisnjaAutent/Crochet.david.bot|<span style="color:#FFF; text-decoration:underline;">2</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 108
| [[Korisnik:Ruy Pugliesi|<span style="color:#FFF; text-decoration:underline;">Ruy Pugliesi</span>]]
| [[Posebno:SredisnjaAutent/Ruy Pugliesi|<span style="color:#FFF; text-decoration:underline;">2</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 109
| [[Korisnik:Shujenchang|<span style="color:#FFF; text-decoration:underline;">Shujenchang</span>]]
| [[Posebno:SredisnjaAutent/Shujenchang|<span style="color:#FFF; text-decoration:underline;">2</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 110
| [[Korisnik:Mabifixem|<span style="color:#FFF; text-decoration:underline;">Mabifixem</span>]]
| [[Posebno:SredisnjaAutent/Mabifixem|<span style="color:#FFF; text-decoration:underline;">2</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 111
| [[Korisnik:JAn Dudík|<span style="color:#FFF; text-decoration:underline;">JAn Dudík</span>]]
| [[Posebno:SredisnjaAutent/JAn Dudík|<span style="color:#FFF; text-decoration:underline;">2</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 112
| [[Korisnik:BOTijo|<span style="color:#FFF; text-decoration:underline;">BOTijo</span>]]
| [[Posebno:SredisnjaAutent/BOTijo|<span style="color:#FFF; text-decoration:underline;">2</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 113
| [[Korisnik:Beria|<span style="color:#FFF; text-decoration:underline;">Beria</span>]]
| [[Posebno:SredisnjaAutent/Beria|<span style="color:#FFF; text-decoration:underline;">2</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 114
| [[Korisnik:Suprememangaka|<span style="color:#FFF; text-decoration:underline;">Suprememangaka</span>]]
| [[Posebno:SredisnjaAutent/Suprememangaka|<span style="color:#FFF; text-decoration:underline;">2</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 115
| [[Korisnik:Hosiryuhosi|<span style="color:#FFF; text-decoration:underline;">Hosiryuhosi</span>]]
| [[Posebno:SredisnjaAutent/Hosiryuhosi|<span style="color:#FFF; text-decoration:underline;">2</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 116
| [[Korisnik:Sj|<span style="color:#FFF; text-decoration:underline;">Sj</span>]]
| [[Posebno:SredisnjaAutent/Sj|<span style="color:#FFF; text-decoration:underline;">2</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 117
| [[Korisnik:Melancholie|<span style="color:#FFF; text-decoration:underline;">Melancholie</span>]]
| [[Posebno:SredisnjaAutent/Melancholie|<span style="color:#FFF; text-decoration:underline;">2</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 118
| [[Korisnik:Point233|<span style="color:#FFF; text-decoration:underline;">Point233</span>]]
| [[Posebno:SredisnjaAutent/Point233|<span style="color:#FFF; text-decoration:underline;">2</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 119
| [[Korisnik:Pearl|<span style="color:#FFF; text-decoration:underline;">Pearl</span>]]
| [[Posebno:SredisnjaAutent/Pearl|<span style="color:#FFF; text-decoration:underline;">2</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 120
| [[Korisnik:Volkov|<span style="color:#FFF; text-decoration:underline;">Volkov</span>]]
| [[Posebno:SredisnjaAutent/Volkov|<span style="color:#FFF; text-decoration:underline;">2</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 121
| [[Korisnik:Nilfanion|<span style="color:#FFF; text-decoration:underline;">Nilfanion</span>]]
| [[Posebno:SredisnjaAutent/Nilfanion|<span style="color:#FFF; text-decoration:underline;">2</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 122
| [[Korisnik:Meno25|<span style="color:#FFF; text-decoration:underline;">Meno25</span>]]
| [[Posebno:SredisnjaAutent/Meno25|<span style="color:#FFF; text-decoration:underline;">2</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 123
| [[Korisnik:Millosh|<span style="color:#FFF; text-decoration:underline;">Millosh</span>]]
| [[Posebno:SredisnjaAutent/Millosh|<span style="color:#FFF; text-decoration:underline;">2</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 124
| [[Korisnik:OC Ripper|<span style="color:#FFF; text-decoration:underline;">OC Ripper</span>]]
| [[Posebno:SredisnjaAutent/OC Ripper|<span style="color:#FFF; text-decoration:underline;">2</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 125
| [[Korisnik:Vigorous action|<span style="color:#FFF; text-decoration:underline;">Vigorous action</span>]]
| [[Posebno:SredisnjaAutent/Vigorous action|<span style="color:#FFF; text-decoration:underline;">2</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 126
| [[Korisnik:Agricoleur|<span style="color:#FFF; text-decoration:underline;">Agricoleur</span>]]
| [[Posebno:SredisnjaAutent/Agricoleur|<span style="color:#FFF; text-decoration:underline;">2</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 127
| [[Korisnik:Nick1915|<span style="color:#FFF; text-decoration:underline;">Nick1915</span>]]
| [[Posebno:SredisnjaAutent/Nick1915|<span style="color:#FFF; text-decoration:underline;">2</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 128
| [[Korisnik:Jamesofur|<span style="color:#FFF; text-decoration:underline;">Jamesofur</span>]]
| [[Posebno:SredisnjaAutent/Jamesofur|<span style="color:#FFF; text-decoration:underline;">2</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 129
| [[Korisnik:Suisui|<span style="color:#FFF; text-decoration:underline;">Suisui</span>]]
| [[Posebno:SredisnjaAutent/Suisui|<span style="color:#FFF; text-decoration:underline;">2</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 130
| [[Korisnik:RCBot|<span style="color:#FFF; text-decoration:underline;">RCBot</span>]]
| [[Posebno:SredisnjaAutent/RCBot|<span style="color:#FFF; text-decoration:underline;">2</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 131
| [[Korisnik:Witch SA|<span style="color:#FFF; text-decoration:underline;">Witch SA</span>]]
| [[Posebno:SredisnjaAutent/Witch SA|<span style="color:#FFF; text-decoration:underline;">2</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 132
| [[Korisnik:Kinamand|<span style="color:#FFF; text-decoration:underline;">Kinamand</span>]]
| [[Posebno:SredisnjaAutent/Kinamand|<span style="color:#FFF; text-decoration:underline;">2</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 133
| [[Korisnik:GerardM|<span style="color:#FFF; text-decoration:underline;">GerardM</span>]]
| [[Posebno:SredisnjaAutent/GerardM|<span style="color:#FFF; text-decoration:underline;">2</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 134
| [[Korisnik:Caiaffa|<span style="color:#FFF; text-decoration:underline;">Caiaffa</span>]]
| [[Posebno:SredisnjaAutent/Caiaffa|<span style="color:#FFF; text-decoration:underline;">2</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 135
| [[Korisnik:Pill|<span style="color:#FFF; text-decoration:underline;">Pill</span>]]
| [[Posebno:SredisnjaAutent/Pill|<span style="color:#FFF; text-decoration:underline;">2</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 136
| [[Korisnik:Dodde|<span style="color:#FFF; text-decoration:underline;">Dodde</span>]]
| [[Posebno:SredisnjaAutent/Dodde|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 137
| [[Korisnik:SterkeBak|<span style="color:#FFF; text-decoration:underline;">SterkeBak</span>]]
| [[Posebno:SredisnjaAutent/SterkeBak|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 138
| [[Korisnik:Kanjy|<span style="color:#FFF; text-decoration:underline;">Kanjy</span>]]
| [[Posebno:SredisnjaAutent/Kanjy|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 139
| [[Korisnik:Ponpan|<span style="color:#FFF; text-decoration:underline;">Ponpan</span>]]
| [[Posebno:SredisnjaAutent/Ponpan|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 140
| [[Korisnik:Termininja|<span style="color:#FFF; text-decoration:underline;">Termininja</span>]]
| [[Posebno:SredisnjaAutent/Termininja|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 141
| [[Korisnik:EllenFalls|<span style="color:#FFF; text-decoration:underline;">EllenFalls</span>]]
| [[Posebno:SredisnjaAutent/EllenFalls|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 142
| [[Korisnik:Bff|<span style="color:#FFF; text-decoration:underline;">Bff</span>]]
| [[Posebno:SredisnjaAutent/Bff|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 143
| [[Korisnik:Marcus Cyron|<span style="color:#FFF; text-decoration:underline;">Marcus Cyron</span>]]
| [[Posebno:SredisnjaAutent/Marcus Cyron|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 144
| [[Korisnik:Marcin Łukasz Kiejzik|<span style="color:#FFF; text-decoration:underline;">Marcin Łukasz Kiejzik</span>]]
| [[Posebno:SredisnjaAutent/Marcin Łukasz Kiejzik|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 145
| [[Korisnik:Jatrobat|<span style="color:#FFF; text-decoration:underline;">Jatrobat</span>]]
| [[Posebno:SredisnjaAutent/Jatrobat|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 146
| [[Korisnik:Brunoy Anastasiya Seryozhenko|<span style="color:#FFF; text-decoration:underline;">Brunoy Anastasiya Seryozhenko</span>]]
| [[Posebno:SredisnjaAutent/Brunoy Anastasiya Seryozhenko|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 147
| [[Korisnik:KoreanQuoter|<span style="color:#FFF; text-decoration:underline;">KoreanQuoter</span>]]
| [[Posebno:SredisnjaAutent/KoreanQuoter|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 148
| [[Korisnik:Addihockey10 (automated)|<span style="color:#FFF; text-decoration:underline;">Addihockey10 (automated)</span>]]
| [[Posebno:SredisnjaAutent/Addihockey10 (automated)|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 149
| [[Korisnik:Dungodung|<span style="color:#FFF; text-decoration:underline;">Dungodung</span>]]
| [[Posebno:SredisnjaAutent/Dungodung|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 150
| [[Korisnik:Érico Júnior Wouters|<span style="color:#FFF; text-decoration:underline;">Érico Júnior Wouters</span>]]
| [[Posebno:SredisnjaAutent/Érico Júnior Wouters|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 151
| [[Korisnik:Palapa|<span style="color:#FFF; text-decoration:underline;">Palapa</span>]]
| [[Posebno:SredisnjaAutent/Palapa|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 152
| [[Korisnik:Kusurija|<span style="color:#FFF; text-decoration:underline;">Kusurija</span>]]
| [[Posebno:SredisnjaAutent/Kusurija|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 153
| [[Korisnik:Bibac lord-008|<span style="color:#FFF; text-decoration:underline;">Bibac lord-008</span>]]
| [[Posebno:SredisnjaAutent/Bibac lord-008|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 154
| [[Korisnik:Vildricianus|<span style="color:#FFF; text-decoration:underline;">Vildricianus</span>]]
| [[Posebno:SredisnjaAutent/Vildricianus|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 155
| [[Korisnik:Jon Harald Søby|<span style="color:#FFF; text-decoration:underline;">Jon Harald Søby</span>]]
| [[Posebno:SredisnjaAutent/Jon Harald Søby|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 156
| [[Korisnik:Crveni Baron|<span style="color:#FFF; text-decoration:underline;">Crveni Baron</span>]]
| [[Posebno:SredisnjaAutent/Crveni Baron|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 157
| [[Korisnik:Balû|<span style="color:#FFF; text-decoration:underline;">Balû</span>]]
| [[Posebno:SredisnjaAutent/Balû|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 158
| [[Korisnik:Krule|<span style="color:#FFF; text-decoration:underline;">Krule</span>]]
| [[Posebno:SredisnjaAutent/Krule|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 159
| [[Korisnik:Walter|<span style="color:#FFF; text-decoration:underline;">Walter</span>]]
| [[Posebno:SredisnjaAutent/Walter|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 160
| [[Korisnik:Dejvid|<span style="color:#FFF; text-decoration:underline;">Dejvid</span>]]
| [[Posebno:SredisnjaAutent/Dejvid|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#FDD017; color:#FFF; font-weight: bold;"
| 161
| [[Korisnik:VIGNERON|<span style="color:#084B8A; text-decoration:underline;">VIGNERON</span>]]
| [[Posebno:SredisnjaAutent/VIGNERON|<span style="color:#084B8A; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 162
| [[Korisnik:Legoktm|<span style="color:#FFF; text-decoration:underline;">Legoktm</span>]]
| [[Posebno:SredisnjaAutent/Legoktm|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 163
| [[Korisnik:Mike|<span style="color:#FFF; text-decoration:underline;">Mike</span>]]
| [[Posebno:SredisnjaAutent/Mike|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 164
| [[Korisnik:DzWiki|<span style="color:#FFF; text-decoration:underline;">DzWiki</span>]]
| [[Posebno:SredisnjaAutent/DzWiki|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 165
| [[Korisnik:ZxxZxxZ|<span style="color:#FFF; text-decoration:underline;">ZxxZxxZ</span>]]
| [[Posebno:SredisnjaAutent/ZxxZxxZ|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 166
| [[Korisnik:Cbrown1023|<span style="color:#FFF; text-decoration:underline;">Cbrown1023</span>]]
| [[Posebno:SredisnjaAutent/Cbrown1023|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 167
| [[Korisnik:Vogone|<span style="color:#FFF; text-decoration:underline;">Vogone</span>]]
| [[Posebno:SredisnjaAutent/Vogone|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 168
| [[Korisnik:Polyglottos|<span style="color:#FFF; text-decoration:underline;">Polyglottos</span>]]
| [[Posebno:SredisnjaAutent/Polyglottos|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#FDD017; color:#FFF; font-weight: bold;"
| 169
| [[Korisnik:MF-Warburg|<span style="color:#084B8A; text-decoration:underline;">MF-Warburg</span>]]
| [[Posebno:SredisnjaAutent/MF-Warburg|<span style="color:#084B8A; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 170
| [[Korisnik:Erdemaslancan|<span style="color:#FFF; text-decoration:underline;">Erdemaslancan</span>]]
| [[Posebno:SredisnjaAutent/Erdemaslancan|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 171
| [[Korisnik:Lixer|<span style="color:#FFF; text-decoration:underline;">Lixer</span>]]
| [[Posebno:SredisnjaAutent/Lixer|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 172
| [[Korisnik:Koavf|<span style="color:#FFF; text-decoration:underline;">Koavf</span>]]
| [[Posebno:SredisnjaAutent/Koavf|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#FDD017; color:#FFF; font-weight: bold;"
| 173
| [[Korisnik:RileyBot|<span style="color:#084B8A; text-decoration:underline;">RileyBot</span>]]
| [[Posebno:SredisnjaAutent/RileyBot|<span style="color:#084B8A; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 174
| [[Korisnik:Buljubasice|<span style="color:#FFF; text-decoration:underline;">Buljubasice</span>]]
| [[Posebno:SredisnjaAutent/Buljubasice|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 175
| [[Korisnik:Kpeterzell|<span style="color:#FFF; text-decoration:underline;">Kpeterzell</span>]]
| [[Posebno:SredisnjaAutent/Kpeterzell|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 176
| [[Korisnik:Barras|<span style="color:#FFF; text-decoration:underline;">Barras</span>]]
| [[Posebno:SredisnjaAutent/Barras|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 177
| [[Korisnik:JackPotte|<span style="color:#FFF; text-decoration:underline;">JackPotte</span>]]
| [[Posebno:SredisnjaAutent/JackPotte|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 178
| [[Korisnik:GT5162|<span style="color:#FFF; text-decoration:underline;">GT5162</span>]]
| [[Posebno:SredisnjaAutent/GT5162|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 179
| [[Korisnik:Sparky|<span style="color:#FFF; text-decoration:underline;">Sparky</span>]]
| [[Posebno:SredisnjaAutent/Sparky|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 180
| [[Korisnik:Cekli829|<span style="color:#FFF; text-decoration:underline;">Cekli829</span>]]
| [[Posebno:SredisnjaAutent/Cekli829|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 181
| [[Korisnik:JøMa|<span style="color:#FFF; text-decoration:underline;">JøMa</span>]]
| [[Posebno:SredisnjaAutent/JøMa|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 182
| [[Korisnik:Sa'y|<span style="color:#FFF; text-decoration:underline;">Sa'y</span>]]
| [[Posebno:SredisnjaAutent/Sa'y|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 183
| [[Korisnik:Romanskolduns|<span style="color:#FFF; text-decoration:underline;">Romanskolduns</span>]]
| [[Posebno:SredisnjaAutent/Romanskolduns|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 184
| [[Korisnik:Rift|<span style="color:#FFF; text-decoration:underline;">Rift</span>]]
| [[Posebno:SredisnjaAutent/Rift|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 185
| [[Korisnik:Gaudio|<span style="color:#FFF; text-decoration:underline;">Gaudio</span>]]
| [[Posebno:SredisnjaAutent/Gaudio|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 186
| [[Korisnik:Cadfaell|<span style="color:#FFF; text-decoration:underline;">Cadfaell</span>]]
| [[Posebno:SredisnjaAutent/Cadfaell|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 187
| [[Korisnik:BRUTE|<span style="color:#FFF; text-decoration:underline;">BRUTE</span>]]
| [[Posebno:SredisnjaAutent/BRUTE|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 188
| [[Korisnik:Vinhtantran|<span style="color:#FFF; text-decoration:underline;">Vinhtantran</span>]]
| [[Posebno:SredisnjaAutent/Vinhtantran|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 189
| [[Korisnik:Luckas Blade|<span style="color:#FFF; text-decoration:underline;">Luckas Blade</span>]]
| [[Posebno:SredisnjaAutent/Luckas Blade|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 190
| [[Korisnik:SKbot|<span style="color:#FFF; text-decoration:underline;">SKbot</span>]]
| [[Posebno:SredisnjaAutent/SKbot|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 191
| [[Korisnik:Diego Grez|<span style="color:#FFF; text-decoration:underline;">Diego Grez</span>]]
| [[Posebno:SredisnjaAutent/Diego Grez|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 192
| [[Korisnik:Maltrobat|<span style="color:#FFF; text-decoration:underline;">Maltrobat</span>]]
| [[Posebno:SredisnjaAutent/Maltrobat|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 193
| [[Korisnik:Vhorvat|<span style="color:#FFF; text-decoration:underline;">Vhorvat</span>]]
| [[Posebno:SredisnjaAutent/Vhorvat|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 194
| [[Korisnik:PiRSquared17|<span style="color:#FFF; text-decoration:underline;">PiRSquared17</span>]]
| [[Posebno:SredisnjaAutent/PiRSquared17|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 195
| [[Korisnik:Uusijani|<span style="color:#FFF; text-decoration:underline;">Uusijani</span>]]
| [[Posebno:SredisnjaAutent/Uusijani|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 196
| [[Korisnik:F.Pavkovic|<span style="color:#FFF; text-decoration:underline;">F.Pavkovic</span>]]
| [[Posebno:SredisnjaAutent/F.Pavkovic|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 197
| [[Korisnik:Wangxuan8331800|<span style="color:#FFF; text-decoration:underline;">Wangxuan8331800</span>]]
| [[Posebno:SredisnjaAutent/Wangxuan8331800|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 198
| [[Korisnik:Roggy|<span style="color:#FFF; text-decoration:underline;">Roggy</span>]]
| [[Posebno:SredisnjaAutent/Roggy|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 199
| [[Korisnik:Robert Ullmann|<span style="color:#FFF; text-decoration:underline;">Robert Ullmann</span>]]
| [[Posebno:SredisnjaAutent/Robert Ullmann|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 200
| [[Korisnik:Jurcevicz|<span style="color:#FFF; text-decoration:underline;">Jurcevicz</span>]]
| [[Posebno:SredisnjaAutent/Jurcevicz|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 201
| [[Korisnik:Lucia Bot|<span style="color:#FFF; text-decoration:underline;">Lucia Bot</span>]]
| [[Posebno:SredisnjaAutent/Lucia Bot|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 202
| [[Korisnik:Royce|<span style="color:#FFF; text-decoration:underline;">Royce</span>]]
| [[Posebno:SredisnjaAutent/Royce|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 203
| [[Korisnik:Jredmond|<span style="color:#FFF; text-decoration:underline;">Jredmond</span>]]
| [[Posebno:SredisnjaAutent/Jredmond|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 204
| [[Korisnik:Arseny1992|<span style="color:#FFF; text-decoration:underline;">Arseny1992</span>]]
| [[Posebno:SredisnjaAutent/Arseny1992|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 205
| [[Korisnik:Nikkis|<span style="color:#FFF; text-decoration:underline;">Nikkis</span>]]
| [[Posebno:SredisnjaAutent/Nikkis|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 206
| [[Korisnik:Razorflame|<span style="color:#FFF; text-decoration:underline;">Razorflame</span>]]
| [[Posebno:SredisnjaAutent/Razorflame|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 207
| [[Korisnik:Pavao Zornija|<span style="color:#FFF; text-decoration:underline;">Pavao Zornija</span>]]
| [[Posebno:SredisnjaAutent/Pavao Zornija|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 208
| [[Korisnik:Poop on my chest bitch|<span style="color:#FFF; text-decoration:underline;">Poop on my chest bitch</span>]]
| [[Posebno:SredisnjaAutent/Poop on my chest bitch|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 209
| [[Korisnik:Kwj2772|<span style="color:#FFF; text-decoration:underline;">Kwj2772</span>]]
| [[Posebno:SredisnjaAutent/Kwj2772|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 210
| [[Korisnik:Smooth O|<span style="color:#FFF; text-decoration:underline;">Smooth O</span>]]
| [[Posebno:SredisnjaAutent/Smooth O|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 211
| [[Korisnik:Zeke|<span style="color:#FFF; text-decoration:underline;">Zeke</span>]]
| [[Posebno:SredisnjaAutent/Zeke|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 212
| [[Korisnik:JackBot|<span style="color:#FFF; text-decoration:underline;">JackBot</span>]]
| [[Posebno:SredisnjaAutent/JackBot|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 213
| [[Korisnik:Basharh|<span style="color:#FFF; text-decoration:underline;">Basharh</span>]]
| [[Posebno:SredisnjaAutent/Basharh|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 214
| [[Korisnik:TBloemink|<span style="color:#FFF; text-decoration:underline;">TBloemink</span>]]
| [[Posebno:SredisnjaAutent/TBloemink|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 215
| [[Korisnik:Trijnstel|<span style="color:#FFF; text-decoration:underline;">Trijnstel</span>]]
| [[Posebno:SredisnjaAutent/Trijnstel|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 216
| [[Korisnik:Mercy|<span style="color:#FFF; text-decoration:underline;">Mercy</span>]]
| [[Posebno:SredisnjaAutent/Mercy|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 217
| [[Korisnik:Hercule|<span style="color:#FFF; text-decoration:underline;">Hercule</span>]]
| [[Posebno:SredisnjaAutent/Hercule|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#FDD017; color:#FFF; font-weight: bold;"
| 218
| [[Korisnik:Bencmq|<span style="color:#084B8A; text-decoration:underline;">Bencmq</span>]]
| [[Posebno:SredisnjaAutent/Bencmq|<span style="color:#084B8A; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 219
| [[Korisnik:Oscar|<span style="color:#FFF; text-decoration:underline;">Oscar</span>]]
| [[Posebno:SredisnjaAutent/Oscar|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 220
| [[Korisnik:Crochet.david|<span style="color:#FFF; text-decoration:underline;">Crochet.david</span>]]
| [[Posebno:SredisnjaAutent/Crochet.david|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 221
| [[Korisnik:Courcelles|<span style="color:#FFF; text-decoration:underline;">Courcelles</span>]]
| [[Posebno:SredisnjaAutent/Courcelles|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 222
| [[Korisnik:Reder|<span style="color:#FFF; text-decoration:underline;">Reder</span>]]
| [[Posebno:SredisnjaAutent/Reder|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|-
|}
9u72uroxitginkae9ewjhqhciib2gat
Korisnik:Edinwiki/Spisak/Botovi po broju izmjena
2
11374
34897
2013-04-17T01:05:11Z
EdinBot
1333
Ažuriranje spiska
34897
wikitext
text/x-wiki
Generisano: 03:04, 17 April 2013. Samo botovi. Aktivni označeni žutom a neaktivni plavom bojom.
{| style="white-space:nowrap; background:#95B9C7; color:#FFF"
|-
! #
! Korisnik
! Broj izmjena
|- style="background:#FDD017; color:#FFF; font-weight: bold;"
| 1
| [[Korisnik:VolkovBot|<span style="color:#084B8A; text-decoration:underline;">VolkovBot</span>]]
| [[Posebno:SredisnjaAutent/VolkovBot|<span style="color:#084B8A; text-decoration:underline;">1,588</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 2
| [[Korisnik:Luckas-bot|<span style="color:#FFF; text-decoration:underline;">Luckas-bot</span>]]
| [[Posebno:SredisnjaAutent/Luckas-bot|<span style="color:#FFF; text-decoration:underline;">1,479</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 3
| [[Korisnik:RobotGMwikt|<span style="color:#FFF; text-decoration:underline;">RobotGMwikt</span>]]
| [[Posebno:SredisnjaAutent/RobotGMwikt|<span style="color:#FFF; text-decoration:underline;">876</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 4
| [[Korisnik:GanimalBot|<span style="color:#FFF; text-decoration:underline;">GanimalBot</span>]]
| [[Posebno:SredisnjaAutent/GanimalBot|<span style="color:#FFF; text-decoration:underline;">335</span>]]
|- style="background:#FDD017; color:#FFF; font-weight: bold;"
| 5
| [[Korisnik:YS-Bot|<span style="color:#084B8A; text-decoration:underline;">YS-Bot</span>]]
| [[Posebno:SredisnjaAutent/YS-Bot|<span style="color:#084B8A; text-decoration:underline;">150</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 6
| [[Korisnik:SpaceBirdyBot|<span style="color:#FFF; text-decoration:underline;">SpaceBirdyBot</span>]]
| [[Posebno:SredisnjaAutent/SpaceBirdyBot|<span style="color:#FFF; text-decoration:underline;">142</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 7
| [[Korisnik:CarsracBot|<span style="color:#FFF; text-decoration:underline;">CarsracBot</span>]]
| [[Posebno:SredisnjaAutent/CarsracBot|<span style="color:#FFF; text-decoration:underline;">140</span>]]
|- style="background:#FDD017; color:#FFF; font-weight: bold;"
| 8
| [[Korisnik:EdinBot|<span style="color:#084B8A; text-decoration:underline;">EdinBot</span>]]
| [[Posebno:SredisnjaAutent/EdinBot|<span style="color:#084B8A; text-decoration:underline;">94</span>]]
|- style="background:#084B8A; color:#FFF; font-weight: bold;"
| 9
| [[Korisnik:MediaWiki default|<span style="color:#FFF; text-decoration:underline;">MediaWiki default</span>]]
| [[Posebno:SredisnjaAutent/MediaWiki default|<span style="color:#FFF; text-decoration:underline;">1</span>]]
|-
|}
84oiiolo0ofvjckab14ptujuvsgw0jk
Korisnik:Edinwiki/Spisak
2
11375
34900
34898
2013-04-17T01:21:11Z
Edinwiki
523
34900
wikitext
text/x-wiki
== Kategorije ==
* [[/Nepostojeće kategorije sa vezama prema njima]]
== Korisnici ==
* [[/Botovi po broju izmjena]]
* [[/Korisnici po broju izmjena]]
5tg7tgn81mrqzvcubkon8vtjcy239p6
Korisnik:Edinwiki/Spisak/Nepostojeće kategorije sa vezama prema njima
2
11376
34901
2013-04-17T01:21:28Z
EdinBot
1333
Ažuriranje spiska
34901
wikitext
text/x-wiki
Kategorije koje ne postoje ali ipak postoje linkovi prema njima. Generisano: <onlyinclude>03:07, 17 April 2013 (UTC+2)</onlyinclude>.
{| class="wikitable sortable plainlinks" style="width:100%; margin:auto;"
|- style="white-space:nowrap;"
! #
! Kategorija
! Broj veza
|-
| 1
| [[:Kategorija:tr:Biologija|tr:Biologija]]
| [[Posebno:StaJeLinkovanoOvdje/Kategorija:tr:Biologija|2]]
|-
| 2
| [[:Kategorija:de:Biologija|de:Biologija]]
| [[Posebno:StaJeLinkovanoOvdje/Kategorija:de:Biologija|2]]
|-
| 3
| [[:Kategorija:pt:Biologija|pt:Biologija]]
| [[Posebno:StaJeLinkovanoOvdje/Kategorija:pt:Biologija|2]]
|-
| 4
| [[:Kategorija:ja:Biologija|ja:Biologija]]
| [[Posebno:StaJeLinkovanoOvdje/Kategorija:ja:Biologija|2]]
|-
| 5
| [[:Kategorija:uz:Biologija|uz:Biologija]]
| [[Posebno:StaJeLinkovanoOvdje/Kategorija:uz:Biologija|2]]
|-
| 6
| [[:Kategorija:en:Biologija|en:Biologija]]
| [[Posebno:StaJeLinkovanoOvdje/Kategorija:en:Biologija|2]]
|-
| 7
| [[:Kategorija:el:Biologija|el:Biologija]]
| [[Posebno:StaJeLinkovanoOvdje/Kategorija:el:Biologija|2]]
|-
| 8
| [[:Kategorija:ru:Biologija|ru:Biologija]]
| [[Posebno:StaJeLinkovanoOvdje/Kategorija:ru:Biologija|2]]
|-
| 9
| [[:Kategorija:ca:Biologija|ca:Biologija]]
| [[Posebno:StaJeLinkovanoOvdje/Kategorija:ca:Biologija|2]]
|-
| 10
| [[:Kategorija:es:Biologija|es:Biologija]]
| [[Posebno:StaJeLinkovanoOvdje/Kategorija:es:Biologija|2]]
|-
| 11
| [[:Kategorija:sq:Biologija|sq:Biologija]]
| [[Posebno:StaJeLinkovanoOvdje/Kategorija:sq:Biologija|2]]
|-
| 12
| [[:Kategorija:fa:Biologija|fa:Biologija]]
| [[Posebno:StaJeLinkovanoOvdje/Kategorija:fa:Biologija|2]]
|-
| 13
| [[:Kategorija:az:Biologija|az:Biologija]]
| [[Posebno:StaJeLinkovanoOvdje/Kategorija:az:Biologija|2]]
|-
| 14
| [[:Kategorija:sv:Biologija|sv:Biologija]]
| [[Posebno:StaJeLinkovanoOvdje/Kategorija:sv:Biologija|2]]
|-
| 15
| [[:Kategorija:he:Biologija|he:Biologija]]
| [[Posebno:StaJeLinkovanoOvdje/Kategorija:he:Biologija|2]]
|-
| 16
| [[:Kategorija:hu:Biologija|hu:Biologija]]
| [[Posebno:StaJeLinkovanoOvdje/Kategorija:hu:Biologija|2]]
|-
| 17
| [[:Kategorija:pl:Biologija|pl:Biologija]]
| [[Posebno:StaJeLinkovanoOvdje/Kategorija:pl:Biologija|2]]
|-
| 18
| [[:Kategorija:ka:Biologija|ka:Biologija]]
| [[Posebno:StaJeLinkovanoOvdje/Kategorija:ka:Biologija|2]]
|-
| 19
| [[:Kategorija:cs:Biologija|cs:Biologija]]
| [[Posebno:StaJeLinkovanoOvdje/Kategorija:cs:Biologija|2]]
|-
|}
kbdflkthn08a6rp63ducqeqmreoa7lq
Razgovor s korisnikom:Zlatko~bswiktionary
3
11437
44146
44078
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44146
wikitext
text/x-wiki
{{Dobrodošlica}}
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Zlatko. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Zlatko~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:28, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
gpobmq75jbf0ec2j13dzeqc9q4nhy8g
Korisnik:S.M.Samee
2
11438
35049
2013-04-28T18:01:43Z
Hoo User Page Bot
985
Creating global user page, per request https://meta.wikimedia.org/w/index.php?diff=5240959&oldid=5239167
35049
wikitext
text/x-wiki
{{softredirect|w:en:User talk:S.M.Samee}}
g7rqs6n50baydaqxems7vzo0y6ix12g
Korisnik:Razr Nation
2
11439
53287
35194
2015-12-30T19:05:04Z
Steinsplitter
1382
Steinsplitter premjestio je stranicu [[Korisnik:Hahc21]] na [[Korisnik:Razr Nation]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Hahc21|Hahc21]]" u "[[Special:CentralAuth/Razr Nation|Razr Nation]]"
53287
wikitext
text/x-wiki
<div style="position: relative; margin: 0 -1em; padding: 0; background-color: transparent; border: 1px none #ddd; height: 1%;">
<div style="position: relative; margin: 0 auto; background: #DED3CF; width: 950px; border: 1px solid #cccccc; height: 1%;">
<div style="position: relative; overflow: hidden; height:750px;"><!-- Height of the main image -->
<div style="position: relative; overflow: hidden; margin: 0;">[[File:Nature at Caracas (27).jpg|1000px]]</div>
</div>
<div style="position: absolute; top: 0; width: 100%; height: 100%;">
<div style="position: absolute; left: 0.9em; top: 1em; z-index: 10; width: 250px; border: none; background-color:none;">
<!-- START LEFT USERBOXES -->
<div style="opacity: 0.8; -moz-opacity: 0.8;">
<!-- END LEFT USERBOXES -->
</div></div>
<div style="position: absolute; right: 0.4em; top: 1em; z-index: 10; width: 250px; border: none; background-color:none;">
<!-- START RIGHT USERBOXES -->
<div style="opacity: 0.8; -moz-opacity: 0.8;">
<!-- END RIGHT USERBOXES -->
</div></div></div>
</div>
<br>
{| style="font-family:Tahoma; background-color: #FFFFFF; border: 1px solid #CCCCCC; width:950px" cellpadding="15" align="center"
|
[[File:Razr Nation logo.png|center]]
<center>| <span class="plainlinks">[[Special:Contributions/Hahc21|contribs]] · [[:luxo:Hahc21|cross-wiki]] · [http://en.wikichecker.com/user/?t=Hahc21 wikichecker] · [http://meta.wikimedia.org/wiki/Identification_noticeboard identified] · [{{fullurl:Special:Listusers|limit=1&username=Hahc21}} lu]</span> |</center>
<center>| '''Me at''': [[:d:User:Hahc21|Wikidata]] · [[:n:es:Usuario:Hahc21|Spanish Wikinews]] · [[:en:User:Hahc21|English Wikipedia]] · [[:commons:User:Hahc21|Commons]] · [[:m:User:Hahc21|Meta]] |</center>
|}
sdqdwk0m4lgow9bnif51kxlxkf0pf1u
Korisnik:Palapa
2
11443
35372
2013-05-05T20:12:11Z
Palapa
944
Nova stranica: http://bs.wikipedia.org/wiki/Korisnik:Palapa {{#babel:bs|en-2}} --~~~~
35372
wikitext
text/x-wiki
http://bs.wikipedia.org/wiki/Korisnik:Palapa
{{#babel:bs|en-2}}
--[[Korisnik:Palapa|Palapa]] ([[Razgovor sa korisnikom:Palapa|razgovor]]) 20:12, 5 maj 2013 (KSV)
lvl4cvz0q6o6xopbw2d80uivi9fimof
Razgovor s korisnikom:Palapa
3
11444
35406
35405
2013-05-06T18:02:21Z
Palapa
944
/* --~~~~ */ nova sekcija
35406
wikitext
text/x-wiki
{{Dobrodošlica}}
== --[[Korisnik:Palapa|Palapa]] ([[Razgovor sa korisnikom:Palapa|razgovor]]) 18:02, 6 maj 2013 (KSV) ==
--[[Korisnik:Palapa|Palapa]] ([[Razgovor sa korisnikom:Palapa|razgovor]]) 18:02, 6 maj 2013 (KSV)
4w333e4lez4to3785rxwruaj7y06ynh
Korisnik:Pratyya Ghosh
2
11497
67211
40133
2020-05-02T21:28:14Z
Pathoschild
81
global user pages ([[m:Synchbot|requested by Pratyya Ghosh]])
67211
wikitext
text/x-wiki
<!------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------
NOTE THIS PLEASE.
BEFORE MAKING ANY KIND OF EDITS / CHANGES TO THIS PAGE PLEASE LET ME KNOW AT ANY OF THE LINKS GIVEN AT THIS PAGE.
IF YOU TRANSLATE / WANT TO TRANSLATE THIS PAGE IN SOME OTHER / MAIN LANGUAGE OF THIS WIKIMEDIA PROJECT, LET ME KNOW, AND THEN GO AHEAD. I'LL REALLY APPRECIATE THAT. BUT PLEASE DON'T BREAK ANY CODE.
THANKS TO YOU FOR READING AND FOLLOWING THE WORDS.
--------------------------------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------------------->
{{DISPLAYTITLE:<span style="font: bold 30px 'Cambria';">User:Pratyya Ghosh</span>}}
<div style="font-family: Cambria">
<table style="width: 750px; background-color:#f9f9f9; border-color: black; margin-left: auto; margin-right: auto;" border="14">
<tr style="height: 300px;">
<td style="width: 521px; height: 144px; border-color: #f9f9f9;">
<strong>
<!----------------------------------------- START PARA 1 ---------------------------------------------->
<p style="text-align: justify; padding-left: 7px; padding-right: 7px">
<span style="color:#006400"><big><big>'''HELLO AND WELCOME!'''</big></big></span>
<br />
<big><big>This is '''Pratyya Ghosh''' </big></big><small><small>(check [[:commons:File:Pratyya Ghosh pronunciation.ogg|<u>'''THIS'''</u>]] out for the pronunciation).</small></small>
<br />
I am from [[w:en:Bangladesh|'''Bangladesh''']], so I am a native speaker of [[w:en:Bengali Language|'''Bangla''']]. I can also frequently communicate using '''English''', and I can speak and understand '''Hindi'''.<br />
<br />
<span style="color:#B22222">I am not effectively active in this Wikimedia Project. If I've made any edit here, that is most probably an automated one. I do <u>NOT</u> visit this site often/regularly. So I can <u>NOT</u> guarantee a swift and quick reply, OR in WORST CASE, a reply.</span><br />
<br />
However, I am mostly active in the projects which uses the languages I know.
<br />
So, if you want to <u>CONTACT ME</u> or <u>TALK TO ME</u> or know more about me, then please use the Wikimedia Projects mentioned below.<br />
</p>
<!------------------------------------------- END PARA 1 ----------------------------------------------->
<!----------------------------------------- START PARA 2 ---------------------------------------------->
<p style="text-align: left; padding-left: 7px;">
❏ <span style="color:#228B22"><big>'''Wikimedia Projects where I am mostly <u>active</u>:'''</big></span>
* '''[[w:en:English Wikipedia|English Wikipedia]] ([[w:en:Main Page|enwiki]]) : [[w:en:User:Pratyya Ghosh|User Page]] ([[w:en:User talk:Pratyya Ghosh|talk page]]) ([[w:en:Special:Contributions/Pratyya_Ghosh|contributions]]) (<span class="plainlinks">[https://xtools.wmflabs.org/ec/en.wikipedia.org/Pratyya_Ghosh user-stats]</span>)'''
* '''[[w:en:Bengali Wikipedia|Bangla Wikipedia]] ([[w:bn:প্রধান পাতা|bnwiki]]) : [[w:bn:ব্যবহারকারী:Pratyya Ghosh|User Page]] ([[w:bn:ব্যবহারকারী আলাপ:Pratyya Ghosh|talk page]]) ([[w:bn:বিশেষ:অবদান/Pratyya_Ghosh|contributions]]) (<span class="plainlinks">[https://xtools.wmflabs.org/ec/bn.wikipedia.org/Pratyya_Ghosh user-stats]</span>)'''
</p>
<!------------------------------------------- END PARA 2 ----------------------------------------------->
</strong>
</td>
</tr>
</table>
</div>
<!------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------
END OF CODE
--------------------------------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------------------->
o22gone0vn0cnupb7is833hah5g5p4f
Razgovor s korisnikom:Pratyya Ghosh
3
11498
67212
37862
2020-05-02T22:52:23Z
Pathoschild
81
global user pages ([[m:Synchbot|requested by Pratyya Ghosh]])
67212
wikitext
text/x-wiki
<!------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------
BEGIN
--------------------------------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------------------->
{{DISPLAYTITLE:<span style="font: bold 30px 'Cambria';">User talk:Pratyya Ghosh</span>}}
<div style="font-family: Cambria">
<table style="width: 750px; background-color:#f9f9f9; border-color: black; margin-left: auto; margin-right: auto;" border="14">
<tr style="height: 300px;">
<td style="width: 521px; height: 144px; border-color: #f9f9f9; font-weight: bold;">
<!----------------------------------------- START PARA 1 ---------------------------------------------->
<p style="text-align: justify; padding-left: 7px; padding-right: 7px">
<big><big><span style="color:#006400">'''HELLO AND WELCOME'''</span> to the talk page of '''Pratyya Ghosh'''</big></big> <small><small>([[:commons:File:Pratyya Ghosh pronunciation.ogg|<u>'''pronunciation'''</u>]])</small></small>
<br />
Before placing any message here, I would ask you to TAKE A LOOK at my [[User:Pratyya Ghosh|<u>'''user page'''</u>]] on this wiki.
<br />
If you have come here after looking at my user page, then once again I would like to mention the fact that,
</p>
<!------------------------------------------- END PARA 1 ----------------------------------------------->
<!----------------------------------------- START PARA 2 ---------------------------------------------->
<p style="text-align: justify; padding-left: 50px; padding-right: 110px">
<small>
<span style="color:#B22222">I am not effectively active in this Wikimedia Project. If I've made any edit here, that is most probably an automated one. I do <u>NOT</u> visit this site often/regularly. So I can <u>NOT</u> guarantee a swift and quick reply, OR in WORST CASE, a reply.</span><br />
So, if you want to <u>CONTACT ME</u> or <u>TALK TO ME</u> or know more about me, then please use the Wikimedia Projects mentioned below.<br />
⦿ '''[[w:en:English Wikipedia|English Wikipedia]] ([[w:en:Main Page|enwiki]]) : [[w:en:User:Pratyya Ghosh|User Page]] ([[w:en:User talk:Pratyya Ghosh|talk page]]) ([[w:en:Special:Contributions/Pratyya Ghosh|contributions]]) (<span class="plainlinks">[https://xtools.wmflabs.org/ec/en.wikipedia.org/Pratyya_Ghosh user-stats]</span>)'''<br />
⦿ '''[[w:en:Bengali Wikipedia|Bangla Wikipedia]] ([[w:bn:প্রধান পাতা|bnwiki]]) : [[w:bn:ব্যবহারকারী:Pratyya Ghosh|User Page]] ([[w:bn:ব্যবহারকারী আলাপ:Pratyya Ghosh|talk page]]) ([[w:bn:বিশেষ:অবদান/Pratyya Ghosh|contributions]]) (<span class="plainlinks">[https://xtools.wmflabs.org/ec/bn.wikipedia.org/Pratyya_Ghosh user-stats]</span>)'''
</small>
</p>
<!------------------------------------------- END PARA 2 ----------------------------------------------->
<!----------------------------------------- START PARA 3 ---------------------------------------------->
<p style="text-align: justify; padding-left: 7px; padding-right: 7px">
Yet if you want to place message here, then please FOLLOW THESE NOTES:<br />
⚫ Do NOT [[w:en:Wikipedia:Vandalism|Vandalize]] this page. I WON'T be appreciating you for that.<br />
⚫ Be on point. Please don't put some unnecessary message or bring up any irrelevant issues.<br />
⚫ Use a language which I understand. (Otherwise, even if I see your message, I might not be able to reply.)<br />
⚫ BE <u>CIVIL</u> and MAINTAIN <u>ETIQUETTE</u>.<br />
⚫ Finally, you MUST sign your post with <nowiki>~~~~</nowiki><br />
</p>
<!------------------------------------------- END PARA 3 ----------------------------------------------->
</td>
</tr>
</table>
<!------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------
START BELOW THIS PARA. DO NOT CHANGE ANYTHING ABOVE THE LINE.
BEFORE PLACING ANY MESSAGE HERE, ONCE AGAIN,
I AM NOT EFFECTIVELY ACTIVE IN THIS WIKIMEDIA PROJECT. IF I'VE MADE ANY EDIT HERE, THAT IS MOST PROBABLY AN AUTOMATED ONE. I DO NOT VISIT THIS SITE OFTEN/REGULARLY. SO I CAN NOT GUARANTEE A SWIFT AND QUICK REPLY, OR IN WORST CASE, A REPLY.
--------------------------------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------------------->
9qtlaulm2q8nlzm95nj3cdbnjjsv70g
Korisnik:Kolega2357
2
11499
38768
38767
2014-01-07T14:43:00Z
Edinwiki
523
Promijenjen stepen zaštite za "[[Korisnik:Kolega2357]]": Zahtjev korisnika / User request ([Uređivanje=Blokiraj neregistrovane korisnike] (neograničeno) [Premještanje=Blokiraj neregistrovane korisnike] (neograničeno))
38768
wikitext
text/x-wiki
<div align="center" class="usermessage">[[File:Internet-group-chat.svg|left|25px]] '''<span class="plainlinks">Ostavite mi novu poruku [https://meta.wikimedia.org/w/index.php?title=User_talk:Kolega2357&action=edit§ion=new ovde]</div>
[[af:Gebruiker:Kolega2357]]
[[ar:مستخدم:Kolega2357]]
[[ast:Usuariu:Kolega2357]]
[[ay:Usuario:Kolega2357]]
[[bg:Потребител:Kolega2357]]
[[br:Implijer:Kolega2357]]
[[ca:Usuari:Kolega2357]]
[[cy:Defnyddiwr:Kolega2357]]
[[da:Bruger:Kolega2357]]
[[de:Benutzer:Kolega2357]]
[[el:Χρήστης:Kolega2357]]
[[en:User:Kolega2357]]
[[eo:Uzanto:Kolega2357]]
[[es:Usuario:Kolega2357]]
[[et:Kasutaja:Kolega2357]]
[[eu:Lankide:Kolega2357]]
[[fa:کاربر:Kolega2357]]
[[fi:Käyttäjä:Kolega2357]]
[[fj:User:Kolega2357]]
[[fr:Utilisateur:Kolega2357]]
[[fy:Meidogger:Kolega2357]]
[[ga:Úsáideoir:Kolega2357]]
[[gl:Usuario:Kolega2357]]
[[gu:સભ્ય:Kolega2357]]
[[ha:User:Kolega2357]]
[[he:משתמש:Kolega2357]]
[[hi:सदस्य:Kolega2357]]
[[hr:Suradnik:Kolega2357]]
[[hu:Szerkesztő:Kolega2357]]
[[id:Pengguna:Kolega2357]]
[[io:Uzanto:Kolega2357]]
[[is:Notandi:Kolega2357]]
[[it:Utente:Kolega2357]]
[[ja:利用者:Kolega2357]]
[[jv:Panganggo:Kolega2357]]
[[km:អ្នកប្រើប្រាស់:Kolega2357]]
[[kn:ಸದಸ್ಯ:Kolega2357]]
[[ko:사용자:Kolega2357]]
[[ks:رُکُن:Kolega2357]]
[[ku:Bikarhêner:Kolega2357]]
[[la:Usor:Kolega2357]]
[[li:Gebroeker:Kolega2357]]
[[lo:ຜູ້ໃຊ້:Kolega2357]]
[[lt:Naudotojas:Kolega2357]]
[[mg:Mpikambana:Kolega2357]]
[[mk:Корисник:Kolega2357]]
[[ml:ഉപയോക്താവ്:Kolega2357]]
[[my:User:Kolega2357]]
[[nah:Tlatequitiltilīlli:Kolega2357]]
[[nl:Gebruiker:Kolega2357]]
[[nn:Brukar:Kolega2357]]
[[no:Bruker:Kolega2357]]
[[oc:Utilizaire:Kolega2357]]
[[pl:Wikipedysta:Kolega2357]]
[[ps:کارن:Kolega2357]]
[[ru:Участник:Kolega2357]]
[[scn:Utenti:Kolega2357]]
[[sh:Korisnik:Kolega2357]]
[[simple:User:Kolega2357]]
[[sl:Uporabnik:Kolega2357]]
[[sm:User:Kolega2357]]
[[sq:Përdoruesi:Kolega2357]]
[[sr:Корисник:Kolega2357]]
[[st:User:Kolega2357]]
[[sv:Användare:Kolega2357]]
[[sw:Mtumiaji:Kolega2357]]
[[ta:பயனர்:Kolega2357]]
[[te:వాడుకరి:Kolega2357]]
[[th:ผู้ใช้:Kolega2357]]
[[tl:Tagagamit:Kolega2357]]
[[tr:Kullanıcı:Kolega2357]]
[[ts:User:Kolega2357]]
[[uk:Користувач:Kolega2357]]
[[ur:صارف:Kolega2357]]
[[uz:Foydalanuvchi:Kolega2357]]
[[vi:Thành viên:Kolega2357]]
[[vo:Geban:Kolega2357]]
[[wa:Uzeu:Kolega2357]]
[[zh:User:Kolega2357]]
[[zh-min-nan:User:Kolega2357]]
6jimnqgpp7139a5ym1js0umpw0ncdng
Razgovor s korisnikom:Kolega2357
3
11500
35800
2013-05-29T15:14:36Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
35800
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Korisnik:Lukas²³
2
11501
35862
2013-06-03T00:16:28Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by Lukas²³]])
35862
wikitext
text/x-wiki
Hello! I'm Lukas. As a member of the [[m:Small Wiki Monitoring Team|Small Wiki Monitoring Team]], I was probably just here to fix or revert unhelpful edits. You can contact me [[m:User talk:Lukas²³|here (Meta-Wiki)]].
{{#babel:de-N|en-3|fr-1}}
Regards, [[m:User:Lukas²³|Lukas²³]]
m757r6e97b6jywxzfvlsai29gq6iumx
Korisnik:FrigidNinja/common.js
2
11506
36077
2013-07-02T03:11:00Z
Pathoschild
81
global JavaScript ([[m:User:Pathoschild/Scripts/Synchbot|requested by FrigidNinja]])
36077
javascript
text/javascript
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:FrigidNinja/global.js&action=raw&ctype=text/javascript');
1ad7mvbfckmxgbqjjd3woeefbtvwdbl
Korisnik:Knopfkind/common.js
2
11508
36079
2013-07-03T03:21:44Z
Pathoschild
81
global JavaScript ([[m:User:Pathoschild/Scripts/Synchbot|requested by Knopfkind]])
36079
javascript
text/javascript
mw.loader.load("//de.wikipedia.org/w/index.php?title=Benutzer:Knopfkind/global.js&action=raw&ctype=text/javascript");
mxlwb5jbyijlz06up8aadcbgx7hebyi
Korisnik:Alexander Mikhalenko
2
11510
42195
38744
2015-02-23T10:13:55Z
Alexander Mikhalenko
1521
42195
wikitext
text/x-wiki
{{#Babel:ru|uk-4|de-3|en-3|fr-3|es-2|it-2|sr-2|bs-1}}
[[ar:مستخدم:Alexander Mikhalenko]]
[[cs:Wikipedista:Alexander Mikhalenko]]
[[de:Benutzer:Alexander Mikhalenko]]
[[el:Χρήστης:Alexander Mikhalenko]]
[[en:User:Alexander Mikhalenko]]
[[es:Usuario:Alexander Mikhalenko]]
[[fr:Utilisateur:Alexander Mikhalenko]]
[[it:Utente:Alexander Mikhalenko]]
[[ja:利用者:Alexander Mikhalenko]]
[[nl:Gebruiker:Alexander Mikhalenko]]
[[pl:Wikipedysta:Alexander Mikhalenko]]
[[ru:Участник:Alexander Mikhalenko]]
[[sv:Användare:Alexander Mikhalenko]]
[[tr:Kullanıcı:Alexander Mikhalenko]]
[[uk:Користувач:Alexander Mikhalenko]]
[[zh:User:Alexander Mikhalenko]]
q6p3s2cmeix2g1ci31l14gfnv2r7xuc
Korisnik:TCN7JM
2
11511
37766
36213
2013-10-13T16:52:15Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by TCN7JM]])
37766
wikitext
text/x-wiki
{{DISPLAYTITLE:<font face="Tahoma">User:</font><font color="blue" face="Tahoma">T</font><font color="red" face="Tahoma">C</font><font color="gray" face="Tahoma">N7</font><font face="Tahoma">JM</font>}}
<center><font face="Tahoma">[[w:en:User:TCN7JM|English Wikipedia]] — [[d:User:TCN7JM|Wikidata]] — [[w:simple:User:TCN7JM|Simple English Wikipedia]] — [[m:User talk:TCN7JM|Contact me]]</font></center>
[[File:TCN7JM Global Userpage.png|center|middle]]
4v20vrzaoqwfb827ef0df1x3hxhxdgv
Razgovor s korisnikom:Alexander Mikhalenko
3
11515
36275
2013-07-18T22:48:02Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
36275
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Korisnik:Akhilan
2
11516
36284
2013-07-19T14:25:32Z
Akhilan
1209
Nova stranica: <div style="min-height: 57px; border: 1px solid #aaaaaa; background-color: #f9f9f9; width: 50%; margin: 0 auto 1em auto; padding: .2em; text-align: justify;"> <div style="float: le...
36284
wikitext
text/x-wiki
<div style="min-height: 57px; border: 1px solid #aaaaaa; background-color: #f9f9f9; width: 50%; margin: 0 auto 1em auto; padding: .2em; text-align: justify;"> <div style="float: left">[[Image:Wiki.png|50px| ]]</div> <div style="margin-left: 60px">'''Interwiki redirect''' <br> This page can be found at [[w:User:Akhilan|Akhilan]] or [[w:ml:User:Akhilan|അഖിലൻ</span>]] .</div> </div>
3mdhcacij2ldjzg7ps8x4e1cuq94dtw
Razgovor s korisnikom:Akhilan
3
11517
36291
2013-07-19T20:22:14Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
36291
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:MaryF69yazboka
3
11518
36292
2013-07-19T20:22:29Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
36292
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:PamelaDurham
3
11520
36475
2013-07-31T23:41:28Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
36475
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Korisnik:Limotecariu
2
11542
66922
66907
2018-03-25T20:19:57Z
Limotecariu
765
66922
wikitext
text/x-wiki
{{#babel:es|ast-4|fr-3|it-3|ro-3|pt-2|en-2|ca-2|gl-1|he-1|bs-0}}
0y9ixff8ppacjx851avraxgmzvou9vd
Razgovor s korisnikom:Limotecariu
3
11605
66909
36713
2018-02-12T08:49:48Z
Cyberpower678
2087
Cyberpower678 premjestio je stranicu [[Razgovor s korisnikom:Etienfr]] na [[Razgovor s korisnikom:Limotecariu]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Etienfr|Etienfr]]" u "[[Special:CentralAuth/Limotecar...
66909
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Korisnik:Nirakka/common.js
2
11610
36931
2013-08-16T19:14:41Z
Nirakka
1544
global JS from meta
36931
javascript
text/javascript
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:Nirakka/global.js&action=raw&ctype=text/javascript');
ivy7jznevtbkfvg3gj0p9ywoh3uph4k
Razgovor s korisnikom:Nirakka
3
11611
37067
2013-08-23T17:02:25Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
37067
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Korisnik:Nirakka
2
11619
37161
2013-08-31T23:00:26Z
Nirakka
1544
creating user page (script edit)
37161
wikitext
text/x-wiki
{{#babel:de-N|en-3|bs-0}}
I help [[meta:Small Wiki Monitoring Team|monitoring small wikis]]. For further information see [[meta:User:Nirakka]].
[[File:Wikipedia h2g2.jpg|400px|center]]
iyjy6wcmgrd3n8jxf21madcxzlwmr0c
Korisnik:Romaine
2
11621
37270
2013-09-14T11:02:45Z
Romaine
343
Nova stranica: * '''(nl)''': Deze gebruikerspagina is van een gebruiker die het meest actief is op de Nederlandstalige Wikipedia. <br> * '''(en)''': This userpage is from a frequent wikipedian fr...
37270
wikitext
text/x-wiki
* '''(nl)''': Deze gebruikerspagina is van een gebruiker die het meest actief is op de Nederlandstalige Wikipedia. <br>
* '''(en)''': This userpage is from a frequent wikipedian from the Dutch Wikipedia. <br>
* '''(de)''': Diese Benutzerseite ist von einem Benutzer von der Niederländischen Wikipedia.<br>
<br />
:::[[File:2rightarrow.png|20px]] My homewiki is located at: [[w:nl:Gebruiker:Romaine]]<br>
<br />
[[File:2rightarrow.png|20px]] If you want to contact me, please write a message on my nl-Wikipedia [http://nl.wikipedia.org/w/index.php?title=Overleg_gebruiker:Romaine&action=edit§ion=new talk-page].
<small>
:* Please mention that it takes some time before messages on my talkpage of this project are seen.
</small>
----<br>
d5v0lqlc3sm8otz5fvkl3zv3fpu0wyi
Razgovor s korisnikom:Romaine
3
11622
37271
2013-09-14T11:02:47Z
Romaine
343
Nova stranica: * '''(nl)''': Deze gebruikerspagina is van een gebruiker die het meest actief is op de Nederlandstalige Wikipedia. <br> * '''(en)''': This userpage is from a frequent wikipedian fr...
37271
wikitext
text/x-wiki
* '''(nl)''': Deze gebruikerspagina is van een gebruiker die het meest actief is op de Nederlandstalige Wikipedia. <br>
* '''(en)''': This userpage is from a frequent wikipedian from the Dutch Wikipedia. <br>
* '''(de)''': Diese Benutzerseite ist von einem Benutzer von der Niederländischen Wikipedia.<br>
<br />
:::[[File:2rightarrow.png|20px]] My homewiki is located at: [[w:nl:Gebruiker:Romaine]]<br>
<br />
[[File:2rightarrow.png|20px]] If you want to contact me, please write a message on my nl-Wikipedia [http://nl.wikipedia.org/w/index.php?title=Overleg_gebruiker:Romaine&action=edit§ion=new talk-page].
<small>
:* Please mention that it takes some time before messages on my talkpage of this project are seen.
</small>
----<br>
d5v0lqlc3sm8otz5fvkl3zv3fpu0wyi
Korisnik:Knopfkind/common.css
2
11628
37368
2013-09-15T22:20:05Z
Pathoschild
81
global CSS ([[m:User:Pathoschild/Scripts/Synchbot|requested by Knopfkind]])
37368
css
text/css
@import "//de.wikipedia.org/w/index.php?title=Benutzer:Knopfkind/global.css&action=raw&ctype=text/css";
cecddlyfgkfe7ic5sztx0q3nzchdsal
Korisnik:Razr Nation/common.css
2
11629
53289
37369
2015-12-30T19:06:47Z
Steinsplitter
1382
Steinsplitter premjestio je stranicu [[Korisnik:Hahc21/common.css]] na [[Korisnik:Razr Nation/common.css]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Hahc21|Hahc21]]" u "[[Special:CentralAuth/Razr Nation|Razr...
53289
css
text/css
@import "//meta.wikimedia.org/w/index.php?title=User:Hahc21/global.css&action=raw&ctype=text/css";
7g4x6knmp3vyc37fzpnizhtomrecyso
Razgovor s korisnikom:Steinsplitter
3
11631
37386
2013-09-16T22:02:14Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
37386
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Korisnik:Bellayet/common.js
2
11632
37396
2013-09-18T00:40:13Z
Pathoschild
81
global JavaScript ([[m:User:Pathoschild/Scripts/Synchbot|requested by Bellayet]])
37396
javascript
text/javascript
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:Bellayet/global.js&action=raw&ctype=text/javascript');
b52e6o2o28jg360opd5q4leedft135q
Korisnik:*Youngjin/common.js
2
11633
66893
37397
2017-12-06T21:21:07Z
Revi C.
1533
-revi premjestio je stranicu [[Korisnik:분당선M/common.js]] na [[Korisnik:*Youngjin/common.js]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/분당선M|분당선M]]" u "[[Special:CentralAuth/*Youngjin|*Young...
66893
javascript
text/javascript
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:%EB%B6%84%EB%8B%B9%EC%84%A0M/global.js&action=raw&ctype=text/javascript');
mbvzo0n6smqy1qq9skech5273xqjsm9
Korisnik:LlamaAl/common.css
2
11638
37430
2013-09-19T03:34:03Z
Pathoschild
81
global CSS ([[m:User:Pathoschild/Scripts/Synchbot|requested by LlamaAl]])
37430
css
text/css
@import "//meta.wikimedia.org/w/index.php?title=User:LlamaAl/global.css&action=raw&ctype=text/css";
keqd1vd77jud9evny17wbnai8awv1wh
Korisnik:LlamaAl
2
11639
37431
2013-09-19T03:59:36Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by LlamaAl]])
37431
wikitext
text/x-wiki
__NOINDEX__
[[:m:user:LlamaAl]]
5k6cylbo9luu5ncjnu4ax2hqsbnvydt
Razgovor s korisnikom:LlamaAl
3
11640
37432
2013-09-19T04:21:43Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by LlamaAl]])
37432
wikitext
text/x-wiki
__NOINDEX__
[[:m:user talk:LlamaAl]]
oub4g2jl4r1fb2czujsn6wgu83g97l3
Razgovor s korisnikom:Wim b
3
11642
37550
2013-09-23T01:03:14Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by Wim b]])
37550
wikitext
text/x-wiki
<div class="mw-content-ltr">
{{#babel:it|en-2|bs-0}}
:'''Talk''': my user talk on [[:m:it:wikt:User talk:Wim b|it.wikt]]
:'''Info''': my user page on [[m:User:Wim b|Meta]]
'''You can contact me also''' :
* [irc://irc.freenode.net/wiktionary-it '''#wiktionary-it''']
* [irc://irc.freenode.net/wikipedia-it '''#wikipedia-it''']
* [irc://irc.freenode.net/wikbooks-it '''#wikibooks-it''']
* [irc://irc.freenode.net/wikivoyage-it '''#wikivoyage-it''']
* [irc://irc.freenode.net/wikimedia-admin '''#wikimedia-admin''']
* [irc://irc.freenode.net/wikimedia-gs '''#wikimedia-gs''']
</div>
4tru2ldk9p8teu5gj6rk0fgocqgz9l6
Korisnik:Spacebirdy/common.css
2
11647
37610
2013-09-26T01:54:18Z
Pathoschild
81
global CSS ([[m:User:Pathoschild/Scripts/Synchbot|requested by Spacebirdy]])
37610
css
text/css
@import "//meta.wikimedia.org/w/index.php?title=User:Spacebirdy/altækt.css&action=raw&ctype=text/css";
bqvpi9d4fil15fheszanjeyelf7804e
Korisnik:Spacebirdy/common.js
2
11648
68050
37611
2021-01-31T08:53:11Z
Ladsgroup
2295
Maintenance: Replacing importScriptURI with mw.loader.load ([[phab:T95964]])
68050
javascript
text/javascript
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:Spacebirdy/altækt.js&action=raw&ctype=text/javascript');
km9s3o2cm5a2pnznrsp9bowpmbklnry
Razgovor s korisnikom:Vinka~bswiktionary
3
11650
44138
44073
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44138
wikitext
text/x-wiki
{{Dobrodošlica}}
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Vinka. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Vinka~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:28, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
oii247vh9jdqaziefpl9go3zsxvlqt3
Korisnik:Sergio Andres Segovia/common.js
2
11651
37643
2013-09-28T19:32:34Z
Pathoschild
81
global JavaScript ([[m:User:Pathoschild/Scripts/Synchbot|requested by Sergio Andres Segovia]])
37643
javascript
text/javascript
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:Sergio Andres Segovia/global.js&action=raw&ctype=text/javascript');
kw7fnwvspulwu42vm2yj6n3qot7g4tk
Korisnik:Behemot leviatan/common.js
2
11652
37644
2013-09-28T19:55:15Z
Pathoschild
81
global JavaScript ([[m:User:Pathoschild/Scripts/Synchbot|requested by Behemot leviatan]])
37644
javascript
text/javascript
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:Behemot leviatan/global.js&action=raw&ctype=text/javascript');
dvsds5g4drwbhfmo1jvecbjsjdzug3v
Korisnik:Revi C.
2
11654
72448
50313
2024-11-04T08:03:57Z
HakanIST
2154
HakanIST premjestio je stranicu [[Korisnik:-revi]] na [[Korisnik:Revi C.]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/-revi|-revi]]" u "[[Special:CentralAuth/Revi C.|Revi C.]]"
50313
wikitext
text/x-wiki
__NOINDEX__
<div class="mw-content-ltr" lang="en" dir="ltr">
{{#babel:ko|en-3|bs-0}}
[[File:Revi wikimedia image.jpg|thumb|center|middle|If you are here to talk about CommonsDelinker removing a deleted image, please [[:c:User talk:-revi|go here]].]]
Hello! I am [[:m:User:-revi|Revi]]. I edit to [[m:SWMT|revert vandals]], do Wikidata stuff (I am a Wikidata Admin! <small>([{{fullurl:wikidata:Special:ListUsers/-revi|limit=1}} Verify])</small>), or do [[:c:COM:FR|Commons Filemoving stuff]] (I am Commons Admin too! <small>([{{fullurl:c:Special:ListUsers/-revi|limit=1}} Verify])</small>). Come to [[:m:User:-revi|my Meta userpage]] or [[:c:User:-revi|my Commons userpage]] for more information. Thank you.
----
This is not a [[mw:Extension:GlobalUserPage|GlobalUserPage]] provided userpage. It's maintained per-wiki basis and I am not willing to change it.
ncjffyg3shkvi7f5a9zfudz0s1z4jee
Razgovor s korisnikom:Revi C.
3
11655
72447
41382
2024-11-04T08:03:57Z
HakanIST
2154
HakanIST premjestio je stranicu [[Razgovor s korisnikom:-revi]] na [[Razgovor s korisnikom:Revi C.]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/-revi|-revi]]" u "[[Special:CentralAuth/Revi C.|Revi C.]]"
41382
wikitext
text/x-wiki
__NOINDEX__<div class="mw-content-ltr" lang="en" dir="ltr">[[File:Revi logo (pink).png|thumb|center|<span style="color:red">PLEASE DO NOT LEAVE MESSAGE HERE!</span>]]
''' <span style="color:red">Before blocking my account: if you're blocking me for edits with summaries containing </span>''(Script)''<span style="color:red">, just tell me to slow down at [[:c:User talk:-revi]] instead. Those are automated script edits for Commons' filemove system.</span>
Please leave your message at one of the following sites:<br />
[[File:Wikidata-logo-en.svg|45px|link=d:User talk:-revi]] [[d:User talk:-revi]] for Wikidata/interwikilinks stuff (I'm one of the {{int:Group-sysop}} there);<br />
[[File:Commons-logo.svg|45px|link=commons:User talk:-revi]] [[commons:User talk:-revi]] for renaming stuff or [[User:CommonsDelinker|CommonsDelinker]] actions (I'm one of the {{int:Group-sysop}} there);<br />
[[File:Wikimedia Community Logo optimized.svg|45px|link=m:User talk:-revi]] [[meta:User talk:-revi]] for other stuff (like user right notifications or revert messages).</div>
lwjsr976jdsq551jmw5zumkbtvudhn1
Korisnik:*Youngjin/common.css
2
11659
66891
37767
2017-12-06T21:21:06Z
Revi C.
1533
-revi premjestio je stranicu [[Korisnik:분당선M/common.css]] na [[Korisnik:*Youngjin/common.css]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/분당선M|분당선M]]" u "[[Special:CentralAuth/*Youngjin|*You...
66891
css
text/css
@import "//meta.wikimedia.org/w/index.php?title=User:%EB%B6%84%EB%8B%B9%EC%84%A0M/global.css&action=raw&ctype=text/css";
gt41tyc1mmomd9lj9qv6vtr76ycszo0
Korisnik:Galahad/common.js
2
11662
66926
53127
2018-04-04T19:40:08Z
علاء
2270
علاء premjestio je stranicu [[Korisnik:White Master/common.js]] na [[Korisnik:Galahad/common.js]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/White Master|White Master]]" u "[[Special:CentralAuth/Galahad|Galahad]]"
66926
javascript
text/javascript
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:White Master King/global.js&action=raw&ctype=text/javascript');
dgab902j4rc9x4lh5nvneik9hap840j
Korisnik:William915
2
11665
37875
2013-10-28T06:15:34Z
William915
1568
Editing global userpage
37875
wikitext
text/x-wiki
__NOINDEX__
<div style="min-height: 57px; border: 1px solid #aaaaaa; background-color: #f9f9f9; width: 50%; margin: 0 auto 1em auto; padding: .2em; text-align: justify;">
<div style="float: left">[[File:Wiki.png|50px]]</div>
<div style="margin-left: 60px">This page can be found at '''[[:w:en:User:William915|w:en:User:William915]]'''.<br />
''This is an interwiki redirect''.</div>
</div>
{{#babel:zh|yue|en-3|bs-0}}
mqd6ow1wap0fnghznicqns2mwhcmeg6
Korisnik:Renamed user 9thz5duyuxms/common.js
2
11666
68657
66903
2023-03-11T10:32:54Z
Taketa
1910
Taketa premjestio je stranicu [[Korisnik:KernelFreeze/common.js]] na [[Korisnik:Renamed user 9thz5duyuxms/common.js]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/KernelFreeze|KernelFreeze]]" u "[[Special:CentralAuth/Renamed user 9thz5duyuxms|Renamed user 9thz5duyuxms]]"
66903
javascript
text/javascript
// Created using [[m:User:PiRSquared17/Global Userpage]] (feel free to remove this line)
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:Miguel2706/global.js&action=raw&ctype=text/javascript');
mt87reyatdkpnh0iayjh58yfkjvfwj1
Razgovor s korisnikom:Albertsar
3
11667
37942
2013-11-08T17:11:55Z
EdinBot
1333
Dobrodošli!
37942
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:William915
3
11668
37984
2013-11-13T10:34:32Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
37984
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Renamed user 9thz5duyuxms
3
11669
68656
66905
2023-03-11T10:32:54Z
Taketa
1910
Taketa premjestio je stranicu [[Razgovor s korisnikom:KernelFreeze]] na [[Razgovor s korisnikom:Renamed user 9thz5duyuxms]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/KernelFreeze|KernelFreeze]]" u "[[Special:CentralAuth/Renamed user 9thz5duyuxms|Renamed user 9thz5duyuxms]]"
66905
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Southparkfan
3
11670
37986
2013-11-13T10:34:35Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
37986
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Korisnik:AmaryllisGardener
2
11674
38026
2013-11-17T14:25:10Z
AmaryllisGardener
1589
Editing global userpage
38026
wikitext
text/x-wiki
{{#babel:en|sco-2|pih-1|nov-1}}
b0yvcx7beool1djayxe8ixy1apoijrs
Razgovor s korisnikom:AmaryllisGardener
3
11675
38031
2013-11-18T03:27:27Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
38031
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Korisnik:Jayantanth
2
11676
38034
38032
2013-11-18T14:32:51Z
PiRSquared17
694
Fixing userpage (per request).
38034
wikitext
text/x-wiki
{{#babel:bn|en-1}}
<div class="mw-content-ltr" lang="en" dir="ltr">
Hello. I do not edit here much. You can find me on [[m:bn:User:Jayantanth|the Bengali Wikipedia]] or [[m:User:Jayantanth|Meta]].
</div>
<!--This can be used to make a redirect arrow.-->[[File:Redirect arrow without text.svg|46px|link=]][[m:bn:User talk:Jayantanth|w:bn:{{ns:3}}:Jayantanth]] ([[m:w:User talk:Jayantanth|en]], [[m:User talk:Jayantanth|Meta]])
iswgnavz6i0274lvy2730ubtx5kv9qb
Razgovor s korisnikom:Jayantanth
3
11678
38050
2013-11-19T22:40:14Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
38050
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:PiRSquared17
3
11679
38051
2013-11-19T22:40:17Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
38051
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Korisnik:TBloemink
2
11681
38068
2013-11-25T12:43:05Z
TBloemink
861
Editing global userpage
38068
wikitext
text/x-wiki
<!--This is just an example. Edit it to make it yours. PLEASE CHANGE THE BABEL AND CONTENT. THIS IS 100% YOUR RESPONSIBILITY. -->
<div class="mw-content-ltr" lang="en" dir="ltr">Hello. I do not edit here much, but I am a member of [[m:Special:MyLanguage/Small Wiki Monitoring Team|the Small Wiki Monitoring Team]]. You can find me on Meta [[m:User:TBloemink|here]].
</div>
[[File:Redirect arrow without text.svg|46px|link=]][[m:User talk:TBloemink|m:{{ns:3}}:TBloemink]]
qybcofzlzv3draz0hxv2g3uclqg09za
Razgovor s korisnikom:Nirmos
3
11684
38117
2013-11-30T21:04:45Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
38117
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:TBloemink
3
11685
38118
2013-11-30T21:04:51Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
38118
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Stryn
3
11690
38138
2013-12-03T16:41:25Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
38138
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Glaisher
3
11693
38252
2013-12-11T08:24:04Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
38252
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:John F. Lewis
3
11694
38253
2013-12-11T08:24:06Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
38253
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:*Youngjin
3
11700
66895
38384
2017-12-06T21:21:07Z
Revi C.
1533
-revi premjestio je stranicu [[Razgovor s korisnikom:분당선M]] na [[Razgovor s korisnikom:*Youngjin]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/분당선M|분당선M]]" u "[[Special:CentralAuth/*Youngjin|...
66895
wikitext
text/x-wiki
<div style="border:1px solid; background-color:#E8E8E8; margin:10px; padding:10px">
[[File:Gnome-help-faq.svg|100px|left]]
<big> ''' NOTICE''' I am not active in here exapt SWMT works. So I may not replay quicly, Instead please visit my [[m:user talk:분당선M|Meta-wiki user talk page]]. Thank you </big>
qhdktpypuswez5axawcgeouy42wixwq
Razgovor s korisnikom:Mattflaschen
3
11702
44568
38400
2015-04-22T19:47:43Z
DerHexer
82
DerHexer je premjestio stranicu [[Razgovor sa korisnikom:Superm401]] na [[Razgovor sa korisnikom:Mattflaschen]]: Automatsko premještanje stranice zbog preimenovanja korisnika „[[Special:CentralAuth/Superm401|Superm401]]“ u „[[Special:CentralAuth...
44568
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Korisnik:La fée Didier/common.js
2
11703
57799
38945
2017-02-15T22:30:50Z
Litlok
2245
Litlok premjestio je stranicu [[Korisnik:Morphypnos/common.js]] na [[Korisnik:La fée Didier/common.js]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Morphypnos|Morphypnos]]" u "[[Special:CentralAuth/La fée Di...
57799
javascript
text/javascript
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:Morphypnos/global.js&action=raw&ctype=text/javascript');
qrxr6dgh3gg23pvlzua88n4xx2yk05f
Korisnik:JøMa/common.css
2
11706
38959
2014-01-20T21:55:36Z
Pathoschild
81
global CSS ([[m:User:Pathoschild/Scripts/Synchbot|requested by JøMa]])
38959
css
text/css
@import "//de.wikipedia.org/w/index.php?title=User:JøMa/global.css&action=raw&ctype=text/css";
b6im9giy1jl9jqfj9p8k1krtlppdc20
Korisnik:Jmvgpartner/common.js
2
11710
38964
2014-01-21T01:01:27Z
Pathoschild
81
global JavaScript ([[m:User:Pathoschild/Scripts/Synchbot|requested by Jmvgpartner]])
38964
javascript
text/javascript
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:Jmvgpartner/global.js&action=raw&ctype=text/javascript');
973biicq1oyeknwznhafa9banyrg90m
Razgovor s korisnikom:Alan
3
11711
38968
2014-01-21T10:18:13Z
Alan
1497
Editing global usertalk page
38968
wikitext
text/x-wiki
{{#babel:es-N|en-2|eu-3}}
[[File:Redirect arrow without text.svg|46px|link=]][[m:User talk:Alan|m:User talk:Alan]]
k199yb4edrodawb5z4jl9cueesbzddb
Razgovor s korisnikom:Hydriz
3
11720
39015
2014-01-23T10:18:30Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
39015
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
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
Razgovor s korisnikom:OpnizaviIlpo
3
11723
39147
2014-02-09T01:17:19Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
39147
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Korisnik:Iluvatar
2
11724
39158
2014-02-14T13:24:55Z
Iluvatar
1655
Editing global userpage
39158
wikitext
text/x-wiki
{{#babel:ru-N|en-1|be-1|}}
<div class="mw-content-ltr" lang="en" dir="ltr">Hello. I do not edit here much, but I am a member of [[m:Special:MyLanguage/Small Wiki Monitoring Team|the Small Wiki Monitoring Team]]. You can find me on Meta: [[m:User:Iluvatar]].
</div>
[[File:Redirect arrow without text.svg|46px|link=]][[m:User talk:Iluvatar|m:{{ns:3}}:Iluvatar]]
2u2txozbl1ux8kpr7mp9i86e0b9h4kr
Razgovor s korisnikom:Iluvatar
3
11726
39178
2014-02-18T11:19:20Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
39178
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Korisnik:Randykitty
2
11744
39236
2014-02-28T05:14:55Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by Randykitty]])
39236
wikitext
text/x-wiki
Please click<br>→ [[m:w:en:User:Randykitty|'''here''']] to visit my user page on my English home wiki,<br>→ [[m:w:en:Talk:Randykitty|'''here''']] to access my talk page on my home wiki.<br><br>Thank you, Randykitty
qlj5rkivvr1qfq7puri3vd4kcuim2q2
Korisnik:Dusti
2
11747
39239
2014-02-28T07:15:21Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by Dusti]])
39239
wikitext
text/x-wiki
{{#babel:en|es-3}}[[File:Redirect arrow without text.svg|46px|link=]][[w:en:User:Dusti|w:en:{{ns:3}}:Dusti]]
imzuc5l2cxomqg3bmsjnqupazotkb6p
Korisnik:Chmarkine/common.js
2
11748
68047
39243
2021-01-31T08:52:41Z
Ladsgroup
2295
Maintenance: Replacing importScriptURI with mw.loader.load ([[phab:T95964]])
68047
javascript
text/javascript
mw.loader.load('//en.wikipedia.org/w/index.php?title=User:Chmarkine/userinfo.js&action=raw&ctype=text/javascript');
mw.loader.load('//en.wikipedia.org/w/index.php?title=User:Chmarkine/accesskey.js&action=raw&ctype=text/javascript');
mw.loader.load('//en.wikipedia.org/w/index.php?title=User:Chmarkine/personal_editsummary.js&action=raw&ctype=text/javascript');
iqgva8gncjsaprtg8v87s8x1kgqbgyo
Razgovor s korisnikom:Chmarkine
3
11749
39245
2014-03-01T20:22:32Z
Chmarkine
1663
Editing global userpage
39245
wikitext
text/x-wiki
__NOINDEX__
If you want to contact me, please leave me messages on [[m:en:User talk:Chmarkine|my English wikipedia user talk page]].
2v7n4c7imjdtyecxxfl0ap2awpl6ew0
Korisnik:Jaxxes
2
11750
39255
2014-03-13T23:56:09Z
Jaxxes
1672
Editing global userpage
39255
wikitext
text/x-wiki
<div style="background-color:black; color:white; -moz-border-radius: 13px; border-radius: 11px; solid #000000; padding:5px; font new; font-size:95%; width:95%; margin:auto;" class="mw-content-ltr" lang="en" dir="ltr">
Sup. I'm [[wikia:central:User:Alpha God|<span style="color:#FF0000;">Alpha-God]] or on Wikimedia [[m:User:Jaxxes|<span style="color:#FF0000;">Jaxxes]] and I do [[m:Countervandalism Network|<span style="color:#FF0000;">counter-vandalism]] for Wikia and Wikimedia, meaning that if you are seeing this, I have probably been here cleaning up spam and/or vandalism. I am also an experienced member of the [[m:Small Wiki Monitoring Team|<span style="color:#FF0000;">SWMT]] so I might be doing counter-vandalism on small wikis. <br /><br /> Feel free to contact me on my [[wikia:central:Message Wall:Alpha God|<span style="color:#FF0000;">Wikia Message Wall</span>]] or [[m:User Talk:Jaxxes|<span style="color:#FF0000;">Meta User-Talk</span>]] if you have anything you need!
b0c80xx890hjulrn9v02czklgvulew1
Razgovor s korisnikom:Mazbel
3
11753
67194
39322
2020-04-17T05:15:59Z
Céréales Killer
1864
Céréales Killer premjestio je stranicu [[Razgovor s korisnikom:Leitoxx]] na [[Razgovor s korisnikom:Mazbel]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Leitoxx|Leitoxx]]" u "[[Special:CentralAuth/Mazbel|Mazbel]]"
39322
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Hgav
3
11754
39323
2014-03-27T14:47:03Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
39323
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:JurgenNL
3
11755
39324
2014-03-27T14:47:08Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
39324
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Tofeiku
3
11756
66916
39325
2018-02-14T08:42:11Z
Nihlus
2414
Nihlus premjestio je stranicu [[Razgovor s korisnikom:Malaysiaboy]] na [[Razgovor s korisnikom:Tofeiku]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Malaysiaboy|Malaysiaboy]]" u "[[Special:CentralAuth/Tofeiku|...
66916
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Jaxxes
3
11757
39326
2014-03-27T14:49:23Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
39326
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Nastoshka
3
11762
39365
2014-04-01T18:01:03Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
39365
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Korisnik:Natuur12/vector.css
2
11764
39385
2014-04-03T22:00:42Z
Natuur12
1643
Editing global userpage
39385
css
text/css
* {
font-family: sans-serif;
}
h2#mw-previewheader,
div#mw-usercsspreview strong {
font-family: sans-serif !important;
color: #c00 !important;
}
div#content #toc h2, div#content .toc h2,
h2.diff-currentversion-title {
font-family: sans-serif !important;
}
div.mw-geshi div, div.mw-geshi div span, div.mw-geshi div pre, span.mw-geshi, span.mw-geshi span, pre.source-css, pre.source-css span, pre.source-javascript, pre.source-javascript span, pre.source-lua, pre.source-lua span {
font-family: monospace !important;
-moz-tab-size: 4;
}
div#content {
font-size: 93%;
}
h1#firstHeading {
font-size: 1.6em !important;
}
div#content.mw-body {
margin-left: 11.8em;
color: #000;
}
textarea#wpTextbox1,
pre {
font-family: monospace;
}
/* Font size */
code a {
font-family: monospace;
font-size: 130%;
}
pre {
font-size: 130%;
}
div#content h3 {
font-size: 132%;
}
div#content h4 {
font-sizeː 116%;
}
div#content h5 {
font-size: 100%;
}
div#content h6 {
font-size: 80%;
}
td.diff-deletedline,
td.diff-addedline,
td.diff-context {
font-size: 85%;
}
4ciwchmduyqbsol7vm6r1143zsm9r2a
Razgovor s korisnikom:Natuur12
3
11766
39387
2014-04-04T00:00:08Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
39387
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Korisnik:JurgenNL/common.css
2
11768
39391
2014-04-04T07:28:00Z
JurgenNL
1448
Editing global css
39391
css
text/css
@import "//meta.wikimedia.org/w/index.php?title=User:JurgenNL/global.css&action=raw&ctype=text/css";
7f2rb7kpwjtpaud5unzlfzgvmiyopcq
Korisnik:Aldnonymous
2
11769
39399
2014-04-08T11:24:48Z
Aldnonymous
1541
Nova stranica: <div class="mw-content-ltr">[[File:Redirect arrow without text.svg|46px|link=]][[meta:User:Aldnonymous|meta:{{ns:2}}:Aldnonymous]]</div>
39399
wikitext
text/x-wiki
<div class="mw-content-ltr">[[File:Redirect arrow without text.svg|46px|link=]][[meta:User:Aldnonymous|meta:{{ns:2}}:Aldnonymous]]</div>
gbx9kjahhy89ybr4b8d90tkkide85yn
Razgovor s korisnikom:Aldnonymous
3
11770
39402
2014-04-09T12:15:39Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
39402
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Zhuyifei1999
3
11773
39415
2014-04-14T11:50:13Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
39415
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Krutonki
3
11798
39806
2014-06-14T00:02:37Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
39806
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Korisnik:MoiraMoira
2
11799
39819
2014-06-18T07:59:04Z
MoiraMoira
1725
Nova stranica: global sysop; when around here helping with vandalism/spam
39819
wikitext
text/x-wiki
global sysop; when around here helping with vandalism/spam
hjquqf04na7jamc9n1e9a9yffo80dpe
Razgovor s korisnikom:MoiraMoira
3
11800
39839
2014-06-25T01:35:59Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
39839
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:S Kapić
3
11807
40040
2014-08-06T13:35:46Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
40040
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Korisnik:Jalexander
2
11808
40129
2014-08-17T23:19:44Z
MF-Warburg
83
MF-Warburg je premjestio stranicu [[Korisnik:Jalexander]] na [[Korisnik:Jalexander-WMF]]: Automatically moved page while renaming the user "[[Special:CentralAuth/Jalexander|Jalexander]]" to "[[Special:CentralAuth/Jalexander-WMF|Jalexander-WMF]]"
40129
wikitext
text/x-wiki
#PREUSMJERI [[Korisnik:Jalexander-WMF]]
r6srgyehwkpohwiiva2j4qfpwnn9rbe
Razgovor s korisnikom:Jalexander
3
11809
40131
2014-08-17T23:19:45Z
MF-Warburg
83
MF-Warburg je premjestio stranicu [[Razgovor sa korisnikom:Jalexander]] na [[Razgovor sa korisnikom:Jalexander-WMF]]: Automatically moved page while renaming the user "[[Special:CentralAuth/Jalexander|Jalexander]]" to "[[Special:CentralAuth/Jalexander-...
40131
wikitext
text/x-wiki
#PREUSMJERI [[Razgovor sa korisnikom:Jalexander-WMF]]
l868b2uy08keh52jk9ay4bumpelzdbf
Korisnik:Prenn (usurped 2)
2
11811
53899
40143
2016-04-26T17:23:55Z
Cyberpower678
2087
Cyberpower678 premjestio je stranicu [[Korisnik:Prenn]] na [[Korisnik:Prenn (usurped 2)]] bez ostavljanja preusmjerenja: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Prenn|Prenn]]" u "[[Special:CentralAuth/Prenn...
53899
wikitext
text/x-wiki
[[File:Redirectltr.png|#REDIRECT|link=]]<span class="redirectText" id="softredirect">[[:User:Pinus|User:Pinus]]</span><br /><span style="font-size:85%; padding-left:48px;">This page is a [[w:Wikipedia:Soft redirect|soft redirect]].</span>
bk1h0zcgkuuwy5d2cefva7mixy9eihl
Razgovor s korisnikom:Prenn
3
11812
53903
40200
2016-04-26T18:32:50Z
Cyberpower678
2087
Cyberpower678 premjestio je stranicu [[Razgovor s korisnikom:Pinus]] na [[Razgovor s korisnikom:Prenn]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Pinus|Pinus]]" u "[[Special:CentralAuth/Prenn|Prenn]]"
53903
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Prenn (usurped 2)
3
11813
53900
40201
2016-04-26T17:23:55Z
Cyberpower678
2087
Cyberpower678 premjestio je stranicu [[Razgovor s korisnikom:Prenn]] na [[Razgovor s korisnikom:Prenn (usurped 2)]] bez ostavljanja preusmjerenja: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Prenn|Prenn]]" u "[...
53900
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Korisnik:Good afternoon
2
11814
40262
2014-08-27T03:36:22Z
Pathoschild
81
global user pages ([[m:User:Pathoschild/Scripts/Synchbot|requested by Good afternoon]])
40262
wikitext
text/x-wiki
__NOINDEX__ Greetings! I'm most active on [[:w:zh:User:Good afternoon|Chinese Wikipedia]]. Please leave me messages there. Thank you!
5p9zn8ygjlpiez32knrqmg16jzgc3ps
Razgovor s korisnikom:Good afternoon
3
11815
40339
2014-08-31T23:58:47Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
40339
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:VeroniqFolk
3
11816
40340
2014-08-31T23:59:13Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
40340
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Lazy-restless
3
11817
66984
54730
2019-05-20T10:26:12Z
Litlok
2245
Litlok premjestio je stranicu [[Razgovor s korisnikom:Sharif Uddin]] na [[Razgovor s korisnikom:Lazy-restless]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Sharif Uddin|Sharif Uddin]]" u "[[Special:CentralAuth/Lazy-restless|Lazy-restless]]"
54730
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Trần Nguyễn Minh Huy
3
11818
40486
2014-09-13T16:09:41Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
40486
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Galahad
3
11819
66928
53130
2018-04-04T19:40:09Z
علاء
2270
علاء premjestio je stranicu [[Razgovor s korisnikom:White Master]] na [[Razgovor s korisnikom:Galahad]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/White Master|White Master]]" u "[[Special:CentralAuth/Galahad|Galahad]]"
66928
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Korisnik:Vanished user 9oijnsdfknefijh3tjasfi34
2
11820
52722
40488
2015-11-13T03:09:31Z
Nihonjoe
673
Nihonjoe premjestio je stranicu [[Korisnik:Romtam]] na [[Korisnik:Vanished user 9oijnsdfknefijh3tjasfi34]] bez ostavljanja preusmjerenja: Automatsko premještanje stranice zbog preimenovanja korisnika „[[Special:CentralAuth/Romtam|Romtam]]” u „[[...
52722
wikitext
text/x-wiki
<center>Hi there. If you want to contact me, please visit my talk page at [[m:w:en:User talk:Romtam|English Wikipedia]] or [[m:w:th:คุยกับผู้ใช้:Romtam|Thai Wikipedia]]. Thanks for visiting.
<br />
สวัสดีครับ ถ้าคุณต้องการติดต่อผม ขอให้คุยที่[[m:w:th:คุยกับผู้ใช้:Romtam|วิกิพีเดีย]]ครับ ขอบคุณครับ
<br />
[[File:BTS Surasak Aug2014.jpg|700px]]</center>
kflhupopageql1pdurbu1tyspe6jq1i
Korisnik:Vajotwo
2
11822
40497
2014-09-14T16:24:35Z
Pathoschild
81
global user pages ([[m:Synchbot|requested by Vajotwo]])
40497
wikitext
text/x-wiki
'''Hi, if you want to contact me, please visit my talk page at [[m:w:it:User talk:Vajotwo|Italian Wikipedia]]. Thanks for your attention'''
3x6177sgt4xcdumkkbdt95dxsj5r9n8
Razgovor s korisnikom:Vanished user 9oijnsdfknefijh3tjasfi34
3
11823
52723
40632
2015-11-13T03:09:50Z
Nihonjoe
673
Nihonjoe premjestio je stranicu [[Razgovor sa korisnikom:Romtam]] na [[Razgovor sa korisnikom:Vanished user 9oijnsdfknefijh3tjasfi34]] bez ostavljanja preusmjerenja: Automatsko premještanje stranice zbog preimenovanja korisnika „[[Special:CentralAut...
52723
wikitext
text/x-wiki
<center>Hi there. If you want to contact me, please visit my talk page at [[m:w:en:User talk:Romtam|English Wikipedia]] or [[m:w:th:คุยกับผู้ใช้:Romtam|Thai Wikipedia]]. Thanks for visiting.
<br />
สวัสดีครับ ถ้าคุณต้องการติดต่อผม ขอให้คุยที่[[m:w:th:คุยกับผู้ใช้:Romtam|วิกิพีเดีย]]ครับ ขอบคุณครับ
<br />
[[File:BTS Surasak Aug2014.jpg|700px]]</center>
{{Dobrodošlica}}
gbdm4z9qa6n04uprko0c53aq4hlq1kr
Razgovor s korisnikom:Vajotwo
3
11824
40499
2014-09-14T17:04:59Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
40499
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Korisnik:Hym411
2
11828
72451
41806
2024-11-07T15:54:10Z
EmausBot
2509
Popravlja dvostruka preusmjerenja na [[Korisnik:Revi C.]]
72451
wikitext
text/x-wiki
#PREUSMJERI [[Korisnik:Revi C.]]
0d8dn3o8gydfrngnlmqvl1g16oo96km
Razgovor s korisnikom:Hym411
3
11829
72452
41808
2024-11-07T15:54:30Z
EmausBot
2509
Popravlja dvostruka preusmjerenja na [[Razgovor s korisnikom:Revi C.]]
72452
wikitext
text/x-wiki
#PREUSMJERI [[Razgovor s korisnikom:Revi C.]]
acbxrh4207ktunyjsskwemfm1qkpzu2
Razgovor s korisnikom:Munjanes
3
11833
41179
2014-10-10T00:45:02Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
41179
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Korisnik:Conquistador/sandbox
2
11834
52715
41197
2015-11-12T11:57:23Z
Conquistador
1793
Conquistador premjestio je stranicu [[Korisnik:Conquistador]] na [[Korisnik:Conquistador/sandbox]]: making space for global user page
52715
wikitext
text/x-wiki
{{#babel:hr-N|en-3|it-2|la-1}}
{{softredirect|:hr:w:user:Conquistador}}
3hgcm0xw9wf40vok6ml7j6gmfh4ksj0
Š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
Razgovor s korisnikom:Conquistador/sandbox
3
11836
52717
41200
2015-11-12T11:57:24Z
Conquistador
1793
Conquistador premjestio je stranicu [[Razgovor sa korisnikom:Conquistador]] na [[Razgovor sa korisnikom:Conquistador/sandbox]]: making space for global user page
52717
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Eurodyne
3
11841
41410
2014-11-16T00:58:02Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
41410
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:CharoleDeChair
3
11842
41411
2014-11-23T03:47:40Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
41411
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Korisnik:V(g)
2
11843
55168
55152
2016-08-25T10:23:06Z
Céréales Killer
1864
Céréales Killer premjestio je stranicu [[Korisnik:G(x)-former]] na [[Korisnik:V(g)]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/G(x)-former|G(x)-former]]" u "[[Special:CentralAuth/V(g)|V(g)]]"
55168
wikitext
text/x-wiki
[[File:Redirect arrow without text.svg|46px|link=]][[m:th:User:V(g)|w:th:{{ns:3}}:V(g)]]
slukf703ujdbkhc42onrhxjkk50gtvz
Razgovor s korisnikom:V(g)
3
11844
55170
55153
2016-08-25T10:23:06Z
Céréales Killer
1864
Céréales Killer premjestio je stranicu [[Razgovor s korisnikom:G(x)-former]] na [[Razgovor s korisnikom:V(g)]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/G(x)-former|G(x)-former]]" u "[[Special:CentralAuth/...
55170
wikitext
text/x-wiki
[[File:Redirect arrow without text.svg|46px|link=]][[m:th:User talk:V(g)|w:th:{{ns:3}}:V(g)]]
0a8ll03hwd1s0o95bb7tbg7ww2ctts0
Razgovor s korisnikom:Savh
3
11847
41421
2014-11-29T12:05:42Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
41421
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Ah3kal
3
11849
41423
2014-11-30T05:36:42Z
Pathoschild
81
global user pages ([[m:Synchbot|requested by Ah3kal]])
41423
wikitext
text/x-wiki
Welcome to my page! please contact me at [[m:w:el:User talk:Ah3kal|User talk:Ah3kal @ el.wikipedia]]
67vgypbz2gxfpukcgcsc2b4x43eg8w1
Razgovor s korisnikom:Sam Sailor
3
11852
72491
41459
2025-01-24T19:54:04Z
Ziv
3829
→ File replacement: jpg/png/gif to svg vector image ([[:c:GR]])
72491
wikitext
text/x-wiki
<table style="background:#F8EABA; width:100%"><tr><td>
[[Image:Information icon4.svg|left|40px]]
{{{{{|safesubst:}}}#ifeq:{{{noheader}}}|yes||=={{{header|Feel free to leave me a message here, but you will get a quicker response if you visit [[:w:en:User talk:Sam Sailor|my English Wikipedia user talk page]].}}}==}}
</td></tr></table>
6kwv84krpgmt49xth7fkpd3aqpf4177
Kategorija:Latinski jezik
14
11892
66216
56859
2017-07-03T21:58:47Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66216
wikitext
text/x-wiki
[[Kategorija:Svi jezici]]
dyunws1tuqb34r1bteut5rdinjzjpto
Korisnik:Senka Latinović
2
11899
41792
2015-01-09T14:44:28Z
Senka Latinović
1840
Nova stranica: Zdravo, zovem se Senka i trenutno sarađujem na projektu [[:meta:Grants:PEG/Interglider.ORG/Wiktionary Meets Matica Srpska|Wiktionary Meets Matica Srpska]].
41792
wikitext
text/x-wiki
Zdravo, zovem se Senka i trenutno sarađujem na projektu [[:meta:Grants:PEG/Interglider.ORG/Wiktionary Meets Matica Srpska|Wiktionary Meets Matica Srpska]].
gurfx1aeokwp618fy4ae6geume47bs2
Razgovor s korisnikom:Sir Lestaty de Lioncourt
3
11900
41822
2015-01-11T23:50:26Z
Pathoschild
81
global user pages ([[m:Synchbot|requested by Sir Lestaty de Lioncourt]])
41822
wikitext
text/x-wiki
__NOINDEX__{{#babel:pt|en-3}}[[File:Redirect arrow without text.svg|45px|link=]][[m:User talk:Sir Lestaty de Lioncourt|Lestaty de Lioncourt (Meta-Wiki)]]
0738nao5e9r9j989zct5f35xw1x5bxc
Razgovor s korisnikom:Senka Latinović
3
11901
41823
2015-01-12T00:57:29Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
41823
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Korisnik:Lestaty
2
11902
41835
2015-01-13T01:45:37Z
Pathoschild
81
global user pages ([[m:Synchbot|requested by Lestaty]])
41835
wikitext
text/x-wiki
#REDIRECT [[User talk:Sir Lestaty de Lioncourt]]
cc8rweyhovhvvro1gd6g7rh9zxi29el
Razgovor s korisnikom:Lestaty
3
11903
41836
2015-01-13T02:51:55Z
Pathoschild
81
global user pages ([[m:Synchbot|requested by Lestaty]])
41836
wikitext
text/x-wiki
#REDIRECT [[User talk:Sir Lestaty de Lioncourt]]
cc8rweyhovhvvro1gd6g7rh9zxi29el
Korisnik:Caliburn
2
11904
42170
42084
2015-02-20T11:33:12Z
Billinghurst
1141
Billinghurst je premjestio stranicu [[Korisnik:George.Edward.C]] na [[Korisnik:Caliburn]]: Automatsko premještanje stranice zbog preimenovanja korisnika „[[Special:CentralAuth/George.Edward.C|George.Edward.C]]“ u „[[Special:CentralAuth/Caliburn|...
42170
wikitext
text/x-wiki
__NOINDEX__[[File:Redirectltr.png]][[meta:User:George.Edward.C|Me @ Meta]]
0qt2melp40r0592gltncjamudoyvboh
Razgovor s korisnikom:Retragerebanicardpayoneer
3
11906
41866
2015-01-15T04:47:09Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
41866
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Korisnik:Suprememangaka
2
11907
42073
2015-02-03T18:04:40Z
Céréales Killer
1864
Céréales Killer je premjestio stranicu [[Korisnik:Suprememangaka]] na [[Korisnik:*SM*]]: Automatsko premještanje stranice zbog preimenovanja korisnika „[[Special:CentralAuth/Suprememangaka|Suprememangaka]]“ u „[[Special:CentralAuth/*SM*|*SM*]]“
42073
wikitext
text/x-wiki
#PREUSMJERI [[Korisnik:*SM*]]
noddx770ea6gjx3bt73tls8ylbc53h4
Razgovor s korisnikom:Suprememangaka
3
11908
42075
2015-02-03T18:04:40Z
Céréales Killer
1864
Céréales Killer je premjestio stranicu [[Razgovor sa korisnikom:Suprememangaka]] na [[Razgovor sa korisnikom:*SM*]]: Automatsko premještanje stranice zbog preimenovanja korisnika „[[Special:CentralAuth/Suprememangaka|Suprememangaka]]“ u „[[Spe...
42075
wikitext
text/x-wiki
#PREUSMJERI [[Razgovor sa korisnikom:*SM*]]
cpf51yqglsz3cc3xgigd6ffs6tm87qo
Razgovor s korisnikom:Unapersona
3
11911
42083
2015-02-08T05:00:28Z
Pathoschild
81
global user pages ([[m:Synchbot|requested by Unapersona]])
42083
wikitext
text/x-wiki
#REDIRECT[[m:User talk:Unapersona]]
axmxwqgqn5cc3repvdpskh427rynpkh
Razgovor s korisnikom:Caliburn
3
11912
42172
42085
2015-02-20T11:33:12Z
Billinghurst
1141
Billinghurst je premjestio stranicu [[Razgovor sa korisnikom:George.Edward.C]] na [[Razgovor sa korisnikom:Caliburn]]: Automatsko premještanje stranice zbog preimenovanja korisnika „[[Special:CentralAuth/George.Edward.C|George.Edward.C]]“ u „[[S...
42172
wikitext
text/x-wiki
<center><font face="Georgia">'''Hi there! Please do not contact me here. Instead, please contact me on [[meta:User_talk:George.Edward.C|meta]]. Messages left here may not get a timely response.</font></center>
kv5wzoqoqwkaewjwmlncjbvwbbz9e5h
Razgovor s korisnikom:Céréales Killer
3
11914
42087
2015-02-10T09:31:21Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
42087
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Mjbmr
3
11915
42103
2015-02-12T02:49:48Z
Pathoschild
81
global user pages ([[m:Synchbot|requested by Mjbmr]])
42103
wikitext
text/x-wiki
__NOINDEX__<div dir="ltr">[[File:Redirect arrow without text.svg|46px|link=]][[w:en:User:Mjbmr|Mjbmr]]@Wikipedia ([[w:en:User talk:Mjbmr|Talk]]@Wikipedia)</div>
iixdp9ugeyiqeurocghjgsb2lkrjjfm
Korisnik:NahidSultan
2
11916
42113
2015-02-14T19:29:24Z
Pathoschild
81
global user pages ([[m:Synchbot|requested by NahidSultan]])
42113
wikitext
text/x-wiki
{{DISPLAYTITLE:<span style="display:none;">User:</span><span style="font-family:Comic Sans MS;font-size:30px"><b><font color=green>Nahid Sultan</font></b></span>}}
<div style="padding: 12px 18px 5px 15px; width: absolute; border: 2px solid #000; background: #F5F5F5; color: #000; text-align: justify;">Thanks for stopping by! The purpose of this user page is to point you to the right direction where you can contact me in need. Please do not leave your message here, otherwise in most cases, they will not be noticed in time and eventually be removed.
However, you are encouraged to contact me or say hello. :-)
Please note that I can communicate in either Bangla or English. My apologies for not knowing your language.
If you prefer to leave me a message, please choose any of the following talk pages I maintain frequently.
* [[m:User talk:NahidSultan|Meta-Wiki talk page]]
* [[m:bn:User talk:NahidSultan|Bangla Wikipedia talk page]]
* [[m:en:User talk:NahidSultan|English Wikipedia talk page]]
* [[m:commons:User talk:NahidSultan|Wikimedia Commons talk page]]
If you have something to say to me in private, e-mail is a good option.
* If you are logged in to your Wikimedia account you can probably e-mail me by [[Special:EmailUser/NahidSultan|clicking here]].
Finally, If you have an IRC client, you can contact me there as well. I can be found in [irc://irc.freenode.net/cvn-sw #cvn-sw] and [irc://irc.freenode.net/wikimedia-commons #wikimedia-commons] on the Freenode IRC network, usually with the nick <code>NahidSultan</code>. Please be bold and talk.</font></center></div>
7g7jlke3se59pr3n34z6pd2eymm6gfy
Razgovor s korisnikom:Matko0299
3
11917
42131
2015-02-15T21:44:51Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
42131
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Vanished user 24kwjf10h32h
3
11921
67401
50164
2020-06-05T13:20:24Z
Sotiale
1214
Sotiale premjestio je stranicu [[Razgovor s korisnikom:Diego Grez-Cañete]] na [[Razgovor s korisnikom:Vanished user 24kwjf10h32h]] bez ostavljanja preusmjerenja: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Diego Grez-Cañete|Diego Grez-Cañete]]" u "[[Special:CentralAuth/Vanished user 24kwjf10h32h|Vanished user 24kwjf10h32h]]"
50164
wikitext
text/x-wiki
__NOINDEX__
4dk4zevx7zb4mh95uavtx21at6jgovp
Korisnik:George.Edward.C
2
11923
42171
2015-02-20T11:33:12Z
Billinghurst
1141
Billinghurst je premjestio stranicu [[Korisnik:George.Edward.C]] na [[Korisnik:Caliburn]]: Automatsko premještanje stranice zbog preimenovanja korisnika „[[Special:CentralAuth/George.Edward.C|George.Edward.C]]“ u „[[Special:CentralAuth/Caliburn|...
42171
wikitext
text/x-wiki
#PREUSMJERI [[Korisnik:Caliburn]]
1ufxo0kh6s6kt7zc8uswftj3boyqlin
Razgovor s korisnikom:George.Edward.C
3
11924
42173
2015-02-20T11:33:12Z
Billinghurst
1141
Billinghurst je premjestio stranicu [[Razgovor sa korisnikom:George.Edward.C]] na [[Razgovor sa korisnikom:Caliburn]]: Automatsko premještanje stranice zbog preimenovanja korisnika „[[Special:CentralAuth/George.Edward.C|George.Edward.C]]“ u „[[S...
42173
wikitext
text/x-wiki
#PREUSMJERI [[Razgovor sa korisnikom:Caliburn]]
956d45czlesjgj9cf9997fmyxwkny36
Korisnik:Vanished user 24kwjf10h32h
2
11938
67402
50162
2020-06-05T13:20:24Z
Sotiale
1214
Sotiale premjestio je stranicu [[Korisnik:Diego Grez-Cañete]] na [[Korisnik:Vanished user 24kwjf10h32h]] bez ostavljanja preusmjerenja: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Diego Grez-Cañete|Diego Grez-Cañete]]" u "[[Special:CentralAuth/Vanished user 24kwjf10h32h|Vanished user 24kwjf10h32h]]"
50162
wikitext
text/x-wiki
__NOINDEX__
4dk4zevx7zb4mh95uavtx21at6jgovp
Korisnik:Küñall
2
11939
68215
50196
2022-02-21T03:07:48Z
EmausBot
2509
Bot: Neispravno preusmjerenje prema premještenoj stranici [[Korisnik:Vanished user 24kwjf10h32h]]
68215
wikitext
text/x-wiki
#PREUSMJERI [[Korisnik:Vanished user 24kwjf10h32h]]
dxikdmiwcdgpq2x94a4mj0ffy9i7zd1
Razgovor s korisnikom:Guy Macon
3
12114
42568
2015-03-04T15:31:01Z
Guy Macon
1900
I prefer that messages be posted to [ https://secure.wikimedia.org/wikipedia/en/wiki/User_talk:Guy_Macon ] instead of here.
42568
wikitext
text/x-wiki
I prefer that messages be posted to [ https://secure.wikimedia.org/wikipedia/en/wiki/User_talk:Guy_Macon ] instead of here.
5wnubohb7ardayiij3pkqk0dhxmadoz
Razgovor s korisnikom:Antonija~bswiktionary
3
12116
44102
44046
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44102
wikitext
text/x-wiki
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Antonija. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Antonija~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
l316vy3l8d4oxky16vs7anxua7tlkmv
Razgovor s korisnikom:Brockert~bswiktionary
3
12117
44103
44031
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44103
wikitext
text/x-wiki
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Brockert. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Brockert~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
0bhv3s3vxvg29na8ydihmxwp9bi3ysn
Razgovor s korisnikom:Domik~bswiktionary
3
12118
44104
44038
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44104
wikitext
text/x-wiki
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Domik. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Domik~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
rubi8ppc5e2rgnkr6bbcbzfdh0mviz4
Razgovor s korisnikom:Hoo MergeAccount Test~bswiktionary
3
12119
44111
44047
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44111
wikitext
text/x-wiki
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Hoo MergeAccount Test. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Hoo MergeAccount Test~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
oixqz8ueh4srqzi23ypmecootlk9rjb
Razgovor s korisnikom:Live Forever~bswiktionary
3
12120
44112
44067
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44112
wikitext
text/x-wiki
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Live Forever. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Live Forever~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
br1bqm1ayd6ggoohixczlj2eyafgww4
Razgovor s korisnikom:MediaWiki default
3
12121
43118
2015-03-17T19:27:50Z
MediaWiki message delivery
1685
Vaš korisnički račun će biti preimenovan
43118
wikitext
text/x-wiki
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu MediaWiki default. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u MediaWiki default~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
co8bnotb65ocn56qa0cxhyjoiavgdqs
Razgovor s korisnikom:MediaWiki spam cleanup
3
12122
43120
2015-03-17T19:27:51Z
MediaWiki message delivery
1685
Vaš korisnički račun će biti preimenovan
43120
wikitext
text/x-wiki
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu MediaWiki spam cleanup. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u MediaWiki spam cleanup~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
govrqpe61nect8maw2ilpytz0qde87s
Razgovor s korisnikom:PolyBot~bswiktionary
3
12123
44127
44050
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44127
wikitext
text/x-wiki
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu PolyBot. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u PolyBot~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
2vh9euxdnl6k7rnfvxwpwtlao4mvh9d
Razgovor s korisnikom:RCBot~bswiktionary
3
12124
44139
44054
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44139
wikitext
text/x-wiki
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu RCBot. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u RCBot~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
qqq3a4gawel2n9dup8pw8m87r89i9jp
Razgovor s korisnikom:Saša Ćetković~bswiktionary
3
12125
44140
44061
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44140
wikitext
text/x-wiki
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Saša Ćetković. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Saša Ćetković~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
lqnvprmyvzaog4tusez2amkj13bqkh8
Razgovor s korisnikom:Spam cleanup script~bswiktionary
3
12126
44128
44060
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44128
wikitext
text/x-wiki
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Spam cleanup script. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Spam cleanup script~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:27, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
kb4g03wfx6ovtrr9pegq697oxebzvah
Razgovor s korisnikom:Tehut~bswiktionary
3
12127
44125
44071
2015-04-19T02:51:37Z
MediaWiki message delivery
1685
Renamed
44125
wikitext
text/x-wiki
== Vaš korisnički račun će biti preimenovan ==
<div class="plainlinks mw-content-ltr" lang="bs" dir="ltr">
Pozdrav,
Razvojni tim pri Wikimediji uvodi neke nove promjene o tome kako korisnički računi funkcionišu, kao dio našeg stalnog nastojanja da se obezbijede novi i bolji alati za naše korisnike, kao što su među-wiki obavijesti. Ove promjene znače da ćete imati isti korisnički račun na svim projektima. To će nam omogućiti da vam damo nove funkcionalnosti koje će vam pomoći da mijenjate sadržaj i diskutujete bolje, te omogućiti fleksibilnije korisničke dozvole za alate. Jedna od neželjenih pojava ove promjene je da će korisnički računi sada morati biti jedinstveni za svih 900 Wikimedija stranica. Pogledajte [[m:Special:MyLanguage/Single User Login finalisation announcement|ovaj dodatak]] za više informacija (tekst na engleskom).
Na žalost, vaš korisnički račun je u konfliktu sa drugim korisničkim računom po imenu Tehut. Kako bi osigurali da oba korisnika mogu koristiti Wikimedijine stanice u budućnosti, preimenovat ćemo vaš korisnički račun u Tehut~bswiktionary. Vaš korisnički račun će biti preimenovan u april 2015., zajedno sa brojnim drugim korisničkim računima.
Vaš korisnički račun će raditi kao i prije, te će sve vaše izmjene, koje ste napravili do sada, biti sačuvane, ali ćete morati koristiti novo korisničko ime pri prijavi. Ako vam se novo korisnički ime ne dopada, možete podnijeti zahtjev da vam se korisničko ime ponovo promijeni koristeći [[Special:GlobalRenameRequest|ovaj obrazac]].
Žao nam je zbog neugodnosti.
Yours,<br />[[m:User:Keegan (WMF)|Keegan Peterzell]]<br />Community Liaison, Wikimedia Foundation
</div> 19:28, 17 mart 2015 (KSV)
<!-- SUL finalisation notification -->
== Renamed ==
<div class="plainlinks mw-content-ltr" lang="en" dir="ltr”>
This account has been renamed as part of [[m:Special:MyLanguage/Single User Login finalisation announcement|single-user login finalisation]]. If you own this account you can [[{{#special:userlogin}}|log in using your previous username and password]] for more information. If you do not like this account's new name, you can choose your own using this form after logging in: [[{{#special:GlobalRenameRequest}}]]. -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]])
</div> 02:51, 19 april 2015 (KSV)
<!-- SUL post-rename notification -->
rd38emn2s86r2kty56nmrfvjhkwgjtp
Razgovor s korisnikom:Sevela.p
3
12128
43147
2015-03-18T01:53:17Z
Pathoschild
81
global user pages ([[m:Synchbot|requested by Sevela.p]])
43147
wikitext
text/x-wiki
__NOINDEX__[[File:Redirect arrow without text.svg|45px|link=]][[w:cs:User talk:Sevela.p|Sevela.p (cs.wikipedia.org)]]
7210kk8bqhstp21n3p3mihytpu2dcan
Razgovor s korisnikom:Taketa
3
12176
43782
2015-04-03T15:58:34Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
43782
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Worm That Turned
3
12177
43783
2015-04-03T15:58:35Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
43783
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Xeno
3
12178
43819
2015-04-04T18:12:49Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
43819
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:JVRKPRASAD
3
12179
44011
2015-04-16T08:21:03Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
44011
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Korisnik:Azariv
2
12180
44020
2015-04-16T19:19:50Z
Jalexander-WMF
734
Jalexander-WMF je premjestio stranicu [[Korisnik:Azariv]] na [[Korisnik:Azariv-WMF]]: Automatsko premještanje stranice zbog preimenovanja korisnika „[[Special:CentralAuth/Azariv|Azariv]]“ u „[[Special:CentralAuth/Azariv-WMF|Azariv-WMF]]“
44020
wikitext
text/x-wiki
#PREUSMJERI [[Korisnik:Azariv-WMF]]
0gxzk27a0s81mmlpkcabkfsm0zrxsr5
Razgovor s korisnikom:Wojciech Pędzich
3
12181
56565
44154
2016-09-17T20:19:06Z
Masti
2027
Masti premjestio je stranicu [[Razgovor s korisnikom:Wpedzich]] na [[Razgovor s korisnikom:Wojciech Pędzich]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Wpedzich|Wpedzich]]" u "[[Special:CentralAuth/Wojciech...
56565
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Superm401
3
12182
44569
2015-04-22T19:47:43Z
DerHexer
82
DerHexer je premjestio stranicu [[Razgovor sa korisnikom:Superm401]] na [[Razgovor sa korisnikom:Mattflaschen]]: Automatsko premještanje stranice zbog preimenovanja korisnika „[[Special:CentralAuth/Superm401|Superm401]]“ u „[[Special:CentralAuth...
44569
wikitext
text/x-wiki
#PREUSMJERI [[Razgovor sa korisnikom:Mattflaschen]]
ih3pawcbkjjgnws8kcf5uyu3iz5zpg6
Kategorija:Islandski jezik
14
12183
65594
55145
2017-07-03T19:59:29Z
Dexbot
1761
Bot: Cleaning up old interwiki links
65594
wikitext
text/x-wiki
[[Kategorija:Svi jezici]]
dyunws1tuqb34r1bteut5rdinjzjpto
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:Švedski jezik
14
12225
66746
64917
2017-07-03T23:40:04Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66746
wikitext
text/x-wiki
[[Kategorija:Svi jezici]]
dyunws1tuqb34r1bteut5rdinjzjpto
Razgovor s korisnikom:ԱշոտՏՆՂ
3
12380
45750
2015-05-21T12:35:33Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
45750
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:LurleneRettig
3
12386
46432
2015-06-13T12:57:10Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
46432
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Edmenb
3
12387
46433
2015-06-13T12:57:11Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
46433
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:JosefCaraway196
3
12391
49855
2015-07-23T22:23:03Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
49855
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Medograd
3
12392
65222
49856
2017-06-17T14:56:23Z
Litlok
2245
Litlok premjestio je stranicu [[Razgovor s korisnikom:Iarik]] na [[Razgovor s korisnikom:Medograd]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Iarik|Iarik]]" u "[[Special:CentralAuth/Medograd|Medograd]]"
65222
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Korisnik:Diego Grez
2
12393
68214
50163
2022-02-21T03:07:38Z
EmausBot
2509
Bot: Neispravno preusmjerenje prema premještenoj stranici [[Korisnik:Vanished user 24kwjf10h32h]]
68214
wikitext
text/x-wiki
#PREUSMJERI [[Korisnik:Vanished user 24kwjf10h32h]]
dxikdmiwcdgpq2x94a4mj0ffy9i7zd1
Razgovor s korisnikom:Diego Grez
3
12394
68218
50165
2022-02-21T03:08:18Z
EmausBot
2509
Bot: Neispravno preusmjerenje prema premještenoj stranici [[Razgovor s korisnikom:Vanished user 24kwjf10h32h]]
68218
wikitext
text/x-wiki
#PREUSMJERI [[Razgovor s korisnikom:Vanished user 24kwjf10h32h]]
s5inveev9c5fsf3ep2ftosf7uuan8yh
Razgovor s korisnikom:Octahedron80
3
12395
50168
2015-07-29T23:57:50Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
50168
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Infinite0694
3
12402
51083
2015-09-06T10:02:46Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
51083
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Bikarhêner
3
12403
51196
2015-09-08T01:22:05Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
51196
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Masti
3
12404
51563
2015-09-16T12:20:29Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
51563
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:בײַ מיר ביסטו שיין
3
12405
51573
2015-09-17T08:50:53Z
בײַ מיר ביסטו שיין
2029
layout: 2015-09-07…d LTR RTL short bmbsh
51573
wikitext
text/x-wiki
{| class="float-center" border="0" cellpadding="0" cellspacing="0" style="background:#efefef; color:black" align="center" LANG="en"
|-
| align="center" colspan="2" |
<!--
<span dir="ltr" >The phonetic transcription of <span class="nowrap" >« לערי ריינהארט »</span> is <span class="nowrap" LANG="he" >/lɛʁi ʁɑjnhɑʁt/</span> <span class="nowrap" >(leri raynhart).</span></span><br />
-->
<span dir="ltr" >The phonetic transcription of <span class="nowrap" LANG="he" >« [[s:yi:בייַ מיר ביסטו שיין|בײַ מיר ביסטו שיין]] »</span> is <span class="nowrap" >/bɑj mɪʁ bɪstu ʃɛyn/</span> <span class="nowrap" >([[w:en:Bei Mir Bistu Shein|bay mir bistu sheyn]]).</span><br /> </span><br />
{{Softredirect|1=testwiki:user talk:{{PAGENAME}}|2=<span dir="ltr" >testwiki:user talk:<span dir="ltr" >{{PAGENAME}}</span></span>}}
<!--
|-
| align="right" | [[image:Redirectltr.png|right]]
| align="left" dir="ltr" | [[user talk:Gangleri]]
-->
|-
| align="right" | [[Image:Redirectltr.png|right]]
| align="left" dir="ltr" | [[user talk:לערי ריינהארט]] aka "''Gangleri''"
|-
| align="right" | [[Image:Redirectltr.png|right]]
| align="left" dir="ltr" | '''[[testwiki:user talk:לערי ריינהארט]] aka "''Gangleri''"'''
|}<!--
|-
| align="center" colspan="2" dir="ltr" | [[image:Redirectltr.png|left]] [[user talk:Gangleri]]
|-
| align="center" colspan="2" dir="ltr" | [[image:Redirectltr.png|left]] [[user talk:לערי ריינהארט]] aka "''Gangleri''"
|-
| align="center" colspan="2" dir="ltr" | [[image:Redirectltr.png|left]] '''[[testwiki:user talk:לערי ריינהארט]] aka "''Gangleri''"'''
-->
<br clear="all" />
<!--
**only at sandbox subpages**
<center dir="ltr" >This page is an '''user sandbox page'''.<br />'''SUBPAGENAME''': '''{{SUBPAGENAME}}''' – '''[[mediawiki:Sandbox]]''': '''{{int:Sandbox}}''' <sup>[[w:en:mediawiki:Sandbox]]</sup></center>
----
-->
<center>
: <sup><span dir="ltr" class="plainlinks" >SITENAME: '''{{SITENAME}}''' · '''language:''' {{CONTENTLANG}}: '''[{{fullurl:{{FULLPAGENAME}}|uselang={{CONTENTLANG}}}}#top <span dir="ltr" LANG="{{CONTENTLANG}}" >{{#LANGUAGE:{{CONTENTLANG}}}}</span>]''' · [{{fullurl:{{FULLPAGENAME}}|uselang=en}}#top <span dir="ltr" LANG="en" >{{#LANGUAGE:{{CONTENTLANG}}|en}}</span>'''] · [{{fullurl:{{FULLPAGENAME}}|uselang=de}}#top <span dir="ltr" LANG="de" >{{#LANGUAGE:{{CONTENTLANG}}|de}}</span>] · [{{fullurl:{{FULLPAGENAME}}|uselang=es}}#top <span dir="ltr" LANG="es" >{{#LANGUAGE:{{CONTENTLANG}}|es}}</span>] · [{{fullurl:{{FULLPAGENAME}}|uselang=fr}}#top <span dir="ltr" LANG="fr" >{{#LANGUAGE:{{CONTENTLANG}}|fr}}</span>] · [{{fullurl:{{FULLPAGENAME}}|uselang=it}}#top <span dir="ltr" LANG="it" >{{#LANGUAGE:{{CONTENTLANG}}|it}}</span>] · [{{fullurl:{{FULLPAGENAME}}|uselang=ru}}#top <span dir="ltr" LANG="ru" >{{#LANGUAGE:{{CONTENTLANG}}|ru}}</span>] · [{{fullurl:{{FULLPAGENAME}}|uselang=zh}}#top <span dir="ltr" LANG="zh" >{{#LANGUAGE:{{CONTENTLANG}}|zh}}</span>] · [{{fullurl:{{FULLPAGENAME}}|uselang=ar}}#top <span dir="ltr" LANG="ar" >{{#LANGUAGE:{{CONTENTLANG}}|ar}}</span>] · [{{fullurl:{{FULLPAGENAME}}|uselang=he}}#top <span dir="ltr" LANG="he" >{{#LANGUAGE:{{CONTENTLANG}}|he}}</span>] · [{{fullurl:{{FULLPAGENAME}}|uselang=hi}}#top <span dir="ltr" LANG="hi" >{{#LANGUAGE:{{CONTENTLANG}}|hi}}</span>] · [{{fullurl:{{FULLPAGENAME}}|uselang=eo}}#top <span dir="ltr" LANG="eo" >{{#LANGUAGE:{{CONTENTLANG}}|eo}}</span>] · [{{fullurl:{{FULLPAGENAME}}}}#footer #footer]</span></sup><!--
special:version
-->
: <sup><span dir "ltr" class="plainlinks" >[[special:version|local curent version]]: {{CURRENTVERSION}} · versions at [[b:special:version|b:]] · [[c:special:version|c:]] · [[d:special:version|d:]] · '''[[m:special:version|m:]]''' · [[mw:special:version|mw:]] · [[n:special:version|n:]] · [[q:special:version|q:]] · [[s:special:version|s:]] · '''[[testwiki:special:version|t:]]''' · [[v:special:version|v:]] · [[voy:special:version|voy:]] · [[w:special:version|w:]] · [[wikt:special:version|wikt:]] · [[w:en:special:version|w:en:]] · [[m:special:sitematrix#{{CONTENTLANG}}|m:special:sitematrix#{{CONTENTLANG}}]] · [[template:Wikivar]] · <sup>[[m:template:Wikivar|m:]]‎</sup></span></sup>
: <sup><span dir="ltr" class="plainlinks" >'''mediawiki:Sidebar''' '''[{{fullurl:mediawiki:Sidebar|uselang={{CONTENTLANG}}}}#top <span dir="ltr" LANG="{{CONTENTLANG}}" >{{#LANGUAGE:{{CONTENTLANG}}}}</span>]''' · [{{fullurl:mediawiki:Sidebar/en|uselang=en}}#top <span dir="ltr" LANG="en" >{{#LANGUAGE:{{CONTENTLANG}}|en}}</span>'''] · [{{fullurl:mediawiki:Sidebar/de|uselang=de}}#top <span dir="ltr" LANG="de" >{{#LANGUAGE:{{CONTENTLANG}}|de}}</span>] · [{{fullurl:mediawiki:Sidebar/es|uselang=es}}#top <span dir="ltr" LANG="es" >{{#LANGUAGE:{{CONTENTLANG}}|es}}</span>] · [{{fullurl:mediawiki:Sidebar/fr|uselang=fr}}#top <span dir="ltr" LANG="fr" >{{#LANGUAGE:{{CONTENTLANG}}|fr}}</span>] · [{{fullurl:mediawiki:Sidebar/it|uselang=it}}#top <span dir="ltr" LANG="it" >{{#LANGUAGE:{{CONTENTLANG}}|it}}</span>] · [{{fullurl:mediawiki:Sidebar/ru|uselang=ru}}#top <span dir="ltr" LANG="ru" >{{#LANGUAGE:{{CONTENTLANG}}|ru}}</span>] · [{{fullurl:mediawiki:Sidebar/zh|uselang=zh}}#top <span dir="ltr" LANG="zh" >{{#LANGUAGE:{{CONTENTLANG}}|zh}}</span>] · [{{fullurl:mediawiki:Sidebar/ar|uselang=ar}}#top <span dir="ltr" LANG="ar" >{{#LANGUAGE:{{CONTENTLANG}}|ar}}</span>] · [{{fullurl:mediawiki:Sidebar/he|uselang=he}}#top <span dir="ltr" LANG="he" >{{#LANGUAGE:{{CONTENTLANG}}|he}}</span>] · [{{fullurl:mediawiki:Sidebar/hi|uselang=hi}}#top <span dir="ltr" LANG="hi" >{{#LANGUAGE:{{CONTENTLANG}}|hi}}</span>] · [{{fullurl:mediawiki:Sidebar/eo|uselang=eo}}#top <span dir="ltr" LANG="eo" >{{#LANGUAGE:{{CONTENTLANG}}|eo}}</span>]</span></sup>
: <sup><span dir "ltr" class="plainlinks" >[{{fullurl:special:Preferences}}#top <span dir="ltr" LANG="en" >your] [{{fullurl:special:Preferences|uselang=en}}#top <span dir="ltr" LANG="en" >local preferences] · [{{fullurl:special:Preferences|uselang=de}}#mw-prefsection-personal <span dir="ltr" LANG="de" >Einstellungen</span>] · [{{fullurl:special:Preferences|uselang=es}}#mw-prefsection-rendering <span dir="ltr" LANG="es" >Preferencias</span>] · [{{fullurl:special:Preferences|uselang=fr}}#mw-prefsection-editing <span dir="ltr" LANG="fr" >Préférences</span>] · [{{fullurl:special:Preferences|uselang=it}}#mw-prefsection-rc <span dir="ltr" LANG="it" >Preferenze</span>] · [{{fullurl:special:Preferences|uselang=ru}}#mw-prefsection-watchlist <span dir="ltr" LANG="ru" >Настройки</span>] · [{{fullurl:special:Preferences|uselang=zh}}#mw-prefsection-gadgets <span dir="ltr" LANG="zh" >设置</span>] · [{{fullurl:special:Preferences|uselang=ar}}#mw-prefsection-betafeatures <span dir="ltr" LANG="ar" >تفضيلات</span>] · [{{fullurl:special:Preferences|uselang=he}}#mw-prefsection-betafeatures <span dir="ltr" LANG="he" >העדפות</span>] · [{{fullurl:special:Preferences|uselang=hi}}#top <span dir="ltr" LANG="hi" >मेरी वरीयताएँ</span>] · [{{fullurl:special:Preferences|uselang=eo}}#top <span dir="ltr" LANG="eo" >Preferoj</span>]</span></sup><!--
user:{{BASEPAGENAME}}
-->
: <sup><span dir "ltr" class="plainlinks" >user / ‎'''<span dir="ltr" >{{ns:2}}</span>'''‎: ‎'''<span dir="ltr" >[[user:{{BASEPAGENAME}}|{{BASEPAGENAME}}]]</span>‎''' · [{{SERVER}}/?title=special:ListUsers&limit=1&username={{BASEPAGENAMEE}} rights] · [[special:Prefixindex/user:{{BASEPAGENAME}}|all subpages]] [[special:Prefixindex/user talk:{{BASEPAGENAME}}|T]] · [[user:{{BASEPAGENAME}}/common.css|‎/common.css]] · [[user:{{BASEPAGENAME}}/common.js|/common.js]] · [[user:{{BASEPAGENAME}}/Archive/previous user page|/previous user page]] · [[special:Prefixindex/user:{{BASEPAGENAME}}/Archive|archives]] [[special:Prefixindex/user talk:{{BASEPAGENAME}}/Archive|archived talks]] · [[b:{{CONTENTLANG}}:user:{{BASEPAGENAME}}|b:]] · [[c:user:{{BASEPAGENAME}}|c:]] · [[d:user:{{BASEPAGENAME}}|d:]] · [[m:user:{{BASEPAGENAME}}|m:]] · [[mw:user:{{BASEPAGENAME}}|mw:]] · [[n:{{CONTENTLANG}}:user:{{BASEPAGENAME}}|n:]] · [[q:{{CONTENTLANG}}:user:{{BASEPAGENAME}}|q:]] · [[s:{{CONTENTLANG}}:user:{{BASEPAGENAME}}|s:]] · [[testwiki:user:{{BASEPAGENAME}}|t:]] · [[v:{{CONTENTLANG}}:user:{{BASEPAGENAME}}|v:]] · [[voy:{{CONTENTLANG}}:user:{{BASEPAGENAME}}|voy:]] · [[w:{{CONTENTLANG}}:user:{{BASEPAGENAME}}|w:]] · [[wikt:{{CONTENTLANG}}:user:{{BASEPAGENAME}}|wikt:]] · [[w:en:user:{{BASEPAGENAME}}|w:en:]] · [[w:user:{{BASEPAGENAME}}|w:]] · [[:en:user:{{BASEPAGENAME}}|:en:]]‎</span></sup><!--
special:foobar
-->
: <sup><span dir "ltr" class="plainlinks" > [{{fullurl:special:WhatLinksHere/{{FULLPAGENAME}}|uselang=en}}#top <span LANG="en" >'''local''' WLH]‎ · [{{fullurl:special:RecentChanges|uselang=en}}#top <span LANG="en" >'''local''' RC]‎ · [{{fullurl:special:Logs|uselang=en}}#top <span LANG="en" >'''local''' logs]‎ · [{{fullurl:special:WatchList|uselang=en}}#top <span LANG="en" >'''local''' watchlist]‎ · [{{fullurl:special:Contributions/{{BASEPAGENAME}}|uselang=en}}#top <span LANG="en" >'''local''' ontributions]‎ · [[mediawiki:Common.css|'''local''' mediawiki:Common.css]] · [[mediawiki:Common.js|'''local''' mediawiki:Common.js]] · [[mediawiki:Gadgets-definition|'''local''' mediawiki:Gadgets-definition]] · '''[[special:Notifications|local notifications]]'''<br />[[m:user:{{BASEPAGENAME}}/global.css|m:…'''/global.css''']] · [[m:user:{{BASEPAGENAME}}/global.js|m:…'''/global.js''']] · [[special:centralAuth/{{BASEPAGENAMEE}}|'''global''' account information]] · [https://tools.wmflabs.org/guc/?user={{URLENCODE:{{BASEPAGENAME}}|WIKI}} '''global''' user contributions]<!--
· [https://toolserver.org/~River/cgi-bin/count_edits?user={{BASEPAGENAMEE}}&dbname=wikidatawiki_p&machread=1]
--></span></sup><!--
PAGEID related links
-->
: <sup><span dir "ltr" class="plainlinks" >'''PAGEID:''' {{PAGEID}} · [https:{{SERVER}}/?curid={{PAGEID}}#top links '''here'''] · <sup>[https:{{SERVER}}/?curid={{PAGEID}}&action=purge# purge ↺] · [https:{{SERVER}}/?curid={{PAGEID}}&action=edit§ion=0# section=0]</sup> · '''REVISIONID:''' {{REVISIONID}} · [https:{{SERVER}}/?oldid={{REVISIONID}}# permanent link] · (layout: 2015-09-07…d [https://fi.wikipedia.org/?curid=468081#top LTR] [https://ug.wiktionary.org/?curid=5716#top RTL] short)‎</span></sup><!--
testing and validation links related languages / dialects
-->
: <sup><span dir "ltr" class="plainlinks" >'''testing and validation links:''' [[user:בײַ מיר ביסטו שיין#BiDi_issues|BiDi issues]] · [[user:I18n|gadget issues]] · '''related languages / dialects:''' [[w:foo:user:{{BASEPAGENAME}}|w:foo:]] · [[w:bar:user:{{BASEPAGENAME}}|w:bar:]]‎</span></sup>
</center>
----
<!--
<br clear="all" />
-->
__TOC__
== <span dir="ltr" >Welcome‎ <span id="Welcome" dir="ltr" >{{PAGENAME}}</span> to <span id="WelcomeToSITENAME" dir="ltr" >{{SITENAME}}</span>!</span> ==
: [[Korisnik:בײַ מיר ביסטו שיין|בײַ מיר ביסטו שיין]] ([[Razgovor sa korisnikom:בײַ מיר ביסטו שיין|razgovor]]) 08:50, 17 septembar 2015 (KSV)
9bx0kky34dznamjez5d2mg5pdympzfr
Razgovor s korisnikom:לערי ריינהארט
3
12406
51574
2015-09-17T09:36:33Z
לערי ריינהארט
2030
layout: 2015-09-07…d LTR RTL short leri
51574
wikitext
text/x-wiki
{| class="float-center" border="0" cellpadding="0" cellspacing="0" style="background:#efefef; color:black" align="center" LANG="en"
|-
| align="center" colspan="2" |
<span dir="ltr" >The phonetic transcription of <span class="nowrap" >« לערי ריינהארט »</span> is <span class="nowrap" LANG="he" >/lɛʁi ʁɑjnhɑʁt/</span> <span class="nowrap" >(leri raynhart).</span></span><br />
<!--
<span dir="ltr" >The phonetic transcription of <span class="nowrap" LANG="he" >« [[s:yi:בייַ מיר ביסטו שיין|בײַ מיר ביסטו שיין]] »</span> is <span class="nowrap" >/bɑj mɪʁ bɪstu ʃɛyn/</span> <span class="nowrap" >([[w:en:Bei Mir Bistu Shein|bay mir bistu sheyn]]).</span><br /> </span><br />
-->
{{Softredirect|1=testwiki:user talk:{{PAGENAME}}|2=<span dir="ltr" >testwiki:user talk:<span dir="ltr" >{{PAGENAME}}</span></span>}}
|-
| align="right" | [[image:Redirectltr.png|right]]
| align="left" dir="ltr" | [[user talk:Gangleri]]
|-
| align="right" | [[Image:Redirectltr.png|right]]
| align="left" dir="ltr" | [[user talk:לערי ריינהארט]] aka "''Gangleri''"
|-
| align="right" | [[Image:Redirectltr.png|right]]
| align="left" dir="ltr" | '''[[testwiki:user talk:לערי ריינהארט]] aka "''Gangleri''"'''
|}<!--
|-
| align="center" colspan="2" dir="ltr" | [[image:Redirectltr.png|left]] [[user talk:Gangleri]]
|-
| align="center" colspan="2" dir="ltr" | [[image:Redirectltr.png|left]] [[user talk:לערי ריינהארט]] aka "''Gangleri''"
|-
| align="center" colspan="2" dir="ltr" | [[image:Redirectltr.png|left]] '''[[testwiki:user talk:לערי ריינהארט]] aka "''Gangleri''"'''
-->
<br clear="all" />
<!--
**only at sandbox subpages**
<center dir="ltr" >This page is an '''user sandbox page'''.<br />'''SUBPAGENAME''': '''{{SUBPAGENAME}}''' – '''[[mediawiki:Sandbox]]''': '''{{int:Sandbox}}''' <sup>[[w:en:mediawiki:Sandbox]]</sup></center>
----
-->
<center>
: <sup><span dir="ltr" class="plainlinks" >SITENAME: '''{{SITENAME}}''' · '''language:''' {{CONTENTLANG}}: '''[{{fullurl:{{FULLPAGENAME}}|uselang={{CONTENTLANG}}}}#top <span dir="ltr" LANG="{{CONTENTLANG}}" >{{#LANGUAGE:{{CONTENTLANG}}}}</span>]''' · [{{fullurl:{{FULLPAGENAME}}|uselang=en}}#top <span dir="ltr" LANG="en" >{{#LANGUAGE:{{CONTENTLANG}}|en}}</span>'''] · [{{fullurl:{{FULLPAGENAME}}|uselang=de}}#top <span dir="ltr" LANG="de" >{{#LANGUAGE:{{CONTENTLANG}}|de}}</span>] · [{{fullurl:{{FULLPAGENAME}}|uselang=es}}#top <span dir="ltr" LANG="es" >{{#LANGUAGE:{{CONTENTLANG}}|es}}</span>] · [{{fullurl:{{FULLPAGENAME}}|uselang=fr}}#top <span dir="ltr" LANG="fr" >{{#LANGUAGE:{{CONTENTLANG}}|fr}}</span>] · [{{fullurl:{{FULLPAGENAME}}|uselang=it}}#top <span dir="ltr" LANG="it" >{{#LANGUAGE:{{CONTENTLANG}}|it}}</span>] · [{{fullurl:{{FULLPAGENAME}}|uselang=ru}}#top <span dir="ltr" LANG="ru" >{{#LANGUAGE:{{CONTENTLANG}}|ru}}</span>] · [{{fullurl:{{FULLPAGENAME}}|uselang=zh}}#top <span dir="ltr" LANG="zh" >{{#LANGUAGE:{{CONTENTLANG}}|zh}}</span>] · [{{fullurl:{{FULLPAGENAME}}|uselang=ar}}#top <span dir="ltr" LANG="ar" >{{#LANGUAGE:{{CONTENTLANG}}|ar}}</span>] · [{{fullurl:{{FULLPAGENAME}}|uselang=he}}#top <span dir="ltr" LANG="he" >{{#LANGUAGE:{{CONTENTLANG}}|he}}</span>] · [{{fullurl:{{FULLPAGENAME}}|uselang=hi}}#top <span dir="ltr" LANG="hi" >{{#LANGUAGE:{{CONTENTLANG}}|hi}}</span>] · [{{fullurl:{{FULLPAGENAME}}|uselang=eo}}#top <span dir="ltr" LANG="eo" >{{#LANGUAGE:{{CONTENTLANG}}|eo}}</span>] · [{{fullurl:{{FULLPAGENAME}}}}#footer #footer]</span></sup><!--
special:version
-->
: <sup><span dir "ltr" class="plainlinks" >[[special:version|local curent version]]: {{CURRENTVERSION}} · versions at [[b:special:version|b:]] · [[c:special:version|c:]] · [[d:special:version|d:]] · '''[[m:special:version|m:]]''' · [[mw:special:version|mw:]] · [[n:special:version|n:]] · [[q:special:version|q:]] · [[s:special:version|s:]] · '''[[testwiki:special:version|t:]]''' · [[v:special:version|v:]] · [[voy:special:version|voy:]] · [[w:special:version|w:]] · [[wikt:special:version|wikt:]] · [[w:en:special:version|w:en:]] · [[m:special:sitematrix#{{CONTENTLANG}}|m:special:sitematrix#{{CONTENTLANG}}]] · [[template:Wikivar]] · <sup>[[m:template:Wikivar|m:]]‎</sup></span></sup>
: <sup><span dir="ltr" class="plainlinks" >'''mediawiki:Sidebar''' '''[{{fullurl:mediawiki:Sidebar|uselang={{CONTENTLANG}}}}#top <span dir="ltr" LANG="{{CONTENTLANG}}" >{{#LANGUAGE:{{CONTENTLANG}}}}</span>]''' · [{{fullurl:mediawiki:Sidebar/en|uselang=en}}#top <span dir="ltr" LANG="en" >{{#LANGUAGE:{{CONTENTLANG}}|en}}</span>'''] · [{{fullurl:mediawiki:Sidebar/de|uselang=de}}#top <span dir="ltr" LANG="de" >{{#LANGUAGE:{{CONTENTLANG}}|de}}</span>] · [{{fullurl:mediawiki:Sidebar/es|uselang=es}}#top <span dir="ltr" LANG="es" >{{#LANGUAGE:{{CONTENTLANG}}|es}}</span>] · [{{fullurl:mediawiki:Sidebar/fr|uselang=fr}}#top <span dir="ltr" LANG="fr" >{{#LANGUAGE:{{CONTENTLANG}}|fr}}</span>] · [{{fullurl:mediawiki:Sidebar/it|uselang=it}}#top <span dir="ltr" LANG="it" >{{#LANGUAGE:{{CONTENTLANG}}|it}}</span>] · [{{fullurl:mediawiki:Sidebar/ru|uselang=ru}}#top <span dir="ltr" LANG="ru" >{{#LANGUAGE:{{CONTENTLANG}}|ru}}</span>] · [{{fullurl:mediawiki:Sidebar/zh|uselang=zh}}#top <span dir="ltr" LANG="zh" >{{#LANGUAGE:{{CONTENTLANG}}|zh}}</span>] · [{{fullurl:mediawiki:Sidebar/ar|uselang=ar}}#top <span dir="ltr" LANG="ar" >{{#LANGUAGE:{{CONTENTLANG}}|ar}}</span>] · [{{fullurl:mediawiki:Sidebar/he|uselang=he}}#top <span dir="ltr" LANG="he" >{{#LANGUAGE:{{CONTENTLANG}}|he}}</span>] · [{{fullurl:mediawiki:Sidebar/hi|uselang=hi}}#top <span dir="ltr" LANG="hi" >{{#LANGUAGE:{{CONTENTLANG}}|hi}}</span>] · [{{fullurl:mediawiki:Sidebar/eo|uselang=eo}}#top <span dir="ltr" LANG="eo" >{{#LANGUAGE:{{CONTENTLANG}}|eo}}</span>]</span></sup>
: <sup><span dir "ltr" class="plainlinks" >[{{fullurl:special:Preferences}}#top <span dir="ltr" LANG="en" >your] [{{fullurl:special:Preferences|uselang=en}}#top <span dir="ltr" LANG="en" >local preferences] · [{{fullurl:special:Preferences|uselang=de}}#mw-prefsection-personal <span dir="ltr" LANG="de" >Einstellungen</span>] · [{{fullurl:special:Preferences|uselang=es}}#mw-prefsection-rendering <span dir="ltr" LANG="es" >Preferencias</span>] · [{{fullurl:special:Preferences|uselang=fr}}#mw-prefsection-editing <span dir="ltr" LANG="fr" >Préférences</span>] · [{{fullurl:special:Preferences|uselang=it}}#mw-prefsection-rc <span dir="ltr" LANG="it" >Preferenze</span>] · [{{fullurl:special:Preferences|uselang=ru}}#mw-prefsection-watchlist <span dir="ltr" LANG="ru" >Настройки</span>] · [{{fullurl:special:Preferences|uselang=zh}}#mw-prefsection-gadgets <span dir="ltr" LANG="zh" >设置</span>] · [{{fullurl:special:Preferences|uselang=ar}}#mw-prefsection-betafeatures <span dir="ltr" LANG="ar" >تفضيلات</span>] · [{{fullurl:special:Preferences|uselang=he}}#mw-prefsection-betafeatures <span dir="ltr" LANG="he" >העדפות</span>] · [{{fullurl:special:Preferences|uselang=hi}}#top <span dir="ltr" LANG="hi" >मेरी वरीयताएँ</span>] · [{{fullurl:special:Preferences|uselang=eo}}#top <span dir="ltr" LANG="eo" >Preferoj</span>]</span></sup><!--
user:{{BASEPAGENAME}}
-->
: <sup><span dir "ltr" class="plainlinks" >user / ‎'''<span dir="ltr" >{{ns:2}}</span>'''‎: ‎'''<span dir="ltr" >[[user:{{BASEPAGENAME}}|{{BASEPAGENAME}}]]</span>‎''' · [{{SERVER}}/?title=special:ListUsers&limit=1&username={{BASEPAGENAMEE}} rights] · [[special:Prefixindex/user:{{BASEPAGENAME}}|all subpages]] [[special:Prefixindex/user talk:{{BASEPAGENAME}}|T]] · [[user:{{BASEPAGENAME}}/common.css|‎/common.css]] · [[user:{{BASEPAGENAME}}/common.js|/common.js]] · [[user:{{BASEPAGENAME}}/Archive/previous user page|/previous user page]] · [[special:Prefixindex/user:{{BASEPAGENAME}}/Archive|archives]] [[special:Prefixindex/user talk:{{BASEPAGENAME}}/Archive|archived talks]] · [[b:{{CONTENTLANG}}:user:{{BASEPAGENAME}}|b:]] · [[c:user:{{BASEPAGENAME}}|c:]] · [[d:user:{{BASEPAGENAME}}|d:]] · [[m:user:{{BASEPAGENAME}}|m:]] · [[mw:user:{{BASEPAGENAME}}|mw:]] · [[n:{{CONTENTLANG}}:user:{{BASEPAGENAME}}|n:]] · [[q:{{CONTENTLANG}}:user:{{BASEPAGENAME}}|q:]] · [[s:{{CONTENTLANG}}:user:{{BASEPAGENAME}}|s:]] · [[testwiki:user:{{BASEPAGENAME}}|t:]] · [[v:{{CONTENTLANG}}:user:{{BASEPAGENAME}}|v:]] · [[voy:{{CONTENTLANG}}:user:{{BASEPAGENAME}}|voy:]] · [[w:{{CONTENTLANG}}:user:{{BASEPAGENAME}}|w:]] · [[wikt:{{CONTENTLANG}}:user:{{BASEPAGENAME}}|wikt:]] · [[w:en:user:{{BASEPAGENAME}}|w:en:]] · [[w:user:{{BASEPAGENAME}}|w:]] · [[:en:user:{{BASEPAGENAME}}|:en:]]‎</span></sup><!--
special:foobar
-->
: <sup><span dir "ltr" class="plainlinks" > [{{fullurl:special:WhatLinksHere/{{FULLPAGENAME}}|uselang=en}}#top <span LANG="en" >'''local''' WLH]‎ · [{{fullurl:special:RecentChanges|uselang=en}}#top <span LANG="en" >'''local''' RC]‎ · [{{fullurl:special:Logs|uselang=en}}#top <span LANG="en" >'''local''' logs]‎ · [{{fullurl:special:WatchList|uselang=en}}#top <span LANG="en" >'''local''' watchlist]‎ · [{{fullurl:special:Contributions/{{BASEPAGENAME}}|uselang=en}}#top <span LANG="en" >'''local''' ontributions]‎ · [[mediawiki:Common.css|'''local''' mediawiki:Common.css]] · [[mediawiki:Common.js|'''local''' mediawiki:Common.js]] · [[mediawiki:Gadgets-definition|'''local''' mediawiki:Gadgets-definition]] · '''[[special:Notifications|local notifications]]'''<br />[[m:user:{{BASEPAGENAME}}/global.css|m:…'''/global.css''']] · [[m:user:{{BASEPAGENAME}}/global.js|m:…'''/global.js''']] · [[special:centralAuth/{{BASEPAGENAMEE}}|'''global''' account information]] · [https://tools.wmflabs.org/guc/?user={{URLENCODE:{{BASEPAGENAME}}|WIKI}} '''global''' user contributions]<!--
· [https://toolserver.org/~River/cgi-bin/count_edits?user={{BASEPAGENAMEE}}&dbname=wikidatawiki_p&machread=1]
--></span></sup><!--
PAGEID related links
-->
: <sup><span dir "ltr" class="plainlinks" >'''PAGEID:''' {{PAGEID}} · [https:{{SERVER}}/?curid={{PAGEID}}#top links '''here'''] · <sup>[https:{{SERVER}}/?curid={{PAGEID}}&action=purge# purge ↺] · [https:{{SERVER}}/?curid={{PAGEID}}&action=edit§ion=0# section=0]</sup> · '''REVISIONID:''' {{REVISIONID}} · [https:{{SERVER}}/?oldid={{REVISIONID}}# permanent link] · (layout: 2015-09-07…d [https://fi.wikipedia.org/?curid=468081#top LTR] [https://ug.wiktionary.org/?curid=5716#top RTL] short)‎</span></sup><!--
testing and validation links related languages / dialects
-->
: <sup><span dir "ltr" class="plainlinks" >'''testing and validation links:''' [[user:בײַ מיר ביסטו שיין#BiDi_issues|BiDi issues]] · [[user:I18n|gadget issues]] · '''related languages / dialects:''' [[w:foo:user:{{BASEPAGENAME}}|w:foo:]] · [[w:bar:user:{{BASEPAGENAME}}|w:bar:]]‎</span></sup>
</center>
----
<!--
<br clear="all" />
-->
__TOC__
== <span dir="ltr" >Welcome‎ <span id="Welcome" dir="ltr" >{{PAGENAME}}</span> to <span id="WelcomeToSITENAME" dir="ltr" >{{SITENAME}}</span>!</span> ==
: [[Korisnik:לערי ריינהארט|לערי ריינהארט]] ([[Razgovor sa korisnikom:לערי ריינהארט|razgovor]]) 09:36, 17 septembar 2015 (KSV)
ndqjyhw89ntdpkati9822prsr6wxhx1
Razgovor s korisnikom:MBisanz
3
12407
51687
2015-09-24T16:09:05Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
51687
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:I18n
3
12415
52139
2015-10-04T11:24:51Z
I18n
2039
layout: 2015-09-17…b LTR RTL short i18n
52139
wikitext
text/x-wiki
{| class="float-center" border="0" cellpadding="3" cellspacing="5" style="background:#efefef; color:black" align="center" LANG="en"
|-
| align="center" colspan="2" |
<!--
<span dir="ltr" >The phonetic transcription of <span class="nowrap" >« לערי ריינהארט »</span> is <span class="nowrap" LANG="he" >/lɛʁi ʁɑjnhɑʁt/</span> <span class="nowrap" >(leri raynhart).</span></span><br />
<span dir="ltr" >The phonetic transcription of <span class="nowrap" LANG="he" >« [[s:yi:בייַ מיר ביסטו שיין|בײַ מיר ביסטו שיין]] »</span> is <span class="nowrap" >/bɑj mɪʁ bɪstu ʃɛyn/</span> <span class="nowrap" >([[w:en:Bei Mir Bistu Shein|bay mir bistu sheyn]]).</span><br /> </span><br />
-->
{{Softredirect|1=testwiki:user talk:{{PAGENAME}}|2=<span dir="ltr" >testwiki:user talk:<span dir="ltr" >{{PAGENAME}}</span></span>}}
<!--
|-
| align="right" | [[image:Redirectltr.png|right]]
| align="left" dir="ltr" | [[user talk:Gangleri]]
-->
|-
| align="right" | [[Image:Redirectltr.png|right]]
| align="left" dir="ltr" | [[user talk:לערי ריינהארט]] aka "''Gangleri''"
|-
| align="right" | [[Image:Redirectltr.png|right]]
| align="left" dir="ltr" | '''[[testwiki:user talk:לערי ריינהארט]] aka "''Gangleri''"'''
|}<!--
|-
| align="center" colspan="2" dir="ltr" | [[image:Redirectltr.png|left]] [[user talk:Gangleri]]
|-
| align="center" colspan="2" dir="ltr" | [[image:Redirectltr.png|left]] [[user talk:לערי ריינהארט]] aka "''Gangleri''"
|-
| align="center" colspan="2" dir="ltr" | [[image:Redirectltr.png|left]] '''[[testwiki:user talk:לערי ריינהארט]] aka "''Gangleri''"'''
-->
<br clear="all" />
<!--
**only at sandbox subpages**
<center dir="ltr" >This page is an '''user sandbox page'''.<br />'''SUBPAGENAME''': '''{{SUBPAGENAME}}''' – '''[[mediawiki:Sandbox]]''': '''{{int:Sandbox}}''' <sup>[[w:en:mediawiki:Sandbox]]</sup></center>
----
-->
<center>
: <sup><span dir="ltr" class="plainlinks" >SITENAME: '''{{SITENAME}}''' · '''language:''' {{CONTENTLANG}}: '''[{{fullurl:{{FULLPAGENAME}}|uselang={{CONTENTLANG}}}}#top <span dir="ltr" LANG="{{CONTENTLANG}}" >{{#LANGUAGE:{{CONTENTLANG}}}}</span>]''' · [{{fullurl:{{FULLPAGENAME}}|uselang=en}}#top <span dir="ltr" LANG="en" >{{#LANGUAGE:{{CONTENTLANG}}|en}}</span>'''] · [{{fullurl:{{FULLPAGENAME}}|uselang=de}}#top <span dir="ltr" LANG="de" >{{#LANGUAGE:{{CONTENTLANG}}|de}}</span>] · [{{fullurl:{{FULLPAGENAME}}|uselang=es}}#top <span dir="ltr" LANG="es" >{{#LANGUAGE:{{CONTENTLANG}}|es}}</span>] · [{{fullurl:{{FULLPAGENAME}}|uselang=fr}}#top <span dir="ltr" LANG="fr" >{{#LANGUAGE:{{CONTENTLANG}}|fr}}</span>] · [{{fullurl:{{FULLPAGENAME}}|uselang=it}}#top <span dir="ltr" LANG="it" >{{#LANGUAGE:{{CONTENTLANG}}|it}}</span>] · [{{fullurl:{{FULLPAGENAME}}|uselang=ru}}#top <span dir="ltr" LANG="ru" >{{#LANGUAGE:{{CONTENTLANG}}|ru}}</span>] · [{{fullurl:{{FULLPAGENAME}}|uselang=zh}}#top <span dir="ltr" LANG="zh" >{{#LANGUAGE:{{CONTENTLANG}}|zh}}</span>] · [{{fullurl:{{FULLPAGENAME}}|uselang=ar}}#top <span dir="ltr" LANG="ar" >{{#LANGUAGE:{{CONTENTLANG}}|ar}}</span>] · [{{fullurl:{{FULLPAGENAME}}|uselang=he}}#top <span dir="ltr" LANG="he" >{{#LANGUAGE:{{CONTENTLANG}}|he}}</span>] · [{{fullurl:{{FULLPAGENAME}}|uselang=hi}}#top <span dir="ltr" LANG="hi" >{{#LANGUAGE:{{CONTENTLANG}}|hi}}</span>] · [{{fullurl:{{FULLPAGENAME}}|uselang=eo}}#top <span dir="ltr" LANG="eo" >{{#LANGUAGE:{{CONTENTLANG}}|eo}}</span>] · [{{fullurl:{{FULLPAGENAME}}}}#footer #footer]</span></sup><!--
special:version
-->
: <sup><span dir "ltr" class="plainlinks" >[[special:version|local curent version]]: {{CURRENTVERSION}} · versions at [[b:special:version|b:]] · [[c:special:version|c:]] · [[d:special:version|d:]] · [[testwikidata:special:version|d2:]] · '''[[m:special:version|m:]]''' · [[mw:special:version|mw:]] · [[n:special:version|n:]] · [[q:special:version|q:]] · [[s:special:version|s:]] · '''[[testwiki:special:version|t:]]''' · [[test2wiki:special:version|t2:]] · [[v:special:version|v:]] · [[voy:special:version|voy:]] · [[w:special:version|w:]] · [[wikt:special:version|wikt:]] · [[w:en:special:version|w:en:]] · [[m:special:sitematrix#{{CONTENTLANG}}|m:special:sitematrix#{{CONTENTLANG}}]] · [[template:Wikivar]] · <sup>[[m:template:Wikivar|m:]]‎</sup></span></sup>
: <sup><span dir="ltr" class="plainlinks" >'''mediawiki:Sidebar''' '''[{{fullurl:mediawiki:Sidebar|uselang={{CONTENTLANG}}}}#top <span dir="ltr" LANG="{{CONTENTLANG}}" >{{#LANGUAGE:{{CONTENTLANG}}}}</span>]''' · [{{fullurl:mediawiki:Sidebar/en|uselang=en}}#top <span dir="ltr" LANG="en" >{{#LANGUAGE:{{CONTENTLANG}}|en}}</span>'''] · [{{fullurl:mediawiki:Sidebar/de|uselang=de}}#top <span dir="ltr" LANG="de" >{{#LANGUAGE:{{CONTENTLANG}}|de}}</span>] · [{{fullurl:mediawiki:Sidebar/es|uselang=es}}#top <span dir="ltr" LANG="es" >{{#LANGUAGE:{{CONTENTLANG}}|es}}</span>] · [{{fullurl:mediawiki:Sidebar/fr|uselang=fr}}#top <span dir="ltr" LANG="fr" >{{#LANGUAGE:{{CONTENTLANG}}|fr}}</span>] · [{{fullurl:mediawiki:Sidebar/it|uselang=it}}#top <span dir="ltr" LANG="it" >{{#LANGUAGE:{{CONTENTLANG}}|it}}</span>] · [{{fullurl:mediawiki:Sidebar/ru|uselang=ru}}#top <span dir="ltr" LANG="ru" >{{#LANGUAGE:{{CONTENTLANG}}|ru}}</span>] · [{{fullurl:mediawiki:Sidebar/zh|uselang=zh}}#top <span dir="ltr" LANG="zh" >{{#LANGUAGE:{{CONTENTLANG}}|zh}}</span>] · [{{fullurl:mediawiki:Sidebar/ar|uselang=ar}}#top <span dir="ltr" LANG="ar" >{{#LANGUAGE:{{CONTENTLANG}}|ar}}</span>] · [{{fullurl:mediawiki:Sidebar/he|uselang=he}}#top <span dir="ltr" LANG="he" >{{#LANGUAGE:{{CONTENTLANG}}|he}}</span>] · [{{fullurl:mediawiki:Sidebar/hi|uselang=hi}}#top <span dir="ltr" LANG="hi" >{{#LANGUAGE:{{CONTENTLANG}}|hi}}</span>] · [{{fullurl:mediawiki:Sidebar/eo|uselang=eo}}#top <span dir="ltr" LANG="eo" >{{#LANGUAGE:{{CONTENTLANG}}|eo}}</span>]</span></sup>
: <sup><span dir "ltr" class="plainlinks" >[{{fullurl:special:Preferences}}#top <span dir="ltr" LANG="en" >your] [{{fullurl:special:Preferences|uselang=en}}#top <span dir="ltr" LANG="en" >local preferences] · [{{fullurl:special:Preferences|uselang=de}}#mw-prefsection-personal <span dir="ltr" LANG="de" >Einstellungen</span>] · [{{fullurl:special:Preferences|uselang=es}}#mw-prefsection-rendering <span dir="ltr" LANG="es" >Preferencias</span>] · [{{fullurl:special:Preferences|uselang=fr}}#mw-prefsection-editing <span dir="ltr" LANG="fr" >Préférences</span>] · [{{fullurl:special:Preferences|uselang=it}}#mw-prefsection-rc <span dir="ltr" LANG="it" >Preferenze</span>] · [{{fullurl:special:Preferences|uselang=ru}}#mw-prefsection-watchlist <span dir="ltr" LANG="ru" >Настройки</span>] · [{{fullurl:special:Preferences|uselang=zh}}#mw-prefsection-gadgets <span dir="ltr" LANG="zh" >设置</span>] · [{{fullurl:special:Preferences|uselang=ar}}#mw-prefsection-betafeatures <span dir="ltr" LANG="ar" >تفضيلات</span>] · [{{fullurl:special:Preferences|uselang=he}}#mw-prefsection-betafeatures <span dir="ltr" LANG="he" >העדפות</span>] · [{{fullurl:special:Preferences|uselang=hi}}#top <span dir="ltr" LANG="hi" >मेरी वरीयताएँ</span>] · [{{fullurl:special:Preferences|uselang=eo}}#top <span dir="ltr" LANG="eo" >Preferoj</span>]</span></sup><!--
user:{{BASEPAGENAME}}
-->
: <sup><span dir "ltr" class="plainlinks" >user / ‎'''<span dir="ltr" >{{ns:2}}</span>'''‎: ‎'''<span dir="ltr" >[[user:{{BASEPAGENAME}}|{{BASEPAGENAME}}]]</span>‎''' · [{{SERVER}}/?title=special:ListUsers&limit=1&username={{BASEPAGENAMEE}} rights] · [[special:Prefixindex/user:{{BASEPAGENAME}}|all subpages]] [[special:Prefixindex/user talk:{{BASEPAGENAME}}|T]] · [[user:{{BASEPAGENAME}}/common.css|‎/common.css]] · [[user:{{BASEPAGENAME}}/common.js|/common.js]] · [[user:{{BASEPAGENAME}}/Archive/previous user page|/previous user page]] · [[special:Prefixindex/user:{{BASEPAGENAME}}/Archive|archives]] [[special:Prefixindex/user talk:{{BASEPAGENAME}}/Archive|archived talks]] · [[b:{{CONTENTLANG}}:user:{{BASEPAGENAME}}|b:]] · [[c:user:{{BASEPAGENAME}}|c:]] · [[d:user:{{BASEPAGENAME}}|d:]] · [[testwikidata:user:{{BASEPAGENAME}}|d2:]] · [[m:user:{{BASEPAGENAME}}|m:]] · [[mw:user:{{BASEPAGENAME}}|mw:]] · [[n:{{CONTENTLANG}}:user:{{BASEPAGENAME}}|n:]] · [[q:{{CONTENTLANG}}:user:{{BASEPAGENAME}}|q:]] · [[s:{{CONTENTLANG}}:user:{{BASEPAGENAME}}|s:]] · [[testwiki:user:{{BASEPAGENAME}}|t:]] · [[test2wiki:user:{{BASEPAGENAME}}|t2:]] · [[v:{{CONTENTLANG}}:user:{{BASEPAGENAME}}|v:]] · [[voy:{{CONTENTLANG}}:user:{{BASEPAGENAME}}|voy:]] · [[w:{{CONTENTLANG}}:user:{{BASEPAGENAME}}|w:]] · [[wikt:{{CONTENTLANG}}:user:{{BASEPAGENAME}}|wikt:]] · [[w:en:user:{{BASEPAGENAME}}|w:en:]] · [[w:user:{{BASEPAGENAME}}|w:]] · [[:en:user:{{BASEPAGENAME}}|:en:]]‎</span></sup><!--
special:foobar
-->
: <sup><span dir "ltr" class="plainlinks" > [{{fullurl:special:WhatLinksHere/{{FULLPAGENAME}}|uselang=en}}#top <span LANG="en" >'''local''' WLH]‎ · [{{fullurl:special:RecentChanges|uselang=en}}#top <span LANG="en" >'''local''' RC]‎ · [{{fullurl:special:Logs|uselang=en}}#top <span LANG="en" >'''local''' logs]‎ · [{{fullurl:special:WatchList|uselang=en}}#top <span LANG="en" >'''local''' watchlist]‎ <sup>[{{fullurl:special:WatchList/edit|uselang=en}}#top <span LANG="en" > edit]</sup>‎ · [{{fullurl:special:Contributions/{{BASEPAGENAME}}|uselang=en}}#top <span LANG="en" >'''local''' ontributions]‎ · [[mediawiki:Common.css|'''local''' mediawiki:Common.css]] · [[mediawiki:Common.js|'''local''' mediawiki:Common.js]] · [[mediawiki:Gadgets-definition|'''local''' mediawiki:Gadgets-definition]] · '''[[special:Notifications|local notifications]]'''<br />[[m:user:{{BASEPAGENAME}}/global.css|m:…'''/global.css''']] · [[m:user:{{BASEPAGENAME}}/global.js|m:…'''/global.js''']] · [[special:centralAuth/{{BASEPAGENAMEE}}|'''global''' account information]] · [https://tools.wmflabs.org/guc/?user={{URLENCODE:{{BASEPAGENAME}}|WIKI}} '''global''' user contributions]<!--
· [https://toolserver.org/~River/cgi-bin/count_edits?user={{BASEPAGENAMEE}}&dbname=wikidatawiki_p&machread=1]
--></span></sup><!--
PAGEID related links
-->
: <sup><span dir "ltr" class="plainlinks" >'''PAGEID:''' {{PAGEID}} · [https:{{SERVER}}/?curid={{PAGEID}}#top links '''here'''] · <sup>[https:{{SERVER}}/?curid={{PAGEID}}&action=purge# purge ↺] · [https:{{SERVER}}/?curid={{PAGEID}}&action=edit§ion=0# section=0]</sup> · '''REVISIONID:''' {{REVISIONID}} · [https:{{SERVER}}/?oldid={{REVISIONID}}# permanent link] · (layout: 2015-09-17…b [https://fi.wikipedia.org/?curid=468081#top LTR] [https://ug.wiktionary.org/?curid=5716#top RTL] short)‎</span></sup><!--
testing and validation links related languages / dialects
-->
: <sup><span dir "ltr" class="plainlinks" >'''testing and validation links:''' [[user:בײַ מיר ביסטו שיין#BiDi_issues|BiDi issues]] · [[user:I18n|gadget issues]] · '''[[#related languages]] / [[#related dialects]]''' · [[/local notes]]</span></sup>
</center>
----
<!--
<br clear="all" />
-->
__TOC__
== <span dir="ltr" >Welcome‎ <span id="Welcome" dir="ltr" >{{PAGENAME}}</span> to <span id="WelcomeToSITENAME" dir="ltr" >{{SITENAME}}</span>!</span> ==
: [[Korisnik:I18n|I18n]] ([[Razgovor sa korisnikom:I18n|razgovor]]) 11:24, 4 oktobar 2015 (KSV)
1divnguhilnkfixzk80xsrnpy9uh37j
Razgovor s korisnikom:Érico Júnior Wouters
3
12417
52471
2015-11-02T11:09:38Z
Steinsplitter
1382
Steinsplitter premjestio je stranicu [[Razgovor sa korisnikom:Érico Júnior Wouters]] na [[Razgovor sa korisnikom:Érico]]: Automatsko premještanje stranice zbog preimenovanja korisnika „[[Special:CentralAuth/Érico Júnior Wouters|Érico Júnior W...
52471
wikitext
text/x-wiki
#PREUSMJERI [[Razgovor sa korisnikom:Érico]]
49z1b8j5mg4dch6x5l2anoindxpuf27
Korisnik:Érico Júnior Wouters/common.js
2
12418
52474
2015-11-02T12:44:11Z
Steinsplitter
1382
Steinsplitter premjestio je stranicu [[Korisnik:Érico Júnior Wouters/common.js]] na [[Korisnik:Érico/common.js]]: Automatsko premještanje stranice zbog preimenovanja korisnika „[[Special:CentralAuth/Érico Júnior Wouters|Érico Júnior Wouters]]...
52474
javascript
text/javascript
/* #REDIRECT */mw.loader.load("//bs.wiktionary.org/w/index.php?title=Korisnik:%C3%89rico/common.js\u0026action=raw\u0026ctype=text/javascript");
hpudft3pucpouw48ipox2z203q6md5j
Razgovor s korisnikom:Максим Підліснюк
3
12421
52721
2015-11-12T23:15:14Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
52721
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:GVarnum-WMF
3
12422
52935
2015-12-02T22:41:02Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
52935
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Korisnik:Hahc21
2
12437
53288
2015-12-30T19:05:04Z
Steinsplitter
1382
Steinsplitter premjestio je stranicu [[Korisnik:Hahc21]] na [[Korisnik:Razr Nation]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Hahc21|Hahc21]]" u "[[Special:CentralAuth/Razr Nation|Razr Nation]]"
53288
wikitext
text/x-wiki
#PREUSMJERI [[Korisnik:Razr Nation]]
n7kya2xsehds8n6j91sqf87wvha9ito
Korisnik:Hahc21/common.css
2
12438
53290
2015-12-30T19:06:47Z
Steinsplitter
1382
Steinsplitter premjestio je stranicu [[Korisnik:Hahc21/common.css]] na [[Korisnik:Razr Nation/common.css]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Hahc21|Hahc21]]" u "[[Special:CentralAuth/Razr Nation|Razr...
53290
css
text/css
/* #REDIRECT */@import url(//bs.wiktionary.org/w/index.php?title=Korisnik:Razr_Nation/common.css&action=raw&ctype=text/css);
gw94mxrbkotmtw34yfe82xu4p20gcy8
Korisnik:Hahc21/common.js
2
12439
53292
2015-12-30T19:07:10Z
Steinsplitter
1382
Steinsplitter premjestio je stranicu [[Korisnik:Hahc21/common.js]] na [[Korisnik:Razr Nation/common.js]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Hahc21|Hahc21]]" u "[[Special:CentralAuth/Razr Nation|Razr N...
53292
javascript
text/javascript
/* #REDIRECT */mw.loader.load("//bs.wiktionary.org/w/index.php?title=Korisnik:Razr_Nation/common.js\u0026action=raw\u0026ctype=text/javascript");
ac9qkn98h3i5k284veied0s0g8u2wl9
Razgovor s korisnikom:Codegazija
3
12440
53459
2016-01-07T02:18:03Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
53459
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Shanmugamp7
3
12441
53589
2016-02-01T02:54:42Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
53589
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Cyberpower678
3
12443
53678
2016-03-11T00:27:36Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
53678
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Jerome1486
3
12444
53732
2016-03-21T15:16:59Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
53732
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:RadiX
3
12445
53896
2016-04-15T13:10:36Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
53896
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Korisnik:Pinus
2
12446
68216
53902
2022-02-21T03:07:58Z
EmausBot
2509
Bot: Neispravno preusmjerenje prema premještenoj stranici [[Korisnik:Prenn (usurped 2)]]
68216
wikitext
text/x-wiki
#PREUSMJERI [[Korisnik:Prenn (usurped 2)]]
a6qmn8sz23g27cq0fthw9asbdyj448z
Razgovor s korisnikom:Pinus
3
12447
53904
2016-04-26T18:32:50Z
Cyberpower678
2087
Cyberpower678 premjestio je stranicu [[Razgovor s korisnikom:Pinus]] na [[Razgovor s korisnikom:Prenn]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Pinus|Pinus]]" u "[[Special:CentralAuth/Prenn|Prenn]]"
53904
wikitext
text/x-wiki
#PREUSMJERI [[Razgovor s korisnikom:Prenn]]
630pch181s6e70zlgmn0n9lsot5hef5
Korisnik:Riley Huntley
2
12449
72708
53967
2025-04-17T09:56:34Z
Aca
2473
+
72708
wikitext
text/x-wiki
#PREUSMJERI [[:meta:User:~riley]]
1fuxwky86yhkn6823bxjqjhy16w84n0
Razgovor s korisnikom:Robin985746
3
12450
53968
2016-05-10T11:06:34Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
53968
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:K6ka
3
12451
54019
2016-05-20T21:13:08Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
54019
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:HakanIST
3
12452
54020
2016-05-21T08:27:17Z
HakanIST
2154
redirect to my main talk page
54020
wikitext
text/x-wiki
#REDIRECT [[m:User_talk:HakanIST]]
ma80ys6tyyeuuvkmjl8wic828n6kzw0
Razgovor s korisnikom:Micraims
3
12454
68144
54341
2021-10-24T00:31:54Z
Mykola7
3139
Mykola7 premjestio je stranicu [[Razgovor s korisnikom:SelfBlood96]] na [[Razgovor s korisnikom:Micraims]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/SelfBlood96|SelfBlood96]]" u "[[Special:CentralAuth/Micraims|Micraims]]"
54341
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Otourly
3
12455
54614
2016-07-07T14:10:46Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
54614
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Sharif uddin
3
12456
66986
54731
2019-05-22T21:23:10Z
EmausBot
2509
Bot: Popravlja dvostruka preusmjerenja na [[Razgovor s korisnikom:Lazy-restless]]
66986
wikitext
text/x-wiki
#PREUSMJERI [[Razgovor s korisnikom:Lazy-restless]]
2nt2w66eyyoz4v97dkwmwh75fexrmh9
Razgovor s korisnikom:Adavyd
3
12458
54967
2016-08-05T20:32:48Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
54967
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Korisnik:G(x)-former
2
12460
55169
2016-08-25T10:23:06Z
Céréales Killer
1864
Céréales Killer premjestio je stranicu [[Korisnik:G(x)-former]] na [[Korisnik:V(g)]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/G(x)-former|G(x)-former]]" u "[[Special:CentralAuth/V(g)|V(g)]]"
55169
wikitext
text/x-wiki
#PREUSMJERI [[Korisnik:V(g)]]
h9bv9dlf07hj2ankehc7ccj1qmx35ov
Razgovor s korisnikom:G(x)-former
3
12461
55171
2016-08-25T10:23:06Z
Céréales Killer
1864
Céréales Killer premjestio je stranicu [[Razgovor s korisnikom:G(x)-former]] na [[Razgovor s korisnikom:V(g)]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/G(x)-former|G(x)-former]]" u "[[Special:CentralAuth/...
55171
wikitext
text/x-wiki
#PREUSMJERI [[Razgovor s korisnikom:V(g)]]
25pominez9z9kl7sscfkfkv8yuhucn0
Razgovor s korisnikom:Reder
3
12462
56528
2016-09-08T03:35:59Z
Jianhui67
1670
Jianhui67 premjestio je stranicu [[Razgovor s korisnikom:Reder]] na [[Razgovor s korisnikom:Codeks]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Reder|Reder]]" u "[[Special:CentralAuth/Codeks|Codeks]]"
56528
wikitext
text/x-wiki
#PREUSMJERI [[Razgovor s korisnikom:Codeks]]
c033p4h33fvugvaalsl2q8tru6of412
Korisnik:Reder
2
12463
56530
2016-09-08T03:35:59Z
Jianhui67
1670
Jianhui67 premjestio je stranicu [[Korisnik:Reder]] na [[Korisnik:Codeks]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Reder|Reder]]" u "[[Special:CentralAuth/Codeks|Codeks]]"
56530
wikitext
text/x-wiki
#PREUSMJERI [[Korisnik:Codeks]]
pur98fmqb66nsz3u58p8un8lyobw7yo
Razgovor s korisnikom:Jianhui67
3
12464
56533
2016-09-08T11:40:58Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
56533
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Wpedzich
3
12465
56566
2016-09-17T20:19:06Z
Masti
2027
Masti premjestio je stranicu [[Razgovor s korisnikom:Wpedzich]] na [[Razgovor s korisnikom:Wojciech Pędzich]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Wpedzich|Wpedzich]]" u "[[Special:CentralAuth/Wojciech...
56566
wikitext
text/x-wiki
#PREUSMJERI [[Razgovor s korisnikom:Wojciech Pędzich]]
2wzbrbtx65mixgw5s41w906fzhpcufa
Razgovor s korisnikom:Senad~bswiktionary
3
12466
56806
2016-10-12T13:33:40Z
Céréales Killer
1864
Céréales Killer premjestio je stranicu [[Razgovor s korisnikom:Senad~bswiktionary]] na [[Razgovor s korisnikom:Bstranslator]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Senad~bswiktionary|Senad~bswiktionary...
56806
wikitext
text/x-wiki
#PREUSMJERI [[Razgovor s korisnikom:Bstranslator]]
ccl41df0danuy0brvpna77xa6ywsxmg
Razgovor s korisnikom:Uncitoyen
3
12467
67416
57075
2020-06-10T22:34:55Z
Sakretsu
2868
Sakretsu premjestio je stranicu [[Razgovor s korisnikom:Uğurkent]] na [[Razgovor s korisnikom:Uncitoyen]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Uğurkent|Uğurkent]]" u "[[Special:CentralAuth/Uncitoyen|Uncitoyen]]"
57075
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Golden Bosnian Lily
3
12468
57128
57092
2016-11-19T06:33:26Z
KWiki
1197
57128
wikitext
text/x-wiki
<div style="background-color: #00FF7F; border: 2px solid #000000; padding: 10px;">
<span style="font-size:x-large"> ↳ </span>'''[[w:Razgovor s korisnikom:Golden Bosnian Lily|Golden Bosnian Lily]]'''</div>
lxhb5no0wxep2o3meuuj9wae94d2247
Razgovor s korisnikom:Stïnger
3
12469
66901
57126
2018-02-02T11:19:04Z
MarcoAurelio
1485
MarcoAurelio premjestio je stranicu [[Razgovor s korisnikom:Ks-M9]] na [[Razgovor s korisnikom:Stïnger]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Ks-M9|Ks-M9]]" u "[[Special:CentralAuth/Stïnger|Stïnger]]"
66901
wikitext
text/x-wiki
{{softredirect|m:User talk:Ks-M9}}
fw0439h83wqci174xyj47ssdx8u1dr1
Razgovor s korisnikom:Krinkle
3
12470
57127
2016-11-19T06:31:21Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
57127
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Korisnik:George Animal
2
12471
57273
2016-12-08T07:10:33Z
Stephen G. Brown
924
Stephen G. Brown premjestio je stranicu [[Korisnik:George Animal]] na [[Korisnik:Şêr]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/George Animal|George Animal]]" u "[[Special:CentralAuth/Şêr|Şêr]]"
57273
wikitext
text/x-wiki
#PREUSMJERI [[Korisnik:Şêr]]
4q3h0cq1y5c99k1u1tlc0l986gl567j
Razgovor s korisnikom:George Animal
3
12472
57275
2016-12-08T07:10:33Z
Stephen G. Brown
924
Stephen G. Brown premjestio je stranicu [[Razgovor s korisnikom:George Animal]] na [[Razgovor s korisnikom:Şêr]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/George Animal|George Animal]]" u "[[Special:Centra...
57275
wikitext
text/x-wiki
#PREUSMJERI [[Razgovor s korisnikom:Şêr]]
3trds09hm72qhvisq30vscwwloojhpj
Razgovor s korisnikom:Jmvkrecords
3
12473
57312
2016-12-23T07:03:12Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
57312
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Litlok
3
12474
57366
2017-01-02T01:43:52Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
57366
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Korisnik:Morphypnos/common.js
2
12475
57800
2017-02-15T22:30:50Z
Litlok
2245
Litlok premjestio je stranicu [[Korisnik:Morphypnos/common.js]] na [[Korisnik:La fée Didier/common.js]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Morphypnos|Morphypnos]]" u "[[Special:CentralAuth/La fée Di...
57800
javascript
text/javascript
/* #REDIRECT */mw.loader.load("//bs.wiktionary.org/w/index.php?title=Korisnik:La_f%C3%A9e_Didier/common.js\u0026action=raw\u0026ctype=text/javascript");
9020oh1nci3mhof3a0kp6evkqtbo8z2
Korisnik:Allan Aguilar/common.js
2
12476
57821
2017-02-16T12:06:32Z
Savh
853
Savh premjestio je stranicu [[Korisnik:Allan Aguilar/common.js]] na [[Korisnik:Green Mostaza/common.js]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Allan Aguilar|Allan Aguilar]]" u "[[Special:CentralAuth/Gree...
57821
javascript
text/javascript
/* #REDIRECT */mw.loader.load("//bs.wiktionary.org/w/index.php?title=Korisnik:Green_Mostaza/common.js\u0026action=raw\u0026ctype=text/javascript");
8wsyqnfw08nlhqsj9w3ryerfjxlsfnc
Korisnik:Srđan/js/cat-a-lot.js
2
12477
68155
67602
2021-12-30T21:27:29Z
Ladsgroup
2295
Maintenance: Fixing deprecated call to importScriptURI ([[mw:ResourceLoader/Migration_guide_(users)#importScriptURI]])
68155
javascript
text/javascript
window.catALotPrefs = {editpages: true};
mw.loader.using(['jquery.ui', 'mediawiki.util', 'jquery.mwExtension'], function(){
mw.loader.load('//commons.wikimedia.org/w/index.php?action=raw&ctype=text/javascript&title=MediaWiki:Gadget-Cat-a-lot.js');
importStylesheetURI('//commons.wikimedia.org/w/index.php?action=raw&ctype=text/css&title=MediaWiki:Gadget-Cat-a-lot.css');
});
5xi6d4oma94wzs0lp55kkljgyk8irqj
Korisnik:Srđan/common.js
2
12478
67598
58056
2020-07-15T00:18:48Z
蟲蟲飛
2883
蟲蟲飛 premjestio je stranicu [[Korisnik:Srdjan m/common.js]] na [[Korisnik:Srđan/common.js]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Srdjan m|Srdjan m]]" u "[[Special:CentralAuth/Srđan|Srđan]]"
58056
javascript
text/javascript
//Cat-a-lot
importScript('Korisnik:Srdjan m/js/cat-a-lot.js');
//HotCat
mw.loader.load( '//commons.wikimedia.org/w/index.php?title=MediaWiki:Gadget-HotCat.js&action=raw&ctype=text/javascript' );
otpt23d3dyfeca9iepfywcif58nfa2r
Kategorija:Šabloni deklinacije (finski)
14
12480
66725
58045
2017-07-03T23:36:35Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66725
wikitext
text/x-wiki
[[Kategorija:Šabloni deklinacije|Finski]]
[[Kategorija:Finski jezik]]
q1yuqjdnziim0ru8xdjx1ywypdtcxih
Kategorija:Šabloni deklinacije (gruzijski)
14
12481
66841
58054
2017-07-04T13:43:28Z
JAnDbot
878
Bot: čišćenje starih međuwiki linkova
66841
wikitext
text/x-wiki
[[Kategorija:Šabloni deklinacije|Gruzijski]]
[[Kategorija:Gruzijski jezik]]
4g4ac9y95nzqkkuajwv8ycp2eadp5x2
Kategorija:Šabloni deklinacije (grčki)
14
12482
66726
58130
2017-07-03T23:36:44Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66726
wikitext
text/x-wiki
[[Kategorija:Šabloni deklinacije|Grčki]]
[[Kategorija:Grčki jezik]]
ki7j37tbh0hcnzuhkz84zakcv78scjf
Kategorija:Šabloni deklinacije (mađarski)
14
12484
66731
58142
2017-07-03T23:37:34Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66731
wikitext
text/x-wiki
[[Kategorija:Šabloni deklinacije|Mađarski]]
[[Kategorija:Mađarski jezik]]
khvjmtgdx0beztojgbtox9vsaocerpl
Kategorija:Šabloni deklinacije (njemački)
14
12485
66732
58153
2017-07-03T23:37:44Z
Dexbot
1761
Bot: Cleaning up old interwiki links
66732
wikitext
text/x-wiki
[[Kategorija:Šabloni deklinacije|Njemački]]
[[Kategorija:Njemački jezik]]
tk1r4cb3rfyxjha4uojpxa87wdx68du
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
58211
2017-02-24T15:44:28Z
Srđan
1899
Nova stranica: [[Datoteka:Symbol support vote.svg|15px|Za|link=]]
58211
wikitext
text/x-wiki
[[Datoteka:Symbol support vote.svg|15px|Za|link=]]
hlvaqi10mi7mb9gqm1vtltadxs2us6t
Šablon:protiv
10
12488
72671
58214
2025-04-15T20:07:05Z
Aca
2473
+
72671
wikitext
text/x-wiki
[[Datoteka:Symbol oppose vote.svg|15px|Protiv|link=]] <noinclude>
__EXPECTUNUSEDTEMPLATE__
</noinclude>
auuqlewyn7mlx0dzjux4yvq0bsgxoc2
Razgovor s korisnikom:Srđan
3
12489
70937
68157
2024-02-07T15:04:17Z
Superpes15
2934
/* Your advanced permissions on bswiktionary */ novi odlomak
70937
wikitext
text/x-wiki
{{Dobrodošlica}}
== How we will see unregistered users ==
<div lang="en" dir="ltr" class="mw-content-ltr">
<section begin=content/>
Hi!
You get this message because you are an admin on a Wikimedia wiki.
When someone edits a Wikimedia wiki without being logged in today, we show their IP address. As you may already know, we will not be able to do this in the future. This is a decision by the Wikimedia Foundation Legal department, because norms and regulations for privacy online have changed.
Instead of the IP we will show a masked identity. You as an admin '''will still be able to access the IP'''. There will also be a new user right for those who need to see the full IPs of unregistered users to fight vandalism, harassment and spam without being admins. Patrollers will also see part of the IP even without this user right. We are also working on [[m:IP Editing: Privacy Enhancement and Abuse Mitigation/Improving tools|better tools]] to help.
If you have not seen it before, you can [[m:IP Editing: Privacy Enhancement and Abuse Mitigation|read more on Meta]]. If you want to make sure you don’t miss technical changes on the Wikimedia wikis, you can [[m:Global message delivery/Targets/Tech ambassadors|subscribe]] to [[m:Tech/News|the weekly technical newsletter]].
We have [[m:IP Editing: Privacy Enhancement and Abuse Mitigation#IP Masking Implementation Approaches (FAQ)|two suggested ways]] this identity could work. '''We would appreciate your feedback''' on which way you think would work best for you and your wiki, now and in the future. You can [[m:Talk:IP Editing: Privacy Enhancement and Abuse Mitigation|let us know on the talk page]]. You can write in your language. The suggestions were posted in October and we will decide after 17 January.
Thank you.
/[[m:User:Johan (WMF)|Johan (WMF)]]<section end=content/>
</div>
18:10, 4 januar 2022 (KSV)
<!-- Message sent by User:Johan (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:Johan_(WMF)/Target_lists/Admins2022(1)&oldid=22532492 -->
== Your advanced permissions on bswiktionary ==
Hello. A [[:m:Admin activity review|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|community consensus]] in 2013. According to this policy, the stewards are reviewing activity on wikis with no inactivity policy.
You meet the inactivity criteria (no edits and no logged actions for 2 years) on this wiki. Since this wiki, to the best of our knowledge, does not have its own rights review process, the global one applies.
If you want to keep your advanced permissions, you should inform the community of the wiki about the fact that the stewards have sent you this information about your inactivity. A community notice about this process has been also posted on the local Village Pump of this wiki. If the community has a discussion about it and then wants you to keep your rights, please contact the stewards at the [[:m:Stewards' noticeboard]], and link to the discussion of the local community, where they express their wish to continue to maintain the rights.
If you wish to resign your rights, please [[m:SRP|request removal of your rights on Meta]].
If there is no response at all after one month, stewards will proceed to remove your administrator and/or bureaucrat rights. In ambiguous cases, stewards will evaluate the responses and will refer a decision back to the local community for their comment and review. If you have any questions, please contact the [[:m:Stewards' noticeboard|stewards]].
Yours faithfully. [[Korisnik:Superpes15|Superpes15]] ([[Razgovor s korisnikom:Superpes15|razgovor]]) 15:04, 7 februar 2024 (KSV)
70z4jxocgw4ltqfoag2wuvwins2lpe9
Razgovor s korisnikom:C3r4
3
12490
58222
58221
2017-02-24T17:57:25Z
C3r4
1571
/* Hvala na dobrodošlici */ novi odlomak
58222
wikitext
text/x-wiki
{{Dobrodošlica}}
== Hvala na dobrodošlici ==
;) --[[Korisnik:C3r4|C3r4]] ([[Razgovor s korisnikom:C3r4|razgovor]]) 17:57, 24 februar 2017 (KSV)
3wa5u7wtkgvu6csgs2pdh1hvehln0hv
Šablon:Glavna stranica/Dobrodošlica
10
12491
58469
2017-03-04T16:22:12Z
Srđan
1899
Srdjan m premjestio je stranicu [[Šablon:Glavna stranica/Dobrodošlica]] na [[Šablon:Početna strana/Dobrodošlica]]
58469
wikitext
text/x-wiki
#PREUSMJERI [[Šablon:Početna strana/Dobrodošlica]]
kbgn21a4gsogk3t7m1pd0kol8evdrhe
Šablon:Glavna stranica/O
10
12492
58471
2017-03-04T16:22:35Z
Srđan
1899
Srdjan m premjestio je stranicu [[Šablon:Glavna stranica/O]] na [[Šablon:Početna strana/O]]
58471
wikitext
text/x-wiki
#PREUSMJERI [[Šablon:Početna strana/O]]
cvp0qdc3aa3u7fnypyw8c6u3tzznm9i
Šablon:Glavna stranica/Portali
10
12493
58473
2017-03-04T16:23:02Z
Srđan
1899
Srdjan m premjestio je stranicu [[Šablon:Glavna stranica/Portali]] na [[Šablon:Početna strana/Portali]]
58473
wikitext
text/x-wiki
#PREUSMJERI [[Šablon:Početna strana/Portali]]
1rdjs9msa82qcehgqhijkw0yrbmpqk6
Šablon:Glavna stranica/Odabrano
10
12494
58475
2017-03-04T16:23:32Z
Srđan
1899
Srdjan m premjestio je stranicu [[Šablon:Glavna stranica/Odabrano]] na [[Šablon:Početna strana/Odabrano]]
58475
wikitext
text/x-wiki
#PREUSMJERI [[Šablon:Početna strana/Odabrano]]
kmfbki3ox4evlxjub6vaoj56v6nrm6p
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
Razgovor s korisnikom:Munja (usurped)
3
12501
66968
58585
2018-12-06T15:43:51Z
1997kB
2363
1997kB premjestio je stranicu [[Razgovor s korisnikom:Munja]] na [[Razgovor s korisnikom:Munja (usurped)]] bez ostavljanja preusmjerenja: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Munja|Munja]]" u "[[Special:CentralAuth/Munja (usurped)|Munja (usurped)]]"
58585
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:AnToni
3
12502
58586
2017-03-05T13:11:29Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
58586
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:WOSlinker
3
12511
58748
2017-03-14T07:43:25Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
58748
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:علاء
3
12512
58876
2017-04-03T14:47:08Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
58876
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Boing! said Zebedee
3
12513
58935
2017-04-10T00:51:33Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
58935
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Šablon:fa-konj
10
12564
65012
65011
2017-05-14T19:15:51Z
Barishan
287
65012
wikitext
text/x-wiki
<div class="NavFrame" style="">
<div class="NavHead" style="" >{{{header|Konjugacija: {{FAkar|{{PAGENAME}}|tr=-}}}}}</div>
<div class="NavContent">
{| border="1px solid #000000" style="border-collapse:collapse; background:#fafafa; text-align:center; width:100%" class="inflection-table"
|-
| colspan="8" | {{FAkar|{{{inf}}}}} <br /><small>({{{inf-tr}}})</small>
! colspan="2" style="background:#e6e6e6" | Infinitiv
|-
| colspan="10" style="background:#d5d5d5; height: .25em" |
|-
| colspan="3" | {{FAkar|{{{ps-stem}}}}} <br /><small>({{{ps-stem-tr}}})</small>
! colspan="2" style="background:#e6e6e6" | Prošla osnova
| colspan="3" | {{FAkar|{{{pr-stem}}}}} <br /><small>({{{pr-stem-tr}}})</small>
! colspan="2" style="background:#e6e6e6" | Prezentska osnova
|-
| colspan="3" | {{FAkar|{{{ps-part}}}}} <br><small>({{{ps-part-tr}}})</small>
! colspan="2" style="background:#e6e6e6" | Particip prošlosti
| colspan="3" | {{FAkar|{{{pr-part}}}}} <br><small>({{{pr-part-tr}}})</small>
! colspan="2" style="background:#e6e6e6" | Particip prezenta
|-
! colspan="10" style="background:#a0ade3" | Indikativ
|-
| {{FAkar|{{{1p-past}}}}} <br /><small>({{{1p-past-tr}}})</small>
! style="background:#cfcfcf" | {{FAkar|ما}} <br> <small>(mâ)</small>
| {{FAkar|{{{1s-past}}}}} <br /><small>({{{1s-past-tr}}})</small>
! style="background:#cfcfcf" | {{FAkar|من}} <br> <small>(man)</small>
! rowspan="3" style="background:#c0cfe4" | Prosto prošlo
| {{FAkar|{{{1p-aor}}}}} <br /><small>({{{1p-aor-tr}}})</small>
! style="background:#cfcfcf" | {{FAkar|ما}} <br> <small>(mâ)</small>
| {{FAkar|{{{1s-aor}}}}} <br /><small>({{{1s-aor-tr}}})</small>
! style="background:#cfcfcf" | {{FAkar|من}} <br> <small>(man)</small>
! rowspan="3" style="background:#c0cfe4" | Aorist
|-
| {{FAkar|{{{2p-past}}}}} <br /><small>({{{2p-past-tr}}}){{#if:{{{2p-past-c-tr|}}}|, <br />{{{2p-past-c-tr}}} {{qualifier|colloquial}} }}</small>
! style="background:#cfcfcf" | {{FAkar|شما}} <br> <small>(šomâ)</small>
| {{FAkar|{{{2s-past}}}}} <br /><small>({{{2s-past-tr}}})</small>
! style="background:#cfcfcf" | {{FAkar|تو}} <br> <small>(to)</small>
| {{FAkar|{{{2p-aor}}}}} <br /><small>({{{2p-aor-tr}}}){{#if:{{{2p-aor-c-tr|}}}|, <br />{{{2p-aor-c-tr}}} {{qualifier|colloquial}} }}</small>
! style="background:#cfcfcf" | {{FAkar|شما}} <br> <small>(šomâ)</small>
| {{FAkar|{{{2s-aor}}}}} <br /><small>({{{2s-aor-tr}}})</small>
! style="background:#cfcfcf" | {{FAkar|تو}} <br> <small>(to)</small>
|-
| {{FAkar|{{{3p-past}}}}} <br /><small>({{{3p-past-tr}}}){{#if:{{{3p-past-c-tr|}}}|, <br />{{{3p-past-c-tr}}} {{qualifier|colloquial}} }}</small>
! style="background:#cfcfcf" | {{FAkar|آنها}} <br> <small>(ânhâ)</small>
| {{FAkar|{{{3s-past}}}}} <br /><small>({{{3s-past-tr}}})</small>
! style="background:#cfcfcf" | {{FAkar|وی}} <br> <small>(vay)</small>
| {{FAkar|{{{3p-aor}}}}} <br /><small>({{{3p-aor-tr}}}){{#if:{{{3p-aor-c-tr|}}}|, <br />{{{3p-aor-c-tr}}} {{qualifier|colloquial}} }}</small>
! style="background:#cfcfcf" | {{FAkar|آنها}} <br> <small>(ânhâ)</small>
| {{FAkar|{{{3s-aor}}}}} <br /><small>({{{3s-aor-tr}}}){{#if:{{{3s-aor-c-tr|}}}|, <br />{{{3s-aor-c-tr}}} {{qualifier|colloquial}} }}</small>
! style="background:#cfcfcf" | {{FAkar|وی}} <br> <small>(vay)</small>
|-
| colspan="10" style="background:#d5d5d5; height: .25em" |
|-
| {{FAkar|{{{1p-impf}}}}} <br /><small>({{{1p-impf-tr}}})</small>
! style="background:#cfcfcf" | {{FAkar|ما}} <br> <small>(mâ)</small>
| {{FAkar|{{{1s-impf}}}}} <br /><small>({{{1s-impf-tr}}})</small>
! style="background:#cfcfcf" | {{FAkar|من}} <br> <small>(man)</small>
! rowspan="3" style="background:#c0cfe4" | Prošlost (Imperfekt)
| {{FAkar|{{{1p-pres}}}}} <br /><small>({{{1p-pres-tr}}})</small>
! style="background:#cfcfcf" | {{FAkar|ما}} <br> <small>(mâ)</small>
| {{FAkar|{{{1s-pres}}}}} <br /><small>({{{1s-pres-tr}}})</small>
! style="background:#cfcfcf" | {{FAkar|من}} <br> <small>(man)</small>
! rowspan="3" style="background:#c0cfe4" | Prezent (Imperfekt)
|-
| {{FAkar|{{{2p-impf}}}}} <br /><small>({{{2p-impf-tr}}}){{#if:{{{2p-impf-c-tr|}}}|, <br />{{{2p-impf-c-tr}}} {{qualifier|colloquial}} }}</small>
! style="background:#cfcfcf" | {{FAkar|شما}} <br> <small>(šomâ)</small>
| {{FAkar|{{{2s-impf}}}}} <br /><small>({{{2s-impf-tr}}})</small>
! style="background:#cfcfcf" | {{FAkar|تو}} <br> <small>(to)</small>
| {{FAkar|{{{2p-pres}}}}} <br /><small>({{{2p-pres-tr}}}){{#if:{{{2p-pres-c-tr|}}}|, <br />{{{2p-pres-c-tr}}} {{qualifier|colloquial}} }}</small>
! style="background:#cfcfcf" | {{FAkar|شما}} <br> <small>(šomâ)</small>
| {{FAkar|{{{2s-pres}}}}} <br /><small>({{{2s-pres-tr}}})</small>
! style="background:#cfcfcf" | {{FAkar|تو}} <br> <small>(to)</small>
|-
| {{FAkar|{{{3p-impf}}}}} <br /><small>({{{3p-impf-tr}}}){{#if:{{{3p-impf-c-tr|}}}|, <br />{{{3p-impf-c-tr}}} {{qualifier|colloquial}} }}</small>
! style="background:#cfcfcf" | {{FAkar|آنها}} <br> <small>(ânhâ)</small>
| {{FAkar|{{{3s-impf}}}}} <br /><small>({{{3s-impf-tr}}})</small>
! style="background:#cfcfcf" | {{FAkar|وی}} <br> <small>(vay)</small>
| {{FAkar|{{{3p-pres}}}}} <br /><small>({{{3p-pres-tr}}}){{#if:{{{3p-pres-c-tr|}}}|, <br />{{{3p-pres-c-tr}}} {{qualifier|colloquial}} }}</small>
! style="background:#cfcfcf" | {{FAkar|آنها}} <br> <small>(ânhâ)</small>
| {{FAkar|{{{3s-pres}}}}} <br /><small>({{{3s-pres-tr}}}){{#if:{{{3s-pres-c-tr|}}}|, <br />{{{3s-pres-c-tr}}} {{qualifier|colloquial}} }}</small>
! style="background:#cfcfcf" | {{FAkar|وی}} <br> <small>(vay)</small>
|-
| colspan="10" style="background:#d5d5d5; height: .25em" |
|-
| {{FAkar|{{{1p-ps-prog}}}}} <br /><small>({{{1p-ps-prog-tr}}})</small>
! style="background:#cfcfcf" | {{FAkar|ما}} <br> <small>(mâ)</small>
| {{FAkar|{{{1s-ps-prog}}}}} <br /><small>({{{1s-ps-prog-tr}}})</small>
! style="background:#cfcfcf" | {{FAkar|من}} <br> <small>(man)</small>
! rowspan="3" style="background:#c0cfe4" | Prošlo trajno
| {{FAkar|{{{1p-pr-prog}}}}} <br /><small>({{{1p-pr-prog-tr}}})</small>
! style="background:#cfcfcf" | {{FAkar|ما}} <br> <small>(mâ)</small>
| {{FAkar|{{{1s-pr-prog}}}}} <br /><small>({{{1s-pr-prog-tr}}})</small>
! style="background:#cfcfcf" | {{FAkar|من}} <br> <small>(man)</small>
! rowspan="3" style="background:#c0cfe4" | Sadašnje trajno
|-
| {{FAkar|{{{2p-ps-prog}}}}} <br /><small>({{{2p-ps-prog-tr}}}){{#if:{{{2p-ps-prog-c-tr|}}}|, <br />{{{2p-ps-prog-c-tr}}} {{qualifier|colloquial}} }}</small>
! style="background:#cfcfcf" | {{FAkar|شما}} <br> <small>(šomâ)</small>
| {{FAkar|{{{2s-ps-prog}}}}} <br /><small>({{{2s-ps-prog-tr}}})</small>
! style="background:#cfcfcf" | {{FAkar|تو}} <br> <small>(to)</small>
| {{FAkar|{{{2p-pr-prog}}}}} <br /><small>({{{2p-pr-prog-tr}}}){{#if:{{{2p-pr-prog-c-tr|}}}|, <br />{{{2p-pr-prog-c-tr}}} {{qualifier|colloquial}} }}</small>
! style="background:#cfcfcf" | {{FAkar|شما}} <br> <small>(šomâ)</small>
| {{FAkar|{{{2s-pr-prog}}}}} <br /><small>({{{2s-pr-prog-tr}}})</small>
! style="background:#cfcfcf" | {{FAkar|تو}} <br> <small>(to)</small>
|-
| {{FAkar|{{{3p-ps-prog}}}}} <br /><small>({{{3p-ps-prog-tr}}}){{#if:{{{3p-ps-prog-c-tr|}}}|, <br />{{{3p-ps-prog-c-tr}}} {{qualifier|colloquial}} }}</small>
! style="background:#cfcfcf" | {{FAkar|آنها}} <br> <small>(ânhâ)</small>
| {{FAkar|{{{3s-ps-prog}}}}} <br /><small>({{{3s-ps-prog-tr}}})</small>
! style="background:#cfcfcf" | {{FAkar|وی}} <br> <small>(vay)</small>
| {{FAkar|{{{3p-pr-prog}}}}} <br /><small>({{{3p-pr-prog-tr}}}){{#if:{{{3p-pr-prog-c-tr|}}}|, <br />{{{3p-pr-prog-c-tr}}} {{qualifier|colloquial}} }}</small>
! style="background:#cfcfcf" | {{FAkar|آنها}} <br> <small>(ânhâ)</small>
| {{FAkar|{{{3s-pr-prog}}}}} <br /><small>({{{3s-pr-prog-tr}}}){{#if:{{{3s-pr-prog-c-tr|}}}|, <br />{{{3s-pr-prog-c-tr}}} {{qualifier|colloquial}} }}</small>
! style="background:#cfcfcf" | {{FAkar|وی}} <br> <small>(vay)</small>
|-
| colspan="10" style="background:#d5d5d5; height: .25em" |
|-
| {{FAkar|{{{1p-perf}}}}} <br /><small>({{{1p-perf-tr}}})</small>
! style="background:#cfcfcf" | {{FAkar|ما}} <br> <small>(mâ)</small>
| {{FAkar|{{{1s-perf}}}}} <br /><small>({{{1s-perf-tr}}})</small>
! style="background:#cfcfcf" | {{FAkar|من}} <br> <small>(man)</small>
! rowspan="3" style="background:#c0cfe4" | Sadašnje složeno
| {{FAkar|{{{1p-plup}}}}} <br /><small>({{{1p-plup-tr}}})</small>
! style="background:#cfcfcf" | {{FAkar|ما}} <br> <small>(mâ)</small>
| {{FAkar|{{{1s-plup}}}}} <br /><small>({{{1s-plup-tr}}})</small>
! style="background:#cfcfcf" | {{FAkar|من}} <br> <small>(man)</small>
! rowspan="3" style="background:#c0cfe4" | Složeno prošlo
|-
| {{FAkar|{{{2p-perf}}}}} <br /><small>({{{2p-perf-tr}}}){{#if:{{{2p-perf-c-tr|}}}|, <br />{{{2p-perf-c-tr}}} {{qualifier|colloquial}} }}</small>
! style="background:#cfcfcf" | {{FAkar|شما}} <br> <small>(šomâ)</small>
| {{FAkar|{{{2s-perf}}}}} <br /><small>({{{2s-perf-tr}}})</small>
! style="background:#cfcfcf" | {{FAkar|تو}} <br> <small>(to)</small>
| {{FAkar|{{{2p-plup}}}}} <br /><small>({{{2p-plup-tr}}}){{#if:{{{2p-plup-c-tr|}}}|, <br />{{{2p-plup-c-tr}}} {{qualifier|colloquial}} }}</small>
! style="background:#cfcfcf" | {{FAkar|شما}} <br> <small>(šomâ)</small>
| {{FAkar|{{{2s-plup}}}}} <br /><small>({{{2s-plup-tr}}})</small>
! style="background:#cfcfcf" | {{FAkar|تو}} <br> <small>(to)</small>
|-
| {{FAkar|{{{3p-perf}}}}} <br /><small>({{{3p-perf-tr}}}){{#if:{{{3p-perf-c-tr|}}}|, <br />{{{3p-perf-c-tr}}} {{qualifier|colloquial}} }}</small>
! style="background:#cfcfcf" | {{FAkar|آنها}} <br> <small>(ânhâ)</small>
| {{FAkar|{{{3s-perf}}}}} <br /><small>({{{3s-perf-tr}}}){{#if:{{{3s-perf-c-tr|}}}|, <br />{{{3s-perf-c-tr}}} {{qualifier|colloquial}} }}</small>
! style="background:#cfcfcf" | {{FAkar|وی}} <br> <small>(vay)</small>
| {{FAkar|{{{3p-plup}}}}} <br /><small>({{{3p-plup-tr}}}){{#if:{{{3p-plup-c-tr|}}}|, <br />{{{3p-plup-c-tr}}} {{qualifier|colloquial}} }}</small>
! style="background:#cfcfcf" | {{FAkar|آنها}} <br> <small>(ânhâ)</small>
| {{FAkar|{{{3s-plup}}}}} <br /><small>({{{3s-plup-tr}}})</small>
! style="background:#cfcfcf" | {{FAkar|وی}} <br> <small>(vay)</small>
|-
| colspan="10" style="background:#d5d5d5; height: .25em" |
|-
| rowspan="3" colspan="5" style="background:#cfcfcf" |
| {{FAkar|{{{1p-fut}}}}} <br /><small>({{{1p-fut-tr}}})</small>
! style="background:#cfcfcf" | {{FAkar|ما}} <br> <small>(mâ)</small>
| {{FAkar|{{{1s-fut}}}}} <br /><small>({{{1s-fut-tr}}})</small>
! style="background:#cfcfcf" | {{FAkar|من}} <br> <small>(man)</small>
! rowspan="3" style="background:#c0cfe4" | Futur
|-
| {{FAkar|{{{2p-fut}}}}} <br /><small>({{{2p-fut-tr}}})</small>
! style="background:#cfcfcf" | {{FAkar|شما}} <br> <small>(šomâ)</small>
| {{FAkar|{{{2s-fut}}}}} <br /><small>({{{2s-fut-tr}}})</small>
! style="background:#cfcfcf" | {{FAkar|تو}} <br> <small>(to)</small>
|-
| {{FAkar|{{{3p-fut}}}}} <br /><small>({{{3p-fut-tr}}})</small>
! style="background:#cfcfcf" | {{FAkar|آنها}} <br> <small>(ânhâ)</small>
| {{FAkar|{{{3s-fut}}}}} <br /><small>({{{3s-fut-tr}}})</small>
! style="background:#cfcfcf" | {{FAkar|وی}} <br> <small>(vay)</small>
|-
! colspan="10" style="background:#99cc99" | Subjunktiv
|-
| {{FAkar|{{{1p-ps-subj}}}}} <br><small>({{{1p-ps-subj-tr}}})</small>
! style="background:#cfcfcf" | {{FAkar|ما}} <br> <small>(mâ)</small>
| {{FAkar|{{{1s-ps-subj}}}}} <br><small>({{{1s-ps-subj-tr}}})</small>
! style="background:#cfcfcf" | {{FAkar|من}} <br> <small>(man)</small>
! rowspan="3" style="background:#cfedcc" | Prosto prošlo
| {{FAkar|{{{1p-pr-subj}}}}} <br><small>({{{1p-pr-subj-tr}}}){{#switch:{{{be|}}}|be=|bo={{#if:{{{1p-pr-subj-c-tr|}}}|, <br />{{{1p-pr-subj-c-tr}}} {{qualifier|colloquial}} }}|}}</small>
! style="background:#cfcfcf" | {{FAkar|ما}} <br> <small>(mâ)</small>
| {{FAkar|{{{1s-pr-subj}}}}} <br><small>({{{1s-pr-subj-tr}}}){{#switch:{{{be|}}}|be=|bo={{#if:{{{1s-pr-subj-c-tr|}}}|, <br />{{{1s-pr-subj-c-tr}}} {{qualifier|colloquial}} }}|}}</small>
! style="background:#cfcfcf" | {{FAkar|من}} <br> <small>(man)</small>
! rowspan="3" style="background:#cfedcc" | Sadašnje prosto
|-
| {{FAkar|{{{2p-ps-subj}}}}} <br /><small>({{{2p-ps-subj-tr}}}){{#if:{{{2p-ps-subj-c-tr|}}}|, <br />{{{2p-ps-subj-c-tr}}} {{qualifier|colloquial}} }}</small>
! style="background:#cfcfcf" | {{FAkar|شما}} <br> <small>(šomâ)</small>
| {{FAkar|{{{2s-ps-subj}}}}} <br /><small>({{{2s-ps-subj-tr}}})</small>
! style="background:#cfcfcf" | {{FAkar|تو}} <br> <small>(to)</small>
| {{FAkar|{{{2p-pr-subj}}}}} <br /><small>({{{2p-pr-subj-tr}}}){{#if:{{{2p-pr-subj-c-tr|}}}|, <br />{{{2p-pr-subj-c-tr}}} {{qualifier|colloquial}} }}</small>
! style="background:#cfcfcf" | {{FAkar|شما}} <br> <small>(šomâ)</small>
| {{FAkar|{{{2s-pr-subj}}}}} <br /><small>({{{2s-pr-subj-tr}}}){{#switch:{{{be|}}}|be=|bo={{#if:{{{2s-pr-subj-c-tr|}}}|, <br />{{{2s-pr-subj-c-tr}}} {{qualifier|colloquial}} }}|}}</small>
! style="background:#cfcfcf" | {{FAkar|تو}} <br> <small>(to)</small>
|-
| {{FAkar|{{{3p-ps-subj}}}}} <br /><small>({{{3p-ps-subj-tr}}}){{#if:{{{3p-ps-subj-c-tr|}}}|, <br />{{{3p-ps-subj-c-tr}}} {{qualifier|colloquial}} }}</small>
! style="background:#cfcfcf" | {{FAkar|آنها}} <br> <small>(ânhâ)</small>
| {{FAkar|{{{3s-ps-subj}}}}} <br /><small>({{{3s-ps-subj-tr}}}){{#if:{{{3s-ps-subj-c-tr|}}}|, <br />{{{3s-ps-subj-c-tr}}} {{qualifier|colloquial}} }}</small>
! style="background:#cfcfcf" | {{FAkar|وی}} <br> <small>(vay)</small>
| {{FAkar|{{{3p-pr-subj}}}}} <br /><small>({{{3p-pr-subj-tr}}}){{#if:{{{3p-pr-subj-c-tr|}}}|, <br />{{{3p-pr-subj-c-tr}}} {{qualifier|colloquial}} }}</small>
! style="background:#cfcfcf" | {{FAkar|آنها}} <br> <small>(ânhâ)</small>
| {{FAkar|{{{3s-pr-subj}}}}} <br /><small>({{{3s-pr-subj-tr}}}){{#if:{{{3s-pr-subj-c-tr|}}}|, <br />{{{3s-pr-subj-c-tr}}} {{qualifier|colloquial}} }}</small>
! style="background:#cfcfcf" | {{FAkar|وی}} <br> <small>(vay)</small>
|-
| colspan="10" style="background:#d5d5d5; height: .25em" |
|-
| colspan="5" style="background:#cfcfcf" |
| {{FAkar|{{{2p-impr}}}}} <br /><small>({{{2p-impr-tr}}}){{#if:{{{2p-impr-c-tr|}}}|, <br />{{{2p-impr-c-tr}}} {{qualifier|colloquial}} }}</small>
! style="background:#cfcfcf" | {{FAkar|شما}} <br> <small>(šomâ)</small>
| {{FAkar|{{{2s-impr}}}}} <br /><small>({{{2s-impr-tr}}}){{#switch:{{{be|}}}|be=|bo={{#if:{{{2s-impr-c-tr|}}}|, <br />{{{2s-impr-c-tr}}} {{qualifier|colloquial}} }}|}}</small>
! style="background:#cfcfcf" | {{FAkar|تو}} <br> <small>(to)</small>
! style="background:#99cc99" | Imperativ
|}</div></div><noinclude>
[[Category:Persian verb inflection-table templates| ]]</noinclude>
dbjxl8mb8oamrfigfcjvbaj24zshowm
Korisnik:Srđan/Test1
2
12635
67597
65097
2020-07-15T00:18:48Z
蟲蟲飛
2883
蟲蟲飛 premjestio je stranicu [[Korisnik:Srdjan m/Test1]] na [[Korisnik:Srđan/Test1]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Srdjan m|Srdjan m]]" u "[[Special:CentralAuth/Srđan|Srđan]]"
65097
wikitext
text/x-wiki
== Padežni oblici riječi "Wikirječnik" uz pomoć GRAMMAR ==
Nominativ: '''{{SITENAME}}''' — <code><nowiki>{{SITENAME}}</nowiki></code><br />
Genitiv: '''{{GRAMMAR:genitiv|{{SITENAME}}}}''' — <code><nowiki>{{GRAMMAR:genitiv|{{SITENAME}}}}</nowiki></code><br />
Dativ: '''{{GRAMMAR:dativ|{{SITENAME}}}}''' — <code><nowiki>{{GRAMMAR:dativ|{{SITENAME}}}}</nowiki></code><br />
Akuzativ: '''{{GRAMMAR:akuzativ|{{SITENAME}}}}''' — <code><nowiki>{{GRAMMAR:akuzativ|{{SITENAME}}}}</nowiki></code><br />
Vokativ: '''{{GRAMMAR:vokativ|{{SITENAME}}}}''' — <code><nowiki>{{GRAMMAR:vokativ|{{SITENAME}}}}</nowiki></code><br />
Instrumental: '''{{GRAMMAR:instrumental|{{SITENAME}}}}''' — <code><nowiki>{{GRAMMAR:instrumental|{{SITENAME}}}}</nowiki></code><br />
Lokativ: '''{{GRAMMAR:lokativ|{{SITENAME}}}}''' — <code><nowiki>{{GRAMMAR:lokativ|{{SITENAME}}}}</nowiki></code>
0zebim0azaem64jctvy19nfxae5vii2
Razgovor s korisnikom:Marcin Łukasz Kiejzik
3
12742
65220
2017-06-15T23:01:28Z
Jmvkrecords
2238
Jmvkrecords premjestio je stranicu [[Razgovor s korisnikom:Marcin Łukasz Kiejzik]] na [[Razgovor s korisnikom:Random mess]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Marcin Łukasz Kiejzik|Marcin Łukasz Ki...
65220
wikitext
text/x-wiki
#PREUSMJERI [[Razgovor s korisnikom:Random mess]]
4pvnhupztwlo7i2abttdgen6cymbg60
Razgovor s korisnikom:Iarik
3
12744
65223
2017-06-17T14:56:23Z
Litlok
2245
Litlok premjestio je stranicu [[Razgovor s korisnikom:Iarik]] na [[Razgovor s korisnikom:Medograd]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Iarik|Iarik]]" u "[[Special:CentralAuth/Medograd|Medograd]]"
65223
wikitext
text/x-wiki
#PREUSMJERI [[Razgovor s korisnikom:Medograd]]
m0xxyfwjwz775aanpevkemvjqupajih
Korisnik:Brubaker610
2
13015
68210
68169
2022-02-16T19:42:52Z
Base
1311
Base premjestio/-la je stranicu [[Korisnik:Vanished user jfyedt7]] na [[Korisnik:Brubaker610]] bez ostavljanja preusmjerenja: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Vanished user jfyedt7|Vanished user jfyedt7]]" u "[[Special:CentralAuth/Brubaker610|Brubaker610]]"
66858
wikitext
text/x-wiki
{{#babel:bs-0}}
sggfu75zayp0rdcxashtsaeox74ka29
Korisnik:분당선M/common.css
2
13023
66892
2017-12-06T21:21:06Z
Revi C.
1533
-revi premjestio je stranicu [[Korisnik:분당선M/common.css]] na [[Korisnik:*Youngjin/common.css]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/분당선M|분당선M]]" u "[[Special:CentralAuth/*Youngjin|*You...
66892
css
text/css
/* #REDIRECT */@import url("//bs.wiktionary.org/w/index.php?title=Korisnik:*Youngjin/common.css&action=raw&ctype=text/css");
hty2luwzix55nryu03jwons9st6vttl
Korisnik:분당선M/common.js
2
13024
66894
2017-12-06T21:21:07Z
Revi C.
1533
-revi premjestio je stranicu [[Korisnik:분당선M/common.js]] na [[Korisnik:*Youngjin/common.js]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/분당선M|분당선M]]" u "[[Special:CentralAuth/*Youngjin|*Young...
66894
javascript
text/javascript
/* #REDIRECT */mw.loader.load("//bs.wiktionary.org/w/index.php?title=Korisnik:*Youngjin/common.js\u0026action=raw\u0026ctype=text/javascript");
ikx1jnpgt5zao9a111p2dbn9xl536yp
Razgovor s korisnikom:분당선M
3
13025
66896
2017-12-06T21:21:07Z
Revi C.
1533
-revi premjestio je stranicu [[Razgovor s korisnikom:분당선M]] na [[Razgovor s korisnikom:*Youngjin]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/분당선M|분당선M]]" u "[[Special:CentralAuth/*Youngjin|...
66896
wikitext
text/x-wiki
#PREUSMJERI [[Razgovor s korisnikom:*Youngjin]]
26et3nn4m0rz480f97bt9pgwrnpdbc8
Razgovor s korisnikom:Ks-M9
3
13026
66902
2018-02-02T11:19:04Z
MarcoAurelio
1485
MarcoAurelio premjestio je stranicu [[Razgovor s korisnikom:Ks-M9]] na [[Razgovor s korisnikom:Stïnger]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Ks-M9|Ks-M9]]" u "[[Special:CentralAuth/Stïnger|Stïnger]]"
66902
wikitext
text/x-wiki
#PREUSMJERI [[Razgovor s korisnikom:Stïnger]]
am1kilq8t2ne1zxgnvymdsr5mqoc9u9
Razgovor s korisnikom:Miguel2706
3
13028
68660
66906
2023-03-13T15:42:26Z
EmausBot
2509
Bot: Popravlja dvostruka preusmjerenja na [[Razgovor s korisnikom:Renamed user 9thz5duyuxms]]
68660
wikitext
text/x-wiki
#PREUSMJERI [[Razgovor s korisnikom:Renamed user 9thz5duyuxms]]
sjhshfxns41mhacp7m1bmtco47q7y1i
Korisnik:Etienfr
2
13029
66908
2018-02-12T08:49:47Z
Cyberpower678
2087
Cyberpower678 premjestio je stranicu [[Korisnik:Etienfr]] na [[Korisnik:Limotecariu]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Etienfr|Etienfr]]" u "[[Special:CentralAuth/Limotecariu|Limotecariu]]"
66908
wikitext
text/x-wiki
#PREUSMJERI [[Korisnik:Limotecariu]]
6locgmrbk72f72i4s06fd47n5gavez2
Razgovor s korisnikom:Etienfr
3
13030
66910
2018-02-12T08:49:48Z
Cyberpower678
2087
Cyberpower678 premjestio je stranicu [[Razgovor s korisnikom:Etienfr]] na [[Razgovor s korisnikom:Limotecariu]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Etienfr|Etienfr]]" u "[[Special:CentralAuth/Limotecar...
66910
wikitext
text/x-wiki
#PREUSMJERI [[Razgovor s korisnikom:Limotecariu]]
9qncg0grbv4ppkn2ujingzjim5jc1ym
Razgovor s korisnikom:Malaysiaboy
3
13031
66917
2018-02-14T08:42:11Z
Nihlus
2414
Nihlus premjestio je stranicu [[Razgovor s korisnikom:Malaysiaboy]] na [[Razgovor s korisnikom:Tofeiku]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Malaysiaboy|Malaysiaboy]]" u "[[Special:CentralAuth/Tofeiku|...
66917
wikitext
text/x-wiki
#PREUSMJERI [[Razgovor s korisnikom:Tofeiku]]
2i8ujqpn8299l8mxi45zyezjnyjf8h1
Korisnik:Polyglottos
2
13039
66949
2018-07-01T21:40:18Z
Green Mostaza
1132
{{Bot}}
66949
wikitext
text/x-wiki
{{Bot|Green Mostaza}}
ccx66bl305u2budll6i5h40g2imhzau
Razgovor s korisnikom:Polyglottos
3
13040
66950
2018-07-01T21:41:33Z
Green Mostaza
1132
{{Softredirect}}
66950
wikitext
text/x-wiki
{{Softredirect|Razgovor s korisnikom:Green Mostaza}}
o38pzmnywweknbf8wbx6ik7zlpvsbcc
Korisnik:Vogone/minerva.js
2
13043
66961
2018-10-08T18:08:15Z
Pathoschild
81
global user pages ([[m:Synchbot|requested by Vogone]])
66961
javascript
text/javascript
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:Vogone/minerva.js&action=raw&ctype=text/javascript');
e7qk639lldxvphqcoowl3nfc7i3anx7
Korisnik:Mentifisto
2
13044
72706
66972
2025-04-17T09:55:21Z
Aca
2473
+
72706
wikitext
text/x-wiki
#PREUSMJERI [[:meta:User:Lofty abyss]]
okm2i2mh1bfqf9109n8kd479hz118fq
Razgovor s korisnikom:Sharif Uddin
3
13046
66985
2019-05-20T10:26:12Z
Litlok
2245
Litlok premjestio je stranicu [[Razgovor s korisnikom:Sharif Uddin]] na [[Razgovor s korisnikom:Lazy-restless]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Sharif Uddin|Sharif Uddin]]" u "[[Special:CentralAuth/Lazy-restless|Lazy-restless]]"
66985
wikitext
text/x-wiki
#PREUSMJERI [[Razgovor s korisnikom:Lazy-restless]]
2nt2w66eyyoz4v97dkwmwh75fexrmh9
Razgovor s korisnikom:Ameisenigel
3
13047
68470
67157
2023-01-08T04:13:19Z
Pathoschild
81
global user pages ([[m:Synchbot|requested by Ameisenigel]])
68470
wikitext
text/x-wiki
[[File:Redirect arrow without text.svg|46px|link=]][[m:User talk:Ameisenigel|m:User talk:Ameisenigel]]
2229pjupj4oxyrzx6wq7rucquxcn3pt
Korisnik:Waldir
2
13050
66991
2019-07-01T10:34:58Z
1997kB
2363
1997kB premjestio je stranicu [[Korisnik:Waldir]] na [[Korisnik:Waldyrious]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Waldir|Waldir]]" u "[[Special:CentralAuth/Waldyrious|Waldyrious]]"
66991
wikitext
text/x-wiki
#PREUSMJERI [[Korisnik:Waldyrious]]
si9v2504g52pxblaga0via2e3jnkb3a
Razgovor s korisnikom:محمد شعیب
3
13051
71255
66994
2024-05-24T00:52:56Z
Vít Karásek
3681
double redirect
71255
wikitext
text/x-wiki
#PREUSMJERI [[ur:User talk:محمد شعیب]]
q9um69yahx97f71y0q249fd0k3wdm2d
Korisnik:محمد شعیب
2
13052
71256
66995
2024-05-24T00:52:57Z
Vít Karásek
3681
double redirect
71256
wikitext
text/x-wiki
#PREUSMJERI [[ur:User talk:محمد شعیب]]
q9um69yahx97f71y0q249fd0k3wdm2d
Korisnik:FR30799386/minerva.js
2
13053
66996
2019-08-04T21:26:11Z
Pathoschild
81
global user pages ([[m:Synchbot|requested by FR30799386]])
66996
javascript
text/javascript
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:FR30799386/mobile-global.js&action=raw&ctype=text/javascript');
jpmcha1jgpe2b70kb7f5yx4h1ngdb91
Korisnik:Ainz Ooal Gown/minerva.js
2
13143
67591
67131
2020-07-11T04:17:34Z
1997kB
2363
1997kB premjestio je stranicu [[Korisnik:Masumrezarock100/minerva.js]] na [[Korisnik:Ainz Ooal Gown/minerva.js]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Masumrezarock100|Masumrezarock100]]" u "[[Special:CentralAuth/Ainz Ooal Gown|Ainz Ooal Gown]]"
67131
javascript
text/javascript
mw.loader.load('//meta.wikipedia.org/w/index.php?title=User:Masumrezarock100/global-minerva.js&action=raw&ctype=text/javascript'); // mobileGlobalJS
to91va09kln5vco63egs1h2acqeuc5v
Razgovor s korisnikom:Killarnee
3
13148
67144
2019-11-19T15:12:02Z
Killarnee
2759
Preusmjereno na [[meta:User talk:Killarnee]]
67144
wikitext
text/x-wiki
#REDIRECT [[meta:User talk:Killarnee]]
'''You can also write me here, but then it will probably take some time until I answer.'''
0j3i74n50fw0tbj8k6cj093zp81sx4w
Razgovor s korisnikom:Sewepb
3
13153
67158
2019-12-17T07:36:05Z
Itti
2774
Itti premjestio je stranicu [[Razgovor s korisnikom:Sewepb]] na [[Razgovor s korisnikom:Ameisenigel]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Sewepb|Sewepb]]" u "[[Special:CentralAuth/Ameisenigel|Ameisenigel]]"
67158
wikitext
text/x-wiki
#PREUSMJERI [[Razgovor s korisnikom:Ameisenigel]]
haj3li1tqdup91rar1g0u0wodg1nfic
Korisnik:WhitePhosphorus/minerva.js
2
13166
67176
2020-01-05T16:29:47Z
Pathoschild
81
global user pages ([[m:Synchbot|requested by WhitePhosphorus]])
67176
javascript
text/javascript
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:WhitePhosphorus/global-mobile.js&action=raw&ctype=text/javascript');
jxr0i4uppk1hrtb9t3ml1teg34o7lzp
Korisnik:Leitoxx
2
13170
72707
67195
2025-04-17T09:56:07Z
Aca
2473
+
72707
wikitext
text/x-wiki
#PREUSMJERI [[:meta:User:Mazbel]]
t4ef3zyvita14r6t424q13lerf2gezn
Razgovor s korisnikom:Leitoxx
3
13171
67196
2020-04-17T05:15:59Z
Céréales Killer
1864
Céréales Killer premjestio je stranicu [[Razgovor s korisnikom:Leitoxx]] na [[Razgovor s korisnikom:Mazbel]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Leitoxx|Leitoxx]]" u "[[Special:CentralAuth/Mazbel|Mazbel]]"
67196
wikitext
text/x-wiki
#PREUSMJERI [[Razgovor s korisnikom:Mazbel]]
azi6193gcm2mxrdgs63ru1xi5jcfz3j
Razgovor s korisnikom:Nesmir Kudilovic
3
13344
67412
2020-06-08T06:29:53Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
67412
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Razgovor s korisnikom:Uğurkent
3
13345
67417
2020-06-10T22:34:55Z
Sakretsu
2868
Sakretsu premjestio je stranicu [[Razgovor s korisnikom:Uğurkent]] na [[Razgovor s korisnikom:Uncitoyen]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Uğurkent|Uğurkent]]" u "[[Special:CentralAuth/Uncitoyen|Uncitoyen]]"
67417
wikitext
text/x-wiki
#PREUSMJERI [[Razgovor s korisnikom:Uncitoyen]]
bh53hrw8iyifp0g10tmm33ih02l1nm6
Razgovor s korisnikom:DeltaQuad
3
13399
71254
67526
2024-05-24T00:50:35Z
Vít Karásek
3681
double redirect
71254
wikitext
text/x-wiki
#PREUSMJERI [[m:User talk:DeltaQuad]]
7u6l940m7n6v45cxvkzfj3sbnqwmquh
Korisnik:DeltaQuad
2
13400
72705
67527
2025-04-17T09:54:53Z
Aca
2473
Izmijenjeno odredište preusmjerenja sa [[Korisnik:AmandaNP]] na [[meta:User:AmandaNP]]
72705
wikitext
text/x-wiki
#PREUSMJERI [[:meta:User:AmandaNP]]
tou6jea0v8ndl3709pq92uit730hyyi
Korisnik:Masumrezarock100/minerva.js
2
13445
67592
2020-07-11T04:17:34Z
1997kB
2363
1997kB premjestio je stranicu [[Korisnik:Masumrezarock100/minerva.js]] na [[Korisnik:Ainz Ooal Gown/minerva.js]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Masumrezarock100|Masumrezarock100]]" u "[[Special:CentralAuth/Ainz Ooal Gown|Ainz Ooal Gown]]"
67592
javascript
text/javascript
/* #REDIRECT */mw.loader.load("//bs.wiktionary.org/w/index.php?title=Korisnik:Ainz_Ooal_Gown/minerva.js\u0026action=raw\u0026ctype=text/javascript");
pfziv7mg4flg73th7ultwjzxqlh5fni
Korisnik:Srdjan m/Test1
2
13447
67601
2020-07-15T00:18:50Z
蟲蟲飛
2883
蟲蟲飛 premjestio je stranicu [[Korisnik:Srdjan m/Test1]] na [[Korisnik:Srđan/Test1]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Srdjan m|Srdjan m]]" u "[[Special:CentralAuth/Srđan|Srđan]]"
67601
wikitext
text/x-wiki
#PREUSMJERI [[Korisnik:Srđan/Test1]]
5djtn4n7momc938nutjai08djq6rol3
Razgovor s korisnikom:Srdjan m
3
13448
67599
2020-07-15T00:18:48Z
蟲蟲飛
2883
蟲蟲飛 premjestio je stranicu [[Razgovor s korisnikom:Srdjan m]] na [[Razgovor s korisnikom:Srđan]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Srdjan m|Srdjan m]]" u "[[Special:CentralAuth/Srđan|Srđan]]"
67599
wikitext
text/x-wiki
#PREUSMJERI [[Razgovor s korisnikom:Srđan]]
qg1n7qofpy0j66ku1rfdp6thpu9h3ac
Korisnik:Srdjan m/common.js
2
13449
67600
2020-07-15T00:18:49Z
蟲蟲飛
2883
蟲蟲飛 premjestio je stranicu [[Korisnik:Srdjan m/common.js]] na [[Korisnik:Srđan/common.js]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Srdjan m|Srdjan m]]" u "[[Special:CentralAuth/Srđan|Srđan]]"
67600
javascript
text/javascript
/* #REDIRECT */mw.loader.load("//bs.wiktionary.org/w/index.php?title=Korisnik:Sr%C4%91an/common.js\u0026action=raw\u0026ctype=text/javascript");
trspgav9zlahby16j0wii5t1c2ax5pb
Korisnik:Srdjan m/js/cat-a-lot.js
2
13451
67603
2020-07-15T00:19:49Z
蟲蟲飛
2883
蟲蟲飛 premjestio je stranicu [[Korisnik:Srdjan m/js/cat-a-lot.js]] na [[Korisnik:Srđan/js/cat-a-lot.js]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/Srdjan m|Srdjan m]]" u "[[Special:CentralAuth/Srđan|Srđan]]"
67603
javascript
text/javascript
/* #REDIRECT */mw.loader.load("//bs.wiktionary.org/w/index.php?title=Korisnik:Sr%C4%91an/js/cat-a-lot.js\u0026action=raw\u0026ctype=text/javascript");
6opfrzsvj5a671tmhlkxbu4xkmvg50w
Šablon:et-decl-table
10
13458
67732
67728
2020-07-26T08:52:43Z
Barishan
287
67732
wikitext
text/x-wiki
<div class="NavFrame" style="width:60%">
<div class="NavHead" style="background:rgb(80%,80%,100%); text-align:center;">Deklinacija: {{{title}}}</div>
<div class="NavContent">
{| class="inflection-table" style="width:100%; color:rgb(0%,0%,30%); border:solid 1px rgb(80%,80%,100%); text-align:center;" cellspacing="1" cellpadding="2"
|- style="background:rgb(80%,80%,100%);vertical-align:top;"
! style="width: 30%;" |
! style="width: 35%;" | Jednina <small>([[ainsuses]])</small>
! style="width: 35%;" | Množina <small>([[mitmuses]])</small>
|- style="background:rgb(95%,95%,100%);vertical-align:top;" |
! style="background:rgb(80%,80%,100%);" | Nominativ <small>([[nimetav]])</small>
| {{{nom_sg}}}
| {{{nom_pl}}}
|- style="background:rgb(95%,95%,100%);vertical-align:top;" |
! style="background:rgb(80%,80%,100%);" | Genitiv <small>([[omastav]])</small>
| {{{gen_sg}}}
| {{{gen_pl}}}
|- style="background:rgb(95%,95%,100%);vertical-align:top;" |
! style="background:rgb(80%,80%,100%);" | Partitiv <small>([[osastav]])</small>
| {{{par_sg}}}
| {{{par_pl}}}
|- style="background:rgb(95%,95%,100%);vertical-align:top;" |
! style="background:rgb(80%,80%,100%);" | Illativ <small>([[sisseütlev]])</small>
| {{{ill_sg}}}
| {{{ill_pl}}}
|- style="background:rgb(95%,95%,100%);vertical-align:top;" |
! style="background:rgb(80%,80%,100%);" | Inessiv <small>([[seesütlev]])</small>
| {{{ine_sg}}}
| {{{ine_pl}}}
|- style="background:rgb(95%,95%,100%);vertical-align:top;" |
! style="background:rgb(80%,80%,100%);" | Elativ <small>([[seestütlev]])</small>
| {{{ela_sg}}}
| {{{ela_pl}}}
|- style="background:rgb(95%,95%,100%);vertical-align:top;" |
! style="background:rgb(80%,80%,100%);" | Allativ <small>([[alaleütlev]])</small>
| {{{all_sg}}}
| {{{all_pl}}}
|- style="background:rgb(95%,95%,100%);vertical-align:top;" |
! style="background:rgb(80%,80%,100%);" | Adessiv <small>([[alalütlev]])</small>
| {{{ade_sg}}}
| {{{ade_pl}}}
|- style="background:rgb(95%,95%,100%);vertical-align:top;" |
! style="background:rgb(80%,80%,100%);" | Ablativ <small>([[alaltütlev]])</small>
| {{{abl_sg}}}
| {{{abl_pl}}}
|- style="background:rgb(95%,95%,100%);vertical-align:top;" |
! style="background:rgb(80%,80%,100%);" | Translativ <small>([[saav]])</small>
| {{{tra_sg}}}
| {{{tra_pl}}}
|- style="background:rgb(95%,95%,100%);vertical-align:top;" |
! style="background:rgb(80%,80%,100%);" | Terminativ <small>([[rajav]])</small>
| {{{ter_sg}}}
| {{{ter_pl}}}
|- style="background:rgb(95%,95%,100%);vertical-align:top;" |
! style="background:rgb(80%,80%,100%);" | Essiv <small>([[olev]])</small>
| {{{ess_sg}}}
| {{{ess_pl}}}
|- style="background:rgb(95%,95%,100%);vertical-align:top;" |
! style="background:rgb(80%,80%,100%);" | Abessiv <small>([[ilmaütlev]])</small>
| {{{abe_sg}}}
| {{{abe_pl}}}
|- style="background:rgb(95%,95%,100%);vertical-align:top;" |
! style="background:rgb(80%,80%,100%);" | Komitativ <small>([[kaasaütlev]])</small>
| {{{com_sg}}}
| {{{com_pl}}}
|}
</div>
</div><!--
--><noinclude>[[Category:Šabloni deklinacije (estonski)]]</noinclude>
a8f006ahxzv6003vfcro8gzrwuk8nmn
Šablon:et-decl
10
13459
67727
67726
2020-07-25T22:06:01Z
Barishan
287
67727
wikitext
text/x-wiki
{{et-decl-table<!--
-->|title={{#if:{{{nom_sg|}}}|{{{nom_sg}}}|{{PAGENAME}}}} {{#if:{{{type|}}}|(tip [[Appendix:Estonian declension|{{{type}}}]])|(irregular)}}<!--
-->|nom_sg={{#if:{{{nosg|}}}|—|{{#if:{{{nom_sg|}}}|{{{nom_sg}}}|—}}<!--
-->{{#if:{{{nom_sg2|}}}| / {{{nom_sg2}}}}}<!--
-->}}<!--}}<!--
-->|acc_sg={{#if:{{{nosg|}}}|—|{{#if:{{{acc_sg|}}}|{{{acc_sg}}}|—}}<!--
-->{{#if:{{{acc_sg2|}}}| / {{{acc_sg2}}}}}<!--
-->}}<!--}}<!--
-->|gen_sg={{#if:{{{nosg|}}}|—|{{#if:{{{gen_sg|}}}|{{{gen_sg}}}|—}}<!--
-->{{#if:{{{gen_sg2|}}}| / {{{gen_sg2}}}}}<!--
-->}}<!--}}<!--
-->|par_sg={{#if:{{{nosg|}}}|—|{{#if:{{{par_sg|}}}|{{{par_sg}}}|—}}<!--
-->{{#if:{{{par_sg2|}}}| / {{{par_sg2}}}}}<!--
-->}}<!--
-->|ill_sg={{#if:{{{nosg|}}}|—|{{#if:{{{ill_sg|}}}|{{{ill_sg}}}|—}}<!--
-->{{#if:{{{ill_sg2|}}}| / {{{ill_sg2}}}}}<!--
-->}}<!--
-->|ine_sg={{#if:{{{nosg|}}}|—|{{#if:{{{ine_sg|}}}|{{{ine_sg}}}|—}}<!--
-->{{#if:{{{ine_sg2|}}}| / {{{ine_sg2}}}}}<!--
-->}}<!--
-->|ela_sg={{#if:{{{nosg|}}}|—|{{#if:{{{ela_sg|}}}|{{{ela_sg}}}|—}}<!--
-->{{#if:{{{ela_sg2|}}}| / {{{ela_sg2}}}}}<!--
-->}}<!--
-->|all_sg={{#if:{{{nosg|}}}|—|{{#if:{{{all_sg|}}}|{{{all_sg}}}|—}}<!--
-->{{#if:{{{all_sg2|}}}| / {{{all_sg2}}}}}<!--
-->}}<!--
-->|ade_sg={{#if:{{{nosg|}}}|—|{{#if:{{{ade_sg|}}}|{{{ade_sg}}}|—}}<!--
-->{{#if:{{{ade_sg2|}}}| / {{{ade_sg2}}}}}<!--
-->}}<!--
-->|abl_sg={{#if:{{{nosg|}}}|—|{{#if:{{{abl_sg|}}}|{{{abl_sg}}}|—}}<!--
-->{{#if:{{{abl_sg2|}}}| / {{{abl_sg2}}}}}<!--
-->}}<!--
-->|tra_sg={{#if:{{{nosg|}}}|—|{{#if:{{{tra_sg|}}}|{{{tra_sg}}}|—}}<!--
-->{{#if:{{{tra_sg2|}}}| / {{{tra_sg2}}}}}<!--
-->}}<!--
-->|ter_sg={{#if:{{{nosg|}}}|—|{{#if:{{{ter_sg|}}}|{{{ter_sg}}}|—}}}}<!--
-->|ess_sg={{#if:{{{nosg|}}}|—|{{#if:{{{ess_sg|}}}|{{{ess_sg}}}|—}}}}<!--
-->|abe_sg={{#if:{{{nosg|}}}|—|{{#if:{{{abe_sg|}}}|{{{abe_sg}}}|—}}}}<!--
-->|com_sg={{#if:{{{nosg|}}}|—|{{#if:{{{com_sg|}}}|{{{com_sg}}}|—}}}}<!--
-->|nom_pl={{#if:{{{nopl|}}}|—|{{#if:{{{nom_pl|}}}|{{{nom_pl}}}|—}}<!--
-->{{#if:{{{nom_pl2|}}}| / {{{nom_pl2}}}}}<!--
-->}}<!--
-->|acc_pl={{#if:{{{nopl|}}}|—|{{#if:{{{acc_pl|}}}|{{{acc_pl}}}|—}}<!--
-->{{#if:{{{acc_pl2|}}}| / {{{acc_pl2}}}}}<!--
-->}}<!--
-->|gen_pl={{#if:{{{nopl|}}}|—|{{#if:{{{gen_pl|}}}|{{{gen_pl}}}|—}}<!--
-->{{#if:{{{gen_pl2|}}}| / {{{gen_pl2}}}}}<!--
-->}}<!--
-->|par_pl={{#if:{{{nopl|}}}|—|{{#if:{{{par_pl|}}}|{{{par_pl}}}|—}}<!--
-->{{#if:{{{par_pl2|}}}| / {{{par_pl2}}}}}<!--
-->}}<!--
-->|ill_pl={{#if:{{{nopl|}}}|—|{{#if:{{{ill_pl|}}}|{{{ill_pl}}}|—}}<!--
-->{{#if:{{{ill_pl2|}}}| / {{{ill_pl2}}}}}<!--
-->{{#if:{{{ill_pl3|}}}| / {{{ill_pl3}}}}}<!--
-->}}<!--
-->|ine_pl={{#if:{{{nopl|}}}|—|{{#if:{{{ine_pl|}}}|{{{ine_pl}}}|—}}<!--
-->{{#if:{{{ine_pl2|}}}| / {{{ine_pl2}}}}}<!--
-->{{#if:{{{ine_pl3|}}}| / {{{ine_pl3}}}}}<!--
-->}}<!--
-->|ela_pl={{#if:{{{nopl|}}}|—|{{#if:{{{ela_pl|}}}|{{{ela_pl}}}|—}}<!--
-->{{#if:{{{ela_pl2|}}}| / {{{ela_pl2}}}}}<!--
-->{{#if:{{{ela_pl3|}}}| / {{{ela_pl3}}}}}<!--
-->}}<!--
-->|all_pl={{#if:{{{nopl|}}}|—|{{#if:{{{all_pl|}}}|{{{all_pl}}}|—}}<!--
-->{{#if:{{{all_pl2|}}}| / {{{all_pl2}}}}}<!--
-->{{#if:{{{all_pl3|}}}| / {{{all_pl3}}}}}<!--
-->}}<!--
-->|ade_pl={{#if:{{{nopl|}}}|—|{{#if:{{{ade_pl|}}}|{{{ade_pl}}}|—}}<!--
-->{{#if:{{{ade_pl2|}}}| / {{{ade_pl2}}}}}<!--
-->{{#if:{{{ade_pl3|}}}| / {{{ade_pl3}}}}}<!--
-->}}<!--
-->|abl_pl={{#if:{{{nopl|}}}|—|{{#if:{{{abl_pl|}}}|{{{abl_pl}}}|—}}<!--
-->{{#if:{{{abl_pl2|}}}| / {{{abl_pl2}}}}}<!--
-->{{#if:{{{abl_pl3|}}}| / {{{abl_pl3}}}}}<!--
-->}}<!--
-->|tra_pl={{#if:{{{nopl|}}}|—|{{#if:{{{tra_pl|}}}|{{{tra_pl}}}|—}}<!--
-->{{#if:{{{tra_pl2|}}}| / {{{tra_pl2}}}}}<!--
-->{{#if:{{{tra_pl3|}}}| / {{{tra_pl3}}}}}<!--
-->}}<!--
-->|ter_pl={{#if:{{{nopl|}}}|—|{{#if:{{{ter_pl|}}}|{{{ter_pl}}}|—}}<!--
-->{{#if:{{{ter_pl2|}}}| / {{{ter_pl2}}}}}<!--
-->{{#if:{{{ter_pl3|}}}| / {{{ter_pl3}}}}}<!--
-->}}<!--
-->|ess_pl={{#if:{{{nopl|}}}|—|{{#if:{{{ess_pl|}}}|{{{ess_pl}}}|—}}<!--
-->{{#if:{{{ess_pl2|}}}| / {{{ess_pl2}}}}}<!--
-->{{#if:{{{ess_pl3|}}}| / {{{ess_pl3}}}}}<!--
-->}}<!--
-->|abe_pl={{#if:{{{nopl|}}}|—|{{#if:{{{abe_pl|}}}|{{{abe_pl}}}|—}}<!--
-->{{#if:{{{abe_pl2|}}}| / {{{abe_pl2}}}}}<!--
-->{{#if:{{{abe_pl3|}}}| / {{{abe_pl3}}}}}<!--
-->}}<!--
-->|com_pl={{#if:{{{nopl|}}}|—|{{#if:{{{com_pl|}}}|{{{com_pl}}}|—}}<!--
-->{{#if:{{{com_pl2|}}}| / {{{com_pl2}}}}}<!--
-->{{#if:{{{com_pl3|}}}| / {{{com_pl3}}}}}<!--
-->}}<!--
-->}}<!--
--><includeonly><!--
-->{{#if:{{NAMESPACE}}||<!--
-->{{#ifeq:{{localurl:{{#if:{{{nom_sg|}}}|{{{nom_sg}}}|{{PAGENAME}}}}|{{localurl:{{PAGENAME}}}}||{{attention|et|Parameters don't match page name}}}}}}<!--
-->{{#if:{{{nosg|}}}|[[Category:Estonian pluralia tantum]]}}<!--
-->{{#if:{{{nopl|}}}|[[Category:Estonian uncountable nouns]]}}<!--
-->{{#if:{{{type|}}}<!--
-->|[[Category:Estonian {{{type}}}-type nominals]]<!--
-->|[[Category:Estonian irregular nominals]]<!--
-->}}<!--
-->}}<!--
--></includeonly><!--
ogldbf67ckgfjw9gawvpyv34dxdjuf8
Šablon:sh-decl-adj-1
10
13471
67741
2020-07-26T18:39:48Z
Barishan
287
Nova stranica: <div class="NavFrame" style="{{#ifeq:{{{style|}}}|right|float:right; clear:right;|}}"> <div class="NavHead" style="background:#eff7ff" > {{#if:{{{title|}}}|{{{title}}}...
67741
wikitext
text/x-wiki
<div class="NavFrame" style="{{#ifeq:{{{style|}}}|right|float:right; clear:right;|}}">
<div class="NavHead" style="background:#eff7ff" > {{#if:{{{title|}}}|{{{title}}}|{{#if:{{NAMESPACE}}||deklinacija pridjeva {{{{{sc|Latn}}}|''{{PAGENAME}}''|lang=sh|face=term}}}}}}</div>
<div class="NavContent">
{|border="1px solid #000000" style="border-collapse:collapse; background:#F9F9F9; text-align:center; font-size:12px; width:100%" class="inflection-table"
|-
! style="background:#d9ebff; width:25%" colspan="2"|jednina
! style="background:#d9ebff"|muški rod
! style="background:#d9ebff"|ženski rod
! style="background:#d9ebff"|srednji rod
|-
! style="background-color:#eff7ff" colspan="2"|'''nominativ'''
|{{#ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{nsm|{{{1|-}}}}}}}}|{{{nsm|{{{1|-}}}}}}}}
|{{#ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{nsf|{{{1|-}}}}}}}}|{{{nsf|{{{1|-}}}}}}}}
|{{#ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{nsn|{{{2|-}}}}}}}}|{{{nsn|{{{2|-}}}}}}}}
|-
! style="background-color:#eff7ff" colspan="2"|'''genitiv'''
|{{#ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{gsm|{{{3|-}}}}}}}}|{{{gsm|{{{3|-}}}}}}}}
|{{#ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{gsf|{{{3|-}}}}}}}}|{{{gsf|{{{3|-}}}}}}}}
|{{#ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{gsn|{{{4|-}}}}}}}}|{{{gsn|{{{4|-}}}}}}}}
|-
! style="background-color:#eff7ff" colspan="2"|'''dativ'''
|{{#ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{dsm|{{{5|-}}}}}}}}|{{{dsm|{{{5|-}}}}}}}}
|{{#ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{dsf|{{{6|-}}}}}}}}|{{{dsf|{{{6|-}}}}}}}}
|{{#ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{dsn|{{{6|-}}}}}}}}|{{{dsn|{{{6|-}}}}}}}}
|-
! style="background-color:#eff7ff"|'''akuzativ'''
! style="background:#eff7ff"|<small>neživo</small><br><small>živo</small>
|{{ #ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{asm|{{{7|-}}}}}}}}|{{{asm|{{{7|-}}}}}}}}
|{{ #ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{asf|{{{8|-}}}}}}}}|{{{asf|{{{8|-}}}}}}}}
|{{ #ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{asn|{{{8|-}}}}}}}}|{{{asn|{{{8|-}}}}}}}}
|-
! style="background-color:#eff7ff" colspan="2"|'''vokativ'''
|{{#ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{vsm|{{{9|-}}}}}}}}|{{{vsm|{{{9|-}}}}}}}}
|{{#ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{vsf|{{{10|-}}}}}}}}|{{{vsf|{{{10|-}}}}}}}}
|{{#ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{vsn|{{{10|-}}}}}}}}|{{{vsn|{{{10|-}}}}}}}}
|-
! style="background-color:#eff7ff" colspan="2"|'''lokativ'''
|{{#ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{lsm|{{{11|-}}}}}}}}|{{{lsm|{{{11|-}}}}}}}}
|{{#ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{lsf|{{{11|-}}}}}}}}|{{{lsf|{{{11|-}}}}}}}}
|{{#ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{lsn|{{{12|-}}}}}}}}|{{{lsn|{{{12|-}}}}}}}}
|-
! style="background-color:#eff7ff" colspan="2"|'''instrumental'''
|{{ #ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{ism|{{{13|-}}}}}}}}|{{{ism|{{{13|-}}}}}}}}
|{{ #ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{isf|{{{13|-}}}}}}}}|{{{isf|{{{13|-}}}}}}}}
|{{ #ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{isn|{{{14|-}}}}}}}}|{{{isn|{{{14|-}}}}}}}}
|-
! style="background:#d9ebff; width:30%" colspan="2"|množina
! style="background:#d9ebff"|muški rod
! style="background:#d9ebff"|ženski rod
! style="background:#d9ebff"|srednji rod
|-
! style="background-color:#eff7ff" colspan="2"|'''nominativ'''
|{{#ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{npm|{{{1|-}}}}}}}}|{{{npm|{{{1|-}}}}}}}}
|{{#ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{npf|{{{1|-}}}}}}}}|{{{npf|{{{1|-}}}}}}}}
|{{#ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{npn|{{{2|-}}}}}}}}|{{{npn|{{{2|-}}}}}}}}
|-
! style="background-color:#eff7ff" colspan="2"|'''genitiv'''
|{{#ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{gpm|{{{3|-}}}}}}}}|{{{gpm|{{{3|-}}}}}}}}
|{{#ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{gpf|{{{3|-}}}}}}}}|{{{gpf|{{{3|-}}}}}}}}
|{{#ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{gpn|{{{4|-}}}}}}}}|{{{gpn|{{{4|-}}}}}}}}
|-
! style="background-color:#eff7ff" colspan="2"|'''dativ'''
|{{#ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{dpm|{{{5|-}}}}}}}}|{{{dpm|{{{5|-}}}}}}}}
|{{#ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{dpf|{{{6|-}}}}}}}}|{{{dpf|{{{6|-}}}}}}}}
|{{#ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{dpn|{{{6|-}}}}}}}}|{{{dpn|{{{6|-}}}}}}}}
|-
! style="background-color:#eff7ff" colspan="2"|'''akuzativ'''
|{{#ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{apm|{{{7|-}}}}}}}}|{{{apm|{{{7|-}}}}}}}}
|{{#ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{apf|{{{8|-}}}}}}}}|{{{apf|{{{8|-}}}}}}}}
|{{#ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{apn|{{{8|-}}}}}}}}|{{{apn|{{{8|-}}}}}}}}
|-
! style="background-color:#eff7ff" colspan="2"|'''vokativ'''
|{{#ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{vpm|{{{9|-}}}}}}}}|{{{vpm|{{{9|-}}}}}}}}
|{{#ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{vpf|{{{10|-}}}}}}}}|{{{vpf|{{{10|-}}}}}}}}
|{{#ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{vpn|{{{10|-}}}}}}}}|{{{vpn|{{{10|-}}}}}}}}
|-
! style="background-color:#eff7ff" colspan="2"|'''lokativ'''
|{{#ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{lpm|{{{11|-}}}}}}}}|{{{lpm|{{{11|-}}}}}}}}
|{{#ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{lpf|{{{11|-}}}}}}}}|{{{lpf|{{{11|-}}}}}}}}
|{{#ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{lpn|{{{12|-}}}}}}}}|{{{lpn|{{{12|-}}}}}}}}
|-
! style="background-color:#eff7ff" colspan="2"|'''instrumental'''
|{{#ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{ipm|{{{13|-}}}}}}}}|{{{ipm|{{{13|-}}}}}}}}
|{{#ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{ipf|{{{13|-}}}}}}}}|{{{ipf|{{{13|-}}}}}}}}
|{{#ifeq:{{{sc}}}|Cyrl|{{Cyrl|lang=sh|{{{ipn|{{{14|-}}}}}}}}|{{{ipn|{{{14|-}}}}}}}}
|}</div></div><noinclude>[[Category:srpskohrvatski fleksijski šabloni|*]]</noinclude>
nx6w3qqaxvrwxul7vzszit18rvhqhoj
Korisnik:Erokhin
2
13498
67803
2020-11-29T08:41:51Z
Erokhin
2935
Nova stranica: {{#babel:ru|en-3|la-2}}
67803
wikitext
text/x-wiki
{{#babel:ru|en-3|la-2}}
b6ib6fkatj0zqbarnhcr366lp6izwgu
Korisnik:Pratyya Ghosh/WSign.js
2
13650
67979
2021-01-05T05:01:16Z
Pathoschild
81
global user pages ([[m:Synchbot|requested by Pratyya Ghosh]])
67979
javascript
text/javascript
<span style="font-family:Cambria">'''[[User:Pratyya Ghosh|<span style="color:#082567">PratyyaG</span>]] · [[User talk:Pratyya Ghosh|<span style="color:#224C98">Talk</span>]]''' </span>
dfkuzrfxb3fokiyj65jf5r4fqfl3qbp
Korisnik:מושך בשבט/WSign.js
2
13716
68096
2021-02-08T23:00:14Z
Pathoschild
81
global user pages ([[m:Synchbot|requested by מושך בשבט]])
68096
javascript
text/javascript
<span style="font-family:Cambria">[[User:מושך בשבט|<span style="color:#082567">'''מושך בשבט'''</span>]] '''·''' [[User talk:מושך בשבט|<span style="color:#224C98">'''Talk'''</span>]]</span>
79mtbvj3kmrb61d61i0aixm2gwort09
Razgovor s korisnikom:InternetArchiveBot
3
13728
68126
68121
2021-06-16T00:46:43Z
Harej
2188
Izmijenjeno odredište preusmjerenja sa [[en:User talk:InternetArchiveBot]] na [[meta:User talk:InternetArchiveBot]]
68126
wikitext
text/x-wiki
#REDIRECT[[meta:User talk:InternetArchiveBot]]
ihe6s1lbzqd8gasxnoewu85gshqim7x
Korisnik:ZI Jony/minerva.js
2
13729
68122
2021-05-01T18:20:34Z
Pathoschild
81
global user pages ([[m:Synchbot|requested by ZI Jony]])
68122
javascript
text/javascript
mw.loader.load('//meta.wikimedia.org/w/index.php?title=User:ZI_Jony/mobile-global.js&action=raw&ctype=text/javascript');
1ud4suvkeq8qtlm36a2g10cfg17vxfa
Korisnik:6411inoino3
2
13730
68131
2021-07-03T05:47:44Z
6411inoino3
3083
Nova stranica: {{korisnik}}
68131
wikitext
text/x-wiki
{{korisnik}}
6iz79hp4wxt99i7j7hncnkvprn0qplu
Korisnik:Chongkian
2
13731
68132
2021-07-10T03:21:55Z
Chongkian
3088
Nova stranica: Hi everyone!
68132
wikitext
text/x-wiki
Hi everyone!
0nzb19mczsfpeutkq7g2yvjk4b3b65u
Razgovor s korisnikom:SHB2000
3
13732
68136
2021-08-08T02:22:07Z
Pathoschild
81
global user pages ([[m:Synchbot|requested by SHB2000]])
68136
wikitext
text/x-wiki
<div style="border: 1rem #dd0000 ridge; padding: 0.5em;">Hello! Please message me on [[m:User talk:SHB2000|meta.wikimedia.org]] instead. I may not notice messages on this page.</div>
ojy2vkqs676esjrcfi79dwyt0tjr5xc
Razgovor s korisnikom:Yahya
3
13734
68139
2021-09-05T19:09:28Z
Pathoschild
81
global user pages ([[m:Synchbot|requested by Yahya]])
68139
wikitext
text/x-wiki
<div style="font-size:130%;font-family:Roboto,Arial; border-top:5px solid lightblue; border-bottom:5px solid lightblue; padding:5px;margin-top:20px;">Hello! Please message me on [[m:User talk:Yahya|meta.wikimedia.org]] instead. I may not notice messages on this page.</div>
c4ypm7wbt5rvjqqxzie5ujk3hmhcrrp
Razgovor s korisnikom:SelfBlood96
3
13736
68145
2021-10-24T00:31:54Z
Mykola7
3139
Mykola7 premjestio je stranicu [[Razgovor s korisnikom:SelfBlood96]] na [[Razgovor s korisnikom:Micraims]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/SelfBlood96|SelfBlood96]]" u "[[Special:CentralAuth/Micraims|Micraims]]"
68145
wikitext
text/x-wiki
#PREUSMJERI [[Razgovor s korisnikom:Micraims]]
jqp5wv05lhpo5640x9aj9z81o7bqvtb
Korisnik:Zblace
2
13737
68147
2021-11-28T14:04:52Z
Zblace
3161
Napravljena prazna stranica
68147
wikitext
text/x-wiki
phoiac9h4m842xq45sp7s6u21eteeq1
Korisnik:QuiteUnusual/common.js
2
13738
68153
2021-12-23T10:12:08Z
Ternarius
3176
Ternarius premjestio je stranicu [[Korisnik:QuiteUnusual/common.js]] na [[Korisnik:MarcGarver/common.js]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/QuiteUnusual|QuiteUnusual]]" u "[[Special:CentralAuth/MarcGarver|MarcGarver]]"
68153
javascript
text/javascript
/* #REDIRECT */mw.loader.load("//bs.wiktionary.org/w/index.php?title=Korisnik:MarcGarver/common.js\u0026action=raw\u0026ctype=text/javascript");
ks92pxx15lmcbm46vjl1v3vat0w7g9t
Razgovor s korisnikom:Filter zloupotreba
3
13739
68158
2022-01-04T18:10:27Z
MediaWiki message delivery
1685
/* How we will see unregistered users */ novi odlomak
68158
wikitext
text/x-wiki
== How we will see unregistered users ==
<div lang="en" dir="ltr" class="mw-content-ltr">
<section begin=content/>
Hi!
You get this message because you are an admin on a Wikimedia wiki.
When someone edits a Wikimedia wiki without being logged in today, we show their IP address. As you may already know, we will not be able to do this in the future. This is a decision by the Wikimedia Foundation Legal department, because norms and regulations for privacy online have changed.
Instead of the IP we will show a masked identity. You as an admin '''will still be able to access the IP'''. There will also be a new user right for those who need to see the full IPs of unregistered users to fight vandalism, harassment and spam without being admins. Patrollers will also see part of the IP even without this user right. We are also working on [[m:IP Editing: Privacy Enhancement and Abuse Mitigation/Improving tools|better tools]] to help.
If you have not seen it before, you can [[m:IP Editing: Privacy Enhancement and Abuse Mitigation|read more on Meta]]. If you want to make sure you don’t miss technical changes on the Wikimedia wikis, you can [[m:Global message delivery/Targets/Tech ambassadors|subscribe]] to [[m:Tech/News|the weekly technical newsletter]].
We have [[m:IP Editing: Privacy Enhancement and Abuse Mitigation#IP Masking Implementation Approaches (FAQ)|two suggested ways]] this identity could work. '''We would appreciate your feedback''' on which way you think would work best for you and your wiki, now and in the future. You can [[m:Talk:IP Editing: Privacy Enhancement and Abuse Mitigation|let us know on the talk page]]. You can write in your language. The suggestions were posted in October and we will decide after 17 January.
Thank you.
/[[m:User:Johan (WMF)|Johan (WMF)]]<section end=content/>
</div>
18:10, 4 januar 2022 (KSV)
<!-- Message sent by User:Johan (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:Johan_(WMF)/Target_lists/Admins2022(1)&oldid=22532492 -->
j6y9w9cgm154dljqlzjdfh0bmvc3saw
Korisnik:Vit Koz
2
13743
68217
68170
2022-02-21T03:08:08Z
EmausBot
2509
Bot: Neispravno preusmjerenje prema premještenoj stranici [[Korisnik:Brubaker610]]
68217
wikitext
text/x-wiki
#PREUSMJERI [[Korisnik:Brubaker610]]
1uspi8epg6y5tc7yfulw6cbpt53tppp
Korisnik:Kwamikagami
2
13762
68211
2022-02-18T10:32:07Z
Kwamikagami
3199
Nova stranica: [[File:Extended IPA chart 2005.png|800px]] [[en:User:Kwamikagami]]
68211
wikitext
text/x-wiki
[[File:Extended IPA chart 2005.png|800px]]
[[en:User:Kwamikagami]]
9nzhwp19ie1vevrzeuqt2jpfbfho7il
Razgovor s korisnikom:MdsShakil/header
3
13856
68437
2022-08-06T16:56:18Z
Pathoschild
81
create header for talk page ([[m:Synchbot|requested by MdsShakil]])
68437
wikitext
text/x-wiki
<div style="display: flex; flex-wrap: wrap; justify-content: center; align-items: center; margin: 16px 0; border: 1px solid #aaaaaa;">
<div style="padding: 12px;">[[File:Circle-icons-megaphone.svg|75px|link=[[m:User_talk:MdsShakil]]]]</div>
<div style="flex: 1; padding: 12px; background-color: #dddddd; color: #555555;">
<div style="font-weight: bold; font-size: 150%; color: red; font-family: 'Comic Sans MS'">Welcome to my talk page!</div>
<div style="max-width: 700px">Hey! I am Shakil Hosen. I patrol many projects, and where I don't know the language I only act in cases of serious vandalism. If you think I have done anything wrong, feel free to [[m:User talk:MdsShakil|message me]] on Meta wiki. If you don't like that you can leave me messages here too, but since I do not watch all of my talk pages, your message might not get a timely response. Thanks! [[File:Face-smile.svg|18px|link=[[m:User:MdsShakil]]]]</div>
</div>
</div>
6ns6eellkw7iqc4yteyjnszfjmo2yio
Razgovor s korisnikom:MdsShakil
3
13857
68438
2022-08-06T18:21:30Z
Pathoschild
81
add talk page header ([[m:Synchbot|requested by MdsShakil]])
68438
wikitext
text/x-wiki
{{User talk:MdsShakil/header}}
tbo8m2n1p4y1shpmyu07h1k0g9pq65d
Korisnik:SOSUM444
2
13858
68440
2022-08-21T04:46:17Z
SOSUM444
3281
Nova stranica: Emrah Bajramović (Zenica, 25. Maj 2001.[1]) je bosanskohercegovački nogometaš i radioamater. Nogometom i radioamaterizmom se bavi od 10. godine. Od 2012. godine živi i radi u Zenici. Visina: 178 cm
68440
wikitext
text/x-wiki
Emrah Bajramović (Zenica, 25. Maj 2001.[1]) je bosanskohercegovački nogometaš i radioamater.
Nogometom i radioamaterizmom se bavi od 10. godine. Od 2012. godine živi i radi u Zenici.
Visina: 178 cm
olj2z9vumwdp1iem40ejo5oxhkcv3yi
Korisnik:SEO Freelancer Muenchen
2
13859
68443
2022-09-28T20:54:37Z
SEO Freelancer Muenchen
3294
Nova stranica: SEO Freelancer München
68443
wikitext
text/x-wiki
SEO Freelancer München
fhwxbzf4mpjmlr8cl9jovddmb8m7zni
Korisnik:F.Pavkovic
2
13860
68445
2022-10-19T17:58:45Z
QueerEcofeminist
2687
QueerEcofeminist premjestio je stranicu [[Korisnik:F.Pavkovic]] na [[Korisnik:TheMinishCap]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/F.Pavkovic|F.Pavkovic]]" u "[[Special:CentralAuth/TheMinishCap|TheMinishCap]]"
68445
wikitext
text/x-wiki
#PREUSMJERI [[Korisnik:TheMinishCap]]
qbgs95cx8ywttpi6javx199931e26ou
Korisnik:James500
2
13868
68468
68467
2023-01-03T07:09:00Z
James500
3335
User page template
68468
wikitext
text/x-wiki
{{korisnik}}
{{#babel:en|bs-0}}
[[en:User:James500]]
bg2ojr5xjxxw5q4r066kf7ibv6ef95t
Razgovor s korisnikom:Rikovicjasmina
3
13869
68469
2023-01-07T23:49:16Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
68469
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Korisnik:KernelFreeze/common.js
2
13997
68658
2023-03-11T10:32:54Z
Taketa
1910
Taketa premjestio je stranicu [[Korisnik:KernelFreeze/common.js]] na [[Korisnik:Renamed user 9thz5duyuxms/common.js]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/KernelFreeze|KernelFreeze]]" u "[[Special:CentralAuth/Renamed user 9thz5duyuxms|Renamed user 9thz5duyuxms]]"
68658
javascript
text/javascript
/* #REDIRECT */mw.loader.load("//bs.wiktionary.org/w/index.php?title=Korisnik:Renamed_user_9thz5duyuxms/common.js\u0026action=raw\u0026ctype=text/javascript");
qby8t9f3zefa4rwioc3h8rq7fa4fiky
Razgovor s korisnikom:KernelFreeze
3
13998
68659
2023-03-11T10:32:54Z
Taketa
1910
Taketa premjestio je stranicu [[Razgovor s korisnikom:KernelFreeze]] na [[Razgovor s korisnikom:Renamed user 9thz5duyuxms]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/KernelFreeze|KernelFreeze]]" u "[[Special:CentralAuth/Renamed user 9thz5duyuxms|Renamed user 9thz5duyuxms]]"
68659
wikitext
text/x-wiki
#PREUSMJERI [[Razgovor s korisnikom:Renamed user 9thz5duyuxms]]
sjhshfxns41mhacp7m1bmtco47q7y1i
Korisnik:Ivana gordanic
2
14492
69231
69230
2023-06-10T16:07:02Z
Ivana gordanic
3447
69231
wikitext
text/x-wiki
June Aris je poludjela za svojim novim zivotom i ne zna sta dalje osim da se prijavi da radi za fbi i to je kao zabavno ali koji poslovi imaju ne zna . Osim toga ne zna ni kako dalje jer iz nekog divnog razloga sve se razjebalo u šest minuta tako da gospodin kojeg nije prijavila je iznenada odljepio svoje stare naljepnice koje su tu bile naljepljene oko 10 do 12 godina.
tb7woi3uundc0qgswn0umr7cc9jnlqt
Razgovor s korisnikom:Camēlopardalis Germānica
3
15562
70542
70514
2023-08-01T06:47:26Z
Camēlopardalis Germānica
3475
/* Hallo! */ odgovor
70542
wikitext
text/x-wiki
<div style="border:1px solid #999999;background-color:#F5F5F5;padding:10px;">
[[Datoteka:Wiktionary-logo-en.svg|100px|lijevo]]<big>'''Dobrodošli na Wikirječnik na [[w:Bosanski jezik|bosanskom jeziku]] – slobodan rječnik, leksikon i tezaurus!'''</big><br>
<div style="border:1px solid #999999;background-color:#B0E0E6;padding:8px;">Pozdrav, {{PAGENAME}}!<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 [[Vikirječnik:Uređivanje|kako članci trebaju izgledati]]. '''Slobodno''' radite na Wikirječniku i '''razgovarajte''' s drugima.
Više informacija dostupno je na '''[[w:Wikipedia:Čaršija|Čaršiji]]''', gdje možete razgovarati s drugim korisnicima. Možete kontaktirati i neke 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 interesuje, čime se bavite i sl. Molimo Vas da se potpisujete na stranicama za razgovor korištenjem '''<tt><nowiki>~~~~</nowiki></tt>''' (četiri znaka ''tilda'').
Radite zajedno s 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:Recentchanges|nedavne izmjene]], gdje možete vidjeti nedavne aktivnosti na Wikipediji.
Prilikom [[Posebno:Upload|postavljanja]] slika koristite ispravne [[w:Wikipedia:Šabloni za slike|šablone za licencu]] i vodite računa o '''[[w:Wikipedia:Autorska prava|autorskim pravima]]''' prilikom pisanja članaka. Članci ili slike koje krše autorska prava bit će obrisani. Još jednom Vas lijepo pozdravljamo. [[Korisnik:Barishan|Barishan]] ([[Razgovor s korisnikom:Barishan|razgovor]]) 14:36, 31 juli 2023 (KSV)
{|- style="background-color:#B0E0E6; text-align:center;"
| style="background: #F0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Slika: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;" | [[Slika:View-refresh.svg|18px]] <br/>[[Posebno:Recentchanges|Nedavne izmjene]]
| style="background: #F0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Slika:Wiktionary-logo.svg|18px]] <br/>[[w:Pravopis bosanskog jezika|Pravopis]]
| style="background: #E0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Slika:Nuvola apps kmessedwords.png|18px]] <br/>[[w:Wikipedia:Jezički standardi na bosanskoj Wikipediji|Jezički standardi]]
| style="background: #F0FFFF; border:1px solid silver; font: 90% Verdana; width:16%; height:30;" | [[Slika:čć.png|18px]] <br/>[[w:Wikipedia:Pravilno-nepravilno u bosanskome jeziku|Pravilno-nepravilno]]
| style="background: #E0FFFF; border:1px solid silver; 18px; font: 90% Verdana; width:16%; height:30;" | [[Slika: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 />[[Razgovor o šablonu:Dobrodošlica|Kliknite ovdje]].
|}</div></div>
== Hallo! ==
Es ist mehr als zehn Jahre her, dass ich gelegentlich hierher komme und Beiträge leiste. Es ist so schön, endlich einen weiteren aktiven Benutzer zu sehen! Willkommen und viel Spaß beim Bearbeiten! [[Korisnik:Barishan|Barishan]] ([[Razgovor s korisnikom:Barishan|razgovor]]) 14:36, 31 juli 2023 (KSV)
:Hvala, herzlichen Dank! Ich habe gerade auch gesehen, dass du extra die neuen Vorlagen für deutsche Substantive erstellt hast, wow, das ist sehr hilfreich und nett von dir! Ich wünsche dir ebenso (weiterhin) viel Spaß hier. -[[Korisnik:Camēlopardalis Germānica|Camēlopardalis Germānica]] ([[Razgovor s korisnikom:Camēlopardalis Germānica|razgovor]]) 06:47, 1 august 2023 (KSV)
44lydi9wepk4ioxk7ccu4yceobcvwct
Šablon:de-dekl-ime-sing
10
15563
70515
2023-07-31T14:39:49Z
Barishan
287
Nova stranica: <div class="NavFrame" style="width:50%"> <div class="NavHead" style="" >Deklinacija: {{{ns|{{{1}}}}}}</div> <div class="NavContent"> {| border="1px solid #505050" style="border-collapse:collapse; background:#FAFAFA; text-align:center; width:100%" class="inflection-table" ! style="background:#AAB8C0;width:15%" | ! colspan="3" style="background:#AAB8C0" | Jednina |- ! style="background:#BBC9D0" | (''rod:'' {{#if:{{{g|}}}|{{#switch:{{{g|}}}|m={{m}}|f={{f}}|n={{n}}|?}}}}) ! st...
70515
wikitext
text/x-wiki
<div class="NavFrame" style="width:50%">
<div class="NavHead" style="" >Deklinacija: {{{ns|{{{1}}}}}}</div>
<div class="NavContent">
{| border="1px solid #505050" style="border-collapse:collapse; background:#FAFAFA; text-align:center; width:100%" class="inflection-table"
! style="background:#AAB8C0;width:15%" |
! colspan="3" style="background:#AAB8C0" | Jednina
|-
! style="background:#BBC9D0" | (''rod:'' {{#if:{{{g|}}}|{{#switch:{{{g|}}}|m={{m}}|f={{f}}|n={{n}}|?}}}})
! style="background:#BBC9D0;width:7%" | Neodređeni član
! style="background:#BBC9D0;width:7%" | Određeni član
! style="background:#BBC9D0;width:27%" | Imenica
|-
! style="background:#BBC9D0" | Nominativ
| style="background:#EEEEEE" | {{#if:{{{g|}}}|{{#switch:{{{g|}}}|m=ein|f=eine|n=ein|?}}}}
| style="background:#EEEEEE" | {{#if:{{{g|}}}|{{#switch:{{{g|}}}|m=der|f=die|n=das|?}}}}
| {{{ns|{{{1}}}}}}
|-
! style="background:#BBC9D0" | Genitiv
| style="background:#EEEEEE" | {{#if:{{{g|}}}|{{#switch:{{{g|}}}|m=eines|f=einer|n=eines|?}}}}
| style="background:#EEEEEE" | {{#if:{{{g|}}}|{{#switch:{{{g|}}}|m=des|f=der|n=des|?}}}}
| {{{gs|{{{4}}}}}}
|-
! style="background:#BBC9D0" | Dativ
| style="background:#EEEEEE" | {{#if:{{{g|}}}|{{#switch:{{{g|}}}|m=einem|f=einer|n=einem|?}}}}
| style="background:#EEEEEE" | {{#if:{{{g|}}}|{{#switch:{{{g|}}}|m=dem|f=der|n=dem|?}}}}
| {{{ds|{{{3}}}}}}
|-
! style="background:#BBC9D0" | Akuzativ
| style="background:#EEEEEE" | {{#if:{{{g|}}}|{{#switch:{{{g|}}}|m=einen|f=eine|n=ein|?}}}}
| style="background:#EEEEEE" | {{#if:{{{g|}}}|{{#switch:{{{g|}}}|m=den|f=die|n=das|?}}}}
| {{{as|{{{2}}}}}}
|}</div></div><noinclude>
[[Kategorija:Šabloni deklinacije (njemački)]]
[[de:Vorlage:Deutsch Substantiv Übersicht]]
[[fr:Modèle:de-tab-cas]]
[[ga:Teimpléad:de-Substantiv-Tabelle]]
[[pt:Predefinição:decl.de.subst]]
</noinclude>
rglufepu2nxatsk9v4o2fw09jdlunqj
Razgovor s korisnikom:Jeuwre
3
15691
70783
2023-09-06T21:50:40Z
KWiki
1197
Nova stranica: {{Dobrodošlica}}
70783
wikitext
text/x-wiki
{{Dobrodošlica}}
gyjoyp37v3u06w731wtwzjdah9c91ny
Šablon:color panel
10
15701
70813
2023-09-10T18:19:36Z
Barishan
287
Nova stranica: <includeonly><div class="color-panel">{{#if:{{{3|}}} | {{{1}}}: <span style="background-color:#{{{2}}}; display:inline-block; width:80px;"> </span> <span style="background-color:#{{{3}}}; display:inline-block; width:80px;"> </span> | {{#if:{{{2|}}} | {{#if:{{hexnum|{{{1}}}|digits=6}} | {{PAGENAME}}: <span style="background-color:#{{{1}}}; display:inline-block; width:80px;"> </span> <span style="background-color:#{{{2}}}; display:inline-block...
70813
wikitext
text/x-wiki
<includeonly><div class="color-panel">{{#if:{{{3|}}}
| {{{1}}}: <span style="background-color:#{{{2}}}; display:inline-block; width:80px;"> </span> <span style="background-color:#{{{3}}}; display:inline-block; width:80px;"> </span>
| {{#if:{{{2|}}}
| {{#if:{{hexnum|{{{1}}}|digits=6}}
| {{PAGENAME}}: <span style="background-color:#{{{1}}}; display:inline-block; width:80px;"> </span> <span style="background-color:#{{{2}}}; display:inline-block; width:80px;"> </span>
| {{{1}}}: <span style="background-color:#{{{2}}}; display:inline-block; width:80px;"> </span>
}}
| {{PAGENAME}}: <span style="background-color:#{{{1}}}; display:inline-block; width:80px;"> </span>
}}
}}</div></includeonly><noinclude>{{color panel|red|FF0000}}</noinclude>
h8mbk70fa29higwtaeh9zfrtloqwp12
Korisnik:Stefán Örvar Sigmundsson
2
15741
70923
2024-01-02T05:47:26Z
Stefán Örvar Sigmundsson
2352
Nova stranica: [[wikipedia:en:User:Stefán Örvar Sigmundsson]]
70923
wikitext
text/x-wiki
[[wikipedia:en:User:Stefán Örvar Sigmundsson]]
eeyit5qujkn63fz4jizeeddlhkf4v7q
Korisnik:KWiki/common.css
2
15848
71112
2024-05-07T01:24:23Z
KWiki
1197
Nova stranica: .mw-redirect { color: #eb34db; } .mw-redirect:visited { color: #7d34eb; } .mw-redirect:hover { color: #349eeb; } .mw-redirect:active { color: #3461eb; }
71112
css
text/css
.mw-redirect {
color: #eb34db;
}
.mw-redirect:visited {
color: #7d34eb;
}
.mw-redirect:hover {
color: #349eeb;
}
.mw-redirect:active {
color: #3461eb;
}
80i7qswh4vp9sqy48qsuewn773ch4un
Razgovor s korisnikom:Wüstenspringmaus
3
16633
72445
2024-11-02T18:06:23Z
Pathoschild
81
global user pages ([[m:Synchbot|requested by Wüstenspringmaus]])
72445
wikitext
text/x-wiki
[[File:Redirect arrow without text.svg|46px|link=]][[m:User talk:Wüstenspringmaus|m:User talk:Wüstenspringmaus]]
s48bp6md0bqlqfh7qca2oj8x1jbdi2a
Razgovor s korisnikom:-revi
3
16634
72449
2024-11-04T08:03:57Z
HakanIST
2154
HakanIST premjestio je stranicu [[Razgovor s korisnikom:-revi]] na [[Razgovor s korisnikom:Revi C.]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/-revi|-revi]]" u "[[Special:CentralAuth/Revi C.|Revi C.]]"
72449
wikitext
text/x-wiki
#PREUSMJERI [[Razgovor s korisnikom:Revi C.]]
acbxrh4207ktunyjsskwemfm1qkpzu2
Korisnik:-revi
2
16635
72450
2024-11-04T08:03:57Z
HakanIST
2154
HakanIST premjestio je stranicu [[Korisnik:-revi]] na [[Korisnik:Revi C.]]: Automatsko premještanje stranice zbog preimenovanja korisnika "[[Special:CentralAuth/-revi|-revi]]" u "[[Special:CentralAuth/Revi C.|Revi C.]]"
72450
wikitext
text/x-wiki
#PREUSMJERI [[Korisnik:Revi C.]]
0d8dn3o8gydfrngnlmqvl1g16oo96km
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
Korisnik:ВМНС
2
16685
72552
2025-03-08T09:22:27Z
ВМНС
1976
Nova stranica: <pre> ==Pali== ===Imenica=== {{PAGENAME}} # [[]] [[Kategorija:pi:Imenice]] </pre>
72552
wikitext
text/x-wiki
<pre>
==Pali==
===Imenica===
{{PAGENAME}}
# [[]]
[[Kategorija:pi:Imenice]]
</pre>
f37w4xxygwg3ahdbrf315qizvfecqa3
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
Korisnik:Aca/common.js
2
16699
72648
2025-04-13T20:42:40Z
Aca
2473
+
72648
javascript
text/javascript
mw.loader.load('//en.wikisource.org/w/index.php?title=MediaWiki:Gadget-massdelete.js&action=raw&ctype=text/javascript');
rcfz12jglqlvnbs94nretmzt21iwx1r
Razgovor s korisnikom:Balamax
3
16701
72714
2025-04-20T18:11:11Z
Aca
2473
/* Erfahrungsaustausch */ novi odlomak
72714
wikitext
text/x-wiki
== Erfahrungsaustausch ==
Hello! Your page [[Erfahrungsaustausch]] is now moved to sh.wiktionary ([[:sh:Erfahrungsaustausch|here]]). The Bosnian and Serbo-Croatian Wiktionaries will soon be merged, so that's why we are moving the pages over. Please contribute under the new domain in the future. Thanks! – [[Korisnik:Aca|Aca]] ([[Razgovor s korisnikom:Aca|razgovor]]) 18:11, 20 april 2025 (KSV)
5tu6xvmvrdd1imwzpvkj9ntiuzmg53c
MediaWiki:Sitenotice id
8
16702
72715
2025-04-20T18:11:35Z
Aca
2473
+
72715
wikitext
text/x-wiki
1
68m9lfln2dgvzieyrm8vqqf8ha8550r