/source/Plug-in/ext/build/locale/ext-lang-bg.js

http://prosporous.googlecode.com/ · JavaScript · 272 lines · 240 code · 22 blank · 10 comment · 22 complexity · 198f0757cf24895d694bc029455fecac MD5 · raw file

  1. /**
  2. * Bulgarian Translation
  3. *
  4. * By ?????? ??????????, ???????, ??????
  5. * 10 October 2007
  6. * By Nedko Penev
  7. * 26 October 2007
  8. *
  9. * (utf-8 encoding)
  10. */
  11. Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">?????????...</div>';
  12. if(Ext.View){
  13. Ext.View.prototype.emptyText = "";
  14. }
  15. if(Ext.grid.GridPanel){
  16. Ext.grid.GridPanel.prototype.ddText = "{0} ??????? ??????";
  17. }
  18. if(Ext.TabPanelItem){
  19. Ext.TabPanelItem.prototype.closeText = "??????? ???";
  20. }
  21. if(Ext.form.Field){
  22. Ext.form.Field.prototype.invalidText = "????????? ???????? ?? ??????";
  23. }
  24. if(Ext.LoadMask){
  25. Ext.LoadMask.prototype.msg = "?????????...";
  26. }
  27. Date.monthNames = [
  28. "??????",
  29. "????????",
  30. "????",
  31. "?????",
  32. "???",
  33. "???",
  34. "???",
  35. "??????",
  36. "?????????",
  37. "????????",
  38. "???????",
  39. "????????"
  40. ];
  41. Date.monthNumbers = {
  42. Jan : 0,
  43. Feb : 1,
  44. Mar : 2,
  45. Apr : 3,
  46. May : 4,
  47. Jun : 5,
  48. Jul : 6,
  49. Aug : 7,
  50. Sep : 8,
  51. Oct : 9,
  52. Nov : 10,
  53. Dec : 11
  54. };
  55. Date.dayNames = [
  56. "??????",
  57. "??????????",
  58. "???????",
  59. "?????",
  60. "?????????",
  61. "?????",
  62. "??????"
  63. ];
  64. if(Ext.MessageBox){
  65. Ext.MessageBox.buttonText = {
  66. ok : "OK",
  67. cancel : "??????",
  68. yes : "??",
  69. no : "??"
  70. };
  71. }
  72. if(Ext.util.Format){
  73. Ext.util.Format.date = function(v, format){
  74. if(!v) return "";
  75. if(!(v instanceof Date)) v = new Date(Date.parse(v));
  76. return v.dateFormat(format || "d.m.Y");
  77. };
  78. }
  79. if(Ext.DatePicker){
  80. Ext.apply(Ext.DatePicker.prototype, {
  81. todayText : "????",
  82. minText : "???? ???? ? ????? ???????????",
  83. maxText : "???? ???? ? ???? ????????????",
  84. disabledDaysText : "",
  85. disabledDatesText : "",
  86. monthNames : Date.monthNames,
  87. dayNames : Date.dayNames,
  88. nextText : '??????? ????? (Control+Right)',
  89. prevText : '???????? ????? (Control+Left)',
  90. monthYearText : '?????? ????? (Control+Up/Down ?? ??????????? ?? ??????)',
  91. todayTip : "{0} (Spacebar)",
  92. format : "d.m.y",
  93. okText : "&#160;OK&#160;",
  94. cancelText : "??????",
  95. startDay : 1
  96. });
  97. }
  98. if(Ext.PagingToolbar){
  99. Ext.apply(Ext.PagingToolbar.prototype, {
  100. beforePageText : "????????",
  101. afterPageText : "?? {0}",
  102. firstText : "????? ????????",
  103. prevText : "???????? ????????",
  104. nextText : "???????? ????????",
  105. lastText : "???????? ????????",
  106. refreshText : "?????????",
  107. displayMsg : "?????????? {0} - {1} ?? {2}",
  108. emptyMsg : '???? ????? ?? ?????????'
  109. });
  110. }
  111. if(Ext.form.TextField){
  112. Ext.apply(Ext.form.TextField.prototype, {
  113. minLengthText : "??????????? ??????? ?? ???? ???? ? {0}",
  114. maxLengthText : "???????????? ??????? ?? ???? ???? ? {0}",
  115. blankText : "???? ???? ? ????????????",
  116. regexText : "",
  117. emptyText : null
  118. });
  119. }
  120. if(Ext.form.NumberField){
  121. Ext.apply(Ext.form.NumberField.prototype, {
  122. minText : "??????????? ???????? ?? ???? ???? ? {0}",
  123. maxText : "???????????? ???????? ?? ???? ???? ? {0}",
  124. nanText : "{0} ?? ? ??????? ?????"
  125. });
  126. }
  127. if(Ext.form.DateField){
  128. Ext.apply(Ext.form.DateField.prototype, {
  129. disabledDaysText : "??????????",
  130. disabledDatesText : "??????????",
  131. minText : "?????? ? ???? ???? ?????? ?? ? ???? {0}",
  132. maxText : "?????? ? ???? ???? ?????? ?? ? ????? {0}",
  133. invalidText : "{0} ?? ? ??????? ???? - ?????? ?? ???? ??? ?????? {1}",
  134. format : "d.m.y",
  135. altFormats : "d.m.y|d/m/Y|d-m-y|d-m-Y|d/m|d-m|dm|dmy|dmY|d|Y-m-d"
  136. });
  137. }
  138. if(Ext.form.ComboBox){
  139. Ext.apply(Ext.form.ComboBox.prototype, {
  140. loadingText : "?????????...",
  141. valueNotFoundText : undefined
  142. });
  143. }
  144. if(Ext.form.VTypes){
  145. Ext.apply(Ext.form.VTypes, {
  146. emailText : '???? ???? ?????? ?? ???? ????? ??? ?????? "user@domain.com"',
  147. urlText : '???? ???? ?????? ?? ???? URL ??? ?????? "http:/'+'/www.domain.com"',
  148. alphaText : '???? ???? ?????? ?? ??????? ???? ????? ? _',
  149. alphanumText : '???? ???? ?????? ?? ??????? ???? ?????, ????? ? _'
  150. });
  151. }
  152. if(Ext.form.HtmlEditor){
  153. Ext.apply(Ext.form.HtmlEditor.prototype, {
  154. createLinkText : '????, ???????? URL ?? ????????:',
  155. buttonTips : {
  156. bold : {
  157. title: 'Bold (Ctrl+B)',
  158. text: '????????? ???????? ?????.',
  159. cls: 'x-html-editor-tip'
  160. },
  161. italic : {
  162. title: 'Italic (Ctrl+I)',
  163. text: '????? ???????? ????? ??????.',
  164. cls: 'x-html-editor-tip'
  165. },
  166. underline : {
  167. title: 'Underline (Ctrl+U)',
  168. text: '?????????? ???????? ?????.',
  169. cls: 'x-html-editor-tip'
  170. },
  171. increasefontsize : {
  172. title: '??????? ??????',
  173. text: '????????? ??????? ?? ??????.',
  174. cls: 'x-html-editor-tip'
  175. },
  176. decreasefontsize : {
  177. title: '?????? ??????',
  178. text: '???????? ??????? ?? ??????.',
  179. cls: 'x-html-editor-tip'
  180. },
  181. backcolor : {
  182. title: '???? ?? ?????????? ?????',
  183. text: '??????? ??????? ???? ?? ???????? ?????.',
  184. cls: 'x-html-editor-tip'
  185. },
  186. forecolor : {
  187. title: '???? ?? ??????',
  188. text: '??????? ????? ?? ???????? ?????.',
  189. cls: 'x-html-editor-tip'
  190. },
  191. justifyleft : {
  192. title: '???? ????????????',
  193. text: '?????????? ?????? ?? ????.',
  194. cls: 'x-html-editor-tip'
  195. },
  196. justifycenter : {
  197. title: '??????????',
  198. text: '???????? ??????.',
  199. cls: 'x-html-editor-tip'
  200. },
  201. justifyright : {
  202. title: '????? ????????????',
  203. text: '?????????? ?????? ?? ?????.',
  204. cls: 'x-html-editor-tip'
  205. },
  206. insertunorderedlist : {
  207. title: '??????????? ??????',
  208. text: '??????? ??????????? ??????.',
  209. cls: 'x-html-editor-tip'
  210. },
  211. insertorderedlist : {
  212. title: '????????? ??????',
  213. text: '??????? ????????? ??????.',
  214. cls: 'x-html-editor-tip'
  215. },
  216. createlink : {
  217. title: '???????????',
  218. text: '???????? ???????? ????? ? ???????????.',
  219. cls: 'x-html-editor-tip'
  220. },
  221. sourceedit : {
  222. title: '??????????? ?? ????',
  223. text: '??????????? ? ????? ?? ??????????? ?? ????.',
  224. cls: 'x-html-editor-tip'
  225. }
  226. }
  227. });
  228. }
  229. if(Ext.grid.GridView){
  230. Ext.apply(Ext.grid.GridView.prototype, {
  231. sortAscText : "??????? ? ????????? ???",
  232. sortDescText : "??????? ? ????????? ???",
  233. lockText : "??????? ??????",
  234. unlockText : "??????? ??????",
  235. columnsText : "??????"
  236. });
  237. }
  238. if(Ext.grid.PropertyColumnModel){
  239. Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
  240. nameText : "???",
  241. valueText : "????????",
  242. dateFormat : "d.m.Y"
  243. });
  244. }
  245. if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
  246. Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
  247. splitTip : "??????? ? ??????? ?? ?? ????????? ???????.",
  248. collapsibleSplitTip : "??????? ? ??????? ?? ?? ????????? ???????. ??????? ??? ???? ?? ?? ???????."
  249. });
  250. }