Šablon:All system messages

Od Vikirječnik

Ovo je spisak svih sistemskih poruka u MediaWiki imenskom prostoru.

Name

Default text

Current text

1movedto2
Talk

$1 moved to $2

stranica $1 premještena na stranicu $2

1movedto2_redir
Talk

$1 moved to $2 over redirect

stranica $1 premještena na stranicu $2 putem preusmjerenja

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

/*

Sadržaj

tooltips and access keys

 */
ta = new Object();
ta['pt-userpage'] = new Array('.','Moja korisnička stranica');
ta['pt-anonuserpage'] = new Array('.','Stranica anonimnog korisnika sa IP adresom');
ta['pt-mytalk'] = new Array('n','Moja stranica za razgovor');
ta['pt-anontalk'] = new Array('n','Razgovor o doprinosu sa ove IP adrese');
ta['pt-preferences'] = new Array('','Moja podešavanja');
ta['pt-watchlist'] = new Array('l','Spisak stranica koje pratite.');
ta['pt-mycontris'] = new Array('y','Spisak mog doprinosa');
ta['pt-login'] = new Array('o','Prijava nije obavezna, ali donosi mnogo koristi.');
ta['pt-anonlogin'] = new Array('o','Prijava nije obavezna, ali donosi mnogo koristi.');
ta['pt-logout'] = new Array('o','Odjava sa Vikirječnika');
ta['ca-talk'] = new Array('t','Razgovor o sadržaju');
ta['ca-edit'] = new Array('e','Možete da uređujete ovu stranicu. Koristite dugme "Prikaži izgled".');
ta['ca-addsection'] = new Array('+','Dodajte svoj komentar.');
ta['ca-viewsource'] = new Array('e','Ova stranica je zaštićena. Možete pogledati ili kopirati izvorni tekst.');
ta['ca-history'] = new Array('h','Prethodne verzije ove stranice.');
ta['ca-protect'] = new Array('=','Zaštitite stranicu od budućih izmjena');
ta['ca-delete'] = new Array('d','Izbrišite ovu stranicu');
ta['ca-undelete'] = new Array('d','Vratite izmjene koje su načinjene prije brisanja stranice');
ta['ca-move'] = new Array('m','Premjestite stranicu');
ta['ca-nomove'] = new Array('','Nemate dozvolu za pomjeranje ove stranice');
ta['ca-watch'] = new Array('w','Dodajte stranicu u listu praćnih stranica');
ta['ca-unwatch'] = new Array('w','Izbrišite stranicu sa liste praćnih stranica');
ta['search'] = new Array('f','Pretražite Vikirječnik');
ta['p-logo'] = new Array('','Početna strana');
ta['n-mainpage'] = new Array('z','Posjetite početnu stranicu');
ta['n-portal'] = new Array('','O projektu, kako možete pomoći, i gdje da nađete potrebne informacije');
ta['n-currentevents'] = new Array('','Podaci o trenutnim događajima');
ta['n-recentchanges'] = new Array('r','Spisak nedavnih izmjena na Vikirječniku.');
ta['n-randompage'] = new Array('x','Otvorite slučaju stranicu');
ta['n-help'] = new Array('','Naučite da uređujete Vikirječnik.');
ta['n-sitesupport'] = new Array('','Podržite nas');
ta['t-whatlinkshere'] = new Array('j','Spisak svih stranica koje su povezane sa ovom');
ta['t-recentchangeslinked'] = new Array('k','Nedavne izmjene stranica koje su povezane sa ovom');
ta['feed-rss'] = new Array('','RSS za ovu stranicu');
ta['feed-atom'] = new Array('','Atom za ovu stranicu');
ta['t-contributions'] = new Array('','Pogledajte spisak doprinosa ovog korisnika');
ta['t-emailuser'] = new Array('','Pošaljite elektronsku poštu ovom korisniku');
ta['t-upload'] = new Array('u','Pošaljite slike i medija fajlove');
ta['t-specialpages'] = new Array('q','Spisak svih posebih stranica');
ta['ca-nstab-main'] = new Array('c','Pogledajte sadržaj stranice');
ta['ca-nstab-user'] = new Array('c','Pogledajte korisničku stranicu');
ta['ca-nstab-media'] = new Array('c','Pogledajte medija fajl');
ta['ca-nstab-special'] = new Array('','Ovo je stranica posebne namjene i zato je ne možete uređivati');
ta['ca-nstab-wp'] = new Array('a','Pogledajte projekat stranicu');
ta['ca-nstab-image'] = new Array('c','Pogledajte stranicu slike');
ta['ca-nstab-mediawiki'] = new Array('c','Pogledajte sistemsku poruku');
ta['ca-nstab-template'] = new Array('c','Pogledajte šablon');
ta['ca-nstab-help'] = new Array('c','Pogledajte stranicu za pomoć');
ta['ca-nstab-category'] = new Array('c','Pogledajte stranicu kategorije');

/*

Cookies

*/
function SetCookie(cookieName, cookieValue) {
 var today = new Date();
 var expire = new Date();
 var nDays = 30;
 expire.setTime( today.getTime() + (3600000 * 24 * nDays) );
 document.cookie = cookieName + "=" + escape(cookieValue)
                 + ";expires="+expire.toGMTString();
}
  
function GetCookie(name) {
	var i =0;
	while (i < document.cookie.length) {
		if (document.cookie.substr(i,name.length) == name) {
			var valend = document.cookie.indexOf(";",i+name.length+1);
			if (valend == -1) {
				valend = document.cookie.length;
			}
			return unescape(document.cookie.substring(i+name.length+1,valend));
		}
		i = document.cookie.indexOf(" ", i) + 1;
		if (i == 0) break;
	}
}


/*

IE scrollbar compatibility

*/
if (window.showModalDialog && document.compatMode && document.compatMode == "CSS1Compat")
{
  var oldWidth;
  var docEl = document.documentElement;

  function fixIEScroll()
  {
    if (!oldWidth || docEl.clientWidth > oldWidth)
      doFixIEScroll();
    else
      setTimeout(doFixIEScroll, 1);
  
    oldWidth = docEl.clientWidth;
  }

  function doFixIEScroll() {
    docEl.style.overflowX = (docEl.scrollWidth - docEl.clientWidth < 4) ? "hidden" : "";
  }

  document.attachEvent("onreadystatechange", fixIEScroll);
  attachEvent("onresize", fixIEScroll);
}

/* 

addLoadEvent

 */
function addLoadEvent(func) {
  if (window.addEventListener) 
    window.addEventListener("load", func, false);
  else if (window.attachEvent) 
    window.attachEvent("onload", func);
}



/* 

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('http://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 = GetCookie ("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) {  
  SetCookie ("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(imageFile, tagOpen, sampleText, tagClose, speedTip)
    {
        mwCustomEditButtons[mwCustomEditButtons.length] = {
	 "imageFile": "http://upload.wikimedia.org/wikipedia/" + 
			imageFile,
		"tagOpen": tagOpen,
		"sampleText": sampleText,
		"tagClose": tagClose,
		"speedTip": speedTip
	};
    }




/* 

addEditButtons

 */

//Don't wait for onload for adding the mwCustom buttons...build this table before the page loads, so wikibits.js knows to display them.

addEditButton( 'commons/3/30/Btn_toolbar_rayer.png', 
	'<s>', 'Prekriži', '</s>', 'Prekriži');

addEditButton( 'commons/8/88/Btn_toolbar_enum.png', 
	'# ', '1', '\n# 2\n# 3', 'Numerisana lista');

addEditButton( 'commons/1/11/Btn_toolbar_liste.png', 
	'* ', 'A', '\n* B\n* C', 'Lista');

addEditButton( 'commons/9/9e/Btn_toolbar_gallery.png', 
	'\n<gallery>\n', 'Image:Vista-openbsd.png|Opis', 
	'\nImage:AMule.png|Opis\nImage:Cyberduck ' + 
	'icon.png|Opis\n</gallery>', 'Galerija');

addEditButton( 'commons/3/37/Btn_toolbar_commentaire.png', 
	'<!--', 'Komentar', '-->', 'Komentar');

addEditButton( 'en/c/c8/Button_redirect.png', 
	'#REDIRECT [[', '{{subst:lcfirst:{{PAGENAME}}}}', 
	']]', 'Cilj preusmjeravanja');

addEditButton( 'en/5/5f/Button_center.png', 
	'<center>', 'primjer', '</center>', 'Centrirani tekst');

addEditButton( 'en/e/e9/Button_headline2.png', 
	'\n===', 'Drugi podnaslov', '===', 'Drugi podnaslov');

addEditButton( 'en/8/8e/Button_shifting.png', ':', 
	'Pomakni u desno', ':', 'Pomakni u desno');

addEditButton( 'en/5/58/Button_small.png', '<small>', 
	'Smanjen tekst', '</small>', 'Smanjen tekst');

addEditButton( 'en/8/80/Button_upper_letter.png', '<sup>', 
	'Faktor tekst', '</sup>', 'Faktor');

addEditButton( 'en/9/93/Button_sub_link.png', 
	'[[Stranica#', 'Podnaslov', ']]', 'Podnaslov');

addEditButton( 'en/f/fd/Button_blockquote.png', 
	'<blockquote style="border: 1px solid blue; padding: ' +
	'2em;">\n', 
	'primjer', '\n</blockquote>', 'Citat u okviru');

//addEditButton( 'en/1/13/Button_enter.png', '<br />', '', '', 
//	'Novi red');

/* 

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

}


 addLoadEvent(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 = GetCookie("CharDefaultValue-"+ ucharnr))) lastVal ="0";
		theSelection= parseInt(lastVal)+parseInt(uchardefault.substr(1));
		theSelection= theSelection.toString();
	}
 
	SetCookie("CharDefaultValue-"+ ucharnr,theSelection);
	insertTags(uchar,ucharend,theSelection);
 }




/* 

stringReplaceBox

 */

 function stringReplaceBox() {

	Valreplace=GetCookie ("StrReplace");
	Valreplacement=GetCookie ("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) {

	SetCookie ("StrReplace",inReplace);
	SetCookie ("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=\"http://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=\"http://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=\"http://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 (GetCookie("PrImageWidth")) {
			ImageFrame +="width = \"" + GetCookie("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 = "http://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;
	SetCookie("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';
		}
	  SetCookie('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 (GetCookie ("CharSubset")) stdsubset = parseInt( GetCookie ("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();
 }

 
 addLoadEvent(customizeWiktionary);
 addLoadEvent(ProofReading);

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

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




/* 

mainpg

 */

//Main page tab no longer says article
function mainpg() 
{
var site = location.href;
if (site == 'http://bs.wiktionary.org/wiki/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';
      }   
  }
}
addOnloadHook(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( 'http://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();
}
addLoadEvent(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) document.write('<style type="text/css">/*<![CDATA[*/ #lastmod, #siteSub, #contentSub, h1.firstHeading { display: none !important; } /*]]>*/</style>');



/* 
*/

about
Talk

About

O

aboutpage
Talk

Wiktionary:About

Vikirječnik:O Vikirječniku

aboutsite
Talk

About Wiktionary

O Vikirječ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.

Šifra za '$1' je poslata na $2.

accmailtitle
Talk

Password sent.

Šifra poslata.

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" je dodata vašem spisku praćenih stranica. Buduće promjene ove stranice (i pridružene stranice za razgovor) će biti navedene ovdje, i stranica će biti podebljana u spisku nedavnih izmjena da bi se lakše uočila.

Ako bi ste kasnije htjeli da uklonite stranicu sa vašeg spiska praćenih stranica, kliknite na "ukinite praćenje" na paleti.

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 svih sistemskih poruka u MediaWiki imenskom prostoru.

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); neko drugi je već izmjenio ili vratio članak. Posljednja izmjena od korisnika $3 (razgovor).

ancientpages
Talk

Oldest pages

Najstarije stranice

and
Talk

and

i

anontalk
Talk

Talk for this IP

Razgovor za ovu IP adresu

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 Vikirječnika

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 akcija ne može biti izvršena na ovoj stranici.

badfilename
Talk

Image name has been changed to "$1".

Ime slike je promjenjeno 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.

Šifre koje ste unijeli se razlikuju!

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

Blokirajte korisnika

blockipsuccesssub
Talk

Block succeeded

Blokiranje uspješno

blockipsuccesstext
Talk

"$1" has been blocked. <br />See [[Special:Ipblocklist|IP block list]] to review blocks.

$1 je blokiran.
Pogledajte IP spisak blokiranih korisnika 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

blokirajte

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

Zapis 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 uspisane ispod. Pogledajte blokirane IP adrese za spisak trenutno operativnih zabrana.

bold_sample
Talk

Bold text

Podebljan tekst

bold_tip
Talk

Bold text

Podebljan tekst

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. Vikirječ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 stranice koje ne postoje:

bugreports
Talk

Bug reports

Prijavite grešku

bugreportspage
Talk

Wiktionary:Bug_reports

Vikirječ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

Poništite

cannotdelete
Talk

Could not delete the page or image specified. (It may have already been deleted by someone else.)

Nije moguće izbrisati navedenu stranicu ili sliku. (Moguće je da ju je neko drugi već obrisao.)

cantrollback
Talk

Cannot revert edit; last contributor is only author of this page.

Nije moguće poništiti izmjenu; zadnja izmjena je ujedno i jedina izmjena.

categories
Talk

Categories

Kategorije

category
Talk

category

kategorija

category_header
Talk

Articles in category "$1"

Stranice u kategoriji "$1"

changepassword
Talk

Change password

Promijeni šifru

changes
Talk

changes

izmjene

columns
Talk

Columns

Kolona:

commentedit
Talk

(comment)

<Commentedit>

compareselectedversions
Talk

Compare selected versions

Uporedite označene verzije

confirm
Talk

Confirm

Potvrda

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]].

Akcija brisanja će nepovratno izbrisati stranicu ili sliku zajedno sa svom njenom historijom iz baze. Potvrdite da namjeravate da uradite ovo, da razumijete posljedice i da materijal brišete u skladu sa pravilima Vikirječnika.

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

doprinos

contribsub
Talk

For $1

Korisnik: $1

contributions
Talk

User contributions

Doprinos korisnika

copyright
Talk

Content is available under $1.

Sadržaj je licenciran pod $1.

copyrightpage
Talk

Wiktionary:Copyrights

Vikirječnik:Autorska prava

copyrightpagename
Talk

Wiktionary copyright

Vikirječ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 Vikirječ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

Registrujte se

createaccountmail
Talk

by email

e-poštom

cur
Talk

cur

tren

currentevents
Talk

Current events

Novosti

currentrev
Talk

Current revision

Trenutna revizija

databaseerror
Talk

Database error

Greška u bazi

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 internih veza

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

Vikirječnik e-pošta

delete
Talk

Delete

Izbrišite

deletecomment
Talk

Reason for deletion

Razlog za brisanje

deletedarticle
Talk

deleted "$1"

članak "$1" izbrisan

deletedtext
Talk

"$1" has been deleted. See $2 for a record of recent deletions.

Članak "$1" je izbrisan. Pogledajte $2 za zapis o skorašnjim brisanjima.

deleteimg
Talk

del

obr

deletepage
Talk

Delete page

Izbrišite stranicu

deletesub
Talk

(Deleting "$1")

(Brisanje stranice "$1")

deletethispage
Talk

Delete this page

Izbrišite ovu stranicu

deletionlog
Talk

deletion log

historija brisanja

dellogpage
Talk

Deletion_log

Historija 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 stranica.

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

Vikirječ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.

Svaki red sadrži veze na prvo i drugo preusmjerenje, kao i na prvu liniju teksta drugog preusmjerenja, što obično daje "pravu" ciljnu stranicu, na koju bi prvo preusmjerenje i trebalo da pokazuje.

edit
Talk

Edit

Uredite

editcomment
Talk

The edit comment was: "<i>$1</i>".

Komentar izmjene je: "$1".

editconflict
Talk

Edit conflict: $1

Konflikt sa izmjenom: $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

Vikirječnik:Uređivanje

editing
Talk

Editing $1

Mijenjate stranicu: $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

uredite

editthispage
Talk

Edit this page

Izmijenite 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 poruku

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

Tema

emailto
Talk

To

Za

emailuser
Talk

E-mail this user

Kontaktiraj ovog korisnika

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 procijenu 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 promjenio ovu stranicu otkad ste Vi počeli da je mijenjate. Gornje tekstualno polje sadrži tekst stranice koji trenutno postoji. Vaše izmjene su prikazane u donjem tekstu. Moraćete da unesete svoje promjene u postojeći tekst. Samo tekst u gornjem tekstualnom polju će biti snimljen kad kliknete "Sačuvaj".

export
Talk

Export pages

Izvoz stranica

exportcuronly
Talk

Include only the current revision, not the full history

Uključite samo trenutnu reviziju, 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 promjena određene stranice ili grupe stranice u XML formatu. Ovo onda može biti uvezeno u drugi wiki koji koristi MedijaViki softver, transformisano, ili korišteno za Vaše lične potrebe.

extlink_sample
Talk

http://www.example.com link title

http://www.adresa.com opis adrese

extlink_tip
Talk

External link (remember http:// prefix)

Vanjska poveznica (zapamti prefiks http://)

faq
Talk

FAQ

ČPP

faqpage
Talk

Wiktionary:FAQ

Vikirječnik:NNP

feedlinks
Talk

Feed:

Fid:

filecopyerror
Talk

Could not copy file "$1" to "$2".

Ne može se kopirati "$1" na "$2".

filedeleteerror
Talk

Could not delete file "$1".

Ne može se izbrisati fajl "$1".

filedesc
Talk

Summary

Opis

filename
Talk

Filename

Ime fajla

filenotfound
Talk

Could not find file "$1".

Ne može se naći fajl "$1".

filerenameerror
Talk

Could not rename file "$1" to "$2".

Ne može se promjeniti ime fajla "$1" to "$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 može se 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="http://www.google.com/search" id="googlesearch">

   <input type="hidden" name="domains" value="http://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="http://bs.wiktionary.org" checked="checked" /><label for="gwiki">Vikirječnik</label>
   <input type="radio" name="sitesearch" id="gWWW" value="" /><label for="gWWW">WWW</label>

</form>

guesstimezone
Talk

Fill in from browser

Unesi razliku iz brauzera

headline_sample
Talk

Headline text

Naslov

headline_tip
Talk

Level 2 headline

Podnaslov

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 izmjena

history_short
Talk

History

Historija

historywarning
Talk

Warning: The page you are about to delete has a history:

Pažnja: Stranica koju namjeravate da izbrišete ima historiju:

hr_tip
Talk

Horizontal line (use sparingly)

Horizontalna linija (koristite oskudno)

ignorewarning
Talk

Ignore warning and save file anyway.

Ignoriši upozorenje i postavi 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

ime_slike.jpg

image_tip
Talk

Embedded image

Uklopljena slika

imagelinks
Talk

Image links

Poveznice na sliku

imagelist
Talk

Image list

Spisak slika

imagelisttext
Talk

Below is a list of $1 images sorted $2.

Ispod je prikazan spisak sa $1 slika sortiranih $2.

imagepage
Talk

View image page

Prikaži stranicu sa slikom

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 uspjeo: $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.

Molimo Vas da izvezete fajl iz izvornog vikija koristeći izvoz, sačuvajte ga kod sebe i pošaljite ovde.

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

Interna greška

intl
Talk

Interlanguage links

Međujezičke veze

ip_range_invalid
Talk

Invalid IP range.

Netačan raspon IP adresa.

ipaddress
Talk

IP Address/username

IP adresa/korisničko ime

ipb_expiry_invalid
Talk

Expiry time invalid.

Vremenska dužina nije ispravna.

ipbexpiry
Talk

Expiry

Dužina

ipblocklist
Talk

List of blocked IP addresses and usernames

Spisak blokiranih IP adresa ili korisničkih imena

ipbreason
Talk

Reason

Razlog

ipbsubmit
Talk

Block this user

Blokirajte korisnika

ipusubmit
Talk

Unblock this address

Deblokirajte ovu adresu

ipusuccess
Talk

"$1" unblocked

"$1" deblokiran

isbn
Talk

ISBN

<Isbn>

isredirect
Talk

redirect page

preusmjerivač

italic_sample
Talk

Italic text

Kurzivan tekst

italic_tip
Talk

Italic text

Kurzivan tekst

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

posl

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:

Linija $1:

link_sample
Talk

Link title

Naslov poveznice

link_tip
Talk

Internal link

Unutrašnja poveznica

linklistsub
Talk

(List of links)

(Spisak poveznica)

linkshere
Talk

The following pages link to here:

Sljedeće stranice vode ovdje:

linkstoimage
Talk

The following pages link to this image:

Sljedeće stranice vode na ovu sliku:

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čajte bazu

lockconfirm
Talk

Yes, I really want to lock the database.

Da, zaista želim da zaključam bazu.

lockdb
Talk

Lock database

Zaključajte bazu

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.
Sjetite se da je otključate kad završite sa 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, promjene korisničkih podešavanja, izmjene praćenih stranica, i svega ostalog što zahtjeva promjene u bazi. Molimo Vas da potvrdite da je ovo zaista ono što namjeravate da uradite, 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

Prijavite se

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

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 Vikirječnik.

loginreqtext
Talk

You must [[special:Userlogin|login]] to view other pages.

Morate se prijaviti da biste pogledali druge stranice.

loginreqtitle
Talk

Login Required

Potrebno je prijavljivanje

loginsuccess
Talk

You are now logged in to Wiktionary as "$1".

Sad ste prijavljeni na Vikirječnik kao "$1".

loginsuccesstitle
Talk

Login successful

Prijava uspješna

logout
Talk

Log out

Odjavite se

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 Vikirječ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

Nepovezane stranice

longpages
Talk

Long pages

Dugačke 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

Pošalji mi moju šifru

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.

Kontaktirajte uputstva za korisnike za informacije o upotrebi wiki programa.

Početak

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

Ne može se napisati ili napraviti direktorijum za matematični izvještaj.

math_bad_tmpdir
Talk

Can't write to or create math temp directory

Ne može se napisati ili napraviti privremeni matematični direktorijum

math_failure
Talk

Failed to parse

Neuspjeh pri parsiranju

math_image_error
Talk

PNG conversion failed; check for correct installation of latex, dvips, gs, and convert

PNG konverzija neuspješna; provjerite tačnu instalaciju latex-a, dvips-a, gs-a i convert-a

math_lexing_error
Talk

lexing error

riječnička greška

math_notexvc
Talk

Missing texvc executable; please see math/README to configure.

Nedostaje izvršno texvc; molimo Vas da pogledate math/README da podesite.

math_sample
Talk

Insert formula here

Unesite formulu ovdje

math_syntax_error
Talk

syntax error

sintaksna greška

math_tip
Talk

Mathematical formula (LaTeX)

Matematička formula (LaTeX)

math_unknown_error
Talk

unknown error

nepoznata greška

math_unknown_function
Talk

unknown function

nepoznata funkcija

media_sample
Talk

Example.mp3

ime_medija_fajla.ogg

media_tip
Talk

Media file link

Putanja ka multimedijalnom fajlu

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 mala 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...

Još...

move
Talk

Move

Premjestite

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 registrovani korisnik i prijavljeni da biste premjestili stranicu.

movepage
Talk

Move page

Premjestite stranicu

movepagebtn
Talk

Move page

premjestite 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.

Odgovarajuća stranica za razgovor, ako postoji, će automatski biti premještena istovremeno osim:

  • Ako premještate stranicu preko imenskih prostora,
  • Neprazna stranica za razgovor već postoji pod novim imenom, ili
  • Odčekirajte donju kutiju.

U tim slučajevima, moraćete ručno da premjestite stranicu ukoliko 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.

Donji upitnik će preimenovati stranicu, premještajući svu njenu historiju na novo ime. Stari naslov će postati preusmjerenje na novi naslov. Poveznice prema starom naslovu neće biti promijenjene; obavezno provjerite da li ima dvostruka ili pokvarenih preusmjerenja. Na vama je odgovornost da veze i dalje idu tamo gdje trebaju da idu.

Obratite pažnju da stranica neće biti pomjerena ako već postoji stranica sa novim naslovom, osim ako je ona prazna ili preusmjerenje i nema historiju promjena. Ovo znači da ne možete preimenovati stranicu na ono ime sa koga ste je preimenovali ako pogriješite, i ne možete prepisati postojeću stranicu.

PAŽNJA! Ovo može biti drastična i neočekivana promjena za popularnu stranicu; molimo Vas da budete sigurni da razumijete poslijedice ovoga prije što nastavite.

movetalk
Talk

Move "talk" page as well, if applicable.

Premjestite "stranicu za razgovor" takođe, ako je moguće.

movethispage
Talk

Move this page

Premjesti ovu stranicu

mycontris
Talk

My contributions

Moj doprinos

mypage
Talk

My page

Moja korisnička stranica

mytalk
Talk

My talk

Moj razgovor

navigation
Talk

Navigation

Navigacija

nbytes
Talk

$1 bytes

$1 bajtova

nchanges
Talk

$1 changes

$1 promijena

newarticle
Talk

(New)

(Novi članak)

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.

Vikirječ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 Vikirječ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 šifra:

newtitle
Talk

To new title

Novi naziv

newusersonly
Talk

(new users only)
(samo novi korisnici)

next
Talk

next

sljed

nextn
Talk

next $1

sljedećih $1

nlinks
Talk

$1 links

$1 veza

noaffirmation
Talk

You must affirm that your upload does not violate any copyrights.

<Noaffirmation>

noarticletext
Talk

(There is currently no text in this page)

Vikirječ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.

Nisu nađene izmjene koje spadaju pod ove kriterije.

nocookieslogin
Talk

Wiktionary uses cookies to log in users. You have cookies disabled. Please enable them and try again.

Vikirječnik koristi kolačiće (cookies) da bi se korisnici prijavili. Vi ste onemogućili kolačiće na Vašem kompjuteru. Molimo Vas da ih omogućite i da pokušate ponovo sa prijavom.

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 nalog je napravljen, ali niste prijavljeni. Vikirječnik koristi kolačiće (cookies) da bi se korisnici prijavili. Vi ste onemogućili kolačiće na Vašem kompjuteru. Omogućite ih a onda se prijavite sa svojim novim korisničkim imenom i šifrom.

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, ili je izabrao da ne prima e-poštu od drugih korisnika.

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.

Ništa nije povezano ovdje.

nolinkstoimage
Talk

There are no pages that link to this image.

Nijedana stranica ne vodi na ovu sliku.

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.

Pokušali ste da učitate stranicu posebne namjene koja se ne nalazi na Vikirječniku.

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 Vikirječnik softvera.

nosuchspecialpage
Talk

No such special page

Ova stranica posebne namjene ne postoji

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 sa imenom "$1". Provjerite Vaše kucanje, ili upotrebite donji upitnik da napravite novi korisnički nalog.

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 članak

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 u svom spisku praćenih stranica.

nowiki_sample
Talk

Insert non-formatted text here

Dodaj neformatirani tekst ovdje

nowiki_tip
Talk

Ignore wiki formatting

Ignoriši viki formatiranje teksta

nstab-category
Talk

Category

Kategorija

nstab-help
Talk

Help

Pomoć

nstab-image
Talk

Image

Slika

nstab-main
Talk

Article

Članak

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

da

oldpassword
Talk

Old password

Stara šifra:

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 - Vikirječ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 Vikirječ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

Vikirječnik podsjetnik za šifru

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 šifra je poslata na adresu e-pošte korisnika "$1".

perfcached
Talk

The following data is cached and may not be completely up to date:

Sljedeći podaci su pohranjeni u keš (cache) memoriji i moguće je da ne prikazuju trenutno stanje:

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.

Žao nam je! Ova mogućnost je privremeno onemogućena jer usporava bazu do te mjere da više niko ne može da koristi viki.

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

Vikirječ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.

Vikirječnik je onemogućen od strane MedijaViki, viki mašine slobodnog koda.

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

Podešavanja

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

Ostala podešavanja

prefs-personal
Talk

User data

Korisnički podaci

prefs-rc
Talk

Recent changes and stub display

Podešavanja nedavnih izmjena

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 reflektuje tekst u gornjem polju kako će izgledati ako pritisnete "Sačuvaj članak".

previewnote
Talk

Remember that this is only a preview, and has not yet been saved!

Izmjene još uvijek nisu sačuvane. Ovo je samo pregled izmjena.

prevn
Talk

previous $1

prethodnih $1

printableversion
Talk

Printable version

Verzija sa štampanje

printsubtitle
Talk

(From http://bs.wiktionary.org)

(Sa http://bs.wiktionary.org)

protect
Talk

Protect

Zaštitite

protectcomment
Talk

Reason for protecting

Razlog za zaštitu

protectedarticle
Talk

protected [[$1]]

stranica "$1" je zaštićena

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

Zapis zaštite

protectlogtext
Talk

Below is a list of page locks/unlocks. See [[Wiktionary:Protected page]] for more information.

Ispod je spisak zaštićenih i oslobođenih stranica. Pogledajte Vikirječnik:Zaštićena stranica za više informacija.

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štitite ovu stranicu

proxyblocker
Talk

Proxy blocker

Bloker proksija

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 proksi. Molimo vas da kontaktirate vašeg davatelja internetskih usluga (Internet Service Provider-a) ili tehničku podršku i obavijestite ih o ovom ozbiljnom sigurnosnom problemu.

proxyblocksuccess
Talk

Done.

Proksi uspješno blokiran.

qbbrowse
Talk

Browse

Nađite

qbedit
Talk

Edit

Izmjenite

qbfind
Talk

Find

Pronađite

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

Slučajna 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 najskorijih $1 izmjena u posljednjih $2 dana;
$3

rclistfrom
Talk

Show new changes starting from $1

Prikaži nove izmjene počev od $1

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 $2 (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 je trenutno zaključana za nove unose i ostale izmjene, vjerovatno zbog rutinskog održavanja, posle čega će biti vraćena u uobičajeno stanje.

Administrator koji ju je zaključao je ponudio ovo 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.

PAŽNJA: Baza je zaključana zbog održavanja, tako da nećete moći da sačuvate svoje izmjene za sada. Možda želite da kopirate i nalijepite tekst u tekst editor i sačuvate ga za kasnije.

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.

Na ovoj stranici možete pratiti nedavne izmjene.

Vikirječnik trenutno ima 329 članaka.

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" je uklonjena iz vašeg spiska praćenih stranica.

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 sa: "$1"

returnto
Talk

Return to $1.

Vratite se na stranicu "$1".

retypenew
Talk

Retype new password

Ponovo ukucajte novu šifru

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 prijašnju reviziju

revertimg
Talk

rev

vrt

revertpage
Talk

Reverted edit of $2, changed back to last version by $1

Vraćene izmjene $2 na poslijednju izmjenu korisnika $1

revhistory
Talk

Revision history

Historija izmjena

revisionasof
Talk

Revision as of $1

Revizija od $1

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

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

Povratak na prethodnu ver. neuspješan

rollbacklink
Talk

rollback

vrati

rows
Talk

Rows

Redova

savearticle
Talk

Save page

Sačuvaj

savedprefs
Talk

Your preferences have been saved.

Vaša podešavanja su sačuvana.

savefile
Talk

Save file

Sačuvaj fajl

saveprefs
Talk

Save preferences

Sačuvajte podešavanja

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 Vikirječnika.

searchhelppage
Talk

Wiktionary:Searching

Vikiriječ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

Podešavanja rezultata pretrage

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 Vikiriječ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

Trenutno 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

Vaš potpis sa trenutnim vremenom

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

Vikirječnik

siteuser
Talk

Wiktionary user $1

Vikirječnikov korisnik $1

siteusers
Talk

Wiktionary user(s) $1

Vikirječ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 spoljašnjem sajtu.

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

Statistika

storedversion
Talk

Stored version

Trenutna verzija

stubthreshold
Talk

Threshold for stub display

Granica za prikazivanje kratkih stranica

subcategories
Talk

Subcategories

Podkategorije

subject
Talk

Subject/headline

Tema/naslov

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

Stranice čiji tekst sadrži upit

thisisdeleted
Talk

View or restore $1?

Pogledaj ili vrati $1?

thumbnail-more
Talk

Enlarge

Uvećajte

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

Stranice koje odgovaraju upitu

toc
Talk

Table of contents

Sadržaj

toolbox
Talk

Toolbox

Posebne funkcije

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]

Prikaži razlike između dvije označene verzije ove stranice. [alt-v]

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žite Vikirječnik [alt-f]

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 moj spisak praćenih stranica. [alt-w]

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)
(vrh)

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"

deblokiran $1

undelete
Talk

Restore deleted page

Pregled izbrisanih stranica

undelete_short
Talk

Undelete $1 edits

Vrati izbrisane stranice ($1)

undeletearticle
Talk

Restore deleted page

Vrati izbrisanu stranicu

undeletebtn
Talk

Restore!

Vrati stranicu!

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 revizije će biti vraćene njenoj historiji. Ako je nova stranica istog imena napravljena od brisanja, vraćene revizije će se pojaviti u ranijoj historiji, a trenutna revizija sadašnje stranice neće biti automatski zamijenjena.

undeletepage
Talk

View and restore deleted pages

Pogledaj i vrati izbrisane stranice

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.

Sledeće stranice su izbrisane ali su još uvijek u arhivi i mogu biti vraćene. Arhiva moše biti periodično čišćena.

undeleterevision
Talk

Deleted revision as of $1

Izbrisana revizija od $1

undeleterevisions
Talk

$1 revisions archived

$1 arhiviranih revizija

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 da otključam bazu.

unlockdb
Talk

Unlock database

Otključaj bazu

unlockdbsuccesssub
Talk

Database lock removed

Baza je otključana

unlockdbsuccesstext
Talk

The database has been unlocked.

Vikirječ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

odštitite

unprotectcomment
Talk

Reason for unprotecting

Razlog za skidanje zaštite

unprotectedarticle
Talk

unprotected [[$1]]

odštićena "$1"

unprotectsub
Talk

(Unprotecting "$1")

(Skidanje zaštite "$1")

unprotectthispage
Talk

Unprotect this page

Odštitite ovu stranicu

unusedimages
Talk

Unused images

Neupotrijebljene 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 Vikiriječnici, mogu povezati na sliku direktnom URL-om, i tako mogu još uvijek biti prikazani ovdje uprkos aktivnoj upotrebi.

unwatch
Talk

Unwatch

Ukinite praćenje

unwatchthispage
Talk

Stop watching

Ukinite praćenje

updated
Talk

(Updated)

(Osvježeno)

upload
Talk

Upload file

Postavi datoteku

uploadbtn
Talk

Upload file

Postavi datoteku

uploaddisabled
Talk

Sorry, uploading is disabled.

Slanje fajlova je isključ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

Historija slanja

uploadlogpagetext
Talk

Below is a list of the most recent file uploads. All times shown are server time (UTC). <ul> </ul>

Ispod je spisak najskorijih slanja.

uploadnologin
Talk

Not logged in

Niste prijavljeni

uploadnologintext
Talk

You must be <a href="/wiki/Special:Userlogin">logged in</a> to upload files.

Morate biti prijavljeni da bi ste slali fajlove.

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.

Attention niels epting.svg 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 za postavljanje datoteka

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 ovo je samo izgled vašeg CSS-a, još uvijek nije sačuvan!

userexists
Talk

The user name you entered is already in use. Please choose a different name.

Korisničko ime koje ste odabrali je već u upotrebi. Molimo da izaberete drugo korisničko ime.

userjspreview
Talk

'''Remember that you are only testing/previewing your user javascript, it has not yet been saved!'''

Zapamtite ovo je samo izgled vaše JavaScript-e, još uvijek nije sačuvan!

userlogin
Talk

Log in

Prijavite se / Registrujte se

userlogout
Talk

Log out

Odjavite se

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).

Prikaži ($1) ($2) ($3).

viewsource
Talk

View source

Prikaži izvor

viewtalkpage
Talk

View discussion

Prikaži diskusiju

wantedpages
Talk

Wanted pages

Najpotrebnije stranice

watch
Talk

Watch

Pratite stranicu

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>.)

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

Praćene stranice

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

Pratite 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 je povezano ovdje

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.

Morate da se prijavite da bi ste 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

Vikiriječnik

wlnote
Talk

Below are the last $1 changes in the last <b>$2</b> hours.

Ovdje je najskorijih $1 izmjena, načinjenih u posljednjih $2 sati.

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

Prikaži zadnjih $1 sati $2 dana $3

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.

Šifra koju ste unijeli je netačna. Pokušajte ponovo.

yourdiff
Talk

Differences

Razlike

youremail
Talk

Your email*

Vaša e-poštanska adresa*

yourname
Talk

Your user name

Vaše korisničko ime

yournick
Talk

Your nickname (for signatures)

Vaš nadimak (za potpis)

yourpassword
Talk

Your password

Vaša šifra

yourpasswordagain
Talk

Retype password

Ponovo unesite šifru

yourrealname
Talk

Your real name*

Vaše pravo ime *

yourtext
Talk

Your text

Vaš tekst