| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202 |
- from __future__ import annotations
- from pendulum.locales.ja.custom import translations as custom_translations
- """
- ja locale file.
- It has been generated automatically and must not be modified directly.
- """
- locale = {
- "plural": lambda n: "other",
- "ordinal": lambda n: "other",
- "translations": {
- "days": {
- "abbreviated": {
- 0: "月",
- 1: "火",
- 2: "水",
- 3: "木",
- 4: "金",
- 5: "土",
- 6: "日",
- },
- "narrow": {
- 0: "月",
- 1: "火",
- 2: "水",
- 3: "木",
- 4: "金",
- 5: "土",
- 6: "日",
- },
- "short": {
- 0: "月",
- 1: "火",
- 2: "水",
- 3: "木",
- 4: "金",
- 5: "土",
- 6: "日",
- },
- "wide": {
- 0: "月曜日",
- 1: "火曜日",
- 2: "水曜日",
- 3: "木曜日",
- 4: "金曜日",
- 5: "土曜日",
- 6: "日曜日",
- },
- },
- "months": {
- "abbreviated": {
- 1: "1月",
- 2: "2月",
- 3: "3月",
- 4: "4月",
- 5: "5月",
- 6: "6月",
- 7: "7月",
- 8: "8月",
- 9: "9月",
- 10: "10月",
- 11: "11月",
- 12: "12月",
- },
- "narrow": {
- 1: "1",
- 2: "2",
- 3: "3",
- 4: "4",
- 5: "5",
- 6: "6",
- 7: "7",
- 8: "8",
- 9: "9",
- 10: "10",
- 11: "11",
- 12: "12",
- },
- "wide": {
- 1: "1月",
- 2: "2月",
- 3: "3月",
- 4: "4月",
- 5: "5月",
- 6: "6月",
- 7: "7月",
- 8: "8月",
- 9: "9月",
- 10: "10月",
- 11: "11月",
- 12: "12月",
- },
- },
- "units": {
- "year": {
- "other": "{0} 年",
- },
- "month": {
- "other": "{0} か月",
- },
- "week": {
- "other": "{0} 週間",
- },
- "day": {
- "other": "{0} 日",
- },
- "hour": {
- "other": "{0} 時間",
- },
- "minute": {
- "other": "{0} 分",
- },
- "second": {
- "other": "{0} 秒",
- },
- "microsecond": {
- "other": "{0} マイクロ秒",
- },
- },
- "relative": {
- "year": {
- "future": {
- "other": "{0} 年後",
- },
- "past": {
- "other": "{0} 年前",
- },
- },
- "month": {
- "future": {
- "other": "{0} か月後",
- },
- "past": {
- "other": "{0} か月前",
- },
- },
- "week": {
- "future": {
- "other": "{0} 週間後",
- },
- "past": {
- "other": "{0} 週間前",
- },
- },
- "day": {
- "future": {
- "other": "{0} 日後",
- },
- "past": {
- "other": "{0} 日前",
- },
- },
- "hour": {
- "future": {
- "other": "{0} 時間後",
- },
- "past": {
- "other": "{0} 時間前",
- },
- },
- "minute": {
- "future": {
- "other": "{0} 分後",
- },
- "past": {
- "other": "{0} 分前",
- },
- },
- "second": {
- "future": {
- "other": "{0} 秒後",
- },
- "past": {
- "other": "{0} 秒前",
- },
- },
- },
- "day_periods": {
- "midnight": "真夜中",
- "am": "午前",
- "noon": "正午",
- "pm": "午後",
- "morning1": "朝",
- "afternoon1": "昼",
- "evening1": "夕方",
- "night1": "夜",
- "night2": "夜中",
- },
- "week_data": {
- "min_days": 1,
- "first_day": 0,
- "weekend_start": 5,
- "weekend_end": 6,
- },
- },
- "custom": custom_translations,
- }
|