cronstrue 2.55.0 → 2.56.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cronstrue-i18n.js +9 -6
- package/dist/cronstrue-i18n.min.js +1 -1
- package/dist/cronstrue.js +1 -1
- package/dist/cronstrue.min.js +1 -1
- package/dist/i18n/locales/fr.d.ts +2 -1
- package/locales/en.js +1 -1
- package/locales/en.min.js +1 -1
- package/locales/fr.js +8 -5
- package/locales/fr.min.js +1 -1
- package/package.json +1 -1
package/dist/cronstrue-i18n.js
CHANGED
|
@@ -2392,7 +2392,7 @@ var en = (function () {
|
|
|
2392
2392
|
return false;
|
|
2393
2393
|
};
|
|
2394
2394
|
en.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () {
|
|
2395
|
-
return "An error
|
|
2395
|
+
return "An error occurred when generating the expression description. Check the cron expression syntax.";
|
|
2396
2396
|
};
|
|
2397
2397
|
en.prototype.everyMinute = function () {
|
|
2398
2398
|
return "every minute";
|
|
@@ -3136,15 +3136,15 @@ var fr = (function () {
|
|
|
3136
3136
|
fr.prototype.use24HourTimeFormatByDefault = function () {
|
|
3137
3137
|
return true;
|
|
3138
3138
|
};
|
|
3139
|
+
fr.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () {
|
|
3140
|
+
return "Une erreur est survenue en générant la description de l'expression cron. Vérifiez sa syntaxe.";
|
|
3141
|
+
};
|
|
3139
3142
|
fr.prototype.everyMinute = function () {
|
|
3140
3143
|
return "toutes les minutes";
|
|
3141
3144
|
};
|
|
3142
3145
|
fr.prototype.everyHour = function () {
|
|
3143
3146
|
return "toutes les heures";
|
|
3144
3147
|
};
|
|
3145
|
-
fr.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () {
|
|
3146
|
-
return "Une erreur est survenue en générant la description de l'expression cron. Vérifiez sa syntaxe.";
|
|
3147
|
-
};
|
|
3148
3148
|
fr.prototype.atSpace = function () {
|
|
3149
3149
|
return "À ";
|
|
3150
3150
|
};
|
|
@@ -3185,7 +3185,7 @@ var fr = (function () {
|
|
|
3185
3185
|
return "de %s à %s";
|
|
3186
3186
|
};
|
|
3187
3187
|
fr.prototype.atX0 = function () {
|
|
3188
|
-
return "
|
|
3188
|
+
return "%s";
|
|
3189
3189
|
};
|
|
3190
3190
|
fr.prototype.commaEveryDay = function () {
|
|
3191
3191
|
return ", tous les jours";
|
|
@@ -3263,7 +3263,10 @@ var fr = (function () {
|
|
|
3263
3263
|
return ", du %s au %s du mois";
|
|
3264
3264
|
};
|
|
3265
3265
|
fr.prototype.commaOnDayX0OfTheMonth = function () {
|
|
3266
|
-
return ",
|
|
3266
|
+
return ", %s du mois";
|
|
3267
|
+
};
|
|
3268
|
+
fr.prototype.commaEveryHour = function () {
|
|
3269
|
+
return ", chaque heure";
|
|
3267
3270
|
};
|
|
3268
3271
|
fr.prototype.commaEveryX0Years = function () {
|
|
3269
3272
|
return ", tous les %s ans";
|