locale.py 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. from __future__ import annotations
  2. from pendulum.locales.de.custom import translations as custom_translations
  3. """
  4. de locale file.
  5. It has been generated automatically and must not be modified directly.
  6. """
  7. locale = {
  8. "plural": lambda n: "one"
  9. if ((n == n and (n == 1)) and (0 == 0 and (0 == 0)))
  10. else "other",
  11. "ordinal": lambda n: "other",
  12. "translations": {
  13. "days": {
  14. "abbreviated": {
  15. 0: "Mo.",
  16. 1: "Di.",
  17. 2: "Mi.",
  18. 3: "Do.",
  19. 4: "Fr.",
  20. 5: "Sa.",
  21. 6: "So.",
  22. },
  23. "narrow": {0: "M", 1: "D", 2: "M", 3: "D", 4: "F", 5: "S", 6: "S"},
  24. "short": {
  25. 0: "Mo.",
  26. 1: "Di.",
  27. 2: "Mi.",
  28. 3: "Do.",
  29. 4: "Fr.",
  30. 5: "Sa.",
  31. 6: "So.",
  32. },
  33. "wide": {
  34. 0: "Montag",
  35. 1: "Dienstag",
  36. 2: "Mittwoch",
  37. 3: "Donnerstag",
  38. 4: "Freitag",
  39. 5: "Samstag",
  40. 6: "Sonntag",
  41. },
  42. },
  43. "months": {
  44. "abbreviated": {
  45. 1: "Jan.",
  46. 2: "Feb.",
  47. 3: "März",
  48. 4: "Apr.",
  49. 5: "Mai",
  50. 6: "Juni",
  51. 7: "Juli",
  52. 8: "Aug.",
  53. 9: "Sep.",
  54. 10: "Okt.",
  55. 11: "Nov.",
  56. 12: "Dez.",
  57. },
  58. "narrow": {
  59. 1: "J",
  60. 2: "F",
  61. 3: "M",
  62. 4: "A",
  63. 5: "M",
  64. 6: "J",
  65. 7: "J",
  66. 8: "A",
  67. 9: "S",
  68. 10: "O",
  69. 11: "N",
  70. 12: "D",
  71. },
  72. "wide": {
  73. 1: "Januar",
  74. 2: "Februar",
  75. 3: "März",
  76. 4: "April",
  77. 5: "Mai",
  78. 6: "Juni",
  79. 7: "Juli",
  80. 8: "August",
  81. 9: "September",
  82. 10: "Oktober",
  83. 11: "November",
  84. 12: "Dezember",
  85. },
  86. },
  87. "units": {
  88. "year": {"one": "{0} Jahr", "other": "{0} Jahre"},
  89. "month": {"one": "{0} Monat", "other": "{0} Monate"},
  90. "week": {"one": "{0} Woche", "other": "{0} Wochen"},
  91. "day": {"one": "{0} Tag", "other": "{0} Tage"},
  92. "hour": {"one": "{0} Stunde", "other": "{0} Stunden"},
  93. "minute": {"one": "{0} Minute", "other": "{0} Minuten"},
  94. "second": {"one": "{0} Sekunde", "other": "{0} Sekunden"},
  95. "microsecond": {"one": "{0} Mikrosekunde", "other": "{0} Mikrosekunden"},
  96. },
  97. "relative": {
  98. "year": {
  99. "future": {"other": "in {0} Jahren", "one": "in {0} Jahr"},
  100. "past": {"other": "vor {0} Jahren", "one": "vor {0} Jahr"},
  101. },
  102. "month": {
  103. "future": {"other": "in {0} Monaten", "one": "in {0} Monat"},
  104. "past": {"other": "vor {0} Monaten", "one": "vor {0} Monat"},
  105. },
  106. "week": {
  107. "future": {"other": "in {0} Wochen", "one": "in {0} Woche"},
  108. "past": {"other": "vor {0} Wochen", "one": "vor {0} Woche"},
  109. },
  110. "day": {
  111. "future": {"other": "in {0} Tagen", "one": "in {0} Tag"},
  112. "past": {"other": "vor {0} Tagen", "one": "vor {0} Tag"},
  113. },
  114. "hour": {
  115. "future": {"other": "in {0} Stunden", "one": "in {0} Stunde"},
  116. "past": {"other": "vor {0} Stunden", "one": "vor {0} Stunde"},
  117. },
  118. "minute": {
  119. "future": {"other": "in {0} Minuten", "one": "in {0} Minute"},
  120. "past": {"other": "vor {0} Minuten", "one": "vor {0} Minute"},
  121. },
  122. "second": {
  123. "future": {"other": "in {0} Sekunden", "one": "in {0} Sekunde"},
  124. "past": {"other": "vor {0} Sekunden", "one": "vor {0} Sekunde"},
  125. },
  126. },
  127. "day_periods": {
  128. "midnight": "Mitternacht",
  129. "am": "vorm.",
  130. "pm": "nachm.",
  131. "morning1": "morgens",
  132. "morning2": "vormittags",
  133. "afternoon1": "mittags",
  134. "afternoon2": "nachmittags",
  135. "evening1": "abends",
  136. "night1": "nachts",
  137. },
  138. "week_data": {
  139. "min_days": 1,
  140. "first_day": 0,
  141. "weekend_start": 5,
  142. "weekend_end": 6,
  143. },
  144. },
  145. "custom": custom_translations,
  146. }