{"ast":null,"code":"const formatDistanceLocale = {\n  lessThanXSeconds: {\n    one: \"أقل من ثانية واحدة\",\n    two: \"أقل من ثانتين\",\n    threeToTen: \"أقل من {{count}} ثواني\",\n    other: \"أقل من {{count}} ثانية\"\n  },\n  xSeconds: {\n    one: \"ثانية واحدة\",\n    two: \"ثانتين\",\n    threeToTen: \"{{count}} ثواني\",\n    other: \"{{count}} ثانية\"\n  },\n  halfAMinute: \"نصف دقيقة\",\n  lessThanXMinutes: {\n    one: \"أقل من دقيقة\",\n    two: \"أقل من دقيقتين\",\n    threeToTen: \"أقل من {{count}} دقائق\",\n    other: \"أقل من {{count}} دقيقة\"\n  },\n  xMinutes: {\n    one: \"دقيقة واحدة\",\n    two: \"دقيقتين\",\n    threeToTen: \"{{count}} دقائق\",\n    other: \"{{count}} دقيقة\"\n  },\n  aboutXHours: {\n    one: \"ساعة واحدة تقريباً\",\n    two: \"ساعتين تقريباً\",\n    threeToTen: \"{{count}} ساعات تقريباً\",\n    other: \"{{count}} ساعة تقريباً\"\n  },\n  xHours: {\n    one: \"ساعة واحدة\",\n    two: \"ساعتين\",\n    threeToTen: \"{{count}} ساعات\",\n    other: \"{{count}} ساعة\"\n  },\n  xDays: {\n    one: \"يوم واحد\",\n    two: \"يومين\",\n    threeToTen: \"{{count}} أيام\",\n    other: \"{{count}} يوم\"\n  },\n  aboutXWeeks: {\n    one: \"أسبوع واحد تقريباً\",\n    two: \"أسبوعين تقريباً\",\n    threeToTen: \"{{count}} أسابيع تقريباً\",\n    other: \"{{count}} أسبوع تقريباً\"\n  },\n  xWeeks: {\n    one: \"أسبوع واحد\",\n    two: \"أسبوعين\",\n    threeToTen: \"{{count}} أسابيع\",\n    other: \"{{count}} أسبوع\"\n  },\n  aboutXMonths: {\n    one: \"شهر واحد تقريباً\",\n    two: \"شهرين تقريباً\",\n    threeToTen: \"{{count}} أشهر تقريباً\",\n    other: \"{{count}} شهر تقريباً\"\n  },\n  xMonths: {\n    one: \"شهر واحد\",\n    two: \"شهرين\",\n    threeToTen: \"{{count}} أشهر\",\n    other: \"{{count}} شهر\"\n  },\n  aboutXYears: {\n    one: \"عام واحد تقريباً\",\n    two: \"عامين تقريباً\",\n    threeToTen: \"{{count}} أعوام تقريباً\",\n    other: \"{{count}} عام تقريباً\"\n  },\n  xYears: {\n    one: \"عام واحد\",\n    two: \"عامين\",\n    threeToTen: \"{{count}} أعوام\",\n    other: \"{{count}} عام\"\n  },\n  overXYears: {\n    one: \"أكثر من عام\",\n    two: \"أكثر من عامين\",\n    threeToTen: \"أكثر من {{count}} أعوام\",\n    other: \"أكثر من {{count}} عام\"\n  },\n  almostXYears: {\n    one: \"عام واحد تقريباً\",\n    two: \"عامين تقريباً\",\n    threeToTen: \"{{count}} أعوام تقريباً\",\n    other: \"{{count}} عام تقريباً\"\n  }\n};\nexport const formatDistance = (token, count, options) => {\n  options = options || {};\n  const usageGroup = formatDistanceLocale[token];\n  let result;\n  if (typeof usageGroup === \"string\") {\n    result = usageGroup;\n  } else if (count === 1) {\n    result = usageGroup.one;\n  } else if (count === 2) {\n    result = usageGroup.two;\n  } else if (count <= 10) {\n    result = usageGroup.threeToTen.replace(\"{{count}}\", String(count));\n  } else {\n    result = usageGroup.other.replace(\"{{count}}\", String(count));\n  }\n  if (options.addSuffix) {\n    if (options.comparison && options.comparison > 0) {\n      return \"في خلال \" + result;\n    } else {\n      return \"منذ \" + result;\n    }\n  }\n  return result;\n};","map":{"version":3,"names":["formatDistanceLocale","lessThanXSeconds","one","two","threeToTen","other","xSeconds","halfAMinute","lessThanXMinutes","xMinutes","aboutXHours","xHours","xDays","aboutXWeeks","xWeeks","aboutXMonths","xMonths","aboutXYears","xYears","overXYears","almostXYears","formatDistance","token","count","options","usageGroup","result","replace","String","addSuffix","comparison"],"sources":["/root/rfcontavagas_hom/12.-Servidor-local-Docker/Front-Parking-Angular/node_modules/date-fns/locale/ar-DZ/_lib/formatDistance.mjs"],"sourcesContent":["const formatDistanceLocale = {\n  lessThanXSeconds: {\n    one: \"أقل من ثانية واحدة\",\n    two: \"أقل من ثانتين\",\n    threeToTen: \"أقل من {{count}} ثواني\",\n    other: \"أقل من {{count}} ثانية\",\n  },\n\n  xSeconds: {\n    one: \"ثانية واحدة\",\n    two: \"ثانتين\",\n    threeToTen: \"{{count}} ثواني\",\n    other: \"{{count}} ثانية\",\n  },\n\n  halfAMinute: \"نصف دقيقة\",\n\n  lessThanXMinutes: {\n    one: \"أقل من دقيقة\",\n    two: \"أقل من دقيقتين\",\n    threeToTen: \"أقل من {{count}} دقائق\",\n    other: \"أقل من {{count}} دقيقة\",\n  },\n\n  xMinutes: {\n    one: \"دقيقة واحدة\",\n    two: \"دقيقتين\",\n    threeToTen: \"{{count}} دقائق\",\n    other: \"{{count}} دقيقة\",\n  },\n\n  aboutXHours: {\n    one: \"ساعة واحدة تقريباً\",\n    two: \"ساعتين تقريباً\",\n    threeToTen: \"{{count}} ساعات تقريباً\",\n    other: \"{{count}} ساعة تقريباً\",\n  },\n\n  xHours: {\n    one: \"ساعة واحدة\",\n    two: \"ساعتين\",\n    threeToTen: \"{{count}} ساعات\",\n    other: \"{{count}} ساعة\",\n  },\n\n  xDays: {\n    one: \"يوم واحد\",\n    two: \"يومين\",\n    threeToTen: \"{{count}} أيام\",\n    other: \"{{count}} يوم\",\n  },\n\n  aboutXWeeks: {\n    one: \"أسبوع واحد تقريباً\",\n    two: \"أسبوعين تقريباً\",\n    threeToTen: \"{{count}} أسابيع تقريباً\",\n    other: \"{{count}} أسبوع تقريباً\",\n  },\n\n  xWeeks: {\n    one: \"أسبوع واحد\",\n    two: \"أسبوعين\",\n    threeToTen: \"{{count}} أسابيع\",\n    other: \"{{count}} أسبوع\",\n  },\n\n  aboutXMonths: {\n    one: \"شهر واحد تقريباً\",\n    two: \"شهرين تقريباً\",\n    threeToTen: \"{{count}} أشهر تقريباً\",\n    other: \"{{count}} شهر تقريباً\",\n  },\n\n  xMonths: {\n    one: \"شهر واحد\",\n    two: \"شهرين\",\n    threeToTen: \"{{count}} أشهر\",\n    other: \"{{count}} شهر\",\n  },\n\n  aboutXYears: {\n    one: \"عام واحد تقريباً\",\n    two: \"عامين تقريباً\",\n    threeToTen: \"{{count}} أعوام تقريباً\",\n    other: \"{{count}} عام تقريباً\",\n  },\n\n  xYears: {\n    one: \"عام واحد\",\n    two: \"عامين\",\n    threeToTen: \"{{count}} أعوام\",\n    other: \"{{count}} عام\",\n  },\n\n  overXYears: {\n    one: \"أكثر من عام\",\n    two: \"أكثر من عامين\",\n    threeToTen: \"أكثر من {{count}} أعوام\",\n    other: \"أكثر من {{count}} عام\",\n  },\n\n  almostXYears: {\n    one: \"عام واحد تقريباً\",\n    two: \"عامين تقريباً\",\n    threeToTen: \"{{count}} أعوام تقريباً\",\n    other: \"{{count}} عام تقريباً\",\n  },\n};\n\nexport const formatDistance = (token, count, options) => {\n  options = options || {};\n\n  const usageGroup = formatDistanceLocale[token];\n  let result;\n  if (typeof usageGroup === \"string\") {\n    result = usageGroup;\n  } else if (count === 1) {\n    result = usageGroup.one;\n  } else if (count === 2) {\n    result = usageGroup.two;\n  } else if (count <= 10) {\n    result = usageGroup.threeToTen.replace(\"{{count}}\", String(count));\n  } else {\n    result = usageGroup.other.replace(\"{{count}}\", String(count));\n  }\n\n  if (options.addSuffix) {\n    if (options.comparison && options.comparison > 0) {\n      return \"في خلال \" + result;\n    } else {\n      return \"منذ \" + result;\n    }\n  }\n\n  return result;\n};\n"],"mappings":"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","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}