Forked mumble-django project from https://bitbucket.org/Svedrin/mumble-django
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

171 lines
4.6 KiB

  1. /*
  2. * Croatian translation
  3. * By Ylodi (utf8 encoding)
  4. * 8 May 2007
  5. */
  6. Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Učitavanje...</div>';
  7. if(Ext.View){
  8. Ext.View.prototype.emptyText = "";
  9. }
  10. if(Ext.grid.GridPanel){
  11. Ext.grid.GridPanel.prototype.ddText = "{0} odabranih redova";
  12. }
  13. if(Ext.TabPanelItem){
  14. Ext.TabPanelItem.prototype.closeText = "Zatvori ovaj tab";
  15. }
  16. if(Ext.form.Field){
  17. Ext.form.Field.prototype.invalidText = "Unesena vrijednost u ovom polju je neispravna";
  18. }
  19. if(Ext.LoadMask){
  20. Ext.LoadMask.prototype.msg = "Učitavanje...";
  21. }
  22. Date.monthNames = [
  23. "Siječanj",
  24. "Veljača",
  25. "Ožujak",
  26. "Travanj",
  27. "Svibanj",
  28. "Lipanj",
  29. "Srpanj",
  30. "Kolovoz",
  31. "Rujan",
  32. "Listopad",
  33. "Studeni",
  34. "Prosinac"
  35. ];
  36. Date.dayNames = [
  37. "Nedjelja",
  38. "Ponedjeljak",
  39. "Utorak",
  40. "Srijeda",
  41. "Četvrtak",
  42. "Petak",
  43. "Subota"
  44. ];
  45. if(Ext.MessageBox){
  46. Ext.MessageBox.buttonText = {
  47. ok : "U redu",
  48. cancel : "Odustani",
  49. yes : "Da",
  50. no : "Ne"
  51. };
  52. }
  53. if(Ext.util.Format){
  54. Ext.util.Format.date = function(v, format){
  55. if(!v) return "";
  56. if(!(v instanceof Date)) v = new Date(Date.parse(v));
  57. return v.dateFormat(format || "d.m.Y");
  58. };
  59. }
  60. if(Ext.DatePicker){
  61. Ext.apply(Ext.DatePicker.prototype, {
  62. todayText : "Danas",
  63. minText : "Taj datum je prije najmanjeg datuma",
  64. maxText : "Taj datum je poslije najvećeg datuma",
  65. disabledDaysText : "",
  66. disabledDatesText : "",
  67. monthNames : Date.monthNames,
  68. dayNames : Date.dayNames,
  69. nextText : 'Slijedeći mjesec (Control+Desno)',
  70. prevText : 'Prethodni mjesec (Control+Lijevo)',
  71. monthYearText : 'Odaberite mjesec (Control+Gore/Dolje za promjenu godine)',
  72. todayTip : "{0} (Razmaknica)",
  73. format : "d.m.y",
  74. startDay : 1
  75. });
  76. }
  77. if(Ext.PagingToolbar){
  78. Ext.apply(Ext.PagingToolbar.prototype, {
  79. beforePageText : "Stranica",
  80. afterPageText : "od {0}",
  81. firstText : "Prva stranica",
  82. prevText : "Prethodna stranica",
  83. nextText : "Slijedeća stranica",
  84. lastText : "Posljednja stranica",
  85. refreshText : "Obnovi",
  86. displayMsg : "Prikazujem {0} - {1} od {2}",
  87. emptyMsg : 'Nema podataka za prikaz'
  88. });
  89. }
  90. if(Ext.form.TextField){
  91. Ext.apply(Ext.form.TextField.prototype, {
  92. minLengthText : "Minimalna dužina za ovo polje je {0}",
  93. maxLengthText : "Maksimalna dužina za ovo polje je {0}",
  94. blankText : "Ovo polje je obavezno",
  95. regexText : "",
  96. emptyText : null
  97. });
  98. }
  99. if(Ext.form.NumberField){
  100. Ext.apply(Ext.form.NumberField.prototype, {
  101. minText : "Minimalna vrijednost za ovo polje je {0}",
  102. maxText : "Maksimalna vrijednost za ovo polje je {0}",
  103. nanText : "{0} nije ispravan broj"
  104. });
  105. }
  106. if(Ext.form.DateField){
  107. Ext.apply(Ext.form.DateField.prototype, {
  108. disabledDaysText : "Neaktivno",
  109. disabledDatesText : "Neaktivno",
  110. minText : "Datum u ovom polje mora biti poslije {0}",
  111. maxText : "Datum u ovom polju mora biti prije {0}",
  112. invalidText : "{0} nije ispravan datum - mora biti u obliku {1}",
  113. format : "d.m.y"
  114. });
  115. }
  116. if(Ext.form.ComboBox){
  117. Ext.apply(Ext.form.ComboBox.prototype, {
  118. loadingText : "Učitavanje...",
  119. valueNotFoundText : undefined
  120. });
  121. }
  122. if(Ext.form.VTypes){
  123. Ext.apply(Ext.form.VTypes, {
  124. emailText : 'Ovdje možete unijeti samo e-mail adresu u obliku "korisnik@domena.com"',
  125. urlText : 'Ovdje možete unijeti samo URL u obliku "http:/'+'/www.domena.com"',
  126. alphaText : 'Ovo polje može sadržavati samo slova i znak _',
  127. alphanumText : 'Ovo polje može sadržavati samo slova, brojeve i znak _'
  128. });
  129. }
  130. if(Ext.grid.GridView){
  131. Ext.apply(Ext.grid.GridView.prototype, {
  132. sortAscText : "Sortiraj rastućim redoslijedom",
  133. sortDescText : "Sortiraj padajućim redoslijedom",
  134. lockText : "Zaključaj stupac",
  135. unlockText : "Otključaj stupac",
  136. columnsText : "Stupci"
  137. });
  138. }
  139. if(Ext.grid.PropertyColumnModel){
  140. Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
  141. nameText : "Naziv",
  142. valueText : "Vrijednost",
  143. dateFormat : "d.m.Y"
  144. });
  145. }
  146. if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
  147. Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
  148. splitTip : "Povuci za promjenu veličine.",
  149. collapsibleSplitTip : "Povuci za promjenu veličine. Dvostruki klik za skrivanje."
  150. });
  151. }