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

http://prosporous.googlecode.com/ · JavaScript · 170 lines · 145 code · 20 blank · 5 comment · 21 complexity · 2e63bbe003d1ed13c013ab4ac7054371 MD5 · raw file

  1. /*
  2. * Macedonia translation
  3. * By PetarD petar.dimitrijevic@vorteksed.com.mk (utf8 encoding)
  4. * 23 April 2007
  5. */
  6. Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">????????...</div>';
  7. if(Ext.View){
  8. Ext.View.prototype.emptyText = "";
  9. }
  10. if(Ext.grid.GridPanel){
  11. Ext.grid.GridPanel.prototype.ddText = "{0} ??????? ??????";
  12. }
  13. if(Ext.TabPanelItem){
  14. Ext.TabPanelItem.prototype.closeText = "??????? tab";
  15. }
  16. if(Ext.form.Field){
  17. Ext.form.Field.prototype.invalidText = "????????? ?? ??? ???? ? ?????????";
  18. }
  19. if(Ext.LoadMask){
  20. Ext.LoadMask.prototype.msg = "????????...";
  21. }
  22. Date.monthNames = [
  23. "???????",
  24. "????????",
  25. "????",
  26. "?????",
  27. "???",
  28. "????",
  29. "????",
  30. "??????",
  31. "?????????",
  32. "????????",
  33. "???????",
  34. "????????"
  35. ];
  36. Date.dayNames = [
  37. "??????",
  38. "??????????",
  39. "???????",
  40. "?????",
  41. "????????",
  42. "?????",
  43. "??????"
  44. ];
  45. if(Ext.MessageBox){
  46. Ext.MessageBox.buttonText = {
  47. ok : "???????",
  48. cancel : "???????",
  49. yes : "??",
  50. no : "??"
  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 : "???????",
  63. minText : "???? ????? ? ???? ????????? ?????",
  64. maxText : "???? ????? ? ???? ??????????? ?????",
  65. disabledDaysText : "",
  66. disabledDatesText : "",
  67. monthNames : Date.monthNames,
  68. dayNames : Date.dayNames,
  69. nextText : '?????? ????? (Control+??????? ?????)',
  70. prevText : '????????? ????? (Control+??????? ????)',
  71. monthYearText : '???????? ????? (Control+??????? ????/??????? ????? ?? ???????? ??????)',
  72. todayTip : "{0} (Spacebar)",
  73. format : "d.m.y"
  74. });
  75. }
  76. if(Ext.PagingToolbar){
  77. Ext.apply(Ext.PagingToolbar.prototype, {
  78. beforePageText : "????????",
  79. afterPageText : "?? {0}",
  80. firstText : "???? ????????",
  81. prevText : "????????? ????????",
  82. nextText : "?????? ????????",
  83. lastText : "???????? ????????",
  84. refreshText : "??????",
  85. displayMsg : "?????????? {0} - {1} ?? {2}",
  86. emptyMsg : '???? ???????? ?? ??????'
  87. });
  88. }
  89. if(Ext.form.TextField){
  90. Ext.apply(Ext.form.TextField.prototype, {
  91. minLengthText : "??????????? ??????? ?? ??? ???? ? {0}",
  92. maxLengthText : "???????????? ??????? ?? ??? ???? ? {0}",
  93. blankText : "?????????? ?? ??? ???? ?? ????????",
  94. regexText : "",
  95. emptyText : null
  96. });
  97. }
  98. if(Ext.form.NumberField){
  99. Ext.apply(Ext.form.NumberField.prototype, {
  100. minText : "??????????? ???????? ?? ??? ???? ? {0}",
  101. maxText : "???????????? ???????? ?? ??? ???? ? {0}",
  102. nanText : "{0} ?? ? ??????? ????"
  103. });
  104. }
  105. if(Ext.form.DateField){
  106. Ext.apply(Ext.form.DateField.prototype, {
  107. disabledDaysText : "?????????",
  108. disabledDatesText : "?????????",
  109. minText : "??????? ?? ??? ???? ???? ?? ???? ???? {0}",
  110. maxText : "??????? ?? ??? ???? ???? ?? ???? ?? {0}",
  111. invalidText : "{0} ?? ? ??????? ????? - ???? ?? ???? ?? ?????? {1}",
  112. format : "d.m.y"
  113. });
  114. }
  115. if(Ext.form.ComboBox){
  116. Ext.apply(Ext.form.ComboBox.prototype, {
  117. loadingText : "????????...",
  118. valueNotFoundText : undefined
  119. });
  120. }
  121. if(Ext.form.VTypes){
  122. Ext.apply(Ext.form.VTypes, {
  123. emailText : '??? ???? ????? ?? ???? e-mail ?????? ?? ?????? "user@domain.com"',
  124. urlText : '??? ???? ????? ?? ???? URL ?? ?????? "http:/'+'/www.domain.com"',
  125. alphaText : '??? ???? ????? ?? ?????? ???? ????? ? _',
  126. alphanumText : '??? ???? ????? ?? ?????? ???? ?????, ?????? ? _'
  127. });
  128. }
  129. if(Ext.grid.GridView){
  130. Ext.apply(Ext.grid.GridView.prototype, {
  131. sortAscText : "???????? ????????",
  132. sortDescText : "???????? ????????",
  133. lockText : "??????? ??????",
  134. unlockText : "??????? ??????",
  135. columnsText : "??????"
  136. });
  137. }
  138. if(Ext.grid.PropertyColumnModel){
  139. Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
  140. nameText : "???",
  141. valueText : "????????",
  142. dateFormat : "m.d.Y"
  143. });
  144. }
  145. if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
  146. Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
  147. splitTip : "????????? ?? ???????? ?? ??????????.",
  148. collapsibleSplitTip : "????????? ?? ???????? ?? ??????????. ????? ???? ?? ??????."
  149. });
  150. }