aboutsummaryrefslogtreecommitdiffstats
path: root/node_modules/date-fns/locale/ja-Hira
diff options
context:
space:
mode:
authorPinapelz <yukais@pinapelz.com>2025-06-28 17:26:46 -0700
committerPinapelz <yukais@pinapelz.com>2025-06-28 17:43:56 -0700
commite4fa1e69e7ebfb627c7198fd1a9881e9327ec4d4 (patch)
tree06284a538a6008eca75051399e47db4e5d50301c /node_modules/date-fns/locale/ja-Hira
initial commit: scaffolding
Diffstat (limited to 'node_modules/date-fns/locale/ja-Hira')
-rw-r--r--node_modules/date-fns/locale/ja-Hira/_lib/formatDistance/index.js104
-rw-r--r--node_modules/date-fns/locale/ja-Hira/_lib/formatLong/index.js43
-rw-r--r--node_modules/date-fns/locale/ja-Hira/_lib/formatRelative/index.js20
-rw-r--r--node_modules/date-fns/locale/ja-Hira/_lib/localize/index.js148
-rw-r--r--node_modules/date-fns/locale/ja-Hira/_lib/match/index.js105
-rw-r--r--node_modules/date-fns/locale/ja-Hira/index.d.ts4
-rw-r--r--node_modules/date-fns/locale/ja-Hira/index.js35
-rw-r--r--node_modules/date-fns/locale/ja-Hira/index.js.flow35
-rw-r--r--node_modules/date-fns/locale/ja-Hira/package.json5
9 files changed, 499 insertions, 0 deletions
diff --git a/node_modules/date-fns/locale/ja-Hira/_lib/formatDistance/index.js b/node_modules/date-fns/locale/ja-Hira/_lib/formatDistance/index.js
new file mode 100644
index 0000000..6f0c7d7
--- /dev/null
+++ b/node_modules/date-fns/locale/ja-Hira/_lib/formatDistance/index.js
@@ -0,0 +1,104 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.default = void 0;
+var formatDistanceLocale = {
+ lessThanXSeconds: {
+ one: '1びょうみまん',
+ other: '{{count}}びょうみまん',
+ oneWithSuffix: 'やく1びょう',
+ otherWithSuffix: 'やく{{count}}びょう'
+ },
+ xSeconds: {
+ one: '1びょう',
+ other: '{{count}}びょう'
+ },
+ halfAMinute: '30びょう',
+ lessThanXMinutes: {
+ one: '1ぷんみまん',
+ other: '{{count}}ふんみまん',
+ oneWithSuffix: 'やく1ぷん',
+ otherWithSuffix: 'やく{{count}}ふん'
+ },
+ xMinutes: {
+ one: '1ぷん',
+ other: '{{count}}ふん'
+ },
+ aboutXHours: {
+ one: 'やく1じかん',
+ other: 'やく{{count}}じかん'
+ },
+ xHours: {
+ one: '1じかん',
+ other: '{{count}}じかん'
+ },
+ xDays: {
+ one: '1にち',
+ other: '{{count}}にち'
+ },
+ aboutXWeeks: {
+ one: 'やく1しゅうかん',
+ other: 'やく{{count}}しゅうかん'
+ },
+ xWeeks: {
+ one: '1しゅうかん',
+ other: '{{count}}しゅうかん'
+ },
+ aboutXMonths: {
+ one: 'やく1かげつ',
+ other: 'やく{{count}}かげつ'
+ },
+ xMonths: {
+ one: '1かげつ',
+ other: '{{count}}かげつ'
+ },
+ aboutXYears: {
+ one: 'やく1ねん',
+ other: 'やく{{count}}ねん'
+ },
+ xYears: {
+ one: '1ねん',
+ other: '{{count}}ねん'
+ },
+ overXYears: {
+ one: '1ねんいじょう',
+ other: '{{count}}ねんいじょう'
+ },
+ almostXYears: {
+ one: '1ねんちかく',
+ other: '{{count}}ねんちかく'
+ }
+};
+var formatDistance = function formatDistance(token, count, options) {
+ options = options || {};
+ var result;
+ var tokenValue = formatDistanceLocale[token];
+ if (typeof tokenValue === 'string') {
+ result = tokenValue;
+ } else if (count === 1) {
+ if (options.addSuffix && tokenValue.oneWithSuffix) {
+ result = tokenValue.oneWithSuffix;
+ } else {
+ result = tokenValue.one;
+ }
+ } else {
+ if (options.addSuffix && tokenValue.otherWithSuffix) {
+ result = tokenValue.otherWithSuffix.replace('{{count}}', String(count));
+ } else {
+ result = tokenValue.other.replace('{{count}}', String(count));
+ }
+ }
+ if (options.addSuffix) {
+ if (options.comparison && options.comparison > 0) {
+ return result + 'あと';
+ } else {
+ return result + 'まえ';
+ }
+ }
+ return result;
+};
+var _default = formatDistance;
+exports.default = _default;
+module.exports = exports.default; \ No newline at end of file
diff --git a/node_modules/date-fns/locale/ja-Hira/_lib/formatLong/index.js b/node_modules/date-fns/locale/ja-Hira/_lib/formatLong/index.js
new file mode 100644
index 0000000..74f448d
--- /dev/null
+++ b/node_modules/date-fns/locale/ja-Hira/_lib/formatLong/index.js
@@ -0,0 +1,43 @@
+"use strict";
+
+var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.default = void 0;
+var _index = _interopRequireDefault(require("../../../_lib/buildFormatLongFn/index.js"));
+var dateFormats = {
+ full: 'yねんMがつdにちEEEE',
+ long: 'yねんMがつdにち',
+ medium: 'y/MM/dd',
+ short: 'y/MM/dd'
+};
+var timeFormats = {
+ full: 'Hじmmふんssびょう zzzz',
+ long: 'H:mm:ss z',
+ medium: 'H:mm:ss',
+ short: 'H:mm'
+};
+var dateTimeFormats = {
+ full: '{{date}} {{time}}',
+ long: '{{date}} {{time}}',
+ medium: '{{date}} {{time}}',
+ short: '{{date}} {{time}}'
+};
+var formatLong = {
+ date: (0, _index.default)({
+ formats: dateFormats,
+ defaultWidth: 'full'
+ }),
+ time: (0, _index.default)({
+ formats: timeFormats,
+ defaultWidth: 'full'
+ }),
+ dateTime: (0, _index.default)({
+ formats: dateTimeFormats,
+ defaultWidth: 'full'
+ })
+};
+var _default = formatLong;
+exports.default = _default;
+module.exports = exports.default; \ No newline at end of file
diff --git a/node_modules/date-fns/locale/ja-Hira/_lib/formatRelative/index.js b/node_modules/date-fns/locale/ja-Hira/_lib/formatRelative/index.js
new file mode 100644
index 0000000..42788e5
--- /dev/null
+++ b/node_modules/date-fns/locale/ja-Hira/_lib/formatRelative/index.js
@@ -0,0 +1,20 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.default = void 0;
+var formatRelativeLocale = {
+ lastWeek: 'せんしゅうのeeeeのp',
+ yesterday: 'きのうのp',
+ today: 'きょうのp',
+ tomorrow: 'あしたのp',
+ nextWeek: 'よくしゅうのeeeeのp',
+ other: 'P'
+};
+var formatRelative = function formatRelative(token, _date, _baseDate, _options) {
+ return formatRelativeLocale[token];
+};
+var _default = formatRelative;
+exports.default = _default;
+module.exports = exports.default; \ No newline at end of file
diff --git a/node_modules/date-fns/locale/ja-Hira/_lib/localize/index.js b/node_modules/date-fns/locale/ja-Hira/_lib/localize/index.js
new file mode 100644
index 0000000..c62be04
--- /dev/null
+++ b/node_modules/date-fns/locale/ja-Hira/_lib/localize/index.js
@@ -0,0 +1,148 @@
+"use strict";
+
+var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.default = void 0;
+var _index = _interopRequireDefault(require("../../../_lib/buildLocalizeFn/index.js"));
+var eraValues = {
+ narrow: ['BC', 'AC'],
+ abbreviated: ['きげんぜん', 'せいれき'],
+ wide: ['きげんぜん', 'せいれき']
+};
+var quarterValues = {
+ narrow: ['1', '2', '3', '4'],
+ abbreviated: ['Q1', 'Q2', 'Q3', 'Q4'],
+ wide: ['だい1しはんき', 'だい2しはんき', 'だい3しはんき', 'だい4しはんき']
+};
+var monthValues = {
+ narrow: ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12'],
+ abbreviated: ['1がつ', '2がつ', '3がつ', '4がつ', '5がつ', '6がつ', '7がつ', '8がつ', '9がつ', '10がつ', '11がつ', '12がつ'],
+ wide: ['1がつ', '2がつ', '3がつ', '4がつ', '5がつ', '6がつ', '7がつ', '8がつ', '9がつ', '10がつ', '11がつ', '12がつ']
+};
+var dayValues = {
+ narrow: ['にち', 'げつ', 'か', 'すい', 'もく', 'きん', 'ど'],
+ short: ['にち', 'げつ', 'か', 'すい', 'もく', 'きん', 'ど'],
+ abbreviated: ['にち', 'げつ', 'か', 'すい', 'もく', 'きん', 'ど'],
+ wide: ['にちようび', 'げつようび', 'かようび', 'すいようび', 'もくようび', 'きんようび', 'どようび']
+};
+var dayPeriodValues = {
+ narrow: {
+ am: 'ごぜん',
+ pm: 'ごご',
+ midnight: 'しんや',
+ noon: 'しょうご',
+ morning: 'あさ',
+ afternoon: 'ごご',
+ evening: 'よる',
+ night: 'しんや'
+ },
+ abbreviated: {
+ am: 'ごぜん',
+ pm: 'ごご',
+ midnight: 'しんや',
+ noon: 'しょうご',
+ morning: 'あさ',
+ afternoon: 'ごご',
+ evening: 'よる',
+ night: 'しんや'
+ },
+ wide: {
+ am: 'ごぜん',
+ pm: 'ごご',
+ midnight: 'しんや',
+ noon: 'しょうご',
+ morning: 'あさ',
+ afternoon: 'ごご',
+ evening: 'よる',
+ night: 'しんや'
+ }
+};
+var formattingDayPeriodValues = {
+ narrow: {
+ am: 'ごぜん',
+ pm: 'ごご',
+ midnight: 'しんや',
+ noon: 'しょうご',
+ morning: 'あさ',
+ afternoon: 'ごご',
+ evening: 'よる',
+ night: 'しんや'
+ },
+ abbreviated: {
+ am: 'ごぜん',
+ pm: 'ごご',
+ midnight: 'しんや',
+ noon: 'しょうご',
+ morning: 'あさ',
+ afternoon: 'ごご',
+ evening: 'よる',
+ night: 'しんや'
+ },
+ wide: {
+ am: 'ごぜん',
+ pm: 'ごご',
+ midnight: 'しんや',
+ noon: 'しょうご',
+ morning: 'あさ',
+ afternoon: 'ごご',
+ evening: 'よる',
+ night: 'しんや'
+ }
+};
+var ordinalNumber = function ordinalNumber(dirtyNumber, options) {
+ var number = Number(dirtyNumber);
+ var unit = String(options === null || options === void 0 ? void 0 : options.unit);
+ switch (unit) {
+ case 'year':
+ return "".concat(number, "\u306D\u3093");
+ case 'quarter':
+ return "\u3060\u3044".concat(number, "\u3057\u306F\u3093\u304D");
+ case 'month':
+ return "".concat(number, "\u304C\u3064");
+ case 'week':
+ return "\u3060\u3044".concat(number, "\u3057\u3085\u3046");
+ case 'date':
+ return "".concat(number, "\u306B\u3061");
+ case 'hour':
+ return "".concat(number, "\u3058");
+ case 'minute':
+ return "".concat(number, "\u3075\u3093");
+ case 'second':
+ return "".concat(number, "\u3073\u3087\u3046");
+ default:
+ return "".concat(number);
+ }
+};
+var localize = {
+ ordinalNumber: ordinalNumber,
+ era: (0, _index.default)({
+ values: eraValues,
+ defaultWidth: 'wide'
+ }),
+ quarter: (0, _index.default)({
+ values: quarterValues,
+ defaultWidth: 'wide',
+ argumentCallback: function argumentCallback(quarter) {
+ return Number(quarter) - 1;
+ }
+ }),
+ month: (0, _index.default)({
+ values: monthValues,
+ defaultWidth: 'wide'
+ }),
+ day: (0, _index.default)({
+ values: dayValues,
+ defaultWidth: 'wide'
+ }),
+ dayPeriod: (0, _index.default)({
+ values: dayPeriodValues,
+ defaultWidth: 'wide',
+ formattingValues: formattingDayPeriodValues,
+ defaultFormattingWidth: 'wide'
+ })
+};
+var _default = localize;
+exports.default = _default;
+module.exports = exports.default; \ No newline at end of file
diff --git a/node_modules/date-fns/locale/ja-Hira/_lib/match/index.js b/node_modules/date-fns/locale/ja-Hira/_lib/match/index.js
new file mode 100644
index 0000000..488bd77
--- /dev/null
+++ b/node_modules/date-fns/locale/ja-Hira/_lib/match/index.js
@@ -0,0 +1,105 @@
+"use strict";
+
+var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.default = void 0;
+var _index = _interopRequireDefault(require("../../../_lib/buildMatchFn/index.js"));
+var _index2 = _interopRequireDefault(require("../../../_lib/buildMatchPatternFn/index.js"));
+var matchOrdinalNumberPattern = /^だ?い?\d+(ねん|しはんき|がつ|しゅう|にち|じ|ふん|びょう)?/i;
+var parseOrdinalNumberPattern = /\d+/i;
+var matchEraPatterns = {
+ narrow: /^(B\.?C\.?|A\.?D\.?)/i,
+ abbreviated: /^(きげん[前後]|せいれき)/i,
+ wide: /^(きげん[前後]|せいれき)/i
+};
+var parseEraPatterns = {
+ narrow: [/^B/i, /^A/i],
+ any: [/^(きげんぜん)/i, /^(せいれき|きげんご)/i]
+};
+var matchQuarterPatterns = {
+ narrow: /^[1234]/i,
+ abbreviated: /^Q[1234]/i,
+ wide: /^だい[1234一二三四1234]しはんき/i
+};
+var parseQuarterPatterns = {
+ any: [/(1|一|1)/i, /(2|二|2)/i, /(3|三|3)/i, /(4|四|4)/i]
+};
+var matchMonthPatterns = {
+ narrow: /^([123456789]|1[012])/,
+ abbreviated: /^([123456789]|1[012])がつ/i,
+ wide: /^([123456789]|1[012])がつ/i
+};
+var parseMonthPatterns = {
+ any: [/^1\D/, /^2/, /^3/, /^4/, /^5/, /^6/, /^7/, /^8/, /^9/, /^10/, /^11/, /^12/]
+};
+var matchDayPatterns = {
+ narrow: /^(にち|げつ|か|すい|もく|きん|ど)/,
+ short: /^(にち|げつ|か|すい|もく|きん|ど)/,
+ abbreviated: /^(にち|げつ|か|すい|もく|きん|ど)/,
+ wide: /^(にち|げつ|か|すい|もく|きん|ど)ようび/
+};
+var parseDayPatterns = {
+ any: [/^にち/, /^げつ/, /^か/, /^すい/, /^もく/, /^きん/, /^ど/]
+};
+var matchDayPeriodPatterns = {
+ any: /^(AM|PM|ごぜん|ごご|しょうご|しんや|まよなか|よる|あさ)/i
+};
+var parseDayPeriodPatterns = {
+ any: {
+ am: /^(A|ごぜん)/i,
+ pm: /^(P|ごご)/i,
+ midnight: /^しんや|まよなか/i,
+ noon: /^しょうご/i,
+ morning: /^あさ/i,
+ afternoon: /^ごご/i,
+ evening: /^よる/i,
+ night: /^しんや/i
+ }
+};
+var match = {
+ ordinalNumber: (0, _index2.default)({
+ matchPattern: matchOrdinalNumberPattern,
+ parsePattern: parseOrdinalNumberPattern,
+ valueCallback: function valueCallback(value) {
+ return parseInt(value, 10);
+ }
+ }),
+ era: (0, _index.default)({
+ matchPatterns: matchEraPatterns,
+ defaultMatchWidth: 'wide',
+ parsePatterns: parseEraPatterns,
+ defaultParseWidth: 'any'
+ }),
+ quarter: (0, _index.default)({
+ matchPatterns: matchQuarterPatterns,
+ defaultMatchWidth: 'wide',
+ parsePatterns: parseQuarterPatterns,
+ defaultParseWidth: 'any',
+ valueCallback: function valueCallback(index) {
+ return index + 1;
+ }
+ }),
+ month: (0, _index.default)({
+ matchPatterns: matchMonthPatterns,
+ defaultMatchWidth: 'wide',
+ parsePatterns: parseMonthPatterns,
+ defaultParseWidth: 'any'
+ }),
+ day: (0, _index.default)({
+ matchPatterns: matchDayPatterns,
+ defaultMatchWidth: 'wide',
+ parsePatterns: parseDayPatterns,
+ defaultParseWidth: 'any'
+ }),
+ dayPeriod: (0, _index.default)({
+ matchPatterns: matchDayPeriodPatterns,
+ defaultMatchWidth: 'any',
+ parsePatterns: parseDayPeriodPatterns,
+ defaultParseWidth: 'any'
+ })
+};
+var _default = match;
+exports.default = _default;
+module.exports = exports.default; \ No newline at end of file
diff --git a/node_modules/date-fns/locale/ja-Hira/index.d.ts b/node_modules/date-fns/locale/ja-Hira/index.d.ts
new file mode 100644
index 0000000..9dfe125
--- /dev/null
+++ b/node_modules/date-fns/locale/ja-Hira/index.d.ts
@@ -0,0 +1,4 @@
+// This file is generated automatically by `scripts/build/typings.js`. Please, don't change it.
+
+import { jaHira } from 'date-fns/locale'
+export default jaHira
diff --git a/node_modules/date-fns/locale/ja-Hira/index.js b/node_modules/date-fns/locale/ja-Hira/index.js
new file mode 100644
index 0000000..d12bab2
--- /dev/null
+++ b/node_modules/date-fns/locale/ja-Hira/index.js
@@ -0,0 +1,35 @@
+"use strict";
+
+var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.default = void 0;
+var _index = _interopRequireDefault(require("./_lib/formatDistance/index.js"));
+var _index2 = _interopRequireDefault(require("./_lib/formatLong/index.js"));
+var _index3 = _interopRequireDefault(require("./_lib/formatRelative/index.js"));
+var _index4 = _interopRequireDefault(require("./_lib/localize/index.js"));
+var _index5 = _interopRequireDefault(require("./_lib/match/index.js"));
+/**
+ * @type {Locale}
+ * @category Locales
+ * @summary Japanese (Hiragana) locale.
+ * @language Japanese (Hiragana)
+ * @iso-639-2 jpn
+ * @author Eri Hiramatsu [@Eritutteo]{@link https://github.com/Eritutteo}
+ */
+var locale = {
+ code: 'ja-Hira',
+ formatDistance: _index.default,
+ formatLong: _index2.default,
+ formatRelative: _index3.default,
+ localize: _index4.default,
+ match: _index5.default,
+ options: {
+ weekStartsOn: 0 /* Sunday */,
+ firstWeekContainsDate: 1
+ }
+};
+var _default = locale;
+exports.default = _default;
+module.exports = exports.default; \ No newline at end of file
diff --git a/node_modules/date-fns/locale/ja-Hira/index.js.flow b/node_modules/date-fns/locale/ja-Hira/index.js.flow
new file mode 100644
index 0000000..b9dfe66
--- /dev/null
+++ b/node_modules/date-fns/locale/ja-Hira/index.js.flow
@@ -0,0 +1,35 @@
+// @flow
+// This file is generated automatically by `scripts/build/typings.js`. Please, don't change it.
+
+export type Locale = {
+ code?: string,
+ formatDistance?: (...args: Array<any>) => any,
+ formatRelative?: (...args: Array<any>) => any,
+ localize?: {
+ ordinalNumber: (...args: Array<any>) => any,
+ era: (...args: Array<any>) => any,
+ quarter: (...args: Array<any>) => any,
+ month: (...args: Array<any>) => any,
+ day: (...args: Array<any>) => any,
+ dayPeriod: (...args: Array<any>) => any,
+ },
+ formatLong?: {
+ date: (...args: Array<any>) => any,
+ time: (...args: Array<any>) => any,
+ dateTime: (...args: Array<any>) => any,
+ },
+ match?: {
+ ordinalNumber: (...args: Array<any>) => any,
+ era: (...args: Array<any>) => any,
+ quarter: (...args: Array<any>) => any,
+ month: (...args: Array<any>) => any,
+ day: (...args: Array<any>) => any,
+ dayPeriod: (...args: Array<any>) => any,
+ },
+ options?: {
+ weekStartsOn?: 0 | 1 | 2 | 3 | 4 | 5 | 6,
+ firstWeekContainsDate?: 1 | 2 | 3 | 4 | 5 | 6 | 7,
+ },
+}
+
+declare module.exports: Locale
diff --git a/node_modules/date-fns/locale/ja-Hira/package.json b/node_modules/date-fns/locale/ja-Hira/package.json
new file mode 100644
index 0000000..60d9ddc
--- /dev/null
+++ b/node_modules/date-fns/locale/ja-Hira/package.json
@@ -0,0 +1,5 @@
+{
+ "sideEffects": false,
+ "module": "../../esm/locale/ja-Hira/index.js",
+ "typings": "../../typings.d.ts"
+} \ No newline at end of file
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage