summaryrefslogtreecommitdiffstats
path: root/pendulum/locales/ja/locale.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2023-12-17 14:36:26 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2023-12-17 14:36:33 +0000
commit665666d6f4213da8db57ebb480947b7caf1fe382 (patch)
tree0cac5d322dfe861a6de62b04fb916cef6dbe4510 /pendulum/locales/ja/locale.py
parentReleasing debian version 3.0.0~a1-2. (diff)
downloadpendulum-665666d6f4213da8db57ebb480947b7caf1fe382.tar.xz
pendulum-665666d6f4213da8db57ebb480947b7caf1fe382.zip
Merging upstream version 3.0.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'pendulum/locales/ja/locale.py')
-rw-r--r--pendulum/locales/ja/locale.py194
1 files changed, 0 insertions, 194 deletions
diff --git a/pendulum/locales/ja/locale.py b/pendulum/locales/ja/locale.py
deleted file mode 100644
index 574d2ec..0000000
--- a/pendulum/locales/ja/locale.py
+++ /dev/null
@@ -1,194 +0,0 @@
-from .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": "夜中",
- },
- },
- "custom": custom_translations,
-}