locale.py 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. from __future__ import annotations
  2. from pendulum.locales.tr.custom import translations as custom_translations
  3. """
  4. tr locale file.
  5. It has been generated automatically and must not be modified directly.
  6. """
  7. locale = {
  8. "plural": lambda n: "one" if (n == n and (n == 1)) else "other",
  9. "ordinal": lambda n: "other",
  10. "translations": {
  11. "days": {
  12. "abbreviated": {
  13. 0: "Pzt",
  14. 1: "Sal",
  15. 2: "Çar",
  16. 3: "Per",
  17. 4: "Cum",
  18. 5: "Cmt",
  19. 6: "Paz",
  20. },
  21. "narrow": {
  22. 0: "P",
  23. 1: "S",
  24. 2: "Ç",
  25. 3: "P",
  26. 4: "C",
  27. 5: "C",
  28. 6: "P",
  29. },
  30. "short": {
  31. 0: "Pt",
  32. 1: "Sa",
  33. 2: "Ça",
  34. 3: "Pe",
  35. 4: "Cu",
  36. 5: "Ct",
  37. 6: "Pa",
  38. },
  39. "wide": {
  40. 0: "Pazartesi",
  41. 1: "Salı",
  42. 2: "Çarşamba",
  43. 3: "Perşembe",
  44. 4: "Cuma",
  45. 5: "Cumartesi",
  46. 6: "Pazar",
  47. },
  48. },
  49. "months": {
  50. "abbreviated": {
  51. 1: "Oca",
  52. 2: "Şub",
  53. 3: "Mar",
  54. 4: "Nis",
  55. 5: "May",
  56. 6: "Haz",
  57. 7: "Tem",
  58. 8: "Ağu",
  59. 9: "Eyl",
  60. 10: "Eki",
  61. 11: "Kas",
  62. 12: "Ara",
  63. },
  64. "narrow": {
  65. 1: "O",
  66. 2: "Ş",
  67. 3: "M",
  68. 4: "N",
  69. 5: "M",
  70. 6: "H",
  71. 7: "T",
  72. 8: "A",
  73. 9: "E",
  74. 10: "E",
  75. 11: "K",
  76. 12: "A",
  77. },
  78. "wide": {
  79. 1: "Ocak",
  80. 2: "Şubat",
  81. 3: "Mart",
  82. 4: "Nisan",
  83. 5: "Mayıs",
  84. 6: "Haziran",
  85. 7: "Temmuz",
  86. 8: "Ağustos",
  87. 9: "Eylül",
  88. 10: "Ekim",
  89. 11: "Kasım",
  90. 12: "Aralık",
  91. },
  92. },
  93. "units": {
  94. "year": {
  95. "one": "{0} yıl",
  96. "other": "{0} yıl",
  97. },
  98. "month": {
  99. "one": "{0} ay",
  100. "other": "{0} ay",
  101. },
  102. "week": {
  103. "one": "{0} hafta",
  104. "other": "{0} hafta",
  105. },
  106. "day": {
  107. "one": "{0} gün",
  108. "other": "{0} gün",
  109. },
  110. "hour": {
  111. "one": "{0} saat",
  112. "other": "{0} saat",
  113. },
  114. "minute": {
  115. "one": "{0} dakika",
  116. "other": "{0} dakika",
  117. },
  118. "second": {
  119. "one": "{0} saniye",
  120. "other": "{0} saniye",
  121. },
  122. "microsecond": {
  123. "one": "{0} mikrosaniye",
  124. "other": "{0} mikrosaniye",
  125. },
  126. },
  127. "relative": {
  128. "year": {
  129. "future": {
  130. "other": "{0} yıl sonra",
  131. "one": "{0} yıl sonra",
  132. },
  133. "past": {
  134. "other": "{0} yıl önce",
  135. "one": "{0} yıl önce",
  136. },
  137. },
  138. "month": {
  139. "future": {
  140. "other": "{0} ay sonra",
  141. "one": "{0} ay sonra",
  142. },
  143. "past": {
  144. "other": "{0} ay önce",
  145. "one": "{0} ay önce",
  146. },
  147. },
  148. "week": {
  149. "future": {
  150. "other": "{0} hafta sonra",
  151. "one": "{0} hafta sonra",
  152. },
  153. "past": {
  154. "other": "{0} hafta önce",
  155. "one": "{0} hafta önce",
  156. },
  157. },
  158. "day": {
  159. "future": {
  160. "other": "{0} gün sonra",
  161. "one": "{0} gün sonra",
  162. },
  163. "past": {
  164. "other": "{0} gün önce",
  165. "one": "{0} gün önce",
  166. },
  167. },
  168. "hour": {
  169. "future": {
  170. "other": "{0} saat sonra",
  171. "one": "{0} saat sonra",
  172. },
  173. "past": {
  174. "other": "{0} saat önce",
  175. "one": "{0} saat önce",
  176. },
  177. },
  178. "minute": {
  179. "future": {
  180. "other": "{0} dakika sonra",
  181. "one": "{0} dakika sonra",
  182. },
  183. "past": {
  184. "other": "{0} dakika önce",
  185. "one": "{0} dakika önce",
  186. },
  187. },
  188. "second": {
  189. "future": {
  190. "other": "{0} saniye sonra",
  191. "one": "{0} saniye sonra",
  192. },
  193. "past": {
  194. "other": "{0} saniye önce",
  195. "one": "{0} saniye önce",
  196. },
  197. },
  198. },
  199. "day_periods": {
  200. "midnight": "gece yarısı",
  201. "am": "ÖÖ",
  202. "noon": "öğle",
  203. "pm": "ÖS",
  204. "morning1": "sabah",
  205. "morning2": "öğleden önce",
  206. "afternoon1": "öğleden sonra",
  207. "afternoon2": "akşamüstü",
  208. "evening1": "akşam",
  209. "night1": "gece",
  210. },
  211. "week_data": {
  212. "min_days": 1,
  213. "first_day": 0,
  214. "weekend_start": 5,
  215. "weekend_end": 6,
  216. },
  217. },
  218. "custom": custom_translations,
  219. }