aboutsummaryrefslogtreecommitdiffstats
path: root/node_modules/date-fns/esm/locale/de-AT
diff options
context:
space:
mode:
authorPinapelz <yukais@pinapelz.com>2025-06-29 11:49:28 -0700
committerPinapelz <yukais@pinapelz.com>2025-06-29 11:49:28 -0700
commitd55b767039605256c736166a942a9138e3eacfd7 (patch)
tree947063b634c50d438a794325f13275e134aa5993 /node_modules/date-fns/esm/locale/de-AT
parent864ce67d89c77d8ef9c3361f80d619853abcf91c (diff)
remove dev node_modules (oops)
Diffstat (limited to 'node_modules/date-fns/esm/locale/de-AT')
-rw-r--r--node_modules/date-fns/esm/locale/de-AT/_lib/localize/index.js134
-rw-r--r--node_modules/date-fns/esm/locale/de-AT/index.d.ts4
-rw-r--r--node_modules/date-fns/esm/locale/de-AT/index.js27
-rw-r--r--node_modules/date-fns/esm/locale/de-AT/index.js.flow35
-rw-r--r--node_modules/date-fns/esm/locale/de-AT/package.json4
5 files changed, 0 insertions, 204 deletions
diff --git a/node_modules/date-fns/esm/locale/de-AT/_lib/localize/index.js b/node_modules/date-fns/esm/locale/de-AT/_lib/localize/index.js
deleted file mode 100644
index 6a5cecd..0000000
--- a/node_modules/date-fns/esm/locale/de-AT/_lib/localize/index.js
+++ /dev/null
@@ -1,134 +0,0 @@
-import buildLocalizeFn from "../../../_lib/buildLocalizeFn/index.js";
-var eraValues = {
- narrow: ['v.Chr.', 'n.Chr.'],
- abbreviated: ['v.Chr.', 'n.Chr.'],
- wide: ['vor Christus', 'nach Christus']
-};
-var quarterValues = {
- narrow: ['1', '2', '3', '4'],
- abbreviated: ['Q1', 'Q2', 'Q3', 'Q4'],
- wide: ['1. Quartal', '2. Quartal', '3. Quartal', '4. Quartal']
-};
-
-// Note: in German, the names of days of the week and months are capitalized.
-// If you are making a new locale based on this one, check if the same is true for the language you're working on.
-// Generally, formatted dates should look like they are in the middle of a sentence,
-// e.g. in Spanish language the weekdays and months should be in the lowercase.
-var monthValues = {
- narrow: ['J', 'F', 'M', 'A', 'M', 'J', 'J', 'A', 'S', 'O', 'N', 'D'],
- abbreviated: ['Jän', 'Feb', 'Mär', 'Apr', 'Mai', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dez'],
- wide: ['Jänner', 'Februar', 'März', 'April', 'Mai', 'Juni', 'Juli', 'August', 'September', 'Oktober', 'November', 'Dezember']
-};
-
-// https://st.unicode.org/cldr-apps/v#/de_AT/Gregorian/
-var formattingMonthValues = {
- narrow: monthValues.narrow,
- abbreviated: ['Jän.', 'Feb.', 'März', 'Apr.', 'Mai', 'Juni', 'Juli', 'Aug.', 'Sep.', 'Okt.', 'Nov.', 'Dez.'],
- wide: monthValues.wide
-};
-var dayValues = {
- narrow: ['S', 'M', 'D', 'M', 'D', 'F', 'S'],
- short: ['So', 'Mo', 'Di', 'Mi', 'Do', 'Fr', 'Sa'],
- abbreviated: ['So.', 'Mo.', 'Di.', 'Mi.', 'Do.', 'Fr.', 'Sa.'],
- wide: ['Sonntag', 'Montag', 'Dienstag', 'Mittwoch', 'Donnerstag', 'Freitag', 'Samstag']
-};
-
-// https://www.unicode.org/cldr/charts/32/summary/de.html#1881
-var dayPeriodValues = {
- narrow: {
- am: 'vm.',
- pm: 'nm.',
- midnight: 'Mitternacht',
- noon: 'Mittag',
- morning: 'Morgen',
- afternoon: 'Nachm.',
- evening: 'Abend',
- night: 'Nacht'
- },
- abbreviated: {
- am: 'vorm.',
- pm: 'nachm.',
- midnight: 'Mitternacht',
- noon: 'Mittag',
- morning: 'Morgen',
- afternoon: 'Nachmittag',
- evening: 'Abend',
- night: 'Nacht'
- },
- wide: {
- am: 'vormittags',
- pm: 'nachmittags',
- midnight: 'Mitternacht',
- noon: 'Mittag',
- morning: 'Morgen',
- afternoon: 'Nachmittag',
- evening: 'Abend',
- night: 'Nacht'
- }
-};
-var formattingDayPeriodValues = {
- narrow: {
- am: 'vm.',
- pm: 'nm.',
- midnight: 'Mitternacht',
- noon: 'Mittag',
- morning: 'morgens',
- afternoon: 'nachm.',
- evening: 'abends',
- night: 'nachts'
- },
- abbreviated: {
- am: 'vorm.',
- pm: 'nachm.',
- midnight: 'Mitternacht',
- noon: 'Mittag',
- morning: 'morgens',
- afternoon: 'nachmittags',
- evening: 'abends',
- night: 'nachts'
- },
- wide: {
- am: 'vormittags',
- pm: 'nachmittags',
- midnight: 'Mitternacht',
- noon: 'Mittag',
- morning: 'morgens',
- afternoon: 'nachmittags',
- evening: 'abends',
- night: 'nachts'
- }
-};
-var ordinalNumber = function ordinalNumber(dirtyNumber) {
- var number = Number(dirtyNumber);
- return number + '.';
-};
-var localize = {
- ordinalNumber: ordinalNumber,
- era: buildLocalizeFn({
- values: eraValues,
- defaultWidth: 'wide'
- }),
- quarter: buildLocalizeFn({
- values: quarterValues,
- defaultWidth: 'wide',
- argumentCallback: function argumentCallback(quarter) {
- return quarter - 1;
- }
- }),
- month: buildLocalizeFn({
- values: monthValues,
- formattingValues: formattingMonthValues,
- defaultWidth: 'wide'
- }),
- day: buildLocalizeFn({
- values: dayValues,
- defaultWidth: 'wide'
- }),
- dayPeriod: buildLocalizeFn({
- values: dayPeriodValues,
- defaultWidth: 'wide',
- formattingValues: formattingDayPeriodValues,
- defaultFormattingWidth: 'wide'
- })
-};
-export default localize; \ No newline at end of file
diff --git a/node_modules/date-fns/esm/locale/de-AT/index.d.ts b/node_modules/date-fns/esm/locale/de-AT/index.d.ts
deleted file mode 100644
index a7d6680..0000000
--- a/node_modules/date-fns/esm/locale/de-AT/index.d.ts
+++ /dev/null
@@ -1,4 +0,0 @@
-// This file is generated automatically by `scripts/build/typings.js`. Please, don't change it.
-
-import { deAT } from 'date-fns/locale'
-export default deAT
diff --git a/node_modules/date-fns/esm/locale/de-AT/index.js b/node_modules/date-fns/esm/locale/de-AT/index.js
deleted file mode 100644
index f32127b..0000000
--- a/node_modules/date-fns/esm/locale/de-AT/index.js
+++ /dev/null
@@ -1,27 +0,0 @@
-import formatDistance from "../de/_lib/formatDistance/index.js";
-import formatLong from "../de/_lib/formatLong/index.js";
-import formatRelative from "../de/_lib/formatRelative/index.js";
-import match from "../de/_lib/match/index.js";
-// difference to 'de' locale
-import localize from "./_lib/localize/index.js";
-/**
- * @type {Locale}
- * @category Locales
- * @summary German locale (Austria).
- * @language German
- * @iso-639-2 deu
- * @author Christoph Tobias Stenglein [@cstenglein]{@link https://github.com/cstenglein}
- */
-var locale = {
- code: 'de-AT',
- formatDistance: formatDistance,
- formatLong: formatLong,
- formatRelative: formatRelative,
- localize: localize,
- match: match,
- options: {
- weekStartsOn: 1 /* Monday */,
- firstWeekContainsDate: 4
- }
-};
-export default locale; \ No newline at end of file
diff --git a/node_modules/date-fns/esm/locale/de-AT/index.js.flow b/node_modules/date-fns/esm/locale/de-AT/index.js.flow
deleted file mode 100644
index b9dfe66..0000000
--- a/node_modules/date-fns/esm/locale/de-AT/index.js.flow
+++ /dev/null
@@ -1,35 +0,0 @@
-// @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/esm/locale/de-AT/package.json b/node_modules/date-fns/esm/locale/de-AT/package.json
deleted file mode 100644
index a7398d8..0000000
--- a/node_modules/date-fns/esm/locale/de-AT/package.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "sideEffects": false,
- "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