/hippo/src/main/webapp/ext/src/locale/ext-lang-ukr.js

http://hdbc.googlecode.com/ · JavaScript · 258 lines · 226 code · 22 blank · 10 comment · 22 complexity · 0beb77d37b2101f2dc0eaa837b4b542b MD5 · raw file

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