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.

177 lines
4.9 KiB

  1. /*
  2. * List compiled by mystix on the extjs.com forums.
  3. * Thank you Mystix!
  4. *
  5. * Afrikaans Translations
  6. * by Thys Meintjes (20 July 2007)
  7. */
  8. /* Ext Core translations */
  9. Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Besig om te laai...</div>';
  10. /* Ext single string translations */
  11. if(Ext.View){
  12. Ext.View.prototype.emptyText = "";
  13. }
  14. if(Ext.grid.GridPanel){
  15. Ext.grid.GridPanel.prototype.ddText = "{0} geselekteerde ry(e)";
  16. }
  17. if(Ext.TabPanelItem){
  18. Ext.TabPanelItem.prototype.closeText = "Maak die oortjie toe";
  19. }
  20. if(Ext.form.Field){
  21. Ext.form.Field.prototype.invalidText = "Die waarde in hierdie veld is foutief";
  22. }
  23. if(Ext.LoadMask){
  24. Ext.LoadMask.prototype.msg = "Besig om te laai...";
  25. }
  26. /* Javascript month and days translations */
  27. Date.monthNames = [
  28. "Januarie",
  29. "Februarie",
  30. "Maart",
  31. "April",
  32. "Mei",
  33. "Junie",
  34. "Julie",
  35. "Augustus",
  36. "September",
  37. "Oktober",
  38. "November",
  39. "Desember"
  40. ];
  41. Date.dayNames = [
  42. "Sondag",
  43. "Maandag",
  44. "Dinsdag",
  45. "Woensdag",
  46. "Donderdag",
  47. "Vrydag",
  48. "Saterdag"
  49. ];
  50. /* Ext components translations */
  51. if(Ext.MessageBox){
  52. Ext.MessageBox.buttonText = {
  53. ok : "OK",
  54. cancel : "Kanselleer",
  55. yes : "Ja",
  56. no : "Nee"
  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 : "Vandag",
  69. minText : "Hierdie datum is vroër as die minimum datum",
  70. maxText : "Hierdie dataum is later as die maximum datum",
  71. disabledDaysText : "",
  72. disabledDatesText : "",
  73. monthNames : Date.monthNames,
  74. dayNames : Date.dayNames,
  75. nextText : 'Volgende Maand (Beheer+Regs)',
  76. prevText : 'Vorige Maand (Beheer+Links)',
  77. monthYearText : "Kies 'n maand (Beheer+Op/Af volgende/vorige jaar)",
  78. todayTip : "{0} (Spasie)",
  79. format : "d-m-y",
  80. startDay : 0
  81. });
  82. }
  83. if(Ext.PagingToolbar){
  84. Ext.apply(Ext.PagingToolbar.prototype, {
  85. beforePageText : "Bladsy",
  86. afterPageText : "van {0}",
  87. firstText : "Eerste Bladsy",
  88. prevText : "Vorige Bladsy",
  89. nextText : "Volgende Bladsy",
  90. lastText : "Laatste Bladsy",
  91. refreshText : "Verfris",
  92. displayMsg : "Wys {0} - {1} van {2}",
  93. emptyMsg : 'Geen data om te wys nie'
  94. });
  95. }
  96. if(Ext.form.TextField){
  97. Ext.apply(Ext.form.TextField.prototype, {
  98. minLengthText : "Die minimum lengte van die veld is {0}",
  99. maxLengthText : "Die maximum lengte van die veld is {0}",
  100. blankText : "Die veld is verpligtend",
  101. regexText : "",
  102. emptyText : null
  103. });
  104. }
  105. if(Ext.form.NumberField){
  106. Ext.apply(Ext.form.NumberField.prototype, {
  107. minText : "Die minimum waarde vir die veld is {0}",
  108. maxText : "Die maximum waarde vir die veld is {0}",
  109. nanText : "{0} is nie 'n geldige waarde nie"
  110. });
  111. }
  112. if(Ext.form.DateField){
  113. Ext.apply(Ext.form.DateField.prototype, {
  114. disabledDaysText : "Afgeskakel",
  115. disabledDatesText : "Afgeskakel",
  116. minText : "Die datum in hierdie veld moet na {0} wees",
  117. maxText : "Die datum in hierdie veld moet voor {0} wees",
  118. invalidText : "{0} is nie 'n geldige datum nie - datumformaat is {1}",
  119. format : "d/m/y",
  120. altFormats : "d/m/Y|d-m-y|d-m-Y|d/m|d-m|dm|dmy|dmY|d|Y-m-d"
  121. });
  122. }
  123. if(Ext.form.ComboBox){
  124. Ext.apply(Ext.form.ComboBox.prototype, {
  125. loadingText : "Besig om te laai...",
  126. valueNotFoundText : undefined
  127. });
  128. }
  129. if(Ext.form.VTypes){
  130. Ext.apply(Ext.form.VTypes, {
  131. emailText : "Hierdie veld moet 'n e-pos adres wees met die formaat 'gebruiker@domein.za'",
  132. urlText : "Hierdie veld moet 'n URL wees me die formaat 'http:/'+'/www.domein.za'",
  133. alphaText : 'Die veld mag alleenlik letters en _ bevat',
  134. alphanumText : 'Die veld mag alleenlik letters, syfers en _ bevat'
  135. });
  136. }
  137. if(Ext.grid.GridView){
  138. Ext.apply(Ext.grid.GridView.prototype, {
  139. sortAscText : "Sorteer Oplopend",
  140. sortDescText : "Sorteer Aflopend",
  141. lockText : "Vries Kolom",
  142. unlockText : "Ontvries Kolom",
  143. columnsText : "Kolomme"
  144. });
  145. }
  146. if(Ext.grid.PropertyColumnModel){
  147. Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
  148. nameText : "Naam",
  149. valueText : "Waarde",
  150. dateFormat : "Y-m-j"
  151. });
  152. }
  153. if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
  154. Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
  155. splitTip : "Trek om grootte aan te pas.",
  156. collapsibleSplitTip : "Trek om grootte aan te pas. Dubbel-klik om weg te steek."
  157. });
  158. }