Šablon:All system messages

Od Wikirječnik

Ovo je spisak sistemskih poruka u dostupnih u imenskom prostoru MediaWiki. Posjetite lokalizaciju MediaWikija i translatewiki.net ako želite doprinijeti općoj lokalizaciji MediaWikija.

Name

Default text

Current text

1movedto2
Talk

$1 moved to $2

moved $1 to $2

1movedto2_redir
Talk

$1 moved to $2 over redirect

moved $1 to $2 over redirect

Monobook.css
Talk

/* edit this file to customize the monobook skin for the entire site */

/*

  • /

Monobook.js
Talk

/* edit this file to customize the monobook skin for the entire site */

/*

LinkFA

 */
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";
            }
         }
      }
   }
}


/* 

Dynamic Navigation bars

 */
 // ============================================================
 // 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;
            }
        }
    }
}


/* 

Show/hide Dyn Navigation bars

 */

// 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
 // ============================================================


/* 

Page Numbering

 */
 //default setting, may be overridden by user
 var DisplayPageNumbersDefault = true;

 CookieDisplayPageNumbers = $.cookie("DisplayPageNumbers")
 if (CookieDisplayPageNumbers ) {
   if (CookieDisplayPageNumbers == "false") DisplayPageNumbersDefault = false;
 }


/* 

PageNumbers

 */
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;
       }
   }
 }


/* 

displayPageNumbers

 */
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;
 }


/* 

Annotations

 */

 //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;
       }
   }
}



/* 

displayAnnotations

 */

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;
}


/* 

LineBreaks

 */

 //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;
       }
   }
}


/* 

displayLineBreaks

 */

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;
}


/* 

interwikiExtra

 */

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>"
      }

   }
}



/* 

BilingualLink

 */

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>";
              }
          }
}


/* 

ProofReadLink

 */

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;
		}
	}
}


/* 

Only If Editing

 */

 //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


/* 

addEditButton

 */

//The cleaner way to add an editbar button.

  function addEditButton(){}

/* 

bsImprovedToolbar

 */

//============================================================
// 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);


/* 

InsertTagsValue

 */

 //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);
 }




/* 

stringReplaceBox

 */

 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);
 }


/* 

ProofReading

 */


 //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
		}
	}
 }



/* 

ImageFrameContent

 */

 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
 }



/* 

GetImageUrl

 */

 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);
	}

 }


/* 

chooseCharSubset

 */

 // 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);
	}
 }

/* 

SetArrayAccessKeys

 */

// 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","");
		}
	}
 }


/* 

AddMyChars

 */

 //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;
 }





/* 

addCharSubsetMenu

 */

/*
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)
 }

/* 

elementMoveto

 */

 //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) {};
	 }
 }



/* 

fixToolbar

 */

 //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' );
 }




/* 

customizeWiktionary

  */

 // Menü-Einfügung
 function customizeWiktionary() {
	AddMyChars();
	addCharSubsetMenu();
        fixToolbar();
 }


 $(customizeWiktionary);
 $(ProofReading);


 // END import Onlyifediting-functions
 // ============================================================

$( LinkFA );
$( createNavigationBarToggleButton );
$( interwikiExtra );
$( BilingualLink );
$( PageNumbers );
$( Annotations );
$( LineBreaks );
$( ProofReadLink );


/* 

mainpg

 */

//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);


/* 

doRedirect

 */

/* 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 ) ;
   }
}


/* 

fixEditSectionWikifiedLinks

 */

// 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
}


/* 

mainCustomizeWiktionary

 */

/* do any Wiktionary-specific customizations */
function mainCustomizeWiktionary() {
  doRedirect();
  fixEditSectionWikifiedLinks();
}
$(mainCustomizeWiktionary) ;


/* 

Kill Main Page

 */

//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; }');
about
Talk
About O
aboutpage
Talk
Wiktionary:About Wikirječnik:O Wikirječniku
aboutsite
Talk
About Wiktionary O Wikirječniku
accesskey-addsection
Talk
+ ⧼Accesskey-addsection⧽
accesskey-anontalk
Talk
n ⧼Accesskey-anontalk⧽
accesskey-anonuserpage
Talk
. ⧼Accesskey-anonuserpage⧽
accesskey-article
Talk
a ⧼Accesskey-article⧽
accesskey-compareselectedversions
Talk
v v
accesskey-contributions
Talk
&lt;accesskey-contributions&gt; ⧼Accesskey-contributions⧽
accesskey-currentevents
Talk
&lt;accesskey-currentevents&gt; ⧼Accesskey-currentevents⧽
accesskey-delete
Talk
d ⧼Accesskey-delete⧽
accesskey-edit
Talk
e ⧼Accesskey-edit⧽
accesskey-emailuser
Talk
&lt;accesskey-emailuser&gt; ⧼Accesskey-emailuser⧽
accesskey-help
Talk
&lt;accesskey-help&gt; ⧼Accesskey-help⧽
accesskey-history
Talk
h ⧼Accesskey-history⧽
accesskey-login
Talk
o ⧼Accesskey-login⧽
accesskey-logout
Talk
o ⧼Accesskey-logout⧽
accesskey-mainpage
Talk
z ⧼Accesskey-mainpage⧽
accesskey-minoredit
Talk
i i
accesskey-move
Talk
m ⧼Accesskey-move⧽
accesskey-mycontris
Talk
y ⧼Accesskey-mycontris⧽
accesskey-mytalk
Talk
n ⧼Accesskey-mytalk⧽
accesskey-portal
Talk
&lt;accesskey-portal&gt; ⧼Accesskey-portal⧽
accesskey-preferences
Talk
&lt;accesskey-preferences&gt; ⧼Accesskey-preferences⧽
accesskey-preview
Talk
p p
accesskey-protect
Talk
= ⧼Accesskey-protect⧽
accesskey-randompage
Talk
x ⧼Accesskey-randompage⧽
accesskey-recentchanges
Talk
r ⧼Accesskey-recentchanges⧽
accesskey-recentchangeslinked
Talk
c ⧼Accesskey-recentchangeslinked⧽
accesskey-save
Talk
s s
accesskey-search
Talk
f f
accesskey-sitesupport
Talk
&lt;accesskey-sitesupport&gt; ⧼Accesskey-sitesupport⧽
accesskey-specialpage
Talk
&lt;accesskey-specialpage&gt; ⧼Accesskey-specialpage⧽
accesskey-specialpages
Talk
q ⧼Accesskey-specialpages⧽
accesskey-talk
Talk
t ⧼Accesskey-talk⧽
accesskey-undelete
Talk
d ⧼Accesskey-undelete⧽
accesskey-unwatch
Talk
w ⧼Accesskey-unwatch⧽
accesskey-upload
Talk
u s
accesskey-userpage
Talk
. ⧼Accesskey-userpage⧽
accesskey-viewsource
Talk
e ⧼Accesskey-viewsource⧽
accesskey-watch
Talk
w w
accesskey-watchlist
Talk
l ⧼Accesskey-watchlist⧽
accesskey-whatlinkshere
Talk
b ⧼Accesskey-whatlinkshere⧽
accmailtext
Talk
The Password for '$1' has been sent to $2. Nasumično odabrana lozinka za $1 poslana je na $2. Lozinka se može promijeniti nakon prijave.
accmailtitle
Talk
Password sent. Šifra poslana.
actioncomplete
Talk
Action complete Radnja je izvršena
addedwatch
Talk
Added to watchlist Dodato u spisak vaših praćenih stranica
addedwatchtext
Talk
The page "$1" has been added to your [[Special:Watchlist|watchlist]]. Future changes to this page and its associated Talk page will be listed there, and the page will appear '''bolded''' in the [[Special:Recentchanges|list of recent changes]] to make it easier to pick out. <p>If you want to remove the page from your watchlist later, click "Stop watching" in the sidebar. Stranica "$1" i njena stranica za razgovor dodani su na Vaš spisak praćenja.
addsection
Talk
+ +
administrators
Talk
Wiktionary:Administrators Vikirječnik:Administratori
affirmation
Talk
I affirm that the copyright holder of this file agrees to license it under the terms of the $1. ⧼Affirmation⧽
all
Talk
all sve
allmessages
Talk
All system messages Sve sistemske poruke
allmessagestext
Talk
This is a list of all system messages available in the MediaWiki: namespace. Ovo je spisak sistemskih poruka u dostupnih u imenskom prostoru MediaWiki. Posjetite lokalizaciju MediaWikija i translatewiki.net ako želite doprinijeti općoj lokalizaciji MediaWikija.
allpages
Talk
All pages Sve stranice
alphaindexline
Talk
$1 to $2 $1 do $2
alreadyloggedin
Talk
<font color=red><b>User $1, you are already logged in!</b></font><br /> Korisnik $1 je već prijavljen!
alreadyrolled
Talk
Cannot rollback last edit of [[$1]] by [[User:$2|$2]] ([[User talk:$2|Talk]]); someone else has edited or rolled back the page already. Last edit was by [[User:$3|$3]] ([[User talk:$3|Talk]]). Ne može se vratiti posljednja izmjena $1 od korisnika $2 (razgovor | doprinosi); neko je već izmijenio ili vratio članak na prethodnu provjerenu verziju. Posljednju izmjenu napravio je korisnik $3 (razgovor | doprinosi).
ancientpages
Talk
Oldest pages Najstarije stranice
and
Talk
and i
anontalk
Talk
Talk for this IP Razgovor
anontalkpagetext
Talk

''This is the discussion page for an anonymous user who has not created an account yet or who does not use it. We therefore have to use the numerical [[IP address]] to identify him/her. Such an IP address can be shared by several users. If you are an anonymous user and feel that irrelevant comments have been directed at you, please [[Special:Userlogin|create an account or log in]] to avoid future confusion with other anonymous users.''
anonymous
Talk
Anonymous user(s) of Wiktionary Anonimni korisnik Wikirječnik
article
Talk
Content page Članak
articleexists
Talk
A page of that name already exists, or the name you have chosen is not valid. Please choose another name. Stranica sa tim imenom već postoji ili ime koje ste odabrali nije ispravno. Molimo da odaberete drugačije ime.
articlepage
Talk
View content page Pogledaj članak
asksql
Talk
SQL query ⧼Asksql⧽
asksqltext
Talk
Use the form below to make a direct query of the database. Use single quotes ('like this') to delimit string literals. This can often add considerable load to the server, so please use this function sparingly. ⧼Asksqltext⧽
autoblocker
Talk
Autoblocked because you share an IP address with "$1". Reason "$2". Automatski ste blokirani jer dijelite IP adresu sa "$1". Razlog za blokiranje je: "$2"
badarticleerror
Talk
This action cannot be performed on this page. Ova radnja se ne može izvršiti na ovoj stranici.
badfilename
Talk
Image name has been changed to "$1". Ime datoteke je promijenjeno u "$1".
badfiletype
Talk
".$1" is not a recommended image file format. ".$1" nije preporučen format za sliku.
badipaddress
Talk
Invalid IP address Pogrešna IP adresa
badquery
Talk
Badly formed search query Loše oblikovan upit za pretragu
badquerytext
Talk
We could not process your query. This is probably because you have attempted to search for a word fewer than three letters long, which is not yet supported. It could also be that you have mistyped the expression, for example "fish and and scales". Please try another query. Nismo mogli da obradimo vaš upit. Ovo je vjerovatno zbog toga što ste pokušali da tražite riječ kraću od tri slova, što trenutno nije podržano. Takođe je moguće da ste pogrešno ukucali izraz, na primjer "riba ii krljušti". Molimo vas da pokušate nekim drugim upitom.
badretype
Talk
The passwords you entered do not match. Lozinke koje ste unijeli se ne poklapaju
badtitle
Talk
Bad title Loš naslov
badtitletext
Talk
The requested page title was invalid, empty, or an incorrectly linked inter-language or inter-wiki title. Zahtjevani naslov stranice je bio neispravan, prazan ili neispravno povezan međujezički ili interwiki naslov.
blanknamespace
Talk
(Main) (glavni)
blockedtext
Talk
Your user name or IP address has been blocked by $1. The reason given is this:<br />''$2''<p>You may contact $1 or one of the other [[Wiktionary:Administrators|administrators]] to discuss the block. Note that you may not use the "email this user" feature unless you have a valid email address registered in your [[Special:Preferences|user preferences]]. Your IP address is $3. Please include this address in any queries you make. Vaše korisničko ime ili IP adresa je blokirana od strane $1. Dati razlog je sljedeći:
$2

Možete kontaktirati $1 ili nekog drugog administratora da biste razgovarili o blokadi.

blockedtitle
Talk
User is blocked Korisnik je blokiran
blockip
Talk
Block user Blokiraj korisnika
blockipsuccesssub
Talk
Block succeeded Blokiranje je uspjelo
blockipsuccesstext
Talk
"$1" has been blocked. <br />See [[Special:Ipblocklist|IP block list]] to review blocks. $1 je blokiran.
Pogledajte spisak blokiranja za pregled blokiranja.
blockiptext
Talk
Use the form below to block write access from a specific IP address or username. This should be done only only to prevent vandalism, and in accordance with [[Wiktionary:Policy|policy]]. Fill in a specific reason below (for example, citing particular pages that were vandalized). Koristite formular ispod da blokirate pristup specifičnim IP adresama i korisničkim imenima. Blokiranje se koristi samo za prevenciju vandalizma i u skladu sa pravilima. Unesite konkretan razlog za blokiranje izpod.
blocklink
Talk
block blokiraj
blocklistline
Talk
$1, $2 blocked $3 (expires $4) $1, $2 blokirao korisnika $3 ($4)
blocklogentry
Talk
blocked "$1" with an expiry time of $2 Blokiran "$1". Dužina: $2
blocklogpage
Talk
Block_log Zapisnik blokiranja
blocklogtext
Talk
This is a log of user blocking and unblocking actions. Automatically blocked IP addresses are not be listed. See the [[Special:Ipblocklist|IP block list]] for the list of currently operational bans and blocks. Ispod je spisak blokiranja i deblokiranja korisnika. Automatski blokirane IP adrese nisu ispisane ispod. Pogledajte spisak blokiranja za spisak trenutnih zabrana i blokiranja.
bold_sample
Talk
Bold text ⧼Bold_sample⧽
bold_tip
Talk
Bold text ⧼Bold_tip⧽
booksources
Talk
Book sources Književni izvori
booksourcetext
Talk
Below is a list of links to other sites that sell new and used books, and may also have further information about books you are looking for.Wiktionary is not affiliated with any of these businesses, and this list should not be construed as an endorsement. Ispod je spisak veza na druge sajtove koji prodaju nove i korištene knjige, i takođe mogu imati daljnje informacije o knjigama koje tražite. Wikirječnik ne sarađuje ni se jednim od ovih preduzeća, i ovaj spisak ne treba da se shvati kao potvrda njihovog kvaliteta.
brokenredirects
Talk
Broken Redirects Pokvarena preusmjerenja
brokenredirectstext
Talk
The following redirects link to a non-existing pages. Sljedeća preusmjerenja vode na nepostojeće stranice:
bugreports
Talk
Bug reports Prijavite grešku
bugreportspage
Talk
Wiktionary:Bug_reports Wikirječnik:Prijave grešaka
bureaucratlog
Talk
Bureaucrat_log Historija_birokrata
bureaucratlogentry
Talk
Rights for user "$1" set "$2" Prava za korisnika $1 su promjenjena sa $2 u $3
bureaucrattext
Talk
The action you have requested can only be performed by sysops with "bureaucrat" status. ⧼Bureaucrattext⧽
bureaucrattitle
Talk
Bureaucrat access required Privilegije birokrate su neophodne
bydate
Talk
by date po datumu
byname
Talk
by name po imenu
bysize
Talk
by size po veličini
cachederror
Talk
The following is a cached copy of the requested page, and may not be up to date. Sljedeći podaci su pohranjeni u keš (cache) memoriji i moguće je da ne prikazuju trenutno stanje.
cancel
Talk
Cancel Otkaži
cannotdelete
Talk
Could not delete the page or image specified. (It may have already been deleted by someone else.) Ne mogu izbrisati stranicu ili datoteku "$1". Moguće je da ju je neko već izbrisao.
cantrollback
Talk
Cannot revert edit; last contributor is only author of this page. Ne mogu vratiti izmjenu; posljednji autor je ujedno i jedini.
categories
Talk
Categories Kategorije
category
Talk
category kategorija
category_header
Talk
Articles in category "$1" Stranice u kategoriji "$1"
changepassword
Talk
Change password Promijeni lozinku
changes
Talk
changes izmjene
columns
Talk
Columns Kolona:
commentedit
Talk
(comment) ⧼Commentedit⧽
compareselectedversions
Talk
Compare selected versions Uporedi označene verzije
confirm
Talk
Confirm Potvrdi
confirmcheck
Talk
Yes, I really want to delete this. ⧼Confirmcheck⧽
confirmdelete
Talk
Confirm delete Potvrdite brisanje
confirmdeletetext
Talk
You are about to permanently delete a page or image along with all of its history from the database. Please confirm that you intend to do this, that you understand the consequences, and that you are doing this in accordance with [[Wiktionary:Policy]]. Izbrisat ćete stranicu i njenu historiju. Potvrdite svoju namjeru, da razumijete posljedice i da ovo radite u skladu sa smjernicama.
confirmprotect
Talk
Confirm protection Potvrdite zaštitu
confirmprotecttext
Talk
Do you really want to protect this page? Da li zaista želite da zaštitite ovu stranicu?
confirmunprotect
Talk
Confirm unprotection Potvrdite oslobađanje zaštite
confirmunprotecttext
Talk
Do you really want to unprotect this page? Da li zaista želite da oslobodite zaštitu?
contextchars
Talk
Characters of context per line Karaktera konteksta po liniji:
contextlines
Talk
Lines to show per hit Linija po pogotku:
contribslink
Talk
contribs doprinosi
contribsub
Talk
For $1 Korisnik: $1
contributions
Talk
User contributions Doprinosi korisnika
copyright
Talk
Content is available under $1. Sadržaj je dostupan pod licencom $1 osim ako je navedeno drugačije.
copyrightpage
Talk
Wiktionary:Copyrights Wikirječnik:Autorska prava
copyrightpagename
Talk
Wiktionary copyright Wikirječnik Autorska prava
copyrightwarning
Talk
Please note that all contributions to Wiktionary are considered to be released under the GNU Free Documentation License (see $1 for details). If you don't want your writing to be edited mercilessly and redistributed at will, then don't submit it here.<br /> You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource. <strong>DO NOT SUBMIT COPYRIGHTED WORK WITHOUT PERMISSION!</strong> Za sve priloge poslate na Wikirječnik projekat smatramo da su objavljeni pod $2 (konsultujte $1 za detalje). Ukoliko ne želite da vaše stranice (prilozi) budu podložni izmjenama i slobodnom rasturanju i objavljivanju, nemojte ih postavljati ovdje. Također, postavljanje stranica podrazumijeva i vašu izjavu da ste ga napisali sami, ili da ste ga kopirali iz izvora u javnom domenu ili sličnog slobodnog izvora. NEMOJTE SLATI RAD ZAŠTIĆEN AUTORSKIM PRAVIMA BEZ DOZVOLE AUTORA!
couldntremove
Talk
Couldn't remove item '$1'... Ne može se ukloniti '$1'...
createaccount
Talk
Create new account Pravljenje računa
createaccountmail
Talk
by email Postavi privremenu, nasumičnu lozinku i pošalji mi je na navedenu adresu e-pošte
cur
Talk
cur tren
currentevents
Talk
Current events Novosti
currentrev
Talk
Current revision Trenutna verzija
databaseerror
Talk
Database error Greška u bazi podataka
dateformat
Talk
Date format Format datuma
dberrortext
Talk
A database query syntax error has occurred. This could be because of an illegal search query (see $5), or it may indicate a bug in the software. The last attempted database query was: <blockquote><tt>$1</tt></blockquote> from within function "<tt>$2</tt>". MySQL returned error "<tt>$3: $4</tt>". Desila se sintaksna greška upita baze. Ovo je moguće zbog ilegalnog upita, ili moguće greške u softveru. Posljednji pokušani upit je bio:

$1

iz funkcije "$2". MySQL je vratio grešku "$3: $4".
dberrortextcl
Talk
A database query syntax error has occurred. The last attempted database query was: "$1" from within function "$2". MySQL returned error "$3: $4". Desila se sintaksna greška upita baze. Posljednji pokušani upit je bio: "$1" iz funkcije "$2". MySQL je vratio grešku "$3: $4".
deadendpages
Talk
Dead-end pages Stranice bez unutrašnjih linkova
debug
Talk
Debug Ispravite greške
defaultns
Talk
Search in these namespaces by default: Pretražujte u sljedećim imenskim prostorima:
defemailsubject
Talk
Wiktionary e-mail $1 Vam je poslao/-la e-poruku s Wikirječnik
delete
Talk
Delete Izbriši
deletecomment
Talk
Reason for deletion Razlog:
deletedarticle
Talk
deleted "$1" deleted "$1"
deletedtext
Talk
"$1" has been deleted. See $2 for a record of recent deletions. Stranica "$1" je izbrisana. Pogledajte $2 za zapisnik nedavnih brisanja.
deleteimg
Talk
del obr
deletepage
Talk
Delete page Izbriši stranicu
deletesub
Talk
(Deleting "$1") (Brisanje stranice "$1")
deletethispage
Talk
Delete this page Izbriši ovu stranicu
deletionlog
Talk
deletion log zapisnik brisanja
dellogpage
Talk
Deletion_log Zapisnik brisanja
dellogpagetext
Talk
Below is a list of the most recent deletions. All times shown are server time (UTC). <ul> </ul> Ispod je spisak nedavno izbrisanih stavki.
developerspheading
Talk
For developer use only ⧼Developerspheading⧽
developertext
Talk
The action you have requested can only be performed by users with "developer" status. See $1. Akciju koju ste zatražili mogu izvesti samo korisnici sa "developer" statusom. Pogledajte $1.
developertitle
Talk
Developer access required Neophodan je developerski pristup
diff
Talk
diff razl
difference
Talk
(Difference between revisions) (Razlika između revizija)
disambiguations
Talk
Disambiguation pages Stranice za višeznačne odrednice
disambiguationspage
Talk
Wiktionary:Links_to_disambiguating_pages Šablon:Višeznačna odrednica
disambiguationstext
Talk
The following pages link to a <i>disambiguation page</i>. They should link to the appropriate topic instead.<br />A page is treated as dismbiguation if it is linked from $1.<br />Links from other namespaces are <i>not</i> listed here. Sljedeće stranice se povezuju sa višeznačnom odrednicom. Umjesto toga, one bi trebale da se povezuju sa odgovarajućom temom.
Stranica se tretira kao višeznačna odrednica ako je povezana sa $1.
Poveznice iz ostalih imenskih prostora nisu navedene ovdje.
disclaimerpage
Talk
Wiktionary:General_disclaimer Wikirječnik:Odricanje odgovornosti
disclaimers
Talk
Disclaimers Odricanje odgovornosti
doubleredirects
Talk
Double Redirects Dvostruka preusmjerenja
doubleredirectstext
Talk
<b>Attention:</b> This list may contain false positives. That usually means there is additional text with links below the first #REDIRECT.<br /> Each row contains links to the first and second redirect, as well as the first line of the second redirect text, usually giving the "real" target page, which the first redirect should point to. Ova stranica prikazuje stranice koje preusmjeravaju na druga preusmjerenja. Svaki red sadrži linkove na prvo i drugo preusmjerenje, kao i na odredišnu stranicu drugog preusmjerenja koja je obično "pravi" članak na koji bi prvo preusmjerenje trebalo upućivati. Precrtane stavke su riješene.
edit
Talk
Edit Uredi
editcomment
Talk
The edit comment was: "<i>$1</i>". Sažetak izmjene je bio: $1.
editconflict
Talk
Edit conflict: $1 Sukob izmjena: $1
editcurrent
Talk
Edit the current version of this page Uredite trenutnu verziju ove stranice
edithelp
Talk
Editing help Pomoć pri uređivanju stranice
edithelppage
Talk
Help:Editing Wikirječnik:Uređivanje
editing
Talk
Editing $1 Uređujete $1
editingold
Talk
<strong>WARNING: You are editing an out-of-date revision of this page. If you save it, any changes made since this revision will be lost.</strong>
PAŽNJA: Mijenjate stariju verziju ove stranice. Ako sačuvate trenutne izmjene, sve izmjene počevši od ove verzije će biti izgubljene!
editsection
Talk
edit uredi
editthispage
Talk
Edit this page Uredite ovu stranicu
emailflag
Talk
Disable e-mail from other users ⧼Emailflag⧽
emailforlost
Talk
Fields marked with a star (*) are optional. Storing an email address enables people to contact you through the website without you having to reveal your email address to them, and it can be used to send you a new password if you forget it.<br /><br />Your real name, if you choose to provide it, will be used for giving you attribution for your work. * Unošenje adrese e-pošte nije obavezno. Međutim, unos će omogućiti ljude da Vas kontaktiraju kroz sajt, a da ne morate da im otkrijete svoju adresu. Takođe će Vam pomoći ukoliko zaboravite svoju lozinku.
emailfrom
Talk
From Od:
emailmessage
Talk
Message Poruka:
emailpage
Talk
E-mail user Pošalji e-pismo korisniku
emailpagetext
Talk
If this user has entered a valid e-mail address in his or her user preferences, the form below will send a single message. The e-mail address you entered in your user preferences will appear as the "From" address of the mail, so the recipient will be able to reply. Ako je korisnik kojeg pokušavate da kontaktirate unio ispravnu e-poštansku adresu pri registraciji, možete njega ili nju kontaktirati putem ovog formulara. Adresa koju ste vi unijeli pri registraciji će biti adresa pošiljaoca, što će korisniku omogućiti da istim putem odgovori na vašu poruku. Vašu e-poštansku adresu možete promijeniti u vašim korisničkim podšenjima.
emailsend
Talk
Send Pošalji
emailsent
Talk
E-mail sent Poruka poslata
emailsenttext
Talk
Your e-mail message has been sent. Vaša poruka je poslata e-poštom.
emailsubject
Talk
Subject Naslov:
emailto
Talk
To Za:
emailuser
Talk
E-mail this user Pošalji e-poruku
enterlockreason
Talk
Enter a reason for the lock, including an estimate of when the lock will be released Unesite razlog za zaključavanje, uključujući procjenu vremena otključavanja
error
Talk
Error Greška
errorpagetitle
Talk
Error Greška
exbeforeblank
Talk
content before blanking was: sadržaj prije brisanja je bio: "$1"
exblank
Talk
page was empty stranica je bila prazna
excontent
Talk
content was: sadržaj je bio: "$1"
explainconflict
Talk
Someone else has changed this page since you started editing it. The upper text area contains the page text as it currently exists. Your changes are shown in the lower text area. You will have to merge your changes into the existing text. <b>Only</b> the text in the upper text area will be saved when you press "Save page". <p> Neko drugi je promijenio ovu stranicu otkad ste je Vi počeli mijenjati. Gornje tekstualno polje sadrži tekst stranice koji trenutno postoji. Vaše izmjene prikazane su u donjem tekstu. Morat ćete unijeti svoje promjene u postojeći tekst. Samo tekst u gornjem tekstualnom polju bit će objavljen kad kliknete "$1".
export
Talk
Export pages Izvoz stranica
exportcuronly
Talk
Include only the current revision, not the full history Uključi samo trenutnu verziju, ne cijelu historiju
exporttext
Talk
You can export the text and editing history of a particular page or set of pages wrapped in some XML; this can then be imported into another wiki running MediaWiki software, transformed, or just kept for your private amusement. Možete izvesti tekst i historiju jedne ili više stranica uklopljene u XML kod. Ovo se može uvesti u drugi wiki koristeći MediaWiki preko stranice uvoza. Za izvoz stranica unesite njihove naslove u polje ispod, jedan naslov po retku, i označite želite li trenutnu verziju zajedno sa svim ranijim, ili samo trenutnu verziju sa informacijom o zadnjoj promjeni. U drugom slučaju možete koristiti i vezu, npr. Posebno:Izvezi/Početna strana za stranicu Početna strana.
extlink_sample
Talk
http://www.example.com link title http://www.adresa.com opis adrese
extlink_tip
Talk
External link (remember http:// prefix) ⧼Extlink_tip⧽
faq
Talk
FAQ ČPP
faqpage
Talk
Wiktionary:FAQ Project:NPP
feedlinks
Talk
Feed: ⧼Feedlinks⧽
filecopyerror
Talk
Could not copy file "$1" to "$2". Ne mogu kopirati datoteku "$1" na "$2".
filedeleteerror
Talk
Could not delete file "$1". Ne mogu izbrisati datoteku "$1".
filedesc
Talk
Summary Sažetak
filename
Talk
Filename Ime datoteke
filenotfound
Talk
Could not find file "$1". Ne mogu pronaći datoteku "$1".
filerenameerror
Talk
Could not rename file "$1" to "$2". Ne mogu preimenovati datoteku "$1" u "$2".
filesource
Talk
Source Izvor:
filestatus
Talk
Copyright status Status autorskih prava:
fileuploaded
Talk
File "$1" uploaded successfully. Please follow this link: $2 to the description page and fill in information about the file, such as where it came from, when it was created and by whom, and anything else you may know about it. Datoteka "$1" je uspješno postavljena. Na slijedećoj stranici: $2 možete da unesete opis datoteke i informacije o porijeklu datoteke (gdje i kada je nastala, ko je kreirao istu i kada ili odakle je preuzeta) ili bilo koje ostale relevantne informacije o datoteci koji su vam poznati. Ako je ova datoteka slika, unesite je u članak na slijedeći način: [[Image:$1|thumb|Opis vaše slike]]
formerror
Talk
Error: could not submit form Greška: ne mogu poslati upitnik.
fromwikipedia
Talk
From Wiktionary iz Vikipedije
getimagelist
Talk
fetching image list pribavljam spisak slika
go
Talk
Go Idi
googlesearch
Talk
<!-- SiteSearch Google --> <FORM method=GET action="http://www.google.com/search"> <TABLE bgcolor="#FFFFFF"><tr><td> <A HREF="http://www.google.com/"> <IMG SRC="http://www.google.com/logos/Logo_40wht.gif" border="0" ALT="Google"></A> </td> <td> <INPUT TYPE=text name=q size=31 maxlength=255 value="$1"> <INPUT type=submit name=btnG VALUE="Google Search"> <font size=-1> <input type=hidden name=domains value="http://bs.wiktionary.org"><br /><input type=radio name=sitesearch value=""> WWW <input type=radio name=sitesearch value="http://bs.wiktionary.org" checked> http://bs.wiktionary.org <br /> <input type='hidden' name='ie' value='$2'> <input type='hidden' name='oe' value='$2'> </font> </td></tr></TABLE> </FORM> <!-- SiteSearch Google --> <form method="get" action="//www.google.com/search" id="googlesearch"> <input type="hidden" name="domains" value="//bs.wiktionary.org" /> <input type="hidden" name="num" value="50" /> <input type="hidden" name="ie" value="$2" /> <input type="hidden" name="oe" value="$2" /> <input type="text" name="q" size="31" maxlength="255" value="$1" /> <input type="submit" name="btnG" value="$3" />
<input type="radio" name="sitesearch" id="gwiki" value="//bs.wiktionary.org" checked="checked" /><label for="gwiki">Wikirječnik</label> <input type="radio" name="sitesearch" id="gWWW" value="" /><label for="gWWW">WWW</label>
</form>
guesstimezone
Talk
Fill in from browser Popuni iz preglednika
headline_sample
Talk
Headline text ⧼Headline_sample⧽
headline_tip
Talk
Level 2 headline ⧼Headline_tip⧽
help
Talk
Help Pomoć
helppage
Talk
Help:Contents Pomoć:Sadržaj
hide
Talk
hide Sakrij
hidetoc
Talk
hide sakrij
hist
Talk
hist hist
histlegend
Talk
Diff selection: mark the radio boxes of the versions to compare and hit enter or the button at the bottom.<br/> Legend: (cur) = difference with current version, (last) = difference with preceding version, M = minor edit. Objašnjenje: (tren) = razlika sa trenutnom verziom, (posl) = razlika sa prethodnom verziom, M = mala izmjena
history
Talk
Page history Historija stranice
history_short
Talk
History Historija
historywarning
Talk
Warning: The page you are about to delete has a history: Upozorenje: Stranica koju želite izbrisati ima historiju sa $1 izmjena:
hr_tip
Talk
Horizontal line (use sparingly) ⧼Hr_tip⧽
ignorewarning
Talk
Ignore warning and save file anyway. Zanemari upozorenja i sačuvaj datoteku
ilshowmatch
Talk
Show all images with names matching Prikaži sve slike sa odgovarajućim imenima
ilsubmit
Talk
Search Traži
image_sample
Talk
Example.jpg ⧼Image_sample⧽
image_tip
Talk
Embedded image ⧼Image_tip⧽
imagelinks
Talk
Image links Upotreba datoteke
imagelist
Talk
Image list Spisak slika
imagelisttext
Talk
Below is a list of $1 images sorted $2. Ispod je spisak od $1 datoteka poredanih $2.
imagepage
Talk
View image page Pogledaj stranicu datoteke
imagereverted
Talk
Revert to earlier version was successful. Ranija verzija slike je uspješno vraćena.
imgdelete
Talk
del izbr
imgdesc
Talk
desc opis
imghistlegend
Talk
Legend: (cur) = this is the current image, (del) = delete this old version, (rev) = revert to this old version. <br /><i>Click on date to see image uploaded on that date</i>. Objašnjenje: (tren) = ovo je trenutna slika, (izbr) = izbrišite ovu staru verziju, (vrt) = vratite na ovu staru verziju.
Kliknite na datum da vidite sliku poslatu tog dana.
imghistory
Talk
Image history Historija slike
imglegend
Talk
Legend: (desc) = show/edit image description. Legenda: (opis) = prikaži/izmijeni opis slike.
import
Talk
Import pages Uvoz stranica
importfailed
Talk
Import failed: $1 Uvoz nije uspio: $1
importhistoryconflict
Talk
Conflicting history revision exists (may have imported this page before) Postoji konfliktna historija revizija
importnotext
Talk
Empty or no text Stranica je prazna, ili bez teksta
importsuccess
Talk
Import succeeded! Uspješno ste uvezli stranicu!
importtext
Talk
Please export the file from the source wiki using the Special:Export utility, save it to your disk and upload it here. Izvezite datoteku iz izvornog wikija koristeći alat za izvoz. Sačuvajte je na svoj računar i postavite je ovdje.
infobox
Talk
Click a button to get an example text Kliknite na dugme da biste dobili primjer teksta
infobox_alert
Talk
Please enter the text you want to be formatted.\n It will be shown in the infobox for copy and pasting.\nExample:\n$1\nwill become:\n$2 ⧼Infobox_alert⧽
internalerror
Talk
Internal error Unutrašnja greška
intl
Talk
Interlanguage links Međujezičke veze
ip_range_invalid
Talk
Invalid IP range. Netačan opseg IP-adresa.
ipaddress
Talk
IP Address/username IP adresa/korisničko ime
ipb_expiry_invalid
Talk
Expiry time invalid. Neispravno vrijeme isteka.
ipbexpiry
Talk
Expiry ⧼Ipbexpiry⧽
ipblocklist
Talk
List of blocked IP addresses and usernames Blokirani korisnici
ipbreason
Talk
Reason Razlog:
ipbsubmit
Talk
Block this user Blokiraj ovog korisnika
ipusubmit
Talk
Unblock this address Ukloni ovu blokadu
ipusuccess
Talk
"$1" unblocked "$1" deblokiran
isbn
Talk
ISBN ⧼Isbn⧽
isredirect
Talk
redirect page preusmjerenje
italic_sample
Talk
Italic text ⧼Italic_sample⧽
italic_tip
Talk
Italic text ⧼Italic_tip⧽
iteminvalidname
Talk
Problem with item '$1', invalid name... Problem sa '$1', neispravno ime...
largefile
Talk
It is recommended that images not exceed 100k in size. Preporučuje se da slike ne pređu veličinu od 100K.
last
Talk
last preth
lastmodified
Talk
This page was last modified $1. Ova stranica je posljednji put izmjenjena $1
lastmodifiedby
Talk
This page was last modified $1 by $2. Ovu stranicu je posljednji put promjenio $2, dana $2.
lineno
Talk
Line $1: Red $1:
link_sample
Talk
Link title ⧼Link_sample⧽
link_tip
Talk
Internal link ⧼Link_tip⧽
linklistsub
Talk
(List of links) (Spisak poveznica)
linkshere
Talk
The following pages link to here: Sljedeće stranice vode na $2:
linkstoimage
Talk
The following pages link to this image: Sljedećih $1 stranica koristi ovu datoteku:
linktrail
Talk
/^([a-z]+)(.*)$/sD /^([a-z]+)(.*)$/sD
listform
Talk
list spisak
listusers
Talk
User list Spisak korisnika
loadhist
Talk
Loading page history Učitaje se historija stranice
loadingrev
Talk
loading revision for diff učitava se revizija za razliku
localtime
Talk
Local time display Lokalno vrijeme:
lockbtn
Talk
Lock database Zaključaj bazu
lockconfirm
Talk
Yes, I really want to lock the database. Da, zaista želim zaključati bazu.
lockdb
Talk
Lock database Zaključavanje baze podataka
lockdbsuccesssub
Talk
Database lock succeeded Baza je zaključana
lockdbsuccesstext
Talk
The database has been locked. <br />Remember to remove the lock after your maintenance is complete. Baza podataka je zaključana.
Ne zaboravite je otključati nakon što završite s održavanjem.
lockdbtext
Talk
Locking the database will suspend the ability of all users to edit pages, change their preferences, edit their watchlists, and other things requiring changes in the database. Please confirm that this is what you intend to do, and that you will unlock the database when your maintenance is done. Zaključavanje baze će svim korisnicima ukinuti mogućnost izmjene stranica, korisničkih postavki, praćenih članaka i svega ostalog što zahtijeva izmjenu u bazi. Potvrdite da je ovo zaista ono što namjeravate uraditi i da ćete otkučati bazu kad završite posao oko njenog održavanja.
locknoconfirm
Talk
You did not check the confirmation box. Niste potvrdili svoju namjeru.
login
Talk
Log in Prijava
loginend
Talk
&nbsp;
Registracija na Vikirječniku je brza i jednostavna i ima mnoge prednosti!
*Za registraciju, izaberite korisničko ime i šifru i kliknite na "Registrujte se". *Izbjegavajte korisnička imena koja su neprikladna ili zbunjujuća. *Izaberete čitka imena, a ne brojeve. *Izbjegavajte korisnička imena koja su ime političkog vođe, partije, slavne ličnosti i sličnih. Registrovani korisnici moraju samo popuniti korisničko ime i šifru. *Morate imati odobrene kolačiće (cookies) da bi ste pristupili na Vikirječnik. Adresa e-pošte nije obavezna. Ukoliko odaberete da je unesete, omogućeno će biti da vam ostali korisnici mogu slati poruke bez znanja vaše prave adrese e-pošte, i dozvoljava vam da ukoliko zaboravite lozinku možete da je vratite. Niko neće moći vidjeti adresu vaše e-pošte.
loginerror
Talk
Login error Greška pri prijavljivanju
loginpagetitle
Talk
User login Prijava korisnika
loginproblem
Talk
<b>There has been a problem with your login.</b><br />Try again! Bilo je problema sa vašim prijavljivanjem.
Probajte ponovo!
loginprompt
Talk
You must have cookies enabled to log in to Wiktionary. Morate imati kolačiće (cookies) omogućene da biste se prijavili na Wikirječnik.
loginreqtext
Talk
You must [[special:Userlogin|login]] to view other pages. Morate se prijaviti da biste pogledali druge stranice.
loginreqtitle
Talk
Login Required Potrebna je prijava
loginsuccess
Talk
You are now logged in to Wiktionary as "$1". Prijavili ste se na Wikirječnik kao "$1".
loginsuccesstitle
Talk
Login successful Prijava uspješna
logout
Talk
Log out Odjava
logouttext
Talk
You are now logged out. You can continue to use Wiktionary anonymously, or you can log in again as the same or as a different user. Note that some pages may continue to be displayed as if you were still logged in, until you clear your browser cache Sada ste odjavljeni.
Možete nastaviti da koristite Wikirječnik anonimno ili se ponovo prijaviti na isto ili drugo korisničko ime. Moguće je da će neke stranice nastaviti da prikazuju vaše ime kao da ste prijavljeni sve dok ne ispraznite keš (cache) memoriju vašeg brauzera.
logouttitle
Talk
User logout Odjavite se
lonelypages
Talk
Orphaned pages Siročad
longpages
Talk
Long pages Duge stranice
longpagewarning
Talk
WARNING: This page is $1 kilobytes long; some browsers may have problems editing pages approaching or longer than 32kb. Please consider breaking the page into smaller sections. PAŽNJA: Ova stranica je duga $1 kilobajta. Neki brauzeri mogu imati problema kad uređujete stranice skoro ili duže od 32 kb. Razmislite o podjeli stranice na manje dijelove.
mailerror
Talk
Error sending mail: $1 Greška pri slanju e-pošte: $1
mailmypassword
Talk
Mail me a new password Postavi novu lozinku
mailnologin
Talk
No send address Nema adrese za slanje
mailnologintext
Talk
You must be <a href="{{localurl:Special:Userlogin">logged in</a> and have a valid e-mail address in your <a href="/wiki/Special:Preferences">preferences</a> to send e-mail to other users. Morate biti prijavljeni i imati ispravnu adresu e-pošte u vašim podešavanjima da biste slali e-poštu drugim korisnicima.
mainpage
Talk
Main Page Početna strana
mainpagedocfooter
Talk
Please see [http://meta.wikipedia.org/wiki/MediaWiki_i18n documentation on customizing the interface] and the [http://meta.wikipedia.org/wiki/MediaWiki_User%27s_Guide User's Guide] for usage and configuration help. ⧼Mainpagedocfooter⧽
mainpagetext
Talk
Wiki software successfully installed. Viki softver is uspješno instaliran.
maintenance
Talk
Maintenance page ⧼Maintenance⧽
maintenancebacklink
Talk
Back to Maintenance Page ⧼Maintenancebacklink⧽
maintnancepagetext
Talk
This page includes several handy tools for everyday maintenance. Some of these functions tend to stress the database, so please do not hit reload after every item you fixed ;-) ⧼Maintnancepagetext⧽
makesysop
Talk
Make a user into a sysop Dodijelite administratorska prava korisniku
makesysopfail
Talk
<b>User "$1" could not be made into a sysop. (Did you enter the name correctly?)</b> Korisnik "$1" nije mogao dobiti administratorska prava. (Da li ste pravo unijeli ime?)
makesysopname
Talk
Name of the user: Ime korisnika:
makesysopok
Talk
<b>User "$1" is now a sysop</b> Korisnik "$1" je sad administrator
makesysopsubmit
Talk
Make this user into a sysop Dodajte ovom korisniku administratorska prava
makesysoptext
Talk
This form is used by bureaucrats to turn ordinary users into administrators. Type the name of the user in the box and press the button to make the user an administrator Ovaj formular se koristi od strane birokrata da se obični korisnici pretvore u administratore. Unesite ime korisnika u kutiju i kliknite dugme da bi korisnik postao administrator.
makesysoptitle
Talk
Make a user into a sysop Pretvorite korisnika u administratora
matchtotals
Talk
The query "$1" matched $2 page titles and the text of $3 pages. Upit "$1" je nađen u "$2" naslova članaka i tekst $3 članaka.
math
Talk
Rendering math Prikaz matematičkih simbola
math_bad_output
Talk
Can't write to or create math output directory ⧼Math_bad_output⧽
math_bad_tmpdir
Talk
Can't write to or create math temp directory ⧼Math_bad_tmpdir⧽
math_failure
Talk
Failed to parse Parsiranje nije uspjelo
math_image_error
Talk
PNG conversion failed; check for correct installation of latex, dvips, gs, and convert ⧼Math_image_error⧽
math_lexing_error
Talk
lexing error ⧼Math_lexing_error⧽
math_notexvc
Talk
Missing texvc executable; please see math/README to configure. ⧼Math_notexvc⧽
math_sample
Talk
Insert formula here ⧼Math_sample⧽
math_syntax_error
Talk
syntax error sintaksna greška
math_tip
Talk
Mathematical formula (LaTeX) ⧼Math_tip⧽
math_unknown_error
Talk
unknown error nepoznata greška
math_unknown_function
Talk
unknown function nepoznata funkcija "$1"
media_sample
Talk
Example.mp3 ⧼Media_sample⧽
media_tip
Talk
Media file link ⧼Media_tip⧽
minlength
Talk
Image names must be at least three letters. Imena fajlova moraju imati bar tri slova.
minoredit
Talk
This is a minor edit Ovo je manja izmjena
minoreditletter
Talk
M m
mispeelings
Talk
Pages with misspellings ⧼Mispeelings⧽
mispeelingspage
Talk
List of common misspellings ⧼Mispeelingspage⧽
mispeelingstext
Talk
The following pages contain a common misspelling, which are listed on $1. The correct spelling might be given (like this). ⧼Mispeelingstext⧽
missingarticle
Talk
The database did not find the text of a page that it should have found, named "$1". <p>This is usually caused by following an outdated diff or history link to a page that has been deleted. <p>If this is not the case, you may have found a bug in the software. Please report this to an administrator, making note of the URL. Baza nije mogla naći tekst stranice koji je trebala da nađe, nazvan "$1". Ovo je obično izazvano praćenjem zastarijelog "razl" ili veze ka historiji stranice koja je izbrisana. Ako ovo nije slučaj, možda ste pronašli grešku u softveru. Molimo Vas da prijavite ovo jednom od administratora, zajedno sa URL-om.
missingimage
Talk
<b>Missing image</b><br /><i>$1</i> Ovdje nedostaje slika
$1
missinglanguagelinks
Talk
Missing Language Links Nedostajuće jezičke veze
missinglanguagelinksbutton
Talk
Find missing language links for Nađite nedostajuće jezičke veze za
missinglanguagelinkstext
Talk
These pages do <i>not</i> link to their counterpart in $1. Redirects and subpages are <i>not</i> shown. Ove stranice nisu povezane sa odgovarajućim stranicama u $1. Preusmjerenja i podstranice nisu prikazani.
moredotdotdot
Talk
More... Više...
move
Talk
Move Premjesti
movearticle
Talk
Move page Premjestite stranicu
movedto
Talk
moved to premještena na
movenologin
Talk
Not logged in Niste prijavljeni
movenologintext
Talk
You must be a registered user and <a href="/wiki/Special:Userlogin">logged in</a> to move a page. Morate biti registrirani korisnik i prijavljeni da biste premjestili stranicu.
movepage
Talk
Move page Premjestite stranicu
movepagebtn
Talk
Move page Premjesti stranicu
movepagetalktext
Talk
The associated talk page, if any, will be automatically moved along with it '''unless:''' *You are moving the page across namespaces, *A non-empty talk page already exists under the new name, or *You uncheck the box below. In those cases, you will have to move or merge the page manually if desired. Ako označite ovu kutijicu, odgovarajuća stranica za razgovor, ako postoji, automatski će biti premještena na novi naziv, osim ako već postoji sadržaj na odredišnoj stranici za razgovor. U tom slučaju, morat ćete ručno premjestiti ili prekopirati stranicu ako to želite.
movepagetext
Talk
Using the form below will rename a page, moving all of its history to the new name. The old title will become a redirect page to the new title. Links to the old page title will not be changed; be sure to [[Special:Maintenance|check]] for double or broken redirects. You are responsible for making sure that links continue to point where they are supposed to go. Note that the page will '''not''' be moved if there is already a page at the new title, unless it is empty or a redirect and has no past edit history. This means that you can rename a page back to where it was just renamed from if you make a mistake, and you cannot overwrite an existing page. <b>WARNING!</b> This can be a drastic and unexpected change for a popular page; please be sure you understand the consequences of this before proceeding. Korištenjem ovog formulara možete preimenovati stranicu, premještajući cijelu historiju na novo ime. Članak pod starim imenom postat će stranica koja preusmjerava na članak pod novim imenom. Možete automatski izmijeniti preusmjerenje do izvornog naslova. Ako se ne odlučite na to, provjerite dvostruka ili neispravna preusmjeravanja. Dužni ste provjeriti da svi linkovi i dalje nastave voditi na prave stranice. Imajte na umu da članak neće biti premješten ako već postoji članak pod imenom na koje ga namjeravate preusmjeriti osim u slučaju stranice za preusmjeravanje koja nema nikakvih starih izmjena. To znači da možete vratiti stranicu na prethodno mjesto ako pogriješite, ali ne možete zamijeniti postojeću stranicu. Napomena: Ovo može biti drastična i neočekivana promjena kad su u pitanju popularne stranice. Molimo da dobro razmislite prije no što premjestite stranicu.
movetalk
Talk
Move "talk" page as well, if applicable. Premjesti i stranicu za razgovor
movethispage
Talk
Move this page Premjesti ovu stranicu
mycontris
Talk
My contributions Doprinosi
mypage
Talk
My page Stranica
mytalk
Talk
My talk Razgovor
navigation
Talk
Navigation Navigacija
nbytes
Talk
$1 bytes $1 bajtova
nchanges
Talk
$1 changes $1 izmjena
newarticle
Talk
(New) (Novi)
newarticletext
Talk
You've followed a link to a page that doesn't exist yet. To create the page, start typing in the box below (see the [[Wiktionary:Help|help page]] for more info). If you are here by mistake, just click your browser's '''back''' button.
Wikirječnik nema stranicu All system messages. * Da započnete stranicu, koristite prostor ispod i kad završite, pritisnite "Sačuvaj". Vaše izmjene će odmah biti vidljive. * Ako ste novi na Wikirječniku, molimo Vas da pogledate pomoćnu stranicu, ili koristite igralište za eksperimentaciju.
newmessages
Talk
You have $1. Imate $1.
newmessageslink
Talk
new messages nove poruke
newpage
Talk
New page Nova stranica
newpageletter
Talk
N N
newpages
Talk
New pages Nove stranice
newpassword
Talk
New password Nova lozinka:
newtitle
Talk
To new title Novi naslov:
newusersonly
Talk
(new users only) (samo novi korisnici)
next
Talk
next sljed
nextn
Talk
next $1 sljedećih $1
nlinks
Talk
$1 links $1 linkova
noaffirmation
Talk
You must affirm that your upload does not violate any copyrights. ⧼Noaffirmation⧽
noarticletext
Talk
(There is currently no text in this page)
Wikirječnik još nema ovu stranicu. * Da započnete stranicu, kliknite uredite ovu stranicu. * Možda All system messages postoji na Wikipediji. * Ukoliko ste napravili ovu stranicu u posljednjih nekoliko minuta i još se nije pojavila, postoji mogućnost da je server u zastoju zbog osvježavanja baze podataka. Molimo da probate sa osvježavanjem ili sačekajte i provjerite kasnije prije ponovnog pravljenja stranice. * Ako ste napravili stranicu pod ovim imenom ranije, moguće je da je bila izbrisana. Potražite Šablon:All system messages u spisku brisanja. Alternativno, provjerite ovdje.
noblockreason
Talk
You must supply a reason for the block. ⧼Noblockreason⧽
noconnect
Talk
Sorry! The wiki is experiencing some technical difficulties, and cannot contact the database server. Žao nam je! Viki ima neke tehničke poteškoće, i ne može da se poveže sa serverom baze.
nocontribs
Talk
No changes were found matching these criteria. Nema izmjena koje odgovaraju navedenim kriterijima.
nocookieslogin
Talk
Wiktionary uses cookies to log in users. You have cookies disabled. Please enable them and try again. Wikirječnik koristi kolačiće (cookies) za prijavu korisnika. Vama su kolačići onemogućeni. Omogućite ih i pokušajte ponovo.
nocookiesnew
Talk
The user account was created, but you are not logged in. Wiktionary uses cookies to log in users. You have cookies disabled. Please enable them, then log in with your new username and password. Korisnički račun je napravljen, ali niste prijavljeni. Wikirječnik koristi kolačiće (cookies) za prijavu korisnika. Vama su kolačići onemogućeni. Omogućite ih pa se onda prijavite s novim korisničkim imenom i lozinkom.
nocreativecommons
Talk
Creative Commons RDF metadata disabled for this server. Creative Commons RDF metapodaci onemogućeni za ovaj server.
nodb
Talk
Could not select database $1 Ne mogu da izaberem bazu $1
nodublincore
Talk
Dublin Core RDF metadata disabled for this server. Dublin Core RDF metapodaci onemogućeni za ovaj server.
noemail
Talk
There is no e-mail address recorded for user "$1". Ne postoji adresa e-pošte za korisnika "$1".
noemailtext
Talk
This user has not specified a valid e-mail address, or has chosen not to receive e-mail from other users. Ovaj korisnik nije naveo ispravnu adresu e-pošte.
noemailtitle
Talk
No e-mail address Nema adrese e-pošte
nogomatch
Talk
No page with this exact title exists, trying full text search. Nema stranice sa takvim imenom. Možete da napravite članak sa tim naslovom ili da stavite zahtjev za ovaj članak ili potražite na drugim stranicama. ::*Opomena: Nemojte da kopirate riječi u Vikirječnik iz raznih rječnika za koje nemate dozvolu! ::*Puna imena ljudi? Zapamtite da mi nismo Vikipedija.
nohistory
Talk
There is no edit history for this page. Ne postoji historija izmjena za ovu stranicu.
nolinkshere
Talk
No pages link to here. Nijedna stranica nije povezana sa $2.
nolinkstoimage
Talk
There are no pages that link to this image. Nema stranica koje koriste ovu datoteku.
noname
Talk
You have not specified a valid user name. Niste izabrali ispravno korisničko ime.
nonefound
Talk
<strong>Note</strong>: unsuccessful searches are often caused by searching for common words like "have" and "from", which are not indexed, or by specifying more than one search term (only pages containing all of the search terms will appear in the result). Pažnja: neuspješne pretrage su često izazvane traženjem čestih riječi kao "je" ili "od", koje nisu indeksirane, ili navođenjem više od jednog izraza za traženje (samo stranice koje sadrže sve izraze koji se traže će se pojaviti u rezultatima).
nospecialpagetext
Talk
You have requested a special page that is not recognized by the wiki. Tražili ste neispravnu posebnu stranicu. Spisak ispravnih posebnih stranica se može naći na Posebne stranice.
nosuchaction
Talk
No such action Ova radnja ne postoji
nosuchactiontext
Talk
The action specified by the URL is not recognized by the wiki Akcija navedena u URL-u nije prepoznata od strane Wikirječnik softvera.
nosuchspecialpage
Talk
No such special page Nema takve posebne stranice
nosuchuser
Talk
There is no user by the name "$1". Check your spelling, or use the form below to create a new user account. Ne postoji korisnik s imenom "$1". Korisnička imena razlikuju velika i mala slova. Provjerite jeste li ga tačno upisali ili otvorite novi račun.
notacceptable
Talk
The wiki server can't provide data in a format your client can read. Viki server ne može da pruži podatke u onom formatu koji Vaš klijent može da pročita.
notanarticle
Talk
Not a content page Nije stranica sa sadržajem
notargettext
Talk
You have not specified a target page or user to perform this function on. Niste naveli ciljnu stranicu ili korisnika na kome bi se izvela ova funkcija.
notargettitle
Talk
No target Nema cilja
note
Talk
<strong>Note:</strong> Pažnja:
notextmatches
Talk
No page text matches Tekst ni jednog članka ne sadrži upit
notitlematches
Talk
No page title matches Naslov ni jednog članka ne odgovara upitu
notloggedin
Talk
Not logged in Niste prijavljeni
nowatchlist
Talk
You have no items on your watchlist. Nemate ništa na svom spisku praćenih članaka.
nowiki_sample
Talk
Insert non-formatted text here ⧼Nowiki_sample⧽
nowiki_tip
Talk
Ignore wiki formatting ⧼Nowiki_tip⧽
nstab-category
Talk
Category Kategorija
nstab-help
Talk
Help Pomoć
nstab-image
Talk
Image Datoteka
nstab-main
Talk
Article Stranica
nstab-media
Talk
Media Medija
nstab-mediawiki
Talk
Message Poruka
nstab-special
Talk
Special Posebna stranica
nstab-template
Talk
Template Šablon
nstab-user
Talk
User page Korisnička stranica
nstab-wp
Talk
About Članak
nviews
Talk
$1 views $1 puta pogledano
ok
Talk
OK U redu
oldpassword
Talk
Old password Stara lozinka:
orig
Talk
orig ⧼Orig⧽
orphans
Talk
Orphaned pages Siročići
othercontribs
Talk
Based on work by $1. Bazirano na radu od strane korisnika $1.
otherlanguages
Talk
Other languages Drugi jezici
pagemovedsub
Talk
Move succeeded Premještanje uspjelo
pagemovedtext
Talk
Page "[[$1]]" moved to "[[$2]]". Stranica "$1" premještena je na "$2".
pagetitle
Talk
$1 - Wiktionary $1 - Wikirječnik
passwordremindertext
Talk
Someone (probably you, from IP address $1) requested that we send you a new Wiktionary login password. The password for user "$2" is now "$3". You should log in and change your password now. Neko (vjerovatno Vi, sa IP adrese $1) je zahtjevao da vam pošaljemo novu Wikirječnik šifru za prijavljivanje na bs.wiktionary.org. Šifra za korisnika "$2" je sad "$3". Sada treba da se prijavite i promjenite šifru. Ako je neko drugi napravio ovaj zahtjev ili ako ste se sjetili vaše šifre i ne želite više da je promjenite, možete da ignorišete ovu poruku i da nastavite koristeći vašu staru šifru.
passwordremindertitle
Talk
Password reminder from Wiktionary Privremena lozinka za Wikirječnik
passwordsent
Talk
A new password has been sent to the e-mail address registered for "$1". Please log in again after you receive it. Nova lozinka poslana je na adresu e-pošte korisnika "$1". Molimo Vas da se prijavite nakon što je primite.
perfcached
Talk
The following data is cached and may not be completely up to date: Sljedeći podaci su keširani i možda neće biti u potpunosti ažurirani. Keš sadrži najviše $1 rezultata.
perfdisabled
Talk
Sorry! This feature has been temporarily disabled because it slows the database down to the point that no one can use the wiki. ⧼Perfdisabled⧽
perfdisabledsub
Talk
Here's a saved copy from $1: Ovdje je sačuvana kopija $1:
personaltools
Talk
Personal tools Lični alati
popularpages
Talk
Popular pages Popularne stranice
portal
Talk
Community portal Vrata zajednice
portal-url
Talk
Wiktionary:Community Portal Wikirječnik:Vrata zajednice
postcomment
Talk
Post a comment Pošaljite komentar
poweredby
Talk
Wiktionary is powered by [http://www.mediawiki.org/ MediaWiki], an open source wiki engine. Wikirječnik omogućuje MediaWiki, wikisoftver slobodnog kôda.
powersearch
Talk
Search Traži
powersearchtext
Talk
Search in namespaces :<br /> $1<br /> $2 List redirects &nbsp; Search for $3 $9 Pretraga u imenskim prostorima :
$1
$2 Izlistajte preusmjerenja   Tražite $3 $9
preferences
Talk
Preferences Postavke
prefs-help-userdata
Talk
* <strong>Real name</strong> (optional): if you choose to provide it this will be used for giving you attribution for your work.<br/> * <strong>Email</strong> (optional): Enables people to contact you through the website without you having to reveal your email address to them, and it can be used to send you a new password if you forget it. * Pravo ime (neobavezno): ako date ovu informaciju, biće korišćena za obilježavanje rada.
* E-pošta (neobavezno): Omogućuje druge da Vas kontaktiraju kroz sajt a da ne morate da im otkrijete svoju adresu. Takođe će Vam pomoći ako zaboravite svoju lozinku.
prefs-misc
Talk
Misc settings Razno
prefs-personal
Talk
User data Profil
prefs-rc
Talk
Recent changes and stub display Nedavne izmjene
prefslogintext
Talk
You are logged in as "$1". Your internal ID number is $2. See [[Wiktionary:User preferences help]] for help deciphering the options. Prijavljeni ste kao "$1". Vaš interni ID broj je $2. Pogledajte Vikirječnik:Pomoć oko korisničkih podešavanja za pomoć oko dešifrovanja mogućnosti.
prefsnologin
Talk
Not logged in Niste prijavljeni
prefsnologintext
Talk
You must be <a href="/wiki/Special:Userlogin">logged in</a> to set user preferences. Morate biti prijavljeni da biste podešavali korisnička podešavanja.
prefsreset
Talk
Preferences have been reset from storage. Podešavanja su vraćena na prvotne vrijednosti.
preview
Talk
Preview Pregled stranice
previewconflict
Talk
This preview reflects the text in the upper text editing area as it will appear if you choose to save. Ovaj pregled prikazuje kako će tekst u gornjem polju izgledati ako odlučite sačuvati stranicu.
previewnote
Talk
Remember that this is only a preview, and has not yet been saved! Ne zaboravite da je ovo samo pregled. Izmjene još nisu objavljene!
prevn
Talk
previous $1 prethodnih $1
printableversion
Talk
Printable version Za štampanje
printsubtitle
Talk
(From http://bs.wiktionary.org) (Sa //bs.wiktionary.org)
protect
Talk
Protect Zaštiti
protectcomment
Talk
Reason for protecting Razlog:
protectedarticle
Talk
protected [[$1]] protected "$1"
protectedpage
Talk
Protected page Zaštićena stranica
protectedpagewarning
Talk
WARNING: This page has been locked so that only users with sysop privileges can edit it. Be sure you are following the <a href='/w/wiki.phtml/Wiktionary:Protected_page_guidelines'>protected page guidelines</a>.
protectedtext
Talk
This page has been locked to prevent editing; there are a number of reasons why this may be so, please see [[Wiktionary:Protected page]]. You can view and copy the source of this page:
protectlogpage
Talk
Protection_log Zapisnik zaštite
protectlogtext
Talk
Below is a list of page locks/unlocks. See [[Wiktionary:Protected page]] for more information. Ispod je spisak promjena zaštićenja stranice. Pogledajte spisak zaštićenih stranica za pregled trenutno zaštićenih stranica.
protectpage
Talk
Protect page Zaštitite stranicu
protectreason
Talk
(give a reason) (dajte razlog)
protectsub
Talk
(Protecting "$1") (Zaštićuje se "$1")
protectthispage
Talk
Protect this page Zaštiti ovu stranicu
proxyblocker
Talk
Proxy blocker Zaštita od proxya
proxyblockreason
Talk
Your IP address has been blocked because it is an open proxy. Please contact your Internet service provider or tech support and inform them of this serious security problem. Vaša IP adresa je blokirana jer je ona otvoreni proxy. Molimo vas da kontaktirate vašeg davatelja internetskih usluga ili tehničku podršku i obavijestite ih o ovom ozbiljnom sigurnosnom problemu.
proxyblocksuccess
Talk
Done. Proksi uspješno blokiran.
qbbrowse
Talk
Browse Potraži
qbedit
Talk
Edit Uredi
qbfind
Talk
Find Pronađi
qbmyoptions
Talk
My pages Moje opcije
qbpageinfo
Talk
Context Informacije o stranici
qbpageoptions
Talk
This page Opcije stranice
qbsettings
Talk
Quickbar settings Podešavanja navigacione palete
qbspecialpages
Talk
Special pages Posebne stranice
querybtn
Talk
Submit query Pošaljite upit
querysuccessful
Talk
Query successful Upit uspješan
randompage
Talk
Random page Nasumična stranica
range_block_disabled
Talk
The sysop ability to create range blocks is disabled. Administratorska mogućnost da blokira grupe je isključena.
rchide
Talk
in $4 form; $1 minor edits; $2 secondary namespaces; $3 multiple edits. u $4 obliku; $1 male izmjene; $2 sekundarni imenski prostori; $3 višestruke izmjene.
rclinks
Talk
Show last $1 changes in last $2 days<br />$3 Prikaži posljednjih $1 izmjena u posljednjih $2 dana
rclistfrom
Talk
Show new changes starting from $1 Prikaži nove izmjene počev od $3 u $2
rcliu
Talk
; $1 edits from logged in users ; $1 izmjena od prijavljenih korisnika
rcloaderr
Talk
Loading recent changes Učitavaju se nedavne izmjene
rclsub
Talk
(to pages linked from "$1") (na stranice povezane sa "$1")
rcnote
Talk
Below are the last <strong>$1</strong> changes in last <strong>$2</strong> days. Ispod je najskorijih $1 izmjena u posljednjih $2 dana.
rcnotefrom
Talk
Below are the changes since <b>$2</b> (up to <b>$1</b> shown). Ispod su izmjene od $3, $4 (do $1 prikazano).
readonly
Talk
Database locked Baza je zaključana
readonlytext
Talk
The database is currently locked to new entries and other modifications, probably for routine database maintenance, after which it will be back to normal. The administrator who locked it offered this explanation: <p>$1 Baza podataka trenutno je zaključana za nove unose i druge izmjene, vjerovatno zbog rutinskog održavanja, nakon čega će biti vraćena u uobičajeno stanje. Sistemski administrator koji ju je zaključao naveo je sljedeće objašnjenje: $1
readonlywarning
Talk
WARNING: The database has been locked for maintenance, so you will not be able to save your edits right now. You may wish to cut-n-paste the text into a text file and save it for later. Upozorenje: Baza je zaključana zbog održavanja, tako da nećete moći da objavite svoje izmjene za sada. Možda želite da kopirate i nalijepite tekst u tekst editor i sačuvate ga za kasnije. Administrator koji je zaključao bazu je naveo sljedeće objašnjenje: $1
recentchanges
Talk
Recent changes Nedavne izmjene
recentchangescount
Talk
Number of titles in recent changes Broj izmjena na nedavnim izmjenama:
recentchangeslinked
Talk
Related changes Srodne izmjene
recentchangestext
Talk
Track the most recent changes to the wiki on this page.
redirectedfrom
Talk
(Redirected from $1) (Preusmjereno sa $1)
remembermypassword
Talk
Remember my password across sessions. Zapamti šifru za iduće prijavljivanje.
removechecked
Talk
Remove checked items from watchlist Uklonite označene unose iz spiska praćenih stranica
removedwatch
Talk
Removed from watchlist Uklonjeno iz spiska praćenih stranica
removedwatchtext
Talk
The page "$1" has been removed from your watchlist. Stranica "$1" i njena stranica za razgovor uklonjene su s Vašeg spiska praćenja.
removingchecked
Talk
Removing requested items from watchlist... Uklanjaju se ove stranice sa spiska praćenih stranica...
resetprefs
Talk
Reset preferences Vrati podešavanja
restorelink
Talk
$1 deleted edits $1 izbrisanih izmjena
resultsperpage
Talk
Hits to show per page Pogodaka po stranici:
retrievedfrom
Talk
Retrieved from "$1" Preuzeto iz "$1"
returnto
Talk
Return to $1. Nazad na $1.
retypenew
Talk
Retype new password Ponovo upišite novu lozinku:
reupload
Talk
Re-upload Ponovo postavite
reuploaddesc
Talk
Return to the upload form. Vrati me na formular za postavljanje datoteka.
reverted
Talk
Reverted to earlier revision Vraćeno na raniju verziju
revertimg
Talk
rev vrt
revertpage
Talk
Reverted edit of $2, changed back to last version by $1 Vraćene izmjene korisnika $2 (razgovor) na posljednju izmjenu korisnika $1
revhistory
Talk
Revision history Historija izmjena
revisionasof
Talk
Revision as of $1 Verzija na dan $2 u $3
revnotfound
Talk
Revision not found Revizija nije pronađena
revnotfoundtext
Talk
The old revision of the page you asked for could not be found. Please check the URL you used to access this page. Starija revizija ove stranice koju ste zatražili nije nađena. Molimo Vas da provjerite URL pomoću kojeg ste pristupili ovoj stranici.
rfcurl
Talk
http://www.faqs.org/rfcs/rfc$1.html https://tools.ietf.org/html/rfc$1
rights
Talk
Rights: Prava:
rollback
Talk
Roll back edits Vrati izmjene
rollback_short
Talk
Rollback Vrati
rollbackfailed
Talk
Rollback failed Neuspješno vraćanje
rollbacklink
Talk
rollback vrati
rows
Talk
Rows Redova
savearticle
Talk
Save page Sačuvaj stranicu
savedprefs
Talk
Your preferences have been saved. Vaše postavke su sačuvane.
savefile
Talk
Save file Sačuvaj datoteku
saveprefs
Talk
Save preferences Sačuvaj
search
Talk
Search Pretraga
searchdisabled
Talk
<p>Sorry! Full text search has been disabled temporarily, for performance reasons. In the meantime, you can use the Google search below, which may be out of date.</p>

Nažalost, pretraga kompletnog teksta u stranicama je privremeno onemogućena iz tehničkih razloga. U međuvremenu možete koristiti Google pretragu koja može odražavati nešto starije stanje Wikirječnika.

searchhelppage
Talk
Wiktionary:Searching Wikirječnik:Pretraga
searchingwikipedia
Talk
Searching Wiktionary Pretraživanje Vikipedije
searchquery
Talk
For query "$1" Tražili ste "<a href="/wiki/$1">$1</a>" <a href="/wiki/Special:Allpages/$1">[Sadržaj]</a>
searchresults
Talk
Search results Rezultati pretrage
searchresultshead
Talk
Search result settings Pretraga
searchresulttext
Talk
For more information about searching Wiktionary, see $1. Za više informacija o pretraživanju Vikirječnika, pogledajte Pretraga Vikirječnika.
sectionedit
Talk
(section) (dio)
selectnewerversionfordiff
Talk
Select a newer version for comparison Odaberite noviju verziju za poređenje
selectolderversionfordiff
Talk
Select an older version for comparison Odaberite stariju verziju za poređenje
selectonly
Talk
Only read-only queries are allowed. Svi upiti osim "SELECT" su ograničeni na razvojni tim Wikirječnika.
selflinks
Talk
Pages with Self Links Stranice sa samovezama
selflinkstext
Talk
The following pages contain a link to themselves, which they should not. Sledeće stranice sadrže veze na same sebe, što ne bi trebalo.
seriousxhtmlerrors
Talk
There were serious xhtml markup errors detected by tidy. ⧼Seriousxhtmlerrors⧽
servertime
Talk
Server time is now Vrijeme na serveru:
set_rights_fail
Talk
<b>User rights for "$1" could not be set. (Did you enter the name correctly?)</b> Korisnička prava za $"1" nisu mogla da se podese. (Da li ste pravilno unijeli ime?)
set_user_rights
Talk
Set user rights Postavi prava korisnika
setbureaucratflag
Talk
Set bureaucrat flag Postavi prava birokrate
shortpages
Talk
Short pages Kratke stranice
show
Talk
show Prikaži
showhideminor
Talk
$1 minor edits | $2 bots | $3 logged in users $1 male izmjene | $2 botove | $3 prijavljene korisnike | $4 patrolne greške | $5 moje izmjene
showingresults
Talk
Showing below <b>$1</b> results starting with #<b>$2</b>. $1 rezultata su prikazani ispod počevši od #$2.
showingresultsnum
Talk
Showing below <b>$3</b> results starting with #<b>$2</b>. $3 rezultata su prikazani ispod počevši od #$2.
showlast
Talk
Show last $1 images sorted $2. Prikaži zadnjih $1 slika sortiranih $2.
showpreview
Talk
Show preview Prikaži izgled
showtoc
Talk
show prikaži
sig_tip
Talk
Your signature with timestamp ⧼Sig_tip⧽
sitestats
Talk
Site statistics Statistika o Vikirječniku
sitestatstext
Talk
There are '''$1''' total pages in the database. This includes "talk" pages, pages about Wiktionary, minimal "stub" pages, redirects, and others that probably don't qualify as content pages. Excluding those, there are '''$2''' pages that are probably legitimate content pages. There have been a total of '''$3''' page views, and '''$4''' page edits since the wiki was setup. That comes to '''$5''' average edits per page, and '''$6''' views per edit.

Vikirječnik trenutno ima $2 stranica.

Ovaj broj isključuje preusmjerenja, stranice za razgovor, stranice sa opisom slike, korisničke stranice, šablone, stranice za pomoć, članke bez poveznica, i stranice o Vikirječniku.

Totalni broj stranica u bazi (uključujući sve stranice): $1.

Stranice su do sada bile posjećene $3 puta i $4 puta izmjenjene otkako je Vikirječnik osnovan, što predstavlja u prosjeku $5 izmjena po stranici i $6 posjeta po izmjeni.

sitesubtitle
Talk
The Free Encyclopedia Slobodni rječnik
sitesupport
Talk
Donations Donacije
sitetitle
Talk
Wiktionary Wikirječnik
siteuser
Talk
Wiktionary user $1 Wikirječnikov korisnik $1
siteusers
Talk
Wiktionary user(s) $1 Wikirječnikovi korisnici $1
skin
Talk
Skin Izgled Vikirječnika
spamprotectiontext
Talk
The page you wanted to save was blocked by the spam filter. This is probably caused by a link to an external site. You might want to check the following regular expression for patterns that are currently blocked: Strana koju želite da sačuvate je blokirana od strane filtera za neželjene poruke. Ovo je vjerovatno izazvao vezom ka vanjskoj nepoželjnoj stranici.
spamprotectiontitle
Talk
Spam protection filter Filter za zaštitu od neželjenih poruka
specialpage
Talk
Special Page Posebna stranica
specialpages
Talk
Special pages Posebne stranice
spheading
Talk
Special pages for all users Posebne stranice za sve korisnike
sqlislogged
Talk
Please note that all queries are logged. ⧼Sqlislogged⧽
sqlquery
Talk
Enter query Unesite upit
statistics
Talk
Statistics Statistike
storedversion
Talk
Stored version Sačuvana verzija
stubthreshold
Talk
Threshold for stub display Granica za prikazivanje kratkih stranica
subcategories
Talk
Subcategories Potkategorije
subject
Talk
Subject/headline Tema:
subjectpage
Talk
View subject Pogledajte temu
successfulupload
Talk
Successful upload Uspješno postavljanje
summary
Talk
Summary Sažetak:
sysopspheading
Talk
For sysop use only Samo sa sisope
sysoptext
Talk
The action you have requested can only be performed by users with "sysop" status. See $1. Akciju koju ste zatražili mogu izvesti samo administratori. Pogledajte $1.
sysoptitle
Talk
Sysop access required Neophodan je administratorski pristup
tableform
Talk
table tabela
talk
Talk
Discussion Razgovor
talkexists
Talk
The page itself was moved successfully, but the talk page could not be moved because one already exists at the new title. Please merge them manually. Stranica je uspješno premještena ali stranica za razgovor nije jer ona već postoji na stranici pod novim naslovom. Trebate ručno spojiti dvije stranice za razgovor.
talkpage
Talk
Discuss this page Razgovor o stranici
talkpagemoved
Talk
The corresponding talk page was also moved. Prateća stranica za razgovor je također premještena.
talkpagenotmoved
Talk
The corresponding talk page was <strong>not</strong> moved. Prateća stranica za razgovor nije premještena.
talkpagetext
Talk
<!-- MediaWiki:talkpagetext -->
textboxsize
Talk
Textbox dimensions Veličine tekstualnog polja
textmatches
Talk
Page text matches Tekst stranice odgovara
thisisdeleted
Talk
View or restore $1? Prikaži ili vrati $1?
thumbnail-more
Talk
Enlarge Povećaj
timezonelegend
Talk
Time zone Vremenska zona:
timezoneoffset
Talk
Offset Vremenska razlika
timezonetext
Talk
Enter number of hours your local time differs from server time (UTC). Unesite broj sati za koji se vaše lokalno vrijeme razlikuje od vremena na serveru (UTC)
titlematches
Talk
Article title matches Naslov članka odgovara
toc
Talk
Table of contents Sadržaj
toolbox
Talk
Toolbox Alati
tooltip-addsection
Talk
Add a comment to this page. [alt-+] ⧼Tooltip-addsection⧽
tooltip-anontalk
Talk
Discussion about edits from this ip address [alt-n] ⧼Tooltip-anontalk⧽
tooltip-anonuserpage
Talk
The user page for the ip you're editing as [alt-.] ⧼Tooltip-anonuserpage⧽
tooltip-article
Talk
View the content page [alt-a] ⧼Tooltip-article⧽
tooltip-atom
Talk
Atom feed for this page ⧼Tooltip-atom⧽
tooltip-compareselectedversions
Talk
See the differences between the two selected versions of this page. [alt-v] Uporedi razliku između dvije izabrane verzije ove stranice
tooltip-contributions
Talk
View the list of contributions of this user ⧼Tooltip-contributions⧽
tooltip-currentevents
Talk
Find background information on current events ⧼Tooltip-currentevents⧽
tooltip-delete
Talk
Delete this page [alt-d] ⧼Tooltip-delete⧽
tooltip-edit
Talk
You can edit this page. Please use the preview button before saving. [alt-e] ⧼Tooltip-edit⧽
tooltip-emailuser
Talk
Send a mail to this user ⧼Tooltip-emailuser⧽
tooltip-help
Talk
The place to find out. ⧼Tooltip-help⧽
tooltip-history
Talk
Past versions of this page, [alt-h] ⧼Tooltip-history⧽
tooltip-login
Talk
You are encouraged to log in, it is not mandatory however. [alt-o] ⧼Tooltip-login⧽
tooltip-logout
Talk
Log out [alt-o] ⧼Tooltip-logout⧽
tooltip-mainpage
Talk
Visit the Main Page [alt-z] ⧼Tooltip-mainpage⧽
tooltip-minoredit
Talk
Mark this as a minor edit [alt-i] Naznačite da se radi o maloj izmjeni [alt-i]
tooltip-move
Talk
Move this page [alt-m] ⧼Tooltip-move⧽
tooltip-mycontris
Talk
List of my contributions [alt-y] ⧼Tooltip-mycontris⧽
tooltip-mytalk
Talk
My talk page [alt-n] ⧼Tooltip-mytalk⧽
tooltip-nomove
Talk
You don't have the permissions to move this page ⧼Tooltip-nomove⧽
tooltip-portal
Talk
About the project, what you can do, where to find things ⧼Tooltip-portal⧽
tooltip-preferences
Talk
My preferences ⧼Tooltip-preferences⧽
tooltip-preview
Talk
Preview your changes, please use this before saving! [alt-p] Prikaži izgled mojih izmjena. Preporučeno pri bilo kakvom uređivanju! [alt-p]
tooltip-protect
Talk
Protect this page [alt-=] ⧼Tooltip-protect⧽
tooltip-randompage
Talk
Load a random page [alt-x] ⧼Tooltip-randompage⧽
tooltip-recentchanges
Talk
The list of recent changes in the wiki. [alt-r] ⧼Tooltip-recentchanges⧽
tooltip-recentchangeslinked
Talk
Recent changes in pages linking to this page [alt-c] ⧼Tooltip-recentchangeslinked⧽
tooltip-rss
Talk
RSS feed for this page ⧼Tooltip-rss⧽
tooltip-save
Talk
Save your changes [alt-s] Sačuvaj moje izmjene. [alt-s]
tooltip-search
Talk
Search this wiki [alt-f] Pretraži Wikirječnik
tooltip-sitesupport
Talk
Support Wiktionary ⧼Tooltip-sitesupport⧽
tooltip-specialpage
Talk
This is a special page, you can't edit the page itself. ⧼Tooltip-specialpage⧽
tooltip-specialpages
Talk
List of all special pages [alt-q] ⧼Tooltip-specialpages⧽
tooltip-talk
Talk
Discussion about the content page [alt-t] ⧼Tooltip-talk⧽
tooltip-undelete
Talk
Restore the $1 edits done to this page before it was deleted [alt-d] ⧼Tooltip-undelete⧽
tooltip-unwatch
Talk
Remove this page from your watchlist [alt-w] ⧼Tooltip-unwatch⧽
tooltip-upload
Talk
Upload images or media files [alt-u] Započni postavljanje
tooltip-userpage
Talk
My user page [alt-.] ⧼Tooltip-userpage⧽
tooltip-viewsource
Talk
This page is protected. You can view its source. [alt-e] ⧼Tooltip-viewsource⧽
tooltip-watch
Talk
Add this page to your watchlist [alt-w] Dodaj ovu stranicu na svoj spisak praćenih članaka
tooltip-watchlist
Talk
The list of pages you're monitoring for changes. [alt-l] ⧼Tooltip-watchlist⧽
tooltip-whatlinkshere
Talk
List of all wiki pages that link here [alt-b] ⧼Tooltip-whatlinkshere⧽
uclinks
Talk
View the last $1 changes; view the last $2 days. Gledaj poslijednjih $1 izmjena; gledaj poslijednjih $2 dana.
ucnote
Talk
Below are this user's last <b>$1</b> changes in the last <b>$2</b> days. Ispod je poslijednjih $1 izmjena u poslijednjih $2 dana.
uctop
Talk
(top) trenutno
unblockip
Talk
Unblock user Odblokiraj korisnika
unblockiptext
Talk
Use the form below to restore write access to a previously blocked IP address or username. Upotrebite donji upitnik da bi ste vratili pravo pisanja ranije blokiranoj IP adresi ili korisničkom imenu.
unblocklink
Talk
unblock deblokiraj
unblocklogentry
Talk
unblocked "$1" unblocked $1
undelete
Talk
Restore deleted page Pregled izbrisanih stranica
undelete_short
Talk
Undelete $1 edits Vrati $1 izbrisanih izmjena
undeletearticle
Talk
Restore deleted page Vrati izbrisanu stranicu
undeletebtn
Talk
Restore! Vrati
undeletedarticle
Talk
restored "$1" vraćeno "$1"
undeletedtext
Talk
[[$1]] has been successfully restored. See [[Wiktionary:Deletion_log]] for a record of recent deletions and restorations. Članak $1 je uspješno vraćen. Pogledajte Special:Log/delete za zapis o skorašnjem brisanjima i vraćanjima.
undeletehistory
Talk
If you restore the page, all revisions will be restored to the history. If a new page with the same name has been created since the deletion, the restored revisions will appear in the prior history, and the current revision of the live page will not be automatically replaced. Ako vratite stranicu, sve će izmjene biti vraćene u njenu historiju. Ako je u međuvremenu napravljena nova izmjena s istim nazivom, vraćene izmjene pojavit će se u njenoj ranijoj historiji.
undeletepage
Talk
View and restore deleted pages Pregled i vraćanje izbrisanih stranica
undeletepagetext
Talk
The following pages have been deleted but are still in the archive and can be restored. The archive may be periodically cleaned out. Sljedećih $1 je izbrisano, ali su još u arhivi i mogu biti vraćene. Arhiva se povremeno čisti.
undeleterevision
Talk
Deleted revision as of $1 Izbrisana revizija od $1
undeleterevisions
Talk
$1 revisions archived $1 izmjena je izbrisano
unexpected
Talk
Unexpected value: "$1"="$2". Neočekivana vrijednost: "$1"="$2".
unlockbtn
Talk
Unlock database Otključaj bazu
unlockconfirm
Talk
Yes, I really want to unlock the database. Da, zaista želim otključati bazu.
unlockdb
Talk
Unlock database Otključavanje baze podataka
unlockdbsuccesssub
Talk
Database lock removed Baza je otključana
unlockdbsuccesstext
Talk
The database has been unlocked. Wikirječnikova baza podataka je otključana.
unlockdbtext
Talk
Unlocking the database will restore the ability of all users to edit pages, change their preferences, edit their watchlists, and other things requiring changes in the database. Please confirm that this is what you intend to do. Otključavanje baze će svim korisnicima vratiti mogućnost izmjene stranica, promjene korisničkih stranica, izmjene spiska praćenih stranica, i svega ostalog što zahtjeva promjene u bazi. Molimo Vas da potvrdite da je ovo zaista ono što namijeravate da uradite.
unprotect
Talk
Unprotect Promijeni zaštitu
unprotectcomment
Talk
Reason for unprotecting Razlog za skidanje zaštite
unprotectedarticle
Talk
unprotected [[$1]] removed protection from "$1"
unprotectsub
Talk
(Unprotecting "$1") (Skidanje zaštite "$1")
unprotectthispage
Talk
Unprotect this page Promijeni zaštitu ove stranice
unusedimages
Talk
Unused images Nekorištene slike
unusedimagestext
Talk
<p>Please note that other web sites may link to an image with a direct URL, and so may still be listed here despite being in active use.

Obratite pažnju da se drugi veb sajtovi, kao što su međunarodni Wikiriječnici, mogu povezati na sliku direktnom URL-om, i tako mogu još uvijek biti prikazani ovdje uprkos aktivnoj upotrebi.

unwatch
Talk
Unwatch Prestani pratiti
unwatchthispage
Talk
Stop watching Prestani pratiti
updated
Talk
(Updated) (Osvježeno)
upload
Talk
Upload file Postavi datoteku
uploadbtn
Talk
Upload file Postavi datoteku
uploaddisabled
Talk
Sorry, uploading is disabled. Postavljanje datoteka je onemogućeno.
uploadedfiles
Talk
Uploaded files Postavljeni fajlovi
uploadedimage
Talk
uploaded "$1" postavljena datoteka "$1"
uploaderror
Talk
Upload error Greška pri slanju
uploadfile
Talk
Upload images, sounds, documents etc. Pošalji slike, zvuke, dokumenta itd.
uploadlink
Talk
Upload images Pošalji slike
uploadlog
Talk
upload log zapis slanja
uploadlogpage
Talk
Upload_log Zapisnik postavljanja
uploadlogpagetext
Talk
Below is a list of the most recent file uploads. All times shown are server time (UTC). <ul> </ul> Ispod je spisak nedavno postavljenih datoteka. Za vizualni pregled datoteka, pogledajte galeriju novih slika.
uploadnologin
Talk
Not logged in Niste prijavljeni
uploadnologintext
Talk
You must be <a href="/wiki/Special:Userlogin">logged in</a> to upload files. $1 da biste postavljali datoteke.
uploadtext
Talk
<strong>STOP!</strong> Before you upload here, make sure to read and follow the <a href="/wiki/Special:Image_use_policy">image use policy</a>. <p>If a file with the name you are specifying already exists on the wiki, it'll be replaced without warning. So unless you mean to update a file, it's a good idea to first check if such a file exists. <p>To view or search previously uploaded images, go to the <a href="/wiki/Special:Imagelist">list of uploaded images</a>. Uploads and deletions are logged on the <a href="/wiki/Wiktionary:Upload_log">upload log</a>. </p><p>Use the form below to upload new image files for use in illustrating your pages. On most browsers, you will see a "Browse..." button, which will bring up your operating system's standard file open dialog. Choosing a file will fill the name of that file into the text field next to the button. You must also check the box affirming that you are not violating any copyrights by uploading the file. Press the "Upload" button to finish the upload. This may take some time if you have a slow internet connection. <p>The preferred formats are JPEG for photographic images, PNG for drawings and other iconic images, and OGG for sounds. Please name your files descriptively to avoid confusion. To include the image in a page, use a link in the form <b>[[Image:file.jpg]]</b> or <b>[[Image:file.png|alt text]]</b> or <b>[[Media:file.ogg]]</b> for sounds. <p>Please note that as with wiki pages, others may edit or delete your uploads if they think it serves the project, and you may be blocked from uploading if you abuse the system.
STOP! Molimo postavite datoteku na Commons, tako da svi projekti mogu da je koriste.
Prije nego što postavite datoteku, pročitajte i poštujte pravila korištenja slika.

Ako fajl sa istim imenom već postoji, biće zamijenjen bez upozorenja.

Da pogledate koje slike već postoje, idite na listu postavljenih slika.

Zapamtite da je ovo wiki i da ostali korisnici imaju mogućnost da izmijene ili izbrišu vašu datoteku ako misle da je to potrebno i moguće je da ćete Vi biti blokirani protiv postavljanja ako zloupotrebite ovaj sistem.

uploadwarning
Talk
Upload warning Upozorenje pri postavljanju
user_rights_set
Talk
<b>User rights for "$1" updated</b> Prava za korisnika "$1" promjenjena
usercssjs
Talk
'''Note:''' After saving, you have to tell your bowser to get the new version: '''Mozilla:''' click ''reload''(or ''ctrl-r''), '''IE / Opera:''' ''ctrl-f5'', '''Safari:''' ''cmd-r'', '''Konqueror''' ''ctrl-r''. ⧼Usercssjs⧽
usercssjsyoucanpreview
Talk
<strong>Tip:</strong> Use the 'Show preview' button to test your new css/js before saving. Pažnja: Koristite 'Prikaži izgled' dugme da testirate svoj novi CSS/JS prije nego što sačuvate.
usercsspreview
Talk
'''Remember that you are only previewing your user css, it has not yet been saved!''' Zapamtite da je ovo samo pregled Vašeg CSS-a. Stranica još nije sačuvana!
userexists
Talk
The user name you entered is already in use. Please choose a different name. Korisničko ime već je u upotrebi. Izaberite drugo.
userjspreview
Talk
'''Remember that you are only testing/previewing your user javascript, it has not yet been saved!''' Zapamtite da je ovo samo pregled Vašeg JavaScripta. Stranica još nije sačuvana!
userlogin
Talk
Log in ⧼Userlogin⧽
userlogout
Talk
Log out Odjava
usermailererror
Talk
Mail object returned error: Objekat pošte je vratio grešku:
userpage
Talk
View user page Pogledaj korisničku stranicu
userstats
Talk
User statistics Statistika o korisnicima
userstatstext
Talk
There are '''$1''' registered users. '''$2''' of these are administrators (see $3). Trenutno ima $1 registrovanih korisnika, od kojih su $2 (ili $4%) administratori.
version
Talk
Version Verzija
viewcount
Talk
This page has been accessed $1 times. Ovoj stranici je pristupljeno $1 puta.
viewprevnext
Talk
View ($1) ($2) ($3). Pogledaj ($1 | $2) ($3)
viewsource
Talk
View source Izvorni kôd
viewtalkpage
Talk
View discussion Pogledaj razgovor
wantedpages
Talk
Wanted pages Tražene stranice
watch
Talk
Watch Prati
watchdetails
Talk
($1 pages watched not counting talk pages; $2 total pages edited since cutoff; $3... <a href='$4'>show and edit complete list</a>.) * $1 stranica praćeno ne računajući stranice za razgovor * prikaži i mijenjaj potpuni spisak * Isbrišite sve praćene stranice
watcheditlist
Talk
Here's an alphabetical list of your watched pages. Check the boxes of pages you want to remove from your watchlist and click the 'remove checked' button at the bottom of the screen. Ovdje je abecedni spisak stranica koje pratite. Označite stranice koje želite da uklonite sa svog spiska i kliknite na dugme 'ukloni izabrane' na dnu ekrana.
watchlist
Talk
My watchlist Spisak praćenja
watchlistcontains
Talk
Your watchlist contains $1 pages. Vaš spisak praćenih stranica sadrži $1 stranica.
watchlistsub
Talk
(for user "$1") (za korisnika "$1")
watchmethod-list
Talk
checking watched pages for recent edits provjerava se da li ima nedavnih izmjena u praćenim stranicama
watchmethod-recent
Talk
checking recent edits for watched pages provjerava se da li ima praćenih stranica u nedavnim izmjenama
watchnochange
Talk
None of your watched items were edited in the time period displayed. Ništa što pratite nije promjenjeno u prikazanom vremenu.
watchnologin
Talk
Not logged in Niste prijavljeni
watchnologintext
Talk
You must be <a href="/wiki/Special:Userlogin">logged in</a> to modify your watchlist. Morate biti prijavljeni da bi ste mjenjali spisak praćenih stranica.
watchthis
Talk
Watch this page Prati ovu stranicu
watchthispage
Talk
Watch this page Prati ovu stranicu
welcomecreation
Talk
<h2>Welcome, $1!</h2><p>Your account has been created. Don't forget to change your Wiktionary preferences.

Dobrodošli, $1!

Vaš nalog je napravljen. Ne zaboravite da prilagodite sebi svoja podešavanja.

whatlinkshere
Talk
What links here Šta vodi ovamo
whitelistacctext
Talk
To be allowed to create accounts in this Wiki you have to [[Special:Userlogin|log]] in and have the appropriate permissions. Da bi vam bilo dozvoljeno da napravite naloge na ovom Vikiju, morate da se prijavite i imate odgovarajuća ovlaštenja.
whitelistacctitle
Talk
You are not allowed to create an account Nije vam dozvoljena registracija
whitelistedittext
Talk
You have to [[Special:Userlogin|login]] to edit pages. $1 da biste uređivali stranice.
whitelistedittitle
Talk
Login required to edit Obavezno je prijavljivanje za uređivanje
whitelistreadtext
Talk
You have to [[Special:Userlogin|login]] to read pages. Morate da se prijavite da bi ste čitali članke.
whitelistreadtitle
Talk
Login required to read Obavezno je prijavljivanje za čitanje
wikipediapage
Talk
View project page Pogledaj stranu o ovoj strani
wikititlesuffix
Talk
Wiktionary ⧼Wikititlesuffix⧽
wlnote
Talk
Below are the last $1 changes in the last <b>$2</b> hours. Ispod su $1 posljednjih izmjena načinjenih u posljednjih $2 sati, od $3, $4.
wlsaved
Talk
This is a saved version of your watchlist. Ovo je sačuvana verzija vašeg spiska praćenih stranica.
wlshowlast
Talk
Show last $1 hours $2 days $3 ⧼Wlshowlast⧽
wrong_wfQuery_params
Talk
Incorrect parameters to wfQuery()<br /> Function: $1<br /> Query: $2 Netačni parametri za wfQuery()
Funkcija: $1
Pretraga: $2
wrongpassword
Talk
The password you entered is incorrect. Please try again. Lozinka koju ste unijeli je netačna. Pokušajte ponovno.
yourdiff
Talk
Differences Razlike
youremail
Talk
Your email* Adresa e-pošte:
yourname
Talk
Your user name Korisničko ime:
yournick
Talk
Your nickname (for signatures) Novi potpis:
yourpassword
Talk
Your password Lozinka:
yourpasswordagain
Talk
Retype password Ponovo upišite lozinku:
yourrealname
Talk
Your real name* Vaše pravo ime:
yourtext
Talk
Your text Vaš tekst