/javascripts/lib/src/locale/ext-lang-sr_RS.js
JavaScript | 178 lines | 147 code | 20 blank | 11 comment | 21 complexity | 81b20109c0123d8aba1bd461dd4d5e70 MD5 | raw file
Possible License(s): GPL-3.0
1/*! 2 * Ext JS Library 3.2.1 3 * Copyright(c) 2006-2010 Ext JS, Inc. 4 * licensing@extjs.com 5 * http://www.extjs.com/license 6 */ 7?/* 8 * Serbian Cyrillic Translation 9 * by ?olovic Vladan (cyrillic, utf8 encoding) 10 * sr_RS (ex: sr_CS, sr_YU) 11 * 12 May 2007 12 */ 13 14Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">????????...</div>'; 15 16if(Ext.View){ 17 Ext.View.prototype.emptyText = ""; 18} 19 20if(Ext.grid.GridPanel){ 21 Ext.grid.GridPanel.prototype.ddText = "{0} ????????? ??????"; 22} 23 24if(Ext.TabPanelItem){ 25 Ext.TabPanelItem.prototype.closeText = "??????? ??? �???????�"; 26} 27 28if(Ext.form.Field){ 29 Ext.form.Field.prototype.invalidText = "??????? ???????? ???? ????????"; 30} 31 32if(Ext.LoadMask){ 33 Ext.LoadMask.prototype.msg = "????????..."; 34} 35 36Date.monthNames = [ 37 "??????", 38 "???????", 39 "????", 40 "?????", 41 "???", 42 "???", 43 "???", 44 "??????", 45 "?????????", 46 "???????", 47 "????????", 48 "????????" 49]; 50 51Date.dayNames = [ 52 "??????", 53 "?????????", 54 "??????", 55 "?????", 56 "????????", 57 "?????", 58 "??????" 59]; 60 61if(Ext.MessageBox){ 62 Ext.MessageBox.buttonText = { 63 ok : "? ????", 64 cancel : "????????", 65 yes : "??", 66 no : "??" 67 }; 68} 69 70if(Ext.util.Format){ 71 Ext.util.Format.date = function(v, format){ 72 if(!v) return ""; 73 if(!(v instanceof Date)) v = new Date(Date.parse(v)); 74 return v.dateFormat(format || "d.m.Y"); 75 }; 76} 77 78if(Ext.DatePicker){ 79 Ext.apply(Ext.DatePicker.prototype, { 80 todayText : "?????", 81 minText : "????? ?? ?????? ???????? ?????????? ??????", 82 maxText : "????? ?? ????? ???????? ?????????? ??????", 83 disabledDaysText : "", 84 disabledDatesText : "", 85 monthNames : Date.monthNames, 86 dayNames : Date.dayNames, 87 nextText : '??????? ????? (Control+?????)', 88 prevText : '????????? ????? (Control+????)', 89 monthYearText : '????????? ????? (Control+????/???? ?? ????? ??????)', 90 todayTip : "{0} (??????????)", 91 format : "d.m.y", 92 startDay : 1 93 }); 94} 95 96if(Ext.PagingToolbar){ 97 Ext.apply(Ext.PagingToolbar.prototype, { 98 beforePageText : "??????", 99 afterPageText : "?? {0}", 100 firstText : "???? ??????", 101 prevText : "????????? ??????", 102 nextText : "??????? ??????", 103 lastText : "???????? ??????", 104 refreshText : "??????", 105 displayMsg : "????????? {0} - {1} ?? {2}", 106 emptyMsg : '????? ??? ?????????' 107 }); 108} 109 110if(Ext.form.TextField){ 111 Ext.apply(Ext.form.TextField.prototype, { 112 minLengthText : "????????? ?????? ???? ???? ?? {0}", 113 maxLengthText : "?????????? ?????? ???? ???? ?? {0}", 114 blankText : "???? ?? ????????", 115 regexText : "", 116 emptyText : null 117 }); 118} 119 120if(Ext.form.NumberField){ 121 Ext.apply(Ext.form.NumberField.prototype, { 122 minText : "????????? ???????? ? ???? ?? {0}", 123 maxText : "?????????? ???????? ? ???? ?? {0}", 124 nanText : "{0} ???? ???????? ????" 125 }); 126} 127 128if(Ext.form.DateField){ 129 Ext.apply(Ext.form.DateField.prototype, { 130 disabledDaysText : "???????", 131 disabledDatesText : "???????", 132 minText : "????? ? ???? ???? ???? ???? ????? {0}", 133 maxText : "????? ? ???? ???? ???? ???? ??? {0}", 134 invalidText : "{0} ???? ???????? ????? - ????????? ????? ?? {1}", 135 format : "d.m.y" 136 }); 137} 138 139if(Ext.form.ComboBox){ 140 Ext.apply(Ext.form.ComboBox.prototype, { 141 loadingText : "????????...", 142 valueNotFoundText : undefined 143 }); 144} 145 146if(Ext.form.VTypes){ 147 Ext.apply(Ext.form.VTypes, { 148 emailText : '??? ???? ???????? e-mail ?????? ????????? ? ?????? "korisnik@domen.com"', 149 urlText : '??? ???? ???????? URL ?????? ????????? ? ?????? "http:/'+'/www.domen.com"', 150 alphaText : '??? ???? ???? ???????? ????????? ????? ? ???? _', 151 alphanumText : '??? ???? ???? ???????? ???? ?????, ??????? ? ???? _' 152 }); 153} 154 155if(Ext.grid.GridView){ 156 Ext.apply(Ext.grid.GridView.prototype, { 157 sortAscText : "??????? ????????", 158 sortDescText : "????????? ????????", 159 lockText : "???????? ??????", 160 unlockText : "???????? ??????", 161 columnsText : "??????" 162 }); 163} 164 165if(Ext.grid.PropertyColumnModel){ 166 Ext.apply(Ext.grid.PropertyColumnModel.prototype, { 167 nameText : "?????", 168 valueText : "????????", 169 dateFormat : "d.m.Y" 170 }); 171} 172 173if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){ 174 Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, { 175 splitTip : "?????? ?? ?????? ????????.", 176 collapsibleSplitTip : "?????? ?? ?????? ????????. ????????? ???? ?? ?????????." 177 }); 178}