[76] | 1 | /*! |
---|
| 2 | * Ext JS Library 3.4.0 |
---|
| 3 | * Copyright(c) 2006-2011 Sencha Inc. |
---|
| 4 | * licensing@sencha.com |
---|
| 5 | * http://www.sencha.com/license |
---|
| 6 | */ |
---|
| 7 | /** |
---|
| 8 | * Slovenian translation by MatjaÅŸ (UTF-8 encoding) |
---|
| 9 | * 25 April 2007 |
---|
| 10 | */ |
---|
| 11 | |
---|
| 12 | Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Nalagam...</div>'; |
---|
| 13 | |
---|
| 14 | if(Ext.View){ |
---|
| 15 | Ext.View.prototype.emptyText = ""; |
---|
| 16 | } |
---|
| 17 | |
---|
| 18 | if(Ext.grid.GridPanel){ |
---|
| 19 | Ext.grid.GridPanel.prototype.ddText = "{0} izbranih vrstic"; |
---|
| 20 | } |
---|
| 21 | |
---|
| 22 | if(Ext.TabPanelItem){ |
---|
| 23 | Ext.TabPanelItem.prototype.closeText = "Zapri zavihek"; |
---|
| 24 | } |
---|
| 25 | |
---|
| 26 | if(Ext.form.Field){ |
---|
| 27 | Ext.form.Field.prototype.invalidText = "Neveljavna vrednost"; |
---|
| 28 | } |
---|
| 29 | |
---|
| 30 | if(Ext.LoadMask){ |
---|
| 31 | Ext.LoadMask.prototype.msg = "Nalagam..."; |
---|
| 32 | } |
---|
| 33 | |
---|
| 34 | Date.monthNames = [ |
---|
| 35 | "Januar", |
---|
| 36 | "Februar", |
---|
| 37 | "Marec", |
---|
| 38 | "April", |
---|
| 39 | "Maj", |
---|
| 40 | "Junij", |
---|
| 41 | "Julij", |
---|
| 42 | "Avgust", |
---|
| 43 | "September", |
---|
| 44 | "Oktober", |
---|
| 45 | "November", |
---|
| 46 | "December" |
---|
| 47 | ]; |
---|
| 48 | |
---|
| 49 | Date.dayNames = [ |
---|
| 50 | "Nedelja", |
---|
| 51 | "Ponedeljek", |
---|
| 52 | "Torek", |
---|
| 53 | "Sreda", |
---|
| 54 | "Äetrtek", |
---|
| 55 | "Petek", |
---|
| 56 | "Sobota" |
---|
| 57 | ]; |
---|
| 58 | |
---|
| 59 | if(Ext.MessageBox){ |
---|
| 60 | Ext.MessageBox.buttonText = { |
---|
| 61 | ok : "V redu", |
---|
| 62 | cancel : "PrekliÄi", |
---|
| 63 | yes : "Da", |
---|
| 64 | no : "Ne" |
---|
| 65 | }; |
---|
| 66 | } |
---|
| 67 | |
---|
| 68 | if(Ext.util.Format){ |
---|
| 69 | Ext.util.Format.date = function(v, format){ |
---|
| 70 | if(!v) return ""; |
---|
| 71 | if(!(v instanceof Date)) v = new Date(Date.parse(v)); |
---|
| 72 | return v.dateFormat(format || "d.m.Y"); |
---|
| 73 | }; |
---|
| 74 | } |
---|
| 75 | |
---|
| 76 | if(Ext.DatePicker){ |
---|
| 77 | Ext.apply(Ext.DatePicker.prototype, { |
---|
| 78 | todayText : "Danes", |
---|
| 79 | minText : "Navedeni datum je pred spodnjim datumom", |
---|
| 80 | maxText : "Navedeni datum je za zgornjim datumom", |
---|
| 81 | disabledDaysText : "", |
---|
| 82 | disabledDatesText : "", |
---|
| 83 | monthNames : Date.monthNames, |
---|
| 84 | dayNames : Date.dayNames, |
---|
| 85 | nextText : 'Naslednji mesec (Control+Desno)', |
---|
| 86 | prevText : 'Prejšnji mesec (Control+Levo)', |
---|
| 87 | monthYearText : 'Izberite mesec (Control+Gor/Dol za premik let)', |
---|
| 88 | todayTip : "{0} (Preslednica)", |
---|
| 89 | format : "d.m.y", |
---|
| 90 | startDay : 1 |
---|
| 91 | }); |
---|
| 92 | } |
---|
| 93 | |
---|
| 94 | if(Ext.PagingToolbar){ |
---|
| 95 | Ext.apply(Ext.PagingToolbar.prototype, { |
---|
| 96 | beforePageText : "Stran", |
---|
| 97 | afterPageText : "od {0}", |
---|
| 98 | firstText : "Prva stran", |
---|
| 99 | prevText : "Prejšnja stran", |
---|
| 100 | nextText : "Naslednja stran", |
---|
| 101 | lastText : "Zadnja stran", |
---|
| 102 | refreshText : "OsveÅŸi", |
---|
| 103 | displayMsg : "Prikazujem {0} - {1} od {2}", |
---|
| 104 | emptyMsg : 'Ni podatkov za prikaz' |
---|
| 105 | }); |
---|
| 106 | } |
---|
| 107 | |
---|
| 108 | if(Ext.form.TextField){ |
---|
| 109 | Ext.apply(Ext.form.TextField.prototype, { |
---|
| 110 | minLengthText : "Minimalna dolÅŸina tega polja je {0}", |
---|
| 111 | maxLengthText : "Maksimalna dolÅŸina tega polja je {0}", |
---|
| 112 | blankText : "To polje je obvezno", |
---|
| 113 | regexText : "", |
---|
| 114 | emptyText : null |
---|
| 115 | }); |
---|
| 116 | } |
---|
| 117 | |
---|
| 118 | if(Ext.form.NumberField){ |
---|
| 119 | Ext.apply(Ext.form.NumberField.prototype, { |
---|
| 120 | minText : "Minimalna vrednost tega polja je {0}", |
---|
| 121 | maxText : "Maksimalna vrednost tega polja je {0}", |
---|
| 122 | nanText : "{0} ni veljavna Å¡tevilka" |
---|
| 123 | }); |
---|
| 124 | } |
---|
| 125 | |
---|
| 126 | if(Ext.form.DateField){ |
---|
| 127 | Ext.apply(Ext.form.DateField.prototype, { |
---|
| 128 | disabledDaysText : "OnemogoÄen", |
---|
| 129 | disabledDatesText : "OnemogoÄen", |
---|
| 130 | minText : "Datum mora biti po {0}", |
---|
| 131 | maxText : "Datum mora biti pred {0}", |
---|
| 132 | invalidText : "{0} ni veljaven datum - mora biti v tem formatu {1}", |
---|
| 133 | format : "d.m.y", |
---|
| 134 | startDay : 1 |
---|
| 135 | }); |
---|
| 136 | } |
---|
| 137 | |
---|
| 138 | if(Ext.form.ComboBox){ |
---|
| 139 | Ext.apply(Ext.form.ComboBox.prototype, { |
---|
| 140 | loadingText : "Nalagam...", |
---|
| 141 | valueNotFoundText : undefined |
---|
| 142 | }); |
---|
| 143 | } |
---|
| 144 | |
---|
| 145 | if(Ext.form.VTypes){ |
---|
| 146 | Ext.apply(Ext.form.VTypes, { |
---|
| 147 | emailText : 'To polje je e-mail naslov formata "ime@domena.si"', |
---|
| 148 | urlText : 'To polje je URL naslov formata "http:/'+'/www.domena.si"', |
---|
| 149 | alphaText : 'To polje lahko vsebuje samo Ärke in _', |
---|
| 150 | alphanumText : 'To polje lahko vsebuje samo Ärke, Å¡tevilke in _' |
---|
| 151 | }); |
---|
| 152 | } |
---|
| 153 | |
---|
| 154 | if(Ext.grid.GridView){ |
---|
| 155 | Ext.apply(Ext.grid.GridView.prototype, { |
---|
| 156 | sortAscText : "Sortiraj naraÅ¡ÄajoÄe", |
---|
| 157 | sortDescText : "Sortiraj padajoÄe", |
---|
| 158 | lockText : "Zakleni stolpec", |
---|
| 159 | unlockText : "Odkleni stolpec", |
---|
| 160 | columnsText : "Stolpci" |
---|
| 161 | }); |
---|
| 162 | } |
---|
| 163 | |
---|
| 164 | if(Ext.grid.PropertyColumnModel){ |
---|
| 165 | Ext.apply(Ext.grid.PropertyColumnModel.prototype, { |
---|
| 166 | nameText : "Ime", |
---|
| 167 | valueText : "Vrednost", |
---|
| 168 | dateFormat : "j.m.Y" |
---|
| 169 | }); |
---|
| 170 | } |
---|
| 171 | |
---|
| 172 | if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){ |
---|
| 173 | Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, { |
---|
| 174 | splitTip : "Potegni za razširitev.", |
---|
| 175 | collapsibleSplitTip : "Potegni za razÅ¡iritev. Dvojni klik, Äe ÅŸelite skriti." |
---|
| 176 | }); |
---|
| 177 | } |
---|