locale.py 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. from __future__ import annotations
  2. from pendulum.locales.id.custom import translations as custom_translations
  3. """
  4. id locale file.
  5. It has been generated automatically and must not be modified directly.
  6. """
  7. locale = {
  8. "plural": lambda n: "other",
  9. "ordinal": lambda n: "other",
  10. "translations": {
  11. "days": {
  12. "abbreviated": {
  13. 0: "Sen",
  14. 1: "Sel",
  15. 2: "Rab",
  16. 3: "Kam",
  17. 4: "Jum",
  18. 5: "Sab",
  19. 6: "Min",
  20. },
  21. "narrow": {0: "S", 1: "S", 2: "R", 3: "K", 4: "J", 5: "S", 6: "M"},
  22. "short": {
  23. 0: "Sen",
  24. 1: "Sel",
  25. 2: "Rab",
  26. 3: "Kam",
  27. 4: "Jum",
  28. 5: "Sab",
  29. 6: "Min",
  30. },
  31. "wide": {
  32. 0: "Senin",
  33. 1: "Selasa",
  34. 2: "Rabu",
  35. 3: "Kamis",
  36. 4: "Jumat",
  37. 5: "Sabtu",
  38. 6: "Minggu",
  39. },
  40. },
  41. "months": {
  42. "abbreviated": {
  43. 1: "Jan",
  44. 2: "Feb",
  45. 3: "Mar",
  46. 4: "Apr",
  47. 5: "Mei",
  48. 6: "Jun",
  49. 7: "Jul",
  50. 8: "Agt",
  51. 9: "Sep",
  52. 10: "Okt",
  53. 11: "Nov",
  54. 12: "Des",
  55. },
  56. "narrow": {
  57. 1: "J",
  58. 2: "F",
  59. 3: "M",
  60. 4: "A",
  61. 5: "M",
  62. 6: "J",
  63. 7: "J",
  64. 8: "A",
  65. 9: "S",
  66. 10: "O",
  67. 11: "N",
  68. 12: "D",
  69. },
  70. "wide": {
  71. 1: "Januari",
  72. 2: "Februari",
  73. 3: "Maret",
  74. 4: "April",
  75. 5: "Mei",
  76. 6: "Juni",
  77. 7: "Juli",
  78. 8: "Agustus",
  79. 9: "September",
  80. 10: "Oktober",
  81. 11: "November",
  82. 12: "Desember",
  83. },
  84. },
  85. "units": {
  86. "year": {"other": "{0} tahun"},
  87. "month": {"other": "{0} bulan"},
  88. "week": {"other": "{0} minggu"},
  89. "day": {"other": "{0} hari"},
  90. "hour": {"other": "{0} jam"},
  91. "minute": {"other": "{0} menit"},
  92. "second": {"other": "{0} detik"},
  93. "microsecond": {"other": "{0} mikrodetik"},
  94. },
  95. "relative": {
  96. "year": {
  97. "future": {"other": "dalam {0} tahun"},
  98. "past": {"other": "{0} tahun yang lalu"},
  99. },
  100. "month": {
  101. "future": {"other": "dalam {0} bulan"},
  102. "past": {"other": "{0} bulan yang lalu"},
  103. },
  104. "week": {
  105. "future": {"other": "dalam {0} minggu"},
  106. "past": {"other": "{0} minggu yang lalu"},
  107. },
  108. "day": {
  109. "future": {"other": "dalam {0} hari"},
  110. "past": {"other": "{0} hari yang lalu"},
  111. },
  112. "hour": {
  113. "future": {"other": "dalam {0} jam"},
  114. "past": {"other": "{0} jam yang lalu"},
  115. },
  116. "minute": {
  117. "future": {"other": "dalam {0} menit"},
  118. "past": {"other": "{0} menit yang lalu"},
  119. },
  120. "second": {
  121. "future": {"other": "dalam {0} detik"},
  122. "past": {"other": "{0} detik yang lalu"},
  123. },
  124. },
  125. "day_periods": {
  126. "midnight": "tengah malam",
  127. "am": "AM",
  128. "noon": "tengah hari",
  129. "pm": "PM",
  130. "morning1": "pagi",
  131. "afternoon1": "siang",
  132. "evening1": "sore",
  133. "night1": "malam",
  134. },
  135. "week_data": {
  136. "min_days": 1,
  137. "first_day": 0,
  138. "weekend_start": 5,
  139. "weekend_end": 6,
  140. },
  141. },
  142. "custom": custom_translations,
  143. }