aboutsummaryrefslogtreecommitdiffstats
path: root/node_modules/date-fns/locale/fr/_lib
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/locale/fr/_lib
parent864ce67d89c77d8ef9c3361f80d619853abcf91c (diff)
remove dev node_modules (oops)
Diffstat (limited to 'node_modules/date-fns/locale/fr/_lib')
-rw-r--r--node_modules/date-fns/locale/fr/_lib/formatDistance/index.js91
-rw-r--r--node_modules/date-fns/locale/fr/_lib/formatLong/index.js43
-rw-r--r--node_modules/date-fns/locale/fr/_lib/formatRelative/index.js20
-rw-r--r--node_modules/date-fns/locale/fr/_lib/localize/index.js103
-rw-r--r--node_modules/date-fns/locale/fr/_lib/match/index.js107
5 files changed, 0 insertions, 364 deletions
diff --git a/node_modules/date-fns/locale/fr/_lib/formatDistance/index.js b/node_modules/date-fns/locale/fr/_lib/formatDistance/index.js
deleted file mode 100644
index aa0ab56..0000000
--- a/node_modules/date-fns/locale/fr/_lib/formatDistance/index.js
+++ /dev/null
@@ -1,91 +0,0 @@
-"use strict";
-
-Object.defineProperty(exports, "__esModule", {
- value: true
-});
-exports.default = void 0;
-var formatDistanceLocale = {
- lessThanXSeconds: {
- one: 'moins d’une seconde',
- other: 'moins de {{count}} secondes'
- },
- xSeconds: {
- one: '1 seconde',
- other: '{{count}} secondes'
- },
- halfAMinute: '30 secondes',
- lessThanXMinutes: {
- one: 'moins d’une minute',
- other: 'moins de {{count}} minutes'
- },
- xMinutes: {
- one: '1 minute',
- other: '{{count}} minutes'
- },
- aboutXHours: {
- one: 'environ 1 heure',
- other: 'environ {{count}} heures'
- },
- xHours: {
- one: '1 heure',
- other: '{{count}} heures'
- },
- xDays: {
- one: '1 jour',
- other: '{{count}} jours'
- },
- aboutXWeeks: {
- one: 'environ 1 semaine',
- other: 'environ {{count}} semaines'
- },
- xWeeks: {
- one: '1 semaine',
- other: '{{count}} semaines'
- },
- aboutXMonths: {
- one: 'environ 1 mois',
- other: 'environ {{count}} mois'
- },
- xMonths: {
- one: '1 mois',
- other: '{{count}} mois'
- },
- aboutXYears: {
- one: 'environ 1 an',
- other: 'environ {{count}} ans'
- },
- xYears: {
- one: '1 an',
- other: '{{count}} ans'
- },
- overXYears: {
- one: 'plus d’un an',
- other: 'plus de {{count}} ans'
- },
- almostXYears: {
- one: 'presqu’un an',
- other: 'presque {{count}} ans'
- }
-};
-var formatDistance = function formatDistance(token, count, options) {
- var result;
- var form = formatDistanceLocale[token];
- if (typeof form === 'string') {
- result = form;
- } else if (count === 1) {
- result = form.one;
- } else {
- result = form.other.replace('{{count}}', String(count));
- }
- if (options !== null && options !== void 0 && options.addSuffix) {
- if (options.comparison && options.comparison > 0) {
- return 'dans ' + result;
- } else {
- return 'il y a ' + 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/fr/_lib/formatLong/index.js b/node_modules/date-fns/locale/fr/_lib/formatLong/index.js
deleted file mode 100644
index 6b38f12..0000000
--- a/node_modules/date-fns/locale/fr/_lib/formatLong/index.js
+++ /dev/null
@@ -1,43 +0,0 @@
-"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: 'EEEE d MMMM y',
- long: 'd MMMM y',
- medium: 'd MMM y',
- short: 'dd/MM/y'
-};
-var timeFormats = {
- full: 'HH:mm:ss zzzz',
- long: 'HH:mm:ss z',
- medium: 'HH:mm:ss',
- short: 'HH: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/fr/_lib/formatRelative/index.js b/node_modules/date-fns/locale/fr/_lib/formatRelative/index.js
deleted file mode 100644
index 2cae942..0000000
--- a/node_modules/date-fns/locale/fr/_lib/formatRelative/index.js
+++ /dev/null
@@ -1,20 +0,0 @@
-"use strict";
-
-Object.defineProperty(exports, "__esModule", {
- value: true
-});
-exports.default = void 0;
-var formatRelativeLocale = {
- lastWeek: "eeee 'dernier à' p",
- yesterday: "'hier à' p",
- today: "'aujourd’hui à' p",
- tomorrow: "'demain à' p'",
- nextWeek: "eeee 'prochain à' 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/fr/_lib/localize/index.js b/node_modules/date-fns/locale/fr/_lib/localize/index.js
deleted file mode 100644
index beac95f..0000000
--- a/node_modules/date-fns/locale/fr/_lib/localize/index.js
+++ /dev/null
@@ -1,103 +0,0 @@
-"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: ['av. J.-C', 'ap. J.-C'],
- abbreviated: ['av. J.-C', 'ap. J.-C'],
- wide: ['avant Jésus-Christ', 'après Jésus-Christ']
-};
-var quarterValues = {
- narrow: ['T1', 'T2', 'T3', 'T4'],
- abbreviated: ['1er trim.', '2ème trim.', '3ème trim.', '4ème trim.'],
- wide: ['1er trimestre', '2ème trimestre', '3ème trimestre', '4ème trimestre']
-};
-var monthValues = {
- narrow: ['J', 'F', 'M', 'A', 'M', 'J', 'J', 'A', 'S', 'O', 'N', 'D'],
- abbreviated: ['janv.', 'févr.', 'mars', 'avr.', 'mai', 'juin', 'juil.', 'août', 'sept.', 'oct.', 'nov.', 'déc.'],
- wide: ['janvier', 'février', 'mars', 'avril', 'mai', 'juin', 'juillet', 'août', 'septembre', 'octobre', 'novembre', 'décembre']
-};
-var dayValues = {
- narrow: ['D', 'L', 'M', 'M', 'J', 'V', 'S'],
- short: ['di', 'lu', 'ma', 'me', 'je', 've', 'sa'],
- abbreviated: ['dim.', 'lun.', 'mar.', 'mer.', 'jeu.', 'ven.', 'sam.'],
- wide: ['dimanche', 'lundi', 'mardi', 'mercredi', 'jeudi', 'vendredi', 'samedi']
-};
-var dayPeriodValues = {
- narrow: {
- am: 'AM',
- pm: 'PM',
- midnight: 'minuit',
- noon: 'midi',
- morning: 'mat.',
- afternoon: 'ap.m.',
- evening: 'soir',
- night: 'mat.'
- },
- abbreviated: {
- am: 'AM',
- pm: 'PM',
- midnight: 'minuit',
- noon: 'midi',
- morning: 'matin',
- afternoon: 'après-midi',
- evening: 'soir',
- night: 'matin'
- },
- wide: {
- am: 'AM',
- pm: 'PM',
- midnight: 'minuit',
- noon: 'midi',
- morning: 'du matin',
- afternoon: 'de l’après-midi',
- evening: 'du soir',
- night: 'du matin'
- }
-};
-var ordinalNumber = function ordinalNumber(dirtyNumber, options) {
- var number = Number(dirtyNumber);
- var unit = options === null || options === void 0 ? void 0 : options.unit;
- if (number === 0) return '0';
- var feminineUnits = ['year', 'week', 'hour', 'minute', 'second'];
- var suffix;
- if (number === 1) {
- suffix = unit && feminineUnits.includes(unit) ? 'ère' : 'er';
- } else {
- suffix = 'ème';
- }
- return number + suffix;
-};
-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 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'
- })
-};
-var _default = localize;
-exports.default = _default;
-module.exports = exports.default; \ No newline at end of file
diff --git a/node_modules/date-fns/locale/fr/_lib/match/index.js b/node_modules/date-fns/locale/fr/_lib/match/index.js
deleted file mode 100644
index 4b370c4..0000000
--- a/node_modules/date-fns/locale/fr/_lib/match/index.js
+++ /dev/null
@@ -1,107 +0,0 @@
-"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ème|ère|ème|er|e)?/i;
-var parseOrdinalNumberPattern = /\d+/i;
-var matchEraPatterns = {
- narrow: /^(av\.J\.C|ap\.J\.C|ap\.J\.-C)/i,
- abbreviated: /^(av\.J\.-C|av\.J-C|apr\.J\.-C|apr\.J-C|ap\.J-C)/i,
- wide: /^(avant Jésus-Christ|après Jésus-Christ)/i
-};
-var parseEraPatterns = {
- any: [/^av/i, /^ap/i]
-};
-var matchQuarterPatterns = {
- narrow: /^T?[1234]/i,
- abbreviated: /^[1234](er|ème|e)? trim\.?/i,
- wide: /^[1234](er|ème|e)? trimestre/i
-};
-var parseQuarterPatterns = {
- any: [/1/i, /2/i, /3/i, /4/i]
-};
-var matchMonthPatterns = {
- narrow: /^[jfmasond]/i,
- abbreviated: /^(janv|févr|mars|avr|mai|juin|juill|juil|août|sept|oct|nov|déc)\.?/i,
- wide: /^(janvier|février|mars|avril|mai|juin|juillet|août|septembre|octobre|novembre|décembre)/i
-};
-var parseMonthPatterns = {
- narrow: [/^j/i, /^f/i, /^m/i, /^a/i, /^m/i, /^j/i, /^j/i, /^a/i, /^s/i, /^o/i, /^n/i, /^d/i],
- any: [/^ja/i, /^f/i, /^mar/i, /^av/i, /^ma/i, /^juin/i, /^juil/i, /^ao/i, /^s/i, /^o/i, /^n/i, /^d/i]
-};
-var matchDayPatterns = {
- narrow: /^[lmjvsd]/i,
- short: /^(di|lu|ma|me|je|ve|sa)/i,
- abbreviated: /^(dim|lun|mar|mer|jeu|ven|sam)\.?/i,
- wide: /^(dimanche|lundi|mardi|mercredi|jeudi|vendredi|samedi)/i
-};
-var parseDayPatterns = {
- narrow: [/^d/i, /^l/i, /^m/i, /^m/i, /^j/i, /^v/i, /^s/i],
- any: [/^di/i, /^lu/i, /^ma/i, /^me/i, /^je/i, /^ve/i, /^sa/i]
-};
-var matchDayPeriodPatterns = {
- narrow: /^(a|p|minuit|midi|mat\.?|ap\.?m\.?|soir|nuit)/i,
- any: /^([ap]\.?\s?m\.?|du matin|de l'après[-\s]midi|du soir|de la nuit)/i
-};
-var parseDayPeriodPatterns = {
- any: {
- am: /^a/i,
- pm: /^p/i,
- midnight: /^min/i,
- noon: /^mid/i,
- morning: /mat/i,
- afternoon: /ap/i,
- evening: /soir/i,
- night: /nuit/i
- }
-};
-var match = {
- ordinalNumber: (0, _index2.default)({
- matchPattern: matchOrdinalNumberPattern,
- parsePattern: parseOrdinalNumberPattern,
- valueCallback: function valueCallback(value) {
- return parseInt(value);
- }
- }),
- 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
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage