Forked mumble-django project from https://bitbucket.org/Svedrin/mumble-django
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

169 lines
5.5 KiB

  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. }