PluginProbe
Timetics – Appointment Booking Calendar & Scheduling / 1.0.56
Timetics – Appointment Booking Calendar & Scheduling v1.0.56
1.0.61 1.0.60 1.0.59 1.0.58 1.0.57 1.0.56 trunk 1.0.0 1.0.1 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 1.0.15 1.0.16 1.0.17 1.0.18 1.0.19 1.0.2 1.0.20 1.0.21 1.0.22 1.0.23 1.0.24 All 62 releases
timetics / assets / js / local / fr.js

fr.js in Timetics – Appointment Booking Calendar & Scheduling 1.0.56, at assets/js/local/fr.js

76 lines 1.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 (function (global, factory) {
2 typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
3 typeof define === 'function' && define.amd ? define(['exports'], factory) :
4 (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.fr = {}));
5 }(this, (function (exports) { 'use strict';
6
7 var fp = typeof window !== "undefined" && window.flatpickr !== undefined
8 ? window.flatpickr
9 : {
10 l10ns: {},
11 };
12 var French = {
13 firstDayOfWeek: 1,
14 weekdays: {
15 shorthand: ["dim", "lun", "mar", "mer", "jeu", "ven", "sam"],
16 longhand: [
17 "dimanche",
18 "lundi",
19 "mardi",
20 "mercredi",
21 "jeudi",
22 "vendredi",
23 "samedi",
24 ],
25 },
26 months: {
27 shorthand: [
28 "janv",
29 "févr",
30 "mars",
31 "avr",
32 "mai",
33 "juin",
34 "juil",
35 "août",
36 "sept",
37 "oct",
38 "nov",
39 "déc",
40 ],
41 longhand: [
42 "janvier",
43 "février",
44 "mars",
45 "avril",
46 "mai",
47 "juin",
48 "juillet",
49 "août",
50 "septembre",
51 "octobre",
52 "novembre",
53 "décembre",
54 ],
55 },
56 ordinal: function (nth) {
57 if (nth > 1)
58 return "";
59 return "er";
60 },
61 rangeSeparator: " au ",
62 weekAbbreviation: "Sem",
63 scrollTitle: "Défiler pour augmenter la valeur",
64 toggleTitle: "Cliquer pour basculer",
65 time_24hr: true,
66 };
67 fp.l10ns.fr = French;
68 var fr = fp.l10ns;
69
70 exports.French = French;
71 exports.default = fr;
72
73 Object.defineProperty(exports, '__esModule', { value: true });
74
75 })));
76