locale.py 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. from __future__ import annotations
  2. from pendulum.locales.ja.custom import translations as custom_translations
  3. """
  4. ja 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: "月",
  14. 1: "火",
  15. 2: "水",
  16. 3: "木",
  17. 4: "金",
  18. 5: "土",
  19. 6: "日",
  20. },
  21. "narrow": {
  22. 0: "月",
  23. 1: "火",
  24. 2: "水",
  25. 3: "木",
  26. 4: "金",
  27. 5: "土",
  28. 6: "日",
  29. },
  30. "short": {
  31. 0: "月",
  32. 1: "火",
  33. 2: "水",
  34. 3: "木",
  35. 4: "金",
  36. 5: "土",
  37. 6: "日",
  38. },
  39. "wide": {
  40. 0: "月曜日",
  41. 1: "火曜日",
  42. 2: "水曜日",
  43. 3: "木曜日",
  44. 4: "金曜日",
  45. 5: "土曜日",
  46. 6: "日曜日",
  47. },
  48. },
  49. "months": {
  50. "abbreviated": {
  51. 1: "1月",
  52. 2: "2月",
  53. 3: "3月",
  54. 4: "4月",
  55. 5: "5月",
  56. 6: "6月",
  57. 7: "7月",
  58. 8: "8月",
  59. 9: "9月",
  60. 10: "10月",
  61. 11: "11月",
  62. 12: "12月",
  63. },
  64. "narrow": {
  65. 1: "1",
  66. 2: "2",
  67. 3: "3",
  68. 4: "4",
  69. 5: "5",
  70. 6: "6",
  71. 7: "7",
  72. 8: "8",
  73. 9: "9",
  74. 10: "10",
  75. 11: "11",
  76. 12: "12",
  77. },
  78. "wide": {
  79. 1: "1月",
  80. 2: "2月",
  81. 3: "3月",
  82. 4: "4月",
  83. 5: "5月",
  84. 6: "6月",
  85. 7: "7月",
  86. 8: "8月",
  87. 9: "9月",
  88. 10: "10月",
  89. 11: "11月",
  90. 12: "12月",
  91. },
  92. },
  93. "units": {
  94. "year": {
  95. "other": "{0} 年",
  96. },
  97. "month": {
  98. "other": "{0} か月",
  99. },
  100. "week": {
  101. "other": "{0} 週間",
  102. },
  103. "day": {
  104. "other": "{0} 日",
  105. },
  106. "hour": {
  107. "other": "{0} 時間",
  108. },
  109. "minute": {
  110. "other": "{0} 分",
  111. },
  112. "second": {
  113. "other": "{0} 秒",
  114. },
  115. "microsecond": {
  116. "other": "{0} マイクロ秒",
  117. },
  118. },
  119. "relative": {
  120. "year": {
  121. "future": {
  122. "other": "{0} 年後",
  123. },
  124. "past": {
  125. "other": "{0} 年前",
  126. },
  127. },
  128. "month": {
  129. "future": {
  130. "other": "{0} か月後",
  131. },
  132. "past": {
  133. "other": "{0} か月前",
  134. },
  135. },
  136. "week": {
  137. "future": {
  138. "other": "{0} 週間後",
  139. },
  140. "past": {
  141. "other": "{0} 週間前",
  142. },
  143. },
  144. "day": {
  145. "future": {
  146. "other": "{0} 日後",
  147. },
  148. "past": {
  149. "other": "{0} 日前",
  150. },
  151. },
  152. "hour": {
  153. "future": {
  154. "other": "{0} 時間後",
  155. },
  156. "past": {
  157. "other": "{0} 時間前",
  158. },
  159. },
  160. "minute": {
  161. "future": {
  162. "other": "{0} 分後",
  163. },
  164. "past": {
  165. "other": "{0} 分前",
  166. },
  167. },
  168. "second": {
  169. "future": {
  170. "other": "{0} 秒後",
  171. },
  172. "past": {
  173. "other": "{0} 秒前",
  174. },
  175. },
  176. },
  177. "day_periods": {
  178. "midnight": "真夜中",
  179. "am": "午前",
  180. "noon": "正午",
  181. "pm": "午後",
  182. "morning1": "朝",
  183. "afternoon1": "昼",
  184. "evening1": "夕方",
  185. "night1": "夜",
  186. "night2": "夜中",
  187. },
  188. "week_data": {
  189. "min_days": 1,
  190. "first_day": 0,
  191. "weekend_start": 5,
  192. "weekend_end": 6,
  193. },
  194. },
  195. "custom": custom_translations,
  196. }