aboutsummaryrefslogtreecommitdiffstats
path: root/node_modules/date-fns/locale/ar/_lib
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/date-fns/locale/ar/_lib')
-rw-r--r--node_modules/date-fns/locale/ar/_lib/formatDistance/index.js125
-rw-r--r--node_modules/date-fns/locale/ar/_lib/formatLong/index.js43
-rw-r--r--node_modules/date-fns/locale/ar/_lib/formatRelative/index.js20
-rw-r--r--node_modules/date-fns/locale/ar/_lib/localize/index.js127
-rw-r--r--node_modules/date-fns/locale/ar/_lib/match/index.js108
5 files changed, 423 insertions, 0 deletions
diff --git a/node_modules/date-fns/locale/ar/_lib/formatDistance/index.js b/node_modules/date-fns/locale/ar/_lib/formatDistance/index.js
new file mode 100644
index 0000000..b95c148
--- /dev/null
+++ b/node_modules/date-fns/locale/ar/_lib/formatDistance/index.js
@@ -0,0 +1,125 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.default = void 0;
+var formatDistanceLocale = {
+ lessThanXSeconds: {
+ one: 'أقل من ثانية',
+ two: 'أقل من ثانيتين',
+ threeToTen: 'أقل من {{count}} ثواني',
+ other: 'أقل من {{count}} ثانية'
+ },
+ xSeconds: {
+ one: 'ثانية واحدة',
+ two: 'ثانيتان',
+ threeToTen: '{{count}} ثواني',
+ other: '{{count}} ثانية'
+ },
+ halfAMinute: 'نصف دقيقة',
+ lessThanXMinutes: {
+ one: 'أقل من دقيقة',
+ two: 'أقل من دقيقتين',
+ threeToTen: 'أقل من {{count}} دقائق',
+ other: 'أقل من {{count}} دقيقة'
+ },
+ xMinutes: {
+ one: 'دقيقة واحدة',
+ two: 'دقيقتان',
+ threeToTen: '{{count}} دقائق',
+ other: '{{count}} دقيقة'
+ },
+ aboutXHours: {
+ one: 'ساعة واحدة تقريباً',
+ two: 'ساعتين تقريبا',
+ threeToTen: '{{count}} ساعات تقريباً',
+ other: '{{count}} ساعة تقريباً'
+ },
+ xHours: {
+ one: 'ساعة واحدة',
+ two: 'ساعتان',
+ threeToTen: '{{count}} ساعات',
+ other: '{{count}} ساعة'
+ },
+ xDays: {
+ one: 'يوم واحد',
+ two: 'يومان',
+ threeToTen: '{{count}} أيام',
+ other: '{{count}} يوم'
+ },
+ aboutXWeeks: {
+ one: 'أسبوع واحد تقريبا',
+ two: 'أسبوعين تقريبا',
+ threeToTen: '{{count}} أسابيع تقريبا',
+ other: '{{count}} أسبوعا تقريبا'
+ },
+ xWeeks: {
+ one: 'أسبوع واحد',
+ two: 'أسبوعان',
+ threeToTen: '{{count}} أسابيع',
+ other: '{{count}} أسبوعا'
+ },
+ aboutXMonths: {
+ one: 'شهر واحد تقريباً',
+ two: 'شهرين تقريبا',
+ threeToTen: '{{count}} أشهر تقريبا',
+ other: '{{count}} شهرا تقريباً'
+ },
+ xMonths: {
+ one: 'شهر واحد',
+ two: 'شهران',
+ threeToTen: '{{count}} أشهر',
+ other: '{{count}} شهرا'
+ },
+ aboutXYears: {
+ one: 'سنة واحدة تقريباً',
+ two: 'سنتين تقريبا',
+ threeToTen: '{{count}} سنوات تقريباً',
+ other: '{{count}} سنة تقريباً'
+ },
+ xYears: {
+ one: 'سنة واحد',
+ two: 'سنتان',
+ threeToTen: '{{count}} سنوات',
+ other: '{{count}} سنة'
+ },
+ overXYears: {
+ one: 'أكثر من سنة',
+ two: 'أكثر من سنتين',
+ threeToTen: 'أكثر من {{count}} سنوات',
+ other: 'أكثر من {{count}} سنة'
+ },
+ almostXYears: {
+ one: 'ما يقارب سنة واحدة',
+ two: 'ما يقارب سنتين',
+ threeToTen: 'ما يقارب {{count}} سنوات',
+ other: 'ما يقارب {{count}} سنة'
+ }
+};
+var formatDistance = function formatDistance(token, count, options) {
+ var usageGroup = formatDistanceLocale[token];
+ var result;
+ if (typeof usageGroup === 'string') {
+ result = usageGroup;
+ } else if (count === 1) {
+ result = usageGroup.one;
+ } else if (count === 2) {
+ result = usageGroup.two;
+ } else if (count <= 10) {
+ result = usageGroup.threeToTen.replace('{{count}}', String(count));
+ } else {
+ result = usageGroup.other.replace('{{count}}', String(count));
+ }
+ if (options !== null && options !== void 0 && 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/ar/_lib/formatLong/index.js b/node_modules/date-fns/locale/ar/_lib/formatLong/index.js
new file mode 100644
index 0000000..1332401
--- /dev/null
+++ b/node_modules/date-fns/locale/ar/_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: 'EEEE، do MMMM y',
+ long: 'do MMMM y',
+ medium: 'd MMM y',
+ short: 'dd/MM/yyyy'
+};
+var timeFormats = {
+ full: 'HH:mm:ss',
+ long: 'HH:mm:ss',
+ 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/ar/_lib/formatRelative/index.js b/node_modules/date-fns/locale/ar/_lib/formatRelative/index.js
new file mode 100644
index 0000000..2e5ee60
--- /dev/null
+++ b/node_modules/date-fns/locale/ar/_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) {
+ 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/ar/_lib/localize/index.js b/node_modules/date-fns/locale/ar/_lib/localize/index.js
new file mode 100644
index 0000000..7568dba
--- /dev/null
+++ b/node_modules/date-fns/locale/ar/_lib/localize/index.js
@@ -0,0 +1,127 @@
+"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: ['ق', 'ب'],
+ abbreviated: ['ق.م.', 'ب.م.'],
+ wide: ['قبل الميلاد', 'بعد الميلاد']
+};
+var quarterValues = {
+ narrow: ['1', '2', '3', '4'],
+ abbreviated: ['ر1', 'ر2', 'ر3', 'ر4'],
+ wide: ['الربع الأول', 'الربع الثاني', 'الربع الثالث', 'الربع الرابع']
+};
+var monthValues = {
+ narrow: ['ي', 'ف', 'م', 'أ', 'م', 'ي', 'ي', 'أ', 'س', 'أ', 'ن', 'د'],
+ abbreviated: ['يناير', 'فبراير', 'مارس', 'أبريل', 'مايو', 'يونيو', 'يوليو', 'أغسطس', 'سبتمبر', 'أكتوبر', 'نوفمبر', 'ديسمبر'],
+ wide: ['يناير', 'فبراير', 'مارس', 'أبريل', 'مايو', 'يونيو', 'يوليو', 'أغسطس', 'سبتمبر', 'أكتوبر', 'نوفمبر', 'ديسمبر']
+};
+var dayValues = {
+ narrow: ['ح', 'ن', 'ث', 'ر', 'خ', 'ج', 'س'],
+ short: ['أحد', 'اثنين', 'ثلاثاء', 'أربعاء', 'خميس', 'جمعة', 'سبت'],
+ abbreviated: ['أحد', 'اثنين', 'ثلاثاء', 'أربعاء', 'خميس', 'جمعة', 'سبت'],
+ wide: ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت']
+};
+var dayPeriodValues = {
+ narrow: {
+ am: 'ص',
+ pm: 'م',
+ morning: 'الصباح',
+ noon: 'الظهر',
+ afternoon: 'بعد الظهر',
+ evening: 'المساء',
+ night: 'الليل',
+ midnight: 'منتصف الليل'
+ },
+ abbreviated: {
+ am: 'ص',
+ pm: 'م',
+ morning: 'الصباح',
+ noon: 'الظهر',
+ afternoon: 'بعد الظهر',
+ evening: 'المساء',
+ night: 'الليل',
+ midnight: 'منتصف الليل'
+ },
+ wide: {
+ am: 'ص',
+ pm: 'م',
+ morning: 'الصباح',
+ noon: 'الظهر',
+ afternoon: 'بعد الظهر',
+ evening: 'المساء',
+ night: 'الليل',
+ midnight: 'منتصف الليل'
+ }
+};
+var formattingDayPeriodValues = {
+ narrow: {
+ am: 'ص',
+ pm: 'م',
+ morning: 'في الصباح',
+ noon: 'الظهر',
+ afternoon: 'بعد الظهر',
+ evening: 'في المساء',
+ night: 'في الليل',
+ midnight: 'منتصف الليل'
+ },
+ abbreviated: {
+ am: 'ص',
+ pm: 'م',
+ morning: 'في الصباح',
+ noon: 'الظهر',
+ afternoon: 'بعد الظهر',
+ evening: 'في المساء',
+ night: 'في الليل',
+ midnight: 'منتصف الليل'
+ },
+ wide: {
+ am: 'ص',
+ pm: 'م',
+ morning: 'في الصباح',
+ noon: 'الظهر',
+ afternoon: 'بعد الظهر',
+ evening: 'في المساء',
+ night: 'في الليل',
+ midnight: 'منتصف الليل'
+ }
+};
+var ordinalNumber = function ordinalNumber(num) {
+ return String(num);
+};
+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',
+ 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/ar/_lib/match/index.js b/node_modules/date-fns/locale/ar/_lib/match/index.js
new file mode 100644
index 0000000..e967cb9
--- /dev/null
+++ b/node_modules/date-fns/locale/ar/_lib/match/index.js
@@ -0,0 +1,108 @@
+"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/buildMatchPatternFn/index.js"));
+var _index2 = _interopRequireDefault(require("../../../_lib/buildMatchFn/index.js"));
+var matchOrdinalNumberPattern = /^(\d+)(th|st|nd|rd)?/i;
+var parseOrdinalNumberPattern = /\d+/i;
+var matchEraPatterns = {
+ narrow: /[قب]/,
+ abbreviated: /[قب]\.م\./,
+ wide: /(قبل|بعد) الميلاد/
+};
+var parseEraPatterns = {
+ any: [/قبل/, /بعد/]
+};
+var matchQuarterPatterns = {
+ narrow: /^[1234]/i,
+ abbreviated: /ر[1234]/,
+ wide: /الربع (الأول|الثاني|الثالث|الرابع)/
+};
+var parseQuarterPatterns = {
+ any: [/1/i, /2/i, /3/i, /4/i]
+};
+var matchMonthPatterns = {
+ narrow: /^[أيفمسند]/,
+ abbreviated: /^(يناير|فبراير|مارس|أبريل|مايو|يونيو|يوليو|أغسطس|سبتمبر|أكتوبر|نوفمبر|ديسمبر)/,
+ wide: /^(يناير|فبراير|مارس|أبريل|مايو|يونيو|يوليو|أغسطس|سبتمبر|أكتوبر|نوفمبر|ديسمبر)/
+};
+var parseMonthPatterns = {
+ narrow: [/^ي/i, /^ف/i, /^م/i, /^أ/i, /^م/i, /^ي/i, /^ي/i, /^أ/i, /^س/i, /^أ/i, /^ن/i, /^د/i],
+ any: [/^يناير/i, /^فبراير/i, /^مارس/i, /^أبريل/i, /^مايو/i, /^يونيو/i, /^يوليو/i, /^أغسطس/i, /^سبتمبر/i, /^أكتوبر/i, /^نوفمبر/i, /^ديسمبر/i]
+};
+var matchDayPatterns = {
+ narrow: /^[حنثرخجس]/i,
+ short: /^(أحد|اثنين|ثلاثاء|أربعاء|خميس|جمعة|سبت)/i,
+ abbreviated: /^(أحد|اثنين|ثلاثاء|أربعاء|خميس|جمعة|سبت)/i,
+ wide: /^(الأحد|الاثنين|الثلاثاء|الأربعاء|الخميس|الجمعة|السبت)/i
+};
+var parseDayPatterns = {
+ narrow: [/^ح/i, /^ن/i, /^ث/i, /^ر/i, /^خ/i, /^ج/i, /^س/i],
+ wide: [/^الأحد/i, /^الاثنين/i, /^الثلاثاء/i, /^الأربعاء/i, /^الخميس/i, /^الجمعة/i, /^السبت/i],
+ any: [/^أح/i, /^اث/i, /^ث/i, /^أر/i, /^خ/i, /^ج/i, /^س/i]
+};
+var matchDayPeriodPatterns = {
+ narrow: /^(ص|م|منتصف الليل|الظهر|بعد الظهر|في الصباح|في المساء|في الليل)/,
+ any: /^(ص|م|منتصف الليل|الظهر|بعد الظهر|في الصباح|في المساء|في الليل)/
+};
+var parseDayPeriodPatterns = {
+ any: {
+ am: /^ص/,
+ pm: /^م/,
+ midnight: /منتصف الليل/,
+ noon: /الظهر/,
+ afternoon: /بعد الظهر/,
+ morning: /في الصباح/,
+ evening: /في المساء/,
+ night: /في الليل/
+ }
+};
+var match = {
+ ordinalNumber: (0, _index.default)({
+ matchPattern: matchOrdinalNumberPattern,
+ parsePattern: parseOrdinalNumberPattern,
+ valueCallback: function valueCallback(value) {
+ return parseInt(value, 10);
+ }
+ }),
+ era: (0, _index2.default)({
+ matchPatterns: matchEraPatterns,
+ defaultMatchWidth: 'wide',
+ parsePatterns: parseEraPatterns,
+ defaultParseWidth: 'any'
+ }),
+ quarter: (0, _index2.default)({
+ matchPatterns: matchQuarterPatterns,
+ defaultMatchWidth: 'wide',
+ parsePatterns: parseQuarterPatterns,
+ defaultParseWidth: 'any',
+ valueCallback: function valueCallback(index) {
+ return index + 1;
+ }
+ }),
+ month: (0, _index2.default)({
+ matchPatterns: matchMonthPatterns,
+ defaultMatchWidth: 'wide',
+ parsePatterns: parseMonthPatterns,
+ defaultParseWidth: 'any'
+ }),
+ day: (0, _index2.default)({
+ matchPatterns: matchDayPatterns,
+ defaultMatchWidth: 'wide',
+ parsePatterns: parseDayPatterns,
+ defaultParseWidth: 'any'
+ }),
+ dayPeriod: (0, _index2.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