locale.py 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  1. from __future__ import annotations
  2. from pendulum.locales.sk.custom import translations as custom_translations
  3. """
  4. sk locale file.
  5. It has been generated automatically and must not be modified directly.
  6. """
  7. locale = {
  8. "plural": lambda n: "few"
  9. if ((n == n and (n >= 2 and n <= 4)) and (0 == 0 and (0 == 0)))
  10. else "many"
  11. if (not (0 == 0 and (0 == 0)))
  12. else "one"
  13. if ((n == n and (n == 1)) and (0 == 0 and (0 == 0)))
  14. else "other",
  15. "ordinal": lambda n: "other",
  16. "translations": {
  17. "days": {
  18. "abbreviated": {
  19. 0: "po",
  20. 1: "ut",
  21. 2: "st",
  22. 3: "št",
  23. 4: "pi",
  24. 5: "so",
  25. 6: "ne",
  26. },
  27. "narrow": {
  28. 0: "p",
  29. 1: "u",
  30. 2: "s",
  31. 3: "š",
  32. 4: "p",
  33. 5: "s",
  34. 6: "n",
  35. },
  36. "short": {
  37. 0: "po",
  38. 1: "ut",
  39. 2: "st",
  40. 3: "št",
  41. 4: "pi",
  42. 5: "so",
  43. 6: "ne",
  44. },
  45. "wide": {
  46. 0: "pondelok",
  47. 1: "utorok",
  48. 2: "streda",
  49. 3: "štvrtok",
  50. 4: "piatok",
  51. 5: "sobota",
  52. 6: "nedeľa",
  53. },
  54. },
  55. "months": {
  56. "abbreviated": {
  57. 1: "jan",
  58. 2: "feb",
  59. 3: "mar",
  60. 4: "apr",
  61. 5: "máj",
  62. 6: "jún",
  63. 7: "júl",
  64. 8: "aug",
  65. 9: "sep",
  66. 10: "okt",
  67. 11: "nov",
  68. 12: "dec",
  69. },
  70. "narrow": {
  71. 1: "j",
  72. 2: "f",
  73. 3: "m",
  74. 4: "a",
  75. 5: "m",
  76. 6: "j",
  77. 7: "j",
  78. 8: "a",
  79. 9: "s",
  80. 10: "o",
  81. 11: "n",
  82. 12: "d",
  83. },
  84. "wide": {
  85. 1: "januára",
  86. 2: "februára",
  87. 3: "marca",
  88. 4: "apríla",
  89. 5: "mája",
  90. 6: "júna",
  91. 7: "júla",
  92. 8: "augusta",
  93. 9: "septembra",
  94. 10: "októbra",
  95. 11: "novembra",
  96. 12: "decembra",
  97. },
  98. },
  99. "units": {
  100. "year": {
  101. "one": "{0} rok",
  102. "few": "{0} roky",
  103. "many": "{0} roka",
  104. "other": "{0} rokov",
  105. },
  106. "month": {
  107. "one": "{0} mesiac",
  108. "few": "{0} mesiace",
  109. "many": "{0} mesiaca",
  110. "other": "{0} mesiacov",
  111. },
  112. "week": {
  113. "one": "{0} týždeň",
  114. "few": "{0} týždne",
  115. "many": "{0} týždňa",
  116. "other": "{0} týždňov",
  117. },
  118. "day": {
  119. "one": "{0} deň",
  120. "few": "{0} dni",
  121. "many": "{0} dňa",
  122. "other": "{0} dní",
  123. },
  124. "hour": {
  125. "one": "{0} hodina",
  126. "few": "{0} hodiny",
  127. "many": "{0} hodiny",
  128. "other": "{0} hodín",
  129. },
  130. "minute": {
  131. "one": "{0} minúta",
  132. "few": "{0} minúty",
  133. "many": "{0} minúty",
  134. "other": "{0} minút",
  135. },
  136. "second": {
  137. "one": "{0} sekunda",
  138. "few": "{0} sekundy",
  139. "many": "{0} sekundy",
  140. "other": "{0} sekúnd",
  141. },
  142. "microsecond": {
  143. "one": "{0} mikrosekunda",
  144. "few": "{0} mikrosekundy",
  145. "many": "{0} mikrosekundy",
  146. "other": "{0} mikrosekúnd",
  147. },
  148. },
  149. "relative": {
  150. "year": {
  151. "future": {
  152. "other": "o {0} rokov",
  153. "one": "o {0} rok",
  154. "few": "o {0} roky",
  155. "many": "o {0} roka",
  156. },
  157. "past": {
  158. "other": "pred {0} rokmi",
  159. "one": "pred {0} rokom",
  160. "few": "pred {0} rokmi",
  161. "many": "pred {0} roka",
  162. },
  163. },
  164. "month": {
  165. "future": {
  166. "other": "o {0} mesiacov",
  167. "one": "o {0} mesiac",
  168. "few": "o {0} mesiace",
  169. "many": "o {0} mesiaca",
  170. },
  171. "past": {
  172. "other": "pred {0} mesiacmi",
  173. "one": "pred {0} mesiacom",
  174. "few": "pred {0} mesiacmi",
  175. "many": "pred {0} mesiaca",
  176. },
  177. },
  178. "week": {
  179. "future": {
  180. "other": "o {0} týždňov",
  181. "one": "o {0} týždeň",
  182. "few": "o {0} týždne",
  183. "many": "o {0} týždňa",
  184. },
  185. "past": {
  186. "other": "pred {0} týždňami",
  187. "one": "pred {0} týždňom",
  188. "few": "pred {0} týždňami",
  189. "many": "pred {0} týždňa",
  190. },
  191. },
  192. "day": {
  193. "future": {
  194. "other": "o {0} dní",
  195. "one": "o {0} deň",
  196. "few": "o {0} dni",
  197. "many": "o {0} dňa",
  198. },
  199. "past": {
  200. "other": "pred {0} dňami",
  201. "one": "pred {0} dňom",
  202. "few": "pred {0} dňami",
  203. "many": "pred {0} dňa",
  204. },
  205. },
  206. "hour": {
  207. "future": {
  208. "other": "o {0} hodín",
  209. "one": "o {0} hodinu",
  210. "few": "o {0} hodiny",
  211. "many": "o {0} hodiny",
  212. },
  213. "past": {
  214. "other": "pred {0} hodinami",
  215. "one": "pred {0} hodinou",
  216. "few": "pred {0} hodinami",
  217. "many": "pred {0} hodinou",
  218. },
  219. },
  220. "minute": {
  221. "future": {
  222. "other": "o {0} minút",
  223. "one": "o {0} minútu",
  224. "few": "o {0} minúty",
  225. "many": "o {0} minúty",
  226. },
  227. "past": {
  228. "other": "pred {0} minútami",
  229. "one": "pred {0} minútou",
  230. "few": "pred {0} minútami",
  231. "many": "pred {0} minúty",
  232. },
  233. },
  234. "second": {
  235. "future": {
  236. "other": "o {0} sekúnd",
  237. "one": "o {0} sekundu",
  238. "few": "o {0} sekundy",
  239. "many": "o {0} sekundy",
  240. },
  241. "past": {
  242. "other": "pred {0} sekundami",
  243. "one": "pred {0} sekundou",
  244. "few": "pred {0} sekundami",
  245. "many": "pred {0} sekundy",
  246. },
  247. },
  248. },
  249. "day_periods": {
  250. "midnight": "o polnoci",
  251. "am": "AM",
  252. "noon": "napoludnie",
  253. "pm": "PM",
  254. "morning1": "ráno",
  255. "morning2": "dopoludnia",
  256. "afternoon1": "popoludní",
  257. "evening1": "večer",
  258. "night1": "v noci",
  259. },
  260. "week_data": {
  261. "min_days": 1,
  262. "first_day": 0,
  263. "weekend_start": 5,
  264. "weekend_end": 6,
  265. },
  266. },
  267. "custom": custom_translations,
  268. }