ext-lang-af.js 4.4 KB

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