Workflow funktioniert nun wieder. Es gab Probleme nach Aenderungen.
Build and Publish Site / docker (push) Successful in 23s

ABER: Die Applikation funktioniert nur lokal. Die deployte Version geht noch nicht.
This commit is contained in:
2026-07-03 13:24:08 +02:00
parent 97a22cf704
commit b518ae8edb
1845 changed files with 292358 additions and 57 deletions
+21
View File
@@ -0,0 +1,21 @@
The MIT License (MIT)
Copyright (c) 2017 Brady Holt
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
+266
View File
@@ -0,0 +1,266 @@
# cRonstrue ![Build Status](https://github.com/bradymholt/cRonstrue/workflows/Build/badge.svg) [![NPM Package](https://img.shields.io/npm/v/cronstrue.svg)](https://www.npmjs.com/package/cronstrue)
<img align="left" src="https://user-images.githubusercontent.com/759811/210273710-b13913e2-0a71-4d9d-94da-1fe538b8a73e.gif"/>
<br/>
&nbsp;**Would you take a quick second and ⭐️ my repo?**
<br/>
cRonstrue is a JavaScript library that parses a cron expression and outputs a human readable description of the cron schedule. For example, given the expression "*/5 * * * *" it will output "Every 5 minutes".
This library was ported from the original C# implementation called [cron-expression-descriptor](https://github.com/bradymholt/cron-expression-descriptor) and is also available in a [few other languages](https://github.com/bradymholt/cron-expression-descriptor#ports).
## Features
- Zero dependencies
- Supports all cron expression special characters including * / , - ? L W, #
- Supports 5, 6 (w/ seconds or year), or 7 (w/ seconds and year) part cron expressions
- [Quartz Job Scheduler](http://www.quartz-scheduler.org/) cron expressions are supported
- Supports time specification _nicknames_ (@yearly, @annually, @monthly, @weekly, @daily)
- i18n support with 30+ languages
## Demo
A demo is available [here](http://bradymholt.github.io/cRonstrue/#cronstrue-demo).
## Installation
cRonstrue is exported as an [UMD](https://github.com/umdjs/umd) module so it will work in an [AMD](https://github.com/amdjs/amdjs-api/wiki/AMD), [CommonJS](http://wiki.commonjs.org/wiki/CommonJS) or browser global context.
First, install the module:
```
npm install cronstrue
```
Then, depending upon your usage context, add a reference to it:
### Node / CommonJS
```js
const cronstrue = require('cronstrue');
```
### ESM / webpack / TypeScript
```js
import cronstrue from 'cronstrue';
```
### Browser
The `cronstrue.min.js` file from the `/dist` folder in the npm package should be served to the browser. There are no dependencies so you can simply include the library in a `<script>` tag.
```html
<script src="cronstrue.min.js" type="text/javascript"></script>
<script>
var cronstrue = window.cronstrue;
</script>
```
#### CDN
A simple way to load the library in a browser is by using the [unpkg](https://unpkg.com/) CDN, which is a
"fast, global content delivery network for everything on npm". To use it, include a script tag like this in your file:
```html
<script src="https://unpkg.com/cronstrue@latest/dist/cronstrue.min.js" async></script>
```
Using the "latest" tag will result in a 302 redirect to the latest version tag so it is recommended to use a specific version tag such as https://unpkg.com/cronstrue@1.48.0/dist/cronstrue.min.js to avoid this redirect.
## Usage
```js
cronstrue.toString("* * * * *");
> "Every minute"
cronstrue.toString("0 23 ? * MON-FRI");
> "At 11:00 PM, Monday through Friday"
cronstrue.toString("0 23 * * *", { verbose: true });
> "At 11:00 PM, every day"
cronstrue.toString("23 12 * * SUN#2");
> "At 12:23 PM, on the second Sunday of the month"
cronstrue.toString("23 14 * * SUN#2", { use24HourTimeFormat: true });
> "At 14:23, on the second Sunday of the month"
cronstrue.toString("* * * ? * 2-6/2", { dayOfWeekStartIndexZero: false });
> "Every second, every 2 days of the week, Monday through Friday"
cronstrue.toString("* * * 6-8 *", { monthStartIndexZero: true });
> "Every minute, July through September"
cronstrue.toString("@monthly");
> "At 12:00 AM, on day 1 of the month"
```
For more usage examples, including a demonstration of how cRonstrue can handle some very complex cron expressions, you can [reference the unit tests](https://github.com/bradymholt/cRonstrue/blob/main/test/cronstrue.ts).
### i18n
By default, only the English translation (`en`) is included when you import and use cRonstrue. To use other languages, please see the [i18n section](#i18n-1) below.
### CLI Usage
```sh
npx cronstrue "*/5 * * * *"
Every 5 minutes
```
## Options
An options object can be passed as the second parameter to `cronstrue.toString`. The following options are available:
- **throwExceptionOnParseError: boolean** - If exception occurs when trying to parse expression and generate description, whether to throw or catch and output the Exception message as the description. (Default: true)
- **verbose: boolean** - Whether to use a verbose description (Default: false)
- **dayOfWeekStartIndexZero: boolean** - Whether to interpret cron expression DOW `1` as Sunday or Monday. (Default: true)
- **monthStartIndexZero: boolean** - Whether to interpret January as `0` or `1`. (Default: false)
- **use24HourTimeFormat: boolean** - If true, descriptions will use a [24-hour clock](https://en.wikipedia.org/wiki/24-hour_clock) (Default: false but some translations will default to true)
- **trimHoursLeadingZero: boolean** - Whether to trim the leading zero that may appear in the hours description; e.g. "02:00 AM" -> "2:00 AM", "08:00" -> "8:00" (Default: false)
- **locale: string** - The locale to use (Default: "en")
- **logicalAndDayFields: boolean** - If true, descriptions for cron expressions with both day of month and day of week specified will follow a logical-AND wording rather than logical-OR wording; e.g. "...between day 11 and 17 of the month, only on Friday" rather than "...between day 11 and 17 of the month, and on Friday" (Default: false)
## i18n
To use the i18n support cRonstrue provides, you can either import all the supported locales at once (using `cronstrue/i18n`) or import individual locales (using `cronstrue/locales/[locale]`). Then, when calling `toString` you pass in the name of the locale you want to use. For example, for the es (Spanish) locale, you would use: `cronstrue.toString("* * * * *", { locale: "es" })`.
### All Locales
You can import all locales at once with `cronstrue/i18n`. This approach has the advantage of only having to load one module and having access to all supported locales. The tradeoff with this approach is a larger module (~130k, minified) that will take longer to load, particularly when sending down to a browser.
```js
// Node / CommonJS
const cronstrue = require('cronstrue/i18n');
// ESM / webpack / TypeScript
import cronstrue from 'cronstrue/i18n';
// Browser
<script src="https://unpkg.com/cronstrue@latest/cronstrue-i18n.min.js" async></script>
cronstrue.toString("*/5 * * * *", { locale: "fr" }); // => Toutes les 5 minutes
cronstrue.toString("*/5 * * * *", { locale: "es" }); // => Cada 5 minutos
```
### Individual Locales
You can also load the main cronstrue module and then load individual locale modules you want to have access to. This works well when you have one or more locales you know you need access to and want to minimize load time, particularly when sending down to a browser. The main cronstrue module is about 42k (minified) and each locale is about 4k (minified) in size.
```js
// Node / CommonJS
const cronstrue = require('cronstrue');
require('cronstrue/locales/fr');
require('cronstrue/locales/es');
// ESM / webpack / TypeScript
import cronstrue from 'cronstrue';
import 'cronstrue/locales/fr';
import 'cronstrue/locales/es';
// Browser
<script src="https://unpkg.com/cronstrue@latest/dist/cronstrue.min.js" async></script>
<script src="https://unpkg.com/cronstrue@latest/locales/fr.min.js" async></script>
<script src="https://unpkg.com/cronstrue@latest/locales/es.min.js" async></script>
cronstrue.toString("*/5 * * * *", { locale: "fr" }); // => Toutes les 5 minutes
cronstrue.toString("*/5 * * * *", { locale: "es" }); // => Cada 5 minutos
```
### Supported Locales
The following locales can be passed in for the `locale` option. Thank you to the author (shown below) of each translation!
- en - English ([Brady Holt](https://github.com/bradymholt))
- af - Afrikaans ([Michael van Niekerk](https://github.com/mvniekerk))
- ar - Arabic ([Mohamed Nehad Shalabi](https://github.com/mohamednehad450))
- be - Belarusian ([Kirill Mikulich](https://github.com/KirillMikulich))
- bg - Bulgarian ([kamenf](https://github.com/kamenf))
- ca - Catalan ([Francisco Javier Barrena](https://github.com/fjbarrena))
- cs - Czech ([hanbar](https://github.com/hanbar))
- da - Danish ([Rasmus Melchior Jacobsen](https://github.com/rmja))
- de - German ([Michael Schuler](https://github.com/mschuler))
- es - Spanish ([Ivan Santos](https://github.com/ivansg))
- fa - Farsi ([A. Bahrami](https://github.com/alirezakoo))
- fi - Finnish ([Mikael Rosenberg](https://github.com/MR77FI))
- fr - French ([Arnaud TAMAILLON](https://github.com/Greybird))
- he - Hebrew ([Ilan Firsov](https://github.com/IlanF))
- hr - Croatian ([Rok Šekoranja](https://github.com/Rookxc))
- hu - Hungarian ([Orcsity Norbert](https://github.com/Northber), Szabó Dániel)
- id - Indonesia ([Hasan Basri](https://github.com/hasanbasri1993))
- it - Italian ([rinaldihno](https://github.com/rinaldihno))
- ja - Japanese ([Alin Sarivan](https://github.com/asarivan))
- ko - Korean ([Ion Mincu](https://github.com/ionmincu))
- my - Malay (Malaysia) ([Ikhwan Abdullah](https://github.com/leychay))
- nb - Norwegian ([Siarhei Khalipski](https://github.com/KhalipskiSiarhei))
- nl - Dutch ([TotalMace](https://github.com/TotalMace))
- pl - Polish ([foka](https://github.com/foka))
- pt_BR - Portuguese (Brazil) ([Renato Lima](https://github.com/natenho))
- pt_PT - Portuguese (Portugal) ([POFerro](https://github.com/POFerro))
- ro - Romanian ([Illegitimis](https://github.com/illegitimis))
- ru - Russian ([LbISS](https://github.com/LbISS))
- sk - Slovakian ([hanbar](https://github.com/hanbar))
- sl - Slovenian ([Jani Bevk](https://github.com/jenzy))
- sw - Swahili ([Leylow Lujuo](https://github.com/leyluj))
- sv - Swedish ([roobin](https://github.com/roobin))
- sr - Serbian ([Miloš Paunović](https://github.com/MilosPaunovic))
- th - Thai ([Teerapat Prommarak](https://github.com/xeusteerapat))
- tr - Turkish ([Mustafa SADEDİL](https://github.com/sadedil))
- uk - Ukrainian ([Taras](https://github.com/tbudurovych))
- vi - Vietnamese ([Nguyen Tan Phap](https://github.com/rikkapro0128))
- zh_CN - Chinese (Simplified) ([Star Peng](https://github.com/starpeng))
- zh_TW - Chinese (Traditional) ([Ricky Chiang](https://github.com/metavige))
## Frequently Asked Questions
1. The cron expression I am passing in is not valid and this library is giving strange output. What should I do?
This library does not do full validation of cron expressions and assumes the expression passed in is valid. If you need to validate an expression consider using a library like [cron-parser](https://www.npmjs.com/package/cron-parser). Example validation with cron-parser:
```javascript
import { CronExpressionParser } from "cron-parser";
import cronstrue from "cronstrue";
const expression = "* * * * * *";
const isCronValid = (() => {
try {
CronExpressionParser.parse(expression);
return true;
} catch {
return false;
}
})();
if (isCronValid) {
console.log(cronstrue.toString(expression));
}
```
2. Can cRonstrue output the next occurrence of the cron expression?
No, cRonstrue does not support this. This library simply describes a cron expression that is passed in. You can do with with a library like [croner](https://www.npmjs.com/package/croner). Example:
```javascript
import { Cron } from 'croner';
const job = new Cron('0 9 * * 1-5');
console.log(job.nextRun()); // next Date
console.log(job.nextRuns(5)); // next 5 Dates
```
## Sponsors
Thank you to the following sponsors of this project!
<a href="https://github.com/microsoft"><img src="https://github.com/microsoft.png" width="50px" alt="robjtede" style="max-width: 100%;"></a>
<a href="https://github.com/github"><img src="https://github.com/github.png" width="50px" alt="robjtede" style="max-width: 100%;"></a>
<a href="https://github.com/DevUtilsApp"><img src="https://github.com/DevUtilsApp.png" width="50px" alt="robjtede" style="max-width: 100%;"></a>
<a href="https://github.com/getsentry"><img src="https://github.com/getsentry.png" width="50px" alt="robjtede" style="max-width: 100%;"></a>
<a href="https://github.com/KevinWang15"><img src="https://github.com/KevinWang15.png" width="50px" alt="robjtede" style="max-width: 100%;"></a>
<a href="https://github.com/timheuer"><img src="https://github.com/timheuer.png" width="50px" alt="robjtede" style="max-width: 100%;"></a>
## License
cRonstrue is freely distributable under the terms of the [MIT license](https://github.com/bradymholt/cronstrue/blob/main/LICENSE).
+43
View File
@@ -0,0 +1,43 @@
#!/usr/bin/env node
const cronstrue = require('../dist/cronstrue');
function usage() {
console.error("Usage: cronstrue \"<expression>\"");
console.error(" or");
console.error("Usage (5 args): cronstrue minute hour day-of-month month day-of-week");
console.error(" or");
console.error("Usage (6 args): cronstrue second minute hour day-of-month month day-of-week");
console.error(" or");
console.error("Usage (7 args): cronstrue second minute hour day-of-month month day-of-week year");
console.error("");
console.error("Examples:");
console.error(" cronstrue \"*/5 * * * *\"");
console.error(" cronstrue \"@daily\"");
console.error(" cronstrue 0 0 * * 1");
}
const args = process.argv.slice(2);
// Handle the case where a single argument is provided, which might be a complete cron expression or special @ syntax
if (args.length === 1) {
console.log(cronstrue.toString(args[0]));
process.exit(0);
}
// Handle the 5-7 arguments case
const expression = args.join(" ");
const argCount = args.length;
if (argCount < 5) {
console.error(`Error: too few arguments (${argCount}): ${expression}`);
usage();
process.exit(1);
}
if (argCount > 7) {
console.error(`Error: too many arguments (${argCount}): ${expression}`);
usage();
process.exit(2);
}
console.log(cronstrue.toString(expression));
+13
View File
@@ -0,0 +1,13 @@
export declare class CronParser {
expression: string;
dayOfWeekStartIndexZero: boolean;
monthStartIndexZero: boolean;
constructor(expression: string, dayOfWeekStartIndexZero?: boolean, monthStartIndexZero?: boolean);
parse(): string[];
parseSpecial(expression: string): string;
protected extractParts(expression: string): string[];
protected normalize(expressionParts: string[]): void;
protected validate(parsed: string[]): void;
protected validateAnyRanges(parsed: string[]): void;
protected validateOnlyExpectedCharactersFound(cronPart: string, allowedCharsExpression: string): void;
}
+4
View File
@@ -0,0 +1,4 @@
import { ExpressionDescriptor } from "./expressionDescriptor";
export default ExpressionDescriptor;
declare let toString: typeof ExpressionDescriptor.toString;
export { toString };
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long
+4
View File
@@ -0,0 +1,4 @@
import { ExpressionDescriptor } from "./expressionDescriptor";
export default ExpressionDescriptor;
declare let toString: typeof ExpressionDescriptor.toString;
export { toString };
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long
@@ -0,0 +1,31 @@
import { Options } from "./options";
import { Locale } from "./i18n/locale";
import { LocaleLoader } from "./i18n/localeLoader";
export declare class ExpressionDescriptor {
static locales: {
[name: string]: Locale;
};
static defaultLocale: string;
static specialCharacters: string[];
expression: string;
expressionParts: string[];
options: Options;
i18n: Locale;
static toString(expression: string, { throwExceptionOnParseError, verbose, dayOfWeekStartIndexZero, monthStartIndexZero, use24HourTimeFormat, trimHoursLeadingZero, locale, logicalAndDayFields, }?: Options): string;
static initialize(localesLoader: LocaleLoader, defaultLocale?: string): void;
constructor(expression: string, options: Options);
protected getFullDescription(): string;
protected getTimeOfDayDescription(): string;
protected getSecondsDescription(): string;
protected getMinutesDescription(): string;
protected getHoursDescription(): string;
protected getDayOfWeekDescription(): string;
protected getMonthDescription(): string;
protected getDayOfMonthDescription(): string | null;
protected getYearDescription(): string;
protected getSegmentDescription(expression: string, allDescription: string, getSingleItemDescription: (t: string, form?: number) => string, getIncrementDescriptionFormat: (t: string) => string, getRangeDescriptionFormat: (t: string) => string, getDescriptionFormat: (t: string) => string): string | null;
protected generateRangeSegmentDescription(rangeExpression: string, getRangeDescriptionFormat: (t: string) => string, getSingleItemDescription: (t: string, form?: number) => string): string;
protected formatTime(hourExpression: string, minuteExpression: string, secondExpression: string): string;
protected transformVerbosity(description: string, useVerboseFormat: boolean): string;
private getPeriod;
}
+40
View File
@@ -0,0 +1,40 @@
export { en } from "./locales/en";
export { da } from "./locales/da";
export { de } from "./locales/de";
export { es } from "./locales/es";
export { fr } from "./locales/fr";
export { it } from "./locales/it";
export { id } from "./locales/id";
export { ko } from "./locales/ko";
export { nl } from "./locales/nl";
export { nb } from "./locales/nb";
export { nn } from "./locales/nn";
export { sv } from "./locales/sv";
export { pl } from "./locales/pl";
export { pt_BR } from "./locales/pt_BR";
export { pt_PT } from "./locales/pt_PT";
export { ro } from "./locales/ro";
export { ru } from "./locales/ru";
export { tr } from "./locales/tr";
export { uk } from "./locales/uk";
export { zh_CN } from "./locales/zh_CN";
export { zh_TW } from "./locales/zh_TW";
export { ja } from "./locales/ja";
export { he } from "./locales/he";
export { cs } from "./locales/cs";
export { sk } from "./locales/sk";
export { fi } from "./locales/fi";
export { sl } from "./locales/sl";
export { sw } from "./locales/sw";
export { fa } from "./locales/fa";
export { ca } from "./locales/ca";
export { be } from "./locales/be";
export { hu } from "./locales/hu";
export { af } from "./locales/af";
export { th } from "./locales/th";
export { ar } from './locales/ar';
export { vi } from './locales/vi';
export { my } from './locales/my';
export { bg } from './locales/bg';
export { hr } from './locales/hr';
export { sr } from './locales/sr';
@@ -0,0 +1,6 @@
import { Locale } from "./locale";
export declare class allLocalesLoader {
load(availableLocales: {
[name: string]: Locale;
}): void;
}
@@ -0,0 +1,6 @@
import { Locale } from "./locale";
export declare class enLocaleLoader {
load(availableLocales: {
[name: string]: Locale;
}): void;
}
+65
View File
@@ -0,0 +1,65 @@
export interface Locale {
conciseVerbosityReplacements?(): Record<string, string>;
setPeriodBeforeTime?(): boolean;
pm?(): string;
am?(): string;
use24HourTimeFormatByDefault(): boolean;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
everyMinute(): string;
everyHour(): string;
atSpace(): string;
everyMinuteBetweenX0AndX1(): string;
at(): string;
spaceAnd(): string;
everySecond(): string;
everyX0Seconds(s?: string): string;
secondsX0ThroughX1PastTheMinute(): string;
atX0SecondsPastTheMinute(s?: string): string;
atX0SecondsPastTheMinuteGt20(): string | null;
everyX0Minutes(s?: string): string;
minutesX0ThroughX1PastTheHour(): string;
atX0MinutesPastTheHour(s?: string): string;
atX0MinutesPastTheHourGt20(): string | null;
everyX0Hours(s?: string): string;
betweenX0AndX1(): string;
atX0(): string;
commaEveryDay(): string;
commaEveryX0DaysOfTheWeek(s?: string): string;
commaX0ThroughX1(s?: string): string;
commaAndX0ThroughX1(s?: string): string;
commaMonthX0ThroughMonthX1(): string | null;
commaYearX0ThroughYearX1(): string | null;
first(s?: string): string;
second(s?: string): string;
third(s?: string): string;
fourth(s?: string): string;
fifth(s?: string): string;
commaOnThe(s?: string, day?: string): string;
spaceX0OfTheMonth(): string;
lastDay(): string;
commaOnTheLastX0OfTheMonth(s?: string): string;
commaOnlyOnX0(s?: string): string;
commaAndOnX0(): string;
commaEveryX0Months(s?: string): string;
commaOnlyInX0(): string;
commaOnlyInMonthX0?(): string;
commaOnlyInYearX0?(): string;
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
commaDaysBeforeTheLastDayOfTheMonth(s?: string): string;
firstWeekday(): string;
weekdayNearestDayX0(): string;
commaOnTheX0OfTheMonth(): string;
commaEveryX0Days(s?: string): string;
commaBetweenDayX0AndX1OfTheMonth(s?: string): string;
commaOnDayX0OfTheMonth(s?: string): string;
commaEveryX0Years(s?: string): string;
commaStartingX0(): string;
dayX0?(): string;
daysOfTheWeek(): string[];
daysOfTheWeekInCase?(f?: number): string[];
monthsOfTheYear(): string[];
monthsOfTheYearInCase?(f?: number): string[];
atReboot?(): string;
onTheHour?(): string;
}
@@ -0,0 +1,6 @@
import { Locale } from "./locale";
export interface LocaleLoader {
load(availableLocales: {
[name: string]: Locale;
}): void;
}
+57
View File
@@ -0,0 +1,57 @@
import { Locale } from "../locale";
export declare class af implements Locale {
atX0SecondsPastTheMinuteGt20(): string | null;
atX0MinutesPastTheHourGt20(): string | null;
commaMonthX0ThroughMonthX1(): string | null;
commaYearX0ThroughYearX1(): string | null;
use24HourTimeFormatByDefault(): boolean;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
everyMinute(): string;
everyHour(): string;
atSpace(): string;
everyMinuteBetweenX0AndX1(): string;
at(): string;
spaceAnd(): string;
everySecond(): string;
everyX0Seconds(): string;
secondsX0ThroughX1PastTheMinute(): string;
atX0SecondsPastTheMinute(): string;
everyX0Minutes(): string;
minutesX0ThroughX1PastTheHour(): string;
atX0MinutesPastTheHour(): string;
everyX0Hours(): string;
betweenX0AndX1(): string;
atX0(): string;
commaEveryDay(): string;
commaEveryX0DaysOfTheWeek(): string;
commaX0ThroughX1(): string;
commaAndX0ThroughX1(): string;
first(): string;
second(): string;
third(): string;
fourth(): string;
fifth(): string;
commaOnThe(): string;
spaceX0OfTheMonth(): string;
lastDay(): string;
commaOnTheLastX0OfTheMonth(): string;
commaOnlyOnX0(): string;
commaAndOnX0(): string;
commaEveryX0Months(): string;
commaOnlyInX0(): string;
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
commaDaysBeforeTheLastDayOfTheMonth(): string;
firstWeekday(): string;
weekdayNearestDayX0(): string;
commaOnTheX0OfTheMonth(): string;
commaEveryX0Days(): string;
commaBetweenDayX0AndX1OfTheMonth(): string;
commaOnDayX0OfTheMonth(): string;
commaEveryHour(): string;
commaEveryX0Years(): string;
commaStartingX0(): string;
daysOfTheWeek(): string[];
monthsOfTheYear(): string[];
onTheHour(): string;
}
+57
View File
@@ -0,0 +1,57 @@
import { Locale } from "../locale";
export declare class ar implements Locale {
atX0SecondsPastTheMinuteGt20(): string | null;
atX0MinutesPastTheHourGt20(): string | null;
commaMonthX0ThroughMonthX1(): string | null;
commaYearX0ThroughYearX1(): string | null;
use24HourTimeFormatByDefault(): boolean;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
everyMinute(): string;
everyHour(): string;
atSpace(): string;
everyMinuteBetweenX0AndX1(): string;
at(): string;
spaceAnd(): string;
everySecond(): string;
everyX0Seconds(): string;
secondsX0ThroughX1PastTheMinute(): string;
atX0SecondsPastTheMinute(): string;
everyX0Minutes(): string;
minutesX0ThroughX1PastTheHour(): string;
atX0MinutesPastTheHour(): string;
everyX0Hours(): string;
betweenX0AndX1(): string;
atX0(): string;
commaEveryDay(): string;
commaEveryX0DaysOfTheWeek(): string;
commaX0ThroughX1(): string;
commaAndX0ThroughX1(): string;
first(): string;
second(): string;
third(): string;
fourth(): string;
fifth(): string;
commaOnThe(): string;
spaceX0OfTheMonth(): string;
lastDay(): string;
commaOnTheLastX0OfTheMonth(): string;
commaOnlyOnX0(): string;
commaAndOnX0(): string;
commaEveryX0Months(): string;
commaOnlyInX0(): string;
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
commaDaysBeforeTheLastDayOfTheMonth(): string;
firstWeekday(): string;
weekdayNearestDayX0(): string;
commaOnTheX0OfTheMonth(): string;
commaEveryX0Days(): string;
commaBetweenDayX0AndX1OfTheMonth(): string;
commaOnDayX0OfTheMonth(): string;
commaEveryHour(): string;
commaEveryX0Years(): string;
commaStartingX0(): string;
daysOfTheWeek(): string[];
monthsOfTheYear(): string[];
onTheHour(): string;
}
+56
View File
@@ -0,0 +1,56 @@
import { Locale } from "../locale";
export declare class be implements Locale {
atX0SecondsPastTheMinuteGt20(): string | null;
atX0MinutesPastTheHourGt20(): string | null;
commaMonthX0ThroughMonthX1(): string | null;
commaYearX0ThroughYearX1(): string | null;
use24HourTimeFormatByDefault(): boolean;
everyMinute(): string;
everyHour(): string;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
atSpace(): string;
everyMinuteBetweenX0AndX1(): string;
at(): string;
spaceAnd(): string;
everySecond(): string;
everyX0Seconds(): string;
secondsX0ThroughX1PastTheMinute(): string;
atX0SecondsPastTheMinute(): string;
everyX0Minutes(): string;
minutesX0ThroughX1PastTheHour(): string;
atX0MinutesPastTheHour(): string;
everyX0Hours(): string;
betweenX0AndX1(): string;
atX0(): string;
commaEveryDay(): string;
commaEveryX0DaysOfTheWeek(): string;
commaX0ThroughX1(): string;
commaAndX0ThroughX1(): string;
first(): string;
second(): string;
third(): string;
fourth(): string;
fifth(): string;
commaOnThe(): string;
spaceX0OfTheMonth(): string;
lastDay(): string;
commaOnTheLastX0OfTheMonth(): string;
commaOnlyOnX0(): string;
commaAndOnX0(): string;
commaEveryX0Months(): string;
commaOnlyInX0(): string;
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
commaDaysBeforeTheLastDayOfTheMonth(): string;
firstWeekday(): string;
weekdayNearestDayX0(): string;
commaOnTheX0OfTheMonth(): string;
commaEveryX0Days(): string;
commaBetweenDayX0AndX1OfTheMonth(): string;
commaOnDayX0OfTheMonth(): string;
commaEveryX0Years(): string;
commaStartingX0(): string;
daysOfTheWeek(): string[];
monthsOfTheYear(): string[];
onTheHour(): string;
}
+57
View File
@@ -0,0 +1,57 @@
import type { Locale } from '../locale';
export declare class bg implements Locale {
atX0SecondsPastTheMinuteGt20(): string | null;
atX0MinutesPastTheHourGt20(): string | null;
commaMonthX0ThroughMonthX1(): string | null;
commaYearX0ThroughYearX1(): string | null;
use24HourTimeFormatByDefault(): boolean;
everyMinute(): string;
everyHour(): string;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
atSpace(): string;
everyMinuteBetweenX0AndX1(): string;
at(): string;
spaceAnd(): string;
everySecond(): string;
everyX0Seconds(s?: string): string;
secondsX0ThroughX1PastTheMinute(): string;
atX0SecondsPastTheMinute(s?: string): string;
everyX0Minutes(s?: string): string;
minutesX0ThroughX1PastTheHour(): string;
atX0MinutesPastTheHour(s?: string): string;
everyX0Hours(s?: string): string;
betweenX0AndX1(): string;
atX0(): string;
commaEveryDay(): string;
commaEveryX0DaysOfTheWeek(s?: string): string;
commaX0ThroughX1(s?: string): string;
commaAndX0ThroughX1(s?: string): string;
first(s?: string): string;
second(s?: string): string;
third(s?: string): string;
fourth(s?: string): string;
fifth(s?: string): string;
commaOnThe(s?: string): string;
spaceX0OfTheMonth(): string;
lastDay(): string;
commaOnTheLastX0OfTheMonth(s?: string): string;
commaOnlyOnX0(s?: string): string;
commaAndOnX0(): string;
commaEveryX0Months(s?: string): string;
commaOnlyInMonthX0(): string;
commaOnlyInX0(): string;
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
commaDaysBeforeTheLastDayOfTheMonth(s?: string): string;
firstWeekday(): string;
weekdayNearestDayX0(): string;
commaOnTheX0OfTheMonth(): string;
commaEveryX0Days(s?: string): string;
commaBetweenDayX0AndX1OfTheMonth(s?: string): string;
commaOnDayX0OfTheMonth(s?: string): string;
commaEveryX0Years(s?: string): string;
commaStartingX0(): string;
daysOfTheWeek(): string[];
monthsOfTheYear(): string[];
onTheHour(): string;
}
+56
View File
@@ -0,0 +1,56 @@
import { Locale } from "../locale";
export declare class ca implements Locale {
atX0SecondsPastTheMinuteGt20(): string | null;
atX0MinutesPastTheHourGt20(): string | null;
commaMonthX0ThroughMonthX1(): string | null;
commaYearX0ThroughYearX1(): string | null;
use24HourTimeFormatByDefault(): boolean;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
at(): string;
atSpace(): string;
atX0(): string;
atX0MinutesPastTheHour(): string;
atX0SecondsPastTheMinute(): string;
betweenX0AndX1(): string;
commaBetweenDayX0AndX1OfTheMonth(): string;
commaEveryDay(): string;
commaEveryX0Days(): string;
commaEveryX0DaysOfTheWeek(): string;
commaEveryX0Months(): string;
commaOnDayX0OfTheMonth(): string;
commaOnlyInX0(): string;
commaOnlyOnX0(): string;
commaAndOnX0(): string;
commaOnThe(): string;
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
commaDaysBeforeTheLastDayOfTheMonth(): string;
commaOnTheLastX0OfTheMonth(): string;
commaOnTheX0OfTheMonth(): string;
commaX0ThroughX1(): string;
commaAndX0ThroughX1(): string;
everyHour(): string;
everyMinute(): string;
everyMinuteBetweenX0AndX1(): string;
everySecond(): string;
everyX0Hours(): string;
everyX0Minutes(): string;
everyX0Seconds(): string;
fifth(): string;
first(): string;
firstWeekday(): string;
fourth(): string;
minutesX0ThroughX1PastTheHour(): string;
second(): string;
secondsX0ThroughX1PastTheMinute(): string;
spaceAnd(): string;
spaceX0OfTheMonth(): string;
lastDay(): string;
third(): string;
weekdayNearestDayX0(): string;
commaEveryX0Years(): string;
commaStartingX0(): string;
daysOfTheWeek(): string[];
monthsOfTheYear(): string[];
onTheHour(): string;
}
+56
View File
@@ -0,0 +1,56 @@
import { Locale } from "../locale";
export declare class cs implements Locale {
atX0SecondsPastTheMinuteGt20(): string | null;
atX0MinutesPastTheHourGt20(): string | null;
commaMonthX0ThroughMonthX1(): string | null;
commaYearX0ThroughYearX1(): string | null;
use24HourTimeFormatByDefault(): boolean;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
everyMinute(): string;
everyHour(): string;
atSpace(): string;
everyMinuteBetweenX0AndX1(): string;
at(): string;
spaceAnd(): string;
everySecond(): string;
everyX0Seconds(): string;
secondsX0ThroughX1PastTheMinute(): string;
atX0SecondsPastTheMinute(): string;
everyX0Minutes(): string;
minutesX0ThroughX1PastTheHour(): string;
atX0MinutesPastTheHour(): string;
everyX0Hours(): string;
betweenX0AndX1(): string;
atX0(): string;
commaEveryDay(): string;
commaEveryX0DaysOfTheWeek(): string;
commaX0ThroughX1(): string;
commaAndX0ThroughX1(): string;
first(): string;
second(): string;
third(): string;
fourth(): string;
fifth(): string;
commaOnThe(): string;
spaceX0OfTheMonth(): string;
lastDay(): string;
commaOnTheLastX0OfTheMonth(): string;
commaOnlyOnX0(): string;
commaAndOnX0(): string;
commaEveryX0Months(): string;
commaOnlyInX0(): string;
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
commaDaysBeforeTheLastDayOfTheMonth(): string;
firstWeekday(): string;
weekdayNearestDayX0(): string;
commaOnTheX0OfTheMonth(): string;
commaEveryX0Days(): string;
commaBetweenDayX0AndX1OfTheMonth(): string;
commaOnDayX0OfTheMonth(): string;
commaEveryX0Years(): string;
commaStartingX0(): string;
daysOfTheWeek(): string[];
monthsOfTheYear(): string[];
onTheHour(): string;
}
+56
View File
@@ -0,0 +1,56 @@
import { Locale } from "../locale";
export declare class da implements Locale {
use24HourTimeFormatByDefault(): boolean;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
at(): string;
atSpace(): string;
atX0(): string;
atX0MinutesPastTheHour(): string;
atX0SecondsPastTheMinute(): string;
betweenX0AndX1(): string;
commaBetweenDayX0AndX1OfTheMonth(): string;
commaEveryDay(): string;
commaEveryX0Days(): string;
commaEveryX0DaysOfTheWeek(): string;
commaEveryX0Months(): string;
commaEveryX0Years(): string;
commaOnDayX0OfTheMonth(): string;
commaOnlyInX0(): string;
commaOnlyOnX0(s?: string): string;
commaAndOnX0(): string;
commaOnThe(): string;
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
commaDaysBeforeTheLastDayOfTheMonth(): string;
commaOnTheLastX0OfTheMonth(): string;
commaOnTheX0OfTheMonth(): string;
commaX0ThroughX1(): string;
commaAndX0ThroughX1(): string;
everyHour(): string;
everyMinute(): string;
everyMinuteBetweenX0AndX1(): string;
everySecond(): string;
everyX0Hours(): string;
everyX0Minutes(): string;
everyX0Seconds(): string;
fifth(): string;
first(): string;
firstWeekday(): string;
fourth(): string;
minutesX0ThroughX1PastTheHour(): string;
second(): string;
secondsX0ThroughX1PastTheMinute(): string;
spaceAnd(): string;
spaceX0OfTheMonth(): string;
lastDay(): string;
third(): string;
weekdayNearestDayX0(): string;
commaMonthX0ThroughMonthX1(): string | null;
commaYearX0ThroughYearX1(): string | null;
atX0MinutesPastTheHourGt20(): string | null;
atX0SecondsPastTheMinuteGt20(): string | null;
commaStartingX0(): string;
daysOfTheWeek(): string[];
monthsOfTheYear(): string[];
onTheHour(): string;
}
+56
View File
@@ -0,0 +1,56 @@
import { Locale } from "../locale";
export declare class de implements Locale {
atX0SecondsPastTheMinuteGt20(): string | null;
atX0MinutesPastTheHourGt20(): string | null;
commaMonthX0ThroughMonthX1(): string | null;
commaYearX0ThroughYearX1(): string | null;
use24HourTimeFormatByDefault(): boolean;
everyMinute(): string;
everyHour(): string;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
atSpace(): string;
everyMinuteBetweenX0AndX1(): string;
at(): string;
spaceAnd(): string;
everySecond(): string;
everyX0Seconds(): string;
secondsX0ThroughX1PastTheMinute(): string;
atX0SecondsPastTheMinute(): string;
everyX0Minutes(): string;
minutesX0ThroughX1PastTheHour(): string;
atX0MinutesPastTheHour(): string;
everyX0Hours(): string;
betweenX0AndX1(): string;
atX0(): string;
commaEveryDay(): string;
commaEveryX0DaysOfTheWeek(): string;
commaX0ThroughX1(): string;
commaAndX0ThroughX1(): string;
first(): string;
second(): string;
third(): string;
fourth(): string;
fifth(): string;
commaOnThe(): string;
spaceX0OfTheMonth(): string;
lastDay(): string;
commaOnTheLastX0OfTheMonth(): string;
commaOnlyOnX0(): string;
commaAndOnX0(): string;
commaEveryX0Months(): string;
commaOnlyInX0(): string;
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
commaDaysBeforeTheLastDayOfTheMonth(): string;
firstWeekday(): string;
weekdayNearestDayX0(): string;
commaOnTheX0OfTheMonth(): string;
commaEveryX0Days(): string;
commaBetweenDayX0AndX1OfTheMonth(): string;
commaOnDayX0OfTheMonth(): string;
commaEveryX0Years(): string;
commaStartingX0(): string;
daysOfTheWeek(): string[];
monthsOfTheYear(): string[];
onTheHour(): string;
}
+58
View File
@@ -0,0 +1,58 @@
import { Locale } from "../locale";
export declare class en implements Locale {
atX0SecondsPastTheMinuteGt20(): string | null;
atX0MinutesPastTheHourGt20(): string | null;
commaMonthX0ThroughMonthX1(): string | null;
commaYearX0ThroughYearX1(): string | null;
use24HourTimeFormatByDefault(): boolean;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
everyMinute(): string;
everyHour(): string;
atSpace(): string;
everyMinuteBetweenX0AndX1(): string;
at(): string;
spaceAnd(): string;
everySecond(): string;
everyX0Seconds(): string;
secondsX0ThroughX1PastTheMinute(): string;
atX0SecondsPastTheMinute(): string;
everyX0Minutes(): string;
minutesX0ThroughX1PastTheHour(): string;
atX0MinutesPastTheHour(): string;
everyX0Hours(): string;
betweenX0AndX1(): string;
atX0(): string;
commaEveryDay(): string;
commaEveryX0DaysOfTheWeek(): string;
commaX0ThroughX1(): string;
commaAndX0ThroughX1(): string;
first(): string;
second(): string;
third(): string;
fourth(): string;
fifth(): string;
commaOnThe(): string;
spaceX0OfTheMonth(): string;
lastDay(): string;
commaOnTheLastX0OfTheMonth(): string;
commaOnlyOnX0(): string;
commaAndOnX0(): string;
commaEveryX0Months(): string;
commaOnlyInX0(): string;
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
commaDaysBeforeTheLastDayOfTheMonth(): string;
firstWeekday(): string;
weekdayNearestDayX0(): string;
commaOnTheX0OfTheMonth(): string;
commaEveryX0Days(): string;
commaBetweenDayX0AndX1OfTheMonth(): string;
commaOnDayX0OfTheMonth(): string;
commaEveryHour(): string;
commaEveryX0Years(): string;
commaStartingX0(): string;
daysOfTheWeek(): string[];
monthsOfTheYear(): string[];
atReboot(): string;
onTheHour(): string;
}
+56
View File
@@ -0,0 +1,56 @@
import { Locale } from "../locale";
export declare class es implements Locale {
atX0SecondsPastTheMinuteGt20(): string | null;
atX0MinutesPastTheHourGt20(): string | null;
commaMonthX0ThroughMonthX1(): string | null;
commaYearX0ThroughYearX1(): string | null;
use24HourTimeFormatByDefault(): boolean;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
at(): string;
atSpace(): string;
atX0(): string;
atX0MinutesPastTheHour(): string;
atX0SecondsPastTheMinute(): string;
betweenX0AndX1(): string;
commaBetweenDayX0AndX1OfTheMonth(): string;
commaEveryDay(): string;
commaEveryX0Days(): string;
commaEveryX0DaysOfTheWeek(): string;
commaEveryX0Months(): string;
commaOnDayX0OfTheMonth(): string;
commaOnlyInX0(): string;
commaOnlyOnX0(): string;
commaAndOnX0(): string;
commaOnThe(): string;
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
commaDaysBeforeTheLastDayOfTheMonth(): string;
commaOnTheLastX0OfTheMonth(): string;
commaOnTheX0OfTheMonth(): string;
commaX0ThroughX1(): string;
commaAndX0ThroughX1(): string;
everyHour(): string;
everyMinute(): string;
everyMinuteBetweenX0AndX1(): string;
everySecond(): string;
everyX0Hours(): string;
everyX0Minutes(): string;
everyX0Seconds(): string;
fifth(): string;
first(): string;
firstWeekday(): string;
fourth(): string;
minutesX0ThroughX1PastTheHour(): string;
second(): string;
secondsX0ThroughX1PastTheMinute(): string;
spaceAnd(): string;
spaceX0OfTheMonth(): string;
lastDay(): string;
third(): string;
weekdayNearestDayX0(): string;
commaEveryX0Years(): string;
commaStartingX0(): string;
daysOfTheWeek(): string[];
monthsOfTheYear(): string[];
onTheHour(): string;
}
+58
View File
@@ -0,0 +1,58 @@
import { Locale } from "../locale";
export declare class fa implements Locale {
atX0SecondsPastTheMinuteGt20(): string | null;
atX0MinutesPastTheHourGt20(): string | null;
commaMonthX0ThroughMonthX1(): string | null;
commaYearX0ThroughYearX1(): string | null;
use24HourTimeFormatByDefault(): boolean;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
everyMinute(): string;
everyHour(): string;
atSpace(): string;
everyMinuteBetweenX0AndX1(): string;
at(): string;
spaceAnd(): string;
everySecond(): string;
everyX0Seconds(): string;
secondsX0ThroughX1PastTheMinute(): string;
atX0SecondsPastTheMinute(): string;
everyX0Minutes(): string;
minutesX0ThroughX1PastTheHour(): string;
atX0MinutesPastTheHour(): string;
everyX0Hours(): string;
betweenX0AndX1(): string;
atX0(): string;
commaEveryDay(): string;
commaEveryX0DaysOfTheWeek(): string;
commaX0ThroughX1(): string;
commaAndX0ThroughX1(): string;
first(): string;
second(): string;
third(): string;
fourth(): string;
fifth(): string;
commaOnThe(): string;
spaceX0OfTheMonth(): string;
lastDay(): string;
commaOnTheLastX0OfTheMonth(): string;
commaOnlyOnX0(): string;
commaAndOnX0(): string;
commaEveryX0Months(): string;
commaOnlyInX0(): string;
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
commaDaysBeforeTheLastDayOfTheMonth(): string;
firstWeekday(): string;
weekdayNearestDayX0(): string;
commaOnTheX0OfTheMonth(): string;
commaEveryX0Days(): string;
commaBetweenDayX0AndX1OfTheMonth(): string;
commaOnDayX0OfTheMonth(): string;
commaEveryMinute(): string;
commaEveryHour(): string;
commaEveryX0Years(): string;
commaStartingX0(): string;
daysOfTheWeek(): string[];
monthsOfTheYear(): string[];
onTheHour(): string;
}
+59
View File
@@ -0,0 +1,59 @@
import { Locale } from "../locale";
export declare class fi implements Locale {
use24HourTimeFormatByDefault(): boolean;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
at(): string;
atSpace(): string;
atX0(): string;
atX0MinutesPastTheHour(): string;
atX0MinutesPastTheHourGt20(): string | null;
atX0SecondsPastTheMinute(): string;
betweenX0AndX1(): string;
commaBetweenDayX0AndX1OfTheMonth(): string;
commaEveryDay(): string;
commaEveryHour(): string;
commaEveryMinute(): string;
commaEveryX0Days(): string;
commaEveryX0DaysOfTheWeek(): string;
commaEveryX0Months(): string;
commaEveryX0Years(): string;
commaOnDayX0OfTheMonth(): string;
commaOnlyInX0(): string;
commaOnlyOnX0(): string;
commaOnThe(): string;
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
commaOnTheLastX0OfTheMonth(): string;
commaOnTheX0OfTheMonth(): string;
commaX0ThroughX1(): string;
commaAndX0ThroughX1(): string;
commaDaysBeforeTheLastDayOfTheMonth(): string;
commaStartingX0(): string;
everyHour(): string;
everyMinute(): string;
everyMinuteBetweenX0AndX1(): string;
everySecond(): string;
everyX0Hours(): string;
everyX0Minutes(): string;
everyX0Seconds(): string;
fifth(): string;
first(): string;
firstWeekday(): string;
fourth(): string;
minutesX0ThroughX1PastTheHour(): string;
second(): string;
secondsX0ThroughX1PastTheMinute(): string;
spaceAnd(): string;
spaceAndSpace(): string;
spaceX0OfTheMonth(): string;
third(): string;
weekdayNearestDayX0(): string;
atX0SecondsPastTheMinuteGt20(): string | null;
commaMonthX0ThroughMonthX1(): string | null;
commaYearX0ThroughYearX1(): string | null;
lastDay(): string;
commaAndOnX0(): string;
daysOfTheWeek(): string[];
monthsOfTheYear(): string[];
onTheHour(): string;
}
+61
View File
@@ -0,0 +1,61 @@
import { Locale } from "../locale";
export declare class fr implements Locale {
conciseVerbosityReplacements(): {
"de le": string;
};
atX0SecondsPastTheMinuteGt20(): string | null;
atX0MinutesPastTheHourGt20(): string | null;
commaMonthX0ThroughMonthX1(): string | null;
commaYearX0ThroughYearX1(): string | null;
use24HourTimeFormatByDefault(): boolean;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
everyMinute(): string;
everyHour(): string;
atSpace(): string;
everyMinuteBetweenX0AndX1(): string;
at(): string;
spaceAnd(): string;
everySecond(): string;
everyX0Seconds(): string;
secondsX0ThroughX1PastTheMinute(): string;
atX0SecondsPastTheMinute(): string;
everyX0Minutes(): string;
minutesX0ThroughX1PastTheHour(): string;
atX0MinutesPastTheHour(): string;
everyX0Hours(): string;
betweenX0AndX1(): string;
atX0(): string;
commaEveryDay(): string;
commaEveryX0DaysOfTheWeek(): string;
commaX0ThroughX1(): string;
commaAndX0ThroughX1(): string;
first(): string;
second(): string;
third(): string;
fourth(): string;
fifth(): string;
commaOnThe(): string;
spaceX0OfTheMonth(): string;
lastDay(): string;
commaOnTheLastX0OfTheMonth(): string;
commaOnlyOnX0(): string;
commaAndOnX0(): string;
commaEveryX0Months(): string;
commaOnlyInX0(): string;
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
commaDaysBeforeTheLastDayOfTheMonth(): string;
firstWeekday(): string;
weekdayNearestDayX0(): string;
commaOnTheX0OfTheMonth(): string;
commaEveryX0Days(): string;
commaBetweenDayX0AndX1OfTheMonth(): string;
commaOnDayX0OfTheMonth(): string;
commaEveryHour(): string;
commaEveryX0Years(): string;
commaDaysX0ThroughX1(): string;
commaStartingX0(): string;
daysOfTheWeek(): string[];
monthsOfTheYear(): string[];
onTheHour(): string;
}
+56
View File
@@ -0,0 +1,56 @@
import { Locale } from "../locale";
export declare class he implements Locale {
atX0SecondsPastTheMinuteGt20(): string | null;
atX0MinutesPastTheHourGt20(): string | null;
commaMonthX0ThroughMonthX1(): string | null;
commaYearX0ThroughYearX1(): string | null;
use24HourTimeFormatByDefault(): boolean;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
everyMinute(): string;
everyHour(): string;
atSpace(): string;
everyMinuteBetweenX0AndX1(): string;
at(): string;
spaceAnd(): string;
everySecond(): string;
everyX0Seconds(): string;
secondsX0ThroughX1PastTheMinute(): string;
atX0SecondsPastTheMinute(): string;
everyX0Minutes(): string;
minutesX0ThroughX1PastTheHour(): string;
atX0MinutesPastTheHour(): string;
everyX0Hours(): string;
betweenX0AndX1(): string;
atX0(): string;
commaEveryDay(): string;
commaEveryX0DaysOfTheWeek(): string;
commaX0ThroughX1(): string;
commaAndX0ThroughX1(): string;
first(): string;
second(): string;
third(): string;
fourth(): string;
fifth(): string;
commaOnThe(): string;
spaceX0OfTheMonth(): string;
lastDay(): string;
commaOnTheLastX0OfTheMonth(): string;
commaOnlyOnX0(): string;
commaAndOnX0(): string;
commaEveryX0Months(): string;
commaOnlyInX0(): string;
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
commaDaysBeforeTheLastDayOfTheMonth(): string;
firstWeekday(): string;
weekdayNearestDayX0(): string;
commaOnTheX0OfTheMonth(): string;
commaEveryX0Days(): string;
commaBetweenDayX0AndX1OfTheMonth(): string;
commaOnDayX0OfTheMonth(): string;
commaEveryX0Years(): string;
commaStartingX0(): string;
daysOfTheWeek(): string[];
monthsOfTheYear(): string[];
onTheHour(): string;
}
+56
View File
@@ -0,0 +1,56 @@
import { Locale } from "../locale";
export declare class hr implements Locale {
use24HourTimeFormatByDefault(): boolean;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
at(): string;
atSpace(): string;
atX0(): string;
atX0MinutesPastTheHour(): string;
atX0SecondsPastTheMinute(): string;
betweenX0AndX1(): string;
commaBetweenDayX0AndX1OfTheMonth(): string;
commaEveryDay(): string;
commaEveryX0Days(): string;
commaEveryX0DaysOfTheWeek(): string;
commaEveryX0Months(): string;
commaEveryX0Years(): string;
commaOnDayX0OfTheMonth(): string;
commaOnlyInX0(): string;
commaOnlyOnX0(): string;
commaAndOnX0(): string;
commaOnThe(): string;
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
commaDaysBeforeTheLastDayOfTheMonth(): string;
commaOnTheLastX0OfTheMonth(): string;
commaOnTheX0OfTheMonth(): string;
commaX0ThroughX1(): string;
commaAndX0ThroughX1(): string;
everyHour(): string;
everyMinute(): string;
everyMinuteBetweenX0AndX1(): string;
everySecond(): string;
everyX0Hours(): string;
everyX0Minutes(): string;
everyX0Seconds(): string;
fifth(): string;
first(): string;
firstWeekday(): string;
fourth(): string;
minutesX0ThroughX1PastTheHour(): string;
second(): string;
secondsX0ThroughX1PastTheMinute(): string;
spaceAnd(): string;
spaceX0OfTheMonth(): string;
lastDay(): string;
third(): string;
weekdayNearestDayX0(): string;
commaMonthX0ThroughMonthX1(): string | null;
commaYearX0ThroughYearX1(): string | null;
atX0MinutesPastTheHourGt20(): string | null;
atX0SecondsPastTheMinuteGt20(): string | null;
commaStartingX0(): string;
daysOfTheWeek(): string[];
monthsOfTheYear(): string[];
onTheHour(): string;
}
+57
View File
@@ -0,0 +1,57 @@
import { Locale } from "../locale";
export declare class hu implements Locale {
atX0SecondsPastTheMinuteGt20(): string | null;
atX0MinutesPastTheHourGt20(): string | null;
commaMonthX0ThroughMonthX1(): string | null;
commaYearX0ThroughYearX1(): string | null;
use24HourTimeFormatByDefault(): boolean;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
everyMinute(): string;
everyHour(): string;
atSpace(): string;
everyMinuteBetweenX0AndX1(): string;
at(): string;
spaceAnd(): string;
everySecond(): string;
everyX0Seconds(): string;
secondsX0ThroughX1PastTheMinute(): string;
atX0SecondsPastTheMinute(): string;
everyX0Minutes(): string;
minutesX0ThroughX1PastTheHour(): string;
atX0MinutesPastTheHour(): string;
everyX0Hours(): string;
betweenX0AndX1(): string;
atX0(): string;
commaEveryDay(): string;
commaEveryX0DaysOfTheWeek(): string;
commaX0ThroughX1(): string;
commaAndX0ThroughX1(): string;
first(): string;
second(): string;
third(): string;
fourth(): string;
fifth(): string;
commaOnThe(): string;
spaceX0OfTheMonth(): string;
lastDay(): string;
commaOnTheLastX0OfTheMonth(): string;
commaOnlyOnX0(): string;
commaAndOnX0(): string;
commaEveryX0Months(): string;
commaOnlyInX0(): string;
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
commaDaysBeforeTheLastDayOfTheMonth(): string;
firstWeekday(): string;
weekdayNearestDayX0(): string;
commaOnTheX0OfTheMonth(): string;
commaEveryX0Days(): string;
commaBetweenDayX0AndX1OfTheMonth(): string;
commaOnDayX0OfTheMonth(): string;
commaEveryHour(): string;
commaEveryX0Years(): string;
commaStartingX0(): string;
daysOfTheWeek(): string[];
monthsOfTheYear(): string[];
onTheHour(): string;
}
+57
View File
@@ -0,0 +1,57 @@
import { Locale } from "../locale";
export declare class id implements Locale {
atX0SecondsPastTheMinuteGt20(): string | null;
atX0MinutesPastTheHourGt20(): string | null;
commaMonthX0ThroughMonthX1(): string | null;
commaYearX0ThroughYearX1(): string | null;
use24HourTimeFormatByDefault(): boolean;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
everyMinute(): string;
everyHour(): string;
atSpace(): string;
everyMinuteBetweenX0AndX1(): string;
at(): string;
spaceAnd(): string;
everySecond(): string;
everyX0Seconds(): string;
secondsX0ThroughX1PastTheMinute(): string;
atX0SecondsPastTheMinute(): string;
everyX0Minutes(): string;
minutesX0ThroughX1PastTheHour(): string;
atX0MinutesPastTheHour(): string;
everyX0Hours(): string;
betweenX0AndX1(): string;
atX0(): string;
commaEveryDay(): string;
commaEveryX0DaysOfTheWeek(): string;
commaX0ThroughX1(): string;
commaAndX0ThroughX1(): string;
first(): string;
second(): string;
third(): string;
fourth(): string;
fifth(): string;
commaOnThe(): string;
spaceX0OfTheMonth(): string;
lastDay(): string;
commaOnTheLastX0OfTheMonth(): string;
commaOnlyOnX0(): string;
commaAndOnX0(): string;
commaEveryX0Months(): string;
commaOnlyInX0(): string;
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
commaDaysBeforeTheLastDayOfTheMonth(): string;
firstWeekday(): string;
weekdayNearestDayX0(): string;
commaOnTheX0OfTheMonth(): string;
commaEveryX0Days(): string;
commaBetweenDayX0AndX1OfTheMonth(): string;
commaOnDayX0OfTheMonth(): string;
commaEveryHour(): string;
commaEveryX0Years(): string;
commaStartingX0(): string;
daysOfTheWeek(): string[];
monthsOfTheYear(): string[];
onTheHour(): string;
}
+56
View File
@@ -0,0 +1,56 @@
import { Locale } from "../locale";
export declare class it implements Locale {
atX0SecondsPastTheMinuteGt20(): string | null;
atX0MinutesPastTheHourGt20(): string | null;
commaMonthX0ThroughMonthX1(): string | null;
commaYearX0ThroughYearX1(): string | null;
use24HourTimeFormatByDefault(): boolean;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
at(): string;
atSpace(): string;
atX0(): string;
atX0MinutesPastTheHour(): string;
atX0SecondsPastTheMinute(): string;
betweenX0AndX1(): string;
commaBetweenDayX0AndX1OfTheMonth(): string;
commaEveryDay(): string;
commaEveryX0Days(): string;
commaEveryX0DaysOfTheWeek(): string;
commaEveryX0Months(): string;
commaEveryX0Years(): string;
commaOnDayX0OfTheMonth(): string;
commaOnlyInX0(): string;
commaOnlyOnX0(): string;
commaAndOnX0(): string;
commaOnThe(): string;
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
commaDaysBeforeTheLastDayOfTheMonth(): string;
commaOnTheLastX0OfTheMonth(): string;
commaOnTheX0OfTheMonth(): string;
commaX0ThroughX1(): string;
commaAndX0ThroughX1(): string;
everyHour(): string;
everyMinute(): string;
everyMinuteBetweenX0AndX1(): string;
everySecond(): string;
everyX0Hours(): string;
everyX0Minutes(): string;
everyX0Seconds(): string;
fifth(): string;
first(): string;
firstWeekday(): string;
fourth(): string;
minutesX0ThroughX1PastTheHour(): string;
second(): string;
secondsX0ThroughX1PastTheMinute(): string;
spaceAnd(): string;
spaceX0OfTheMonth(): string;
lastDay(): string;
third(): string;
weekdayNearestDayX0(): string;
commaStartingX0(): string;
daysOfTheWeek(): string[];
monthsOfTheYear(): string[];
onTheHour(): string;
}
+61
View File
@@ -0,0 +1,61 @@
import { Locale } from "../locale";
export declare class ja implements Locale {
use24HourTimeFormatByDefault(): boolean;
everyMinute(): string;
everyHour(): string;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
atSpace(): string;
everyMinuteBetweenX0AndX1(): string;
at(): string;
spaceAnd(): string;
everySecond(): string;
everyX0Seconds(): string;
secondsX0ThroughX1PastTheMinute(): string;
atX0SecondsPastTheMinute(): string;
everyX0Minutes(): string;
minutesX0ThroughX1PastTheHour(): string;
atX0MinutesPastTheHour(): string;
everyX0Hours(): string;
betweenX0AndX1(): string;
atX0(): string;
commaEveryDay(): string;
commaEveryX0DaysOfTheWeek(): string;
commaX0ThroughX1(): string;
commaAndX0ThroughX1(): string;
first(): string;
second(): string;
third(): string;
fourth(): string;
fifth(): string;
commaOnThe(): string;
spaceX0OfTheMonth(): string;
commaOnTheLastX0OfTheMonth(): string;
commaOnlyOnX0(): string;
commaEveryX0Months(): string;
commaOnlyInX0(): string;
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
firstWeekday(): string;
weekdayNearestDayX0(): string;
commaOnTheX0OfTheMonth(): string;
commaEveryX0Days(): string;
commaBetweenDayX0AndX1OfTheMonth(): string;
commaOnDayX0OfTheMonth(): string;
spaceAndSpace(): string;
commaEveryMinute(): string;
commaEveryHour(): string;
commaEveryX0Years(): string;
commaStartingX0(): string;
aMPeriod(): string;
pMPeriod(): string;
commaDaysBeforeTheLastDayOfTheMonth(): string;
atX0SecondsPastTheMinuteGt20(): string | null;
atX0MinutesPastTheHourGt20(): string | null;
commaMonthX0ThroughMonthX1(): string | null;
commaYearX0ThroughYearX1(): string | null;
lastDay(): string;
commaAndOnX0(): string;
daysOfTheWeek(): string[];
monthsOfTheYear(): string[];
onTheHour(): string;
}
+61
View File
@@ -0,0 +1,61 @@
import { Locale } from "../locale";
export declare class ko implements Locale {
setPeriodBeforeTime(): boolean;
pm(): string;
am(): string;
atX0SecondsPastTheMinuteGt20(): string | null;
atX0MinutesPastTheHourGt20(): string | null;
commaMonthX0ThroughMonthX1(): string | null;
commaYearX0ThroughYearX1(): string | null;
use24HourTimeFormatByDefault(): boolean;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
everyMinute(): string;
everyHour(): string;
atSpace(): string;
everyMinuteBetweenX0AndX1(): string;
at(): string;
spaceAnd(): string;
everySecond(): string;
everyX0Seconds(): string;
secondsX0ThroughX1PastTheMinute(): string;
atX0SecondsPastTheMinute(): string;
everyX0Minutes(): string;
minutesX0ThroughX1PastTheHour(): string;
atX0MinutesPastTheHour(): string;
everyX0Hours(): string;
betweenX0AndX1(): string;
atX0(): string;
commaEveryDay(): string;
commaEveryX0DaysOfTheWeek(): string;
commaX0ThroughX1(): string;
commaAndX0ThroughX1(): string;
first(): string;
second(): string;
third(): string;
fourth(): string;
fifth(): string;
commaOnThe(): string;
spaceX0OfTheMonth(): string;
lastDay(): string;
commaOnTheLastX0OfTheMonth(): string;
commaOnlyOnX0(): string;
commaAndOnX0(): string;
commaEveryX0Months(): string;
commaOnlyInX0(): string;
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
commaDaysBeforeTheLastDayOfTheMonth(): string;
firstWeekday(): string;
weekdayNearestDayX0(): string;
commaOnTheX0OfTheMonth(): string;
commaEveryX0Days(): string;
commaBetweenDayX0AndX1OfTheMonth(): string;
commaOnDayX0OfTheMonth(): string;
commaEveryMinute(): string;
commaEveryHour(): string;
commaEveryX0Years(): string;
commaStartingX0(): string;
daysOfTheWeek(): string[];
monthsOfTheYear(): string[];
onTheHour(): string;
}
+57
View File
@@ -0,0 +1,57 @@
import { Locale } from "../locale";
export declare class my implements Locale {
atX0SecondsPastTheMinuteGt20(): string | null;
atX0MinutesPastTheHourGt20(): string | null;
commaMonthX0ThroughMonthX1(): string | null;
commaYearX0ThroughYearX1(): string | null;
use24HourTimeFormatByDefault(): boolean;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
everyMinute(): string;
everyHour(): string;
atSpace(): string;
everyMinuteBetweenX0AndX1(): string;
at(): string;
spaceAnd(): string;
everySecond(): string;
everyX0Seconds(): string;
secondsX0ThroughX1PastTheMinute(): string;
atX0SecondsPastTheMinute(): string;
everyX0Minutes(): string;
minutesX0ThroughX1PastTheHour(): string;
atX0MinutesPastTheHour(): string;
everyX0Hours(): string;
betweenX0AndX1(): string;
atX0(): string;
commaEveryDay(): string;
commaEveryX0DaysOfTheWeek(): string;
commaX0ThroughX1(): string;
commaAndX0ThroughX1(): string;
first(): string;
second(): string;
third(): string;
fourth(): string;
fifth(): string;
commaOnThe(): string;
spaceX0OfTheMonth(): string;
lastDay(): string;
commaOnTheLastX0OfTheMonth(): string;
commaOnlyOnX0(): string;
commaAndOnX0(): string;
commaEveryX0Months(): string;
commaOnlyInX0(): string;
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
commaDaysBeforeTheLastDayOfTheMonth(): string;
firstWeekday(): string;
weekdayNearestDayX0(): string;
commaOnTheX0OfTheMonth(): string;
commaEveryX0Days(): string;
commaBetweenDayX0AndX1OfTheMonth(): string;
commaOnDayX0OfTheMonth(): string;
commaEveryHour(): string;
commaEveryX0Years(): string;
commaStartingX0(): string;
daysOfTheWeek(): string[];
monthsOfTheYear(): string[];
onTheHour(): string;
}
+56
View File
@@ -0,0 +1,56 @@
import { Locale } from "../locale";
export declare class nb implements Locale {
atX0SecondsPastTheMinuteGt20(): string | null;
atX0MinutesPastTheHourGt20(): string | null;
commaMonthX0ThroughMonthX1(): string | null;
commaYearX0ThroughYearX1(): string | null;
use24HourTimeFormatByDefault(): boolean;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
at(): string;
atSpace(): string;
atX0(): string;
atX0MinutesPastTheHour(): string;
atX0SecondsPastTheMinute(): string;
betweenX0AndX1(): string;
commaBetweenDayX0AndX1OfTheMonth(): string;
commaEveryDay(): string;
commaEveryX0Days(): string;
commaEveryX0DaysOfTheWeek(): string;
commaEveryX0Months(): string;
commaEveryX0Years(): string;
commaOnDayX0OfTheMonth(): string;
commaOnlyInX0(): string;
commaOnlyOnX0(): string;
commaAndOnX0(): string;
commaOnThe(): string;
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
commaDaysBeforeTheLastDayOfTheMonth(): string;
commaOnTheLastX0OfTheMonth(): string;
commaOnTheX0OfTheMonth(): string;
commaX0ThroughX1(): string;
commaAndX0ThroughX1(): string;
everyHour(): string;
everyMinute(): string;
everyMinuteBetweenX0AndX1(): string;
everySecond(): string;
everyX0Hours(): string;
everyX0Minutes(): string;
everyX0Seconds(): string;
fifth(): string;
first(): string;
firstWeekday(): string;
fourth(): string;
minutesX0ThroughX1PastTheHour(): string;
second(): string;
secondsX0ThroughX1PastTheMinute(): string;
spaceAnd(): string;
spaceX0OfTheMonth(): string;
lastDay(): string;
third(): string;
weekdayNearestDayX0(): string;
commaStartingX0(): string;
daysOfTheWeek(): string[];
monthsOfTheYear(): string[];
onTheHour(): string;
}
+56
View File
@@ -0,0 +1,56 @@
import { Locale } from "../locale";
export declare class nl implements Locale {
atX0SecondsPastTheMinuteGt20(): string | null;
atX0MinutesPastTheHourGt20(): string | null;
commaMonthX0ThroughMonthX1(): string | null;
commaYearX0ThroughYearX1(): string | null;
use24HourTimeFormatByDefault(): boolean;
everyMinute(): string;
everyHour(): string;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
atSpace(): string;
everyMinuteBetweenX0AndX1(): string;
at(): string;
spaceAnd(): string;
everySecond(): string;
everyX0Seconds(): string;
secondsX0ThroughX1PastTheMinute(): string;
atX0SecondsPastTheMinute(): string;
everyX0Minutes(): string;
minutesX0ThroughX1PastTheHour(): string;
atX0MinutesPastTheHour(): string;
everyX0Hours(): string;
betweenX0AndX1(): string;
atX0(): string;
commaEveryDay(): string;
commaEveryX0DaysOfTheWeek(): string;
commaX0ThroughX1(): string;
commaAndX0ThroughX1(): string;
first(): string;
second(): string;
third(): string;
fourth(): string;
fifth(): string;
commaOnThe(): string;
spaceX0OfTheMonth(): string;
lastDay(): string;
commaOnTheLastX0OfTheMonth(): string;
commaOnlyOnX0(): string;
commaAndOnX0(): string;
commaEveryX0Months(): string;
commaOnlyInX0(): string;
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
commaDaysBeforeTheLastDayOfTheMonth(): string;
firstWeekday(): string;
weekdayNearestDayX0(): string;
commaOnTheX0OfTheMonth(): string;
commaEveryX0Days(): string;
commaBetweenDayX0AndX1OfTheMonth(): string;
commaOnDayX0OfTheMonth(): string;
commaEveryX0Years(): string;
commaStartingX0(): string;
daysOfTheWeek(): string[];
monthsOfTheYear(): string[];
onTheHour(): string;
}
+56
View File
@@ -0,0 +1,56 @@
import { Locale } from "../locale";
export declare class nn implements Locale {
atX0SecondsPastTheMinuteGt20(): string | null;
atX0MinutesPastTheHourGt20(): string | null;
commaMonthX0ThroughMonthX1(): string | null;
commaYearX0ThroughYearX1(): string | null;
use24HourTimeFormatByDefault(): boolean;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
at(): string;
atSpace(): string;
atX0(): string;
atX0MinutesPastTheHour(): string;
atX0SecondsPastTheMinute(): string;
betweenX0AndX1(): string;
commaBetweenDayX0AndX1OfTheMonth(): string;
commaEveryDay(): string;
commaEveryX0Days(): string;
commaEveryX0DaysOfTheWeek(): string;
commaEveryX0Months(): string;
commaEveryX0Years(): string;
commaOnDayX0OfTheMonth(): string;
commaOnlyInX0(): string;
commaOnlyOnX0(): string;
commaAndOnX0(): string;
commaOnThe(): string;
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
commaDaysBeforeTheLastDayOfTheMonth(): string;
commaOnTheLastX0OfTheMonth(): string;
commaOnTheX0OfTheMonth(): string;
commaX0ThroughX1(): string;
commaAndX0ThroughX1(): string;
everyHour(): string;
everyMinute(): string;
everyMinuteBetweenX0AndX1(): string;
everySecond(): string;
everyX0Hours(): string;
everyX0Minutes(): string;
everyX0Seconds(): string;
fifth(): string;
first(): string;
firstWeekday(): string;
fourth(): string;
minutesX0ThroughX1PastTheHour(): string;
second(): string;
secondsX0ThroughX1PastTheMinute(): string;
spaceAnd(): string;
spaceX0OfTheMonth(): string;
lastDay(): string;
third(): string;
weekdayNearestDayX0(): string;
commaStartingX0(): string;
daysOfTheWeek(): string[];
monthsOfTheYear(): string[];
onTheHour(): string;
}
+56
View File
@@ -0,0 +1,56 @@
import { Locale } from "../locale";
export declare class pl implements Locale {
atX0SecondsPastTheMinuteGt20(): string | null;
atX0MinutesPastTheHourGt20(): string | null;
commaMonthX0ThroughMonthX1(): string | null;
commaYearX0ThroughYearX1(): string | null;
use24HourTimeFormatByDefault(): boolean;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
at(): string;
atSpace(): string;
atX0(): string;
atX0MinutesPastTheHour(): string;
atX0SecondsPastTheMinute(): string;
betweenX0AndX1(): string;
commaBetweenDayX0AndX1OfTheMonth(): string;
commaEveryDay(): string;
commaEveryX0Days(): string;
commaEveryX0DaysOfTheWeek(): string;
commaEveryX0Months(): string;
commaEveryX0Years(): string;
commaOnDayX0OfTheMonth(): string;
commaOnlyInX0(): string;
commaOnlyOnX0(): string;
commaAndOnX0(): string;
commaOnThe(): string;
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
commaDaysBeforeTheLastDayOfTheMonth(): string;
commaOnTheLastX0OfTheMonth(): string;
commaOnTheX0OfTheMonth(): string;
commaX0ThroughX1(): string;
commaAndX0ThroughX1(): string;
everyHour(): string;
everyMinute(): string;
everyMinuteBetweenX0AndX1(): string;
everySecond(): string;
everyX0Hours(): string;
everyX0Minutes(): string;
everyX0Seconds(): string;
fifth(): string;
first(): string;
firstWeekday(): string;
fourth(): string;
minutesX0ThroughX1PastTheHour(): string;
second(): string;
secondsX0ThroughX1PastTheMinute(): string;
spaceAnd(): string;
spaceX0OfTheMonth(): string;
lastDay(): string;
third(): string;
weekdayNearestDayX0(): string;
commaStartingX0(): string;
daysOfTheWeek(): string[];
monthsOfTheYear(): string[];
onTheHour(): string;
}
@@ -0,0 +1,56 @@
import { Locale } from "../locale";
export declare class pt_BR implements Locale {
atX0SecondsPastTheMinuteGt20(): string | null;
atX0MinutesPastTheHourGt20(): string | null;
commaMonthX0ThroughMonthX1(): string | null;
commaYearX0ThroughYearX1(): string | null;
use24HourTimeFormatByDefault(): boolean;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
at(): string;
atSpace(): string;
atX0(): string;
atX0MinutesPastTheHour(): string;
atX0SecondsPastTheMinute(): string;
betweenX0AndX1(): string;
commaBetweenDayX0AndX1OfTheMonth(): string;
commaEveryDay(): string;
commaEveryX0Days(): string;
commaEveryX0DaysOfTheWeek(): string;
commaEveryX0Months(): string;
commaOnDayX0OfTheMonth(): string;
commaOnlyInX0(s?: string): "somente %s" | ", somente em %s";
commaOnlyOnX0(s?: string): ", somente %s" | ", somente de %s";
commaAndOnX0(): string;
commaOnThe(s?: string, day?: string): ", no" | ", na ";
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
commaDaysBeforeTheLastDayOfTheMonth(): string;
commaOnTheLastX0OfTheMonth(): string;
commaOnTheX0OfTheMonth(): string;
commaX0ThroughX1(): string;
commaAndX0ThroughX1(): string;
everyHour(): string;
everyMinute(): string;
everyMinuteBetweenX0AndX1(): string;
everySecond(): string;
everyX0Hours(): string;
everyX0Minutes(): string;
everyX0Seconds(): string;
fifth(s?: string): "quinto" | "quinta";
first(s?: string): "primeiro" | "primeira";
firstWeekday(): string;
fourth(s?: string): "quarto" | "quarta";
minutesX0ThroughX1PastTheHour(): string;
second(s?: string): "segundo" | "segunda";
secondsX0ThroughX1PastTheMinute(): string;
spaceAnd(): string;
spaceX0OfTheMonth(): string;
lastDay(): string;
third(s?: string): "terceiro" | "terceira";
weekdayNearestDayX0(): string;
commaEveryX0Years(): string;
commaStartingX0(): string;
daysOfTheWeek(): string[];
monthsOfTheYear(): string[];
onTheHour(): string;
}
@@ -0,0 +1,56 @@
import { Locale } from "../locale";
export declare class pt_PT implements Locale {
atX0SecondsPastTheMinuteGt20(): string | null;
atX0MinutesPastTheHourGt20(): string | null;
commaMonthX0ThroughMonthX1(): string | null;
commaYearX0ThroughYearX1(): string | null;
use24HourTimeFormatByDefault(): boolean;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
at(): string;
atSpace(): string;
atX0(): string;
atX0MinutesPastTheHour(): string;
atX0SecondsPastTheMinute(): string;
betweenX0AndX1(): string;
commaBetweenDayX0AndX1OfTheMonth(): string;
commaEveryDay(): string;
commaEveryX0Days(): string;
commaEveryX0DaysOfTheWeek(): string;
commaEveryX0Months(): string;
commaOnDayX0OfTheMonth(): string;
commaOnlyInX0(): string;
commaOnlyOnX0(): string;
commaAndOnX0(): string;
commaOnThe(s?: string, day?: string): ", no" | ", na ";
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
commaDaysBeforeTheLastDayOfTheMonth(): string;
commaOnTheLastX0OfTheMonth(): string;
commaOnTheX0OfTheMonth(): string;
commaX0ThroughX1(): string;
commaAndX0ThroughX1(): string;
everyHour(): string;
everyMinute(): string;
everyMinuteBetweenX0AndX1(): string;
everySecond(): string;
everyX0Hours(): string;
everyX0Minutes(): string;
everyX0Seconds(): string;
fifth(s?: string): "quinto" | "quinta";
first(s?: string): "primeiro" | "primeira";
firstWeekday(): string;
fourth(s?: string): "quarto" | "quarta";
minutesX0ThroughX1PastTheHour(): string;
second(s?: string): "segundo" | "segunda";
secondsX0ThroughX1PastTheMinute(): string;
spaceAnd(): string;
spaceX0OfTheMonth(): string;
lastDay(): string;
third(s?: string): "terceiro" | "terceira";
weekdayNearestDayX0(): string;
commaEveryX0Years(): string;
commaStartingX0(): string;
daysOfTheWeek(): string[];
monthsOfTheYear(): string[];
onTheHour(): string;
}
+56
View File
@@ -0,0 +1,56 @@
import { Locale } from "../locale";
export declare class ro implements Locale {
use24HourTimeFormatByDefault(): boolean;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
at(): string;
atSpace(): string;
atX0(): string;
atX0MinutesPastTheHour(): string;
atX0SecondsPastTheMinute(): string;
betweenX0AndX1(): string;
commaBetweenDayX0AndX1OfTheMonth(): string;
commaEveryDay(): string;
commaEveryX0Days(): string;
commaEveryX0DaysOfTheWeek(): string;
commaEveryX0Months(): string;
commaEveryX0Years(): string;
commaOnDayX0OfTheMonth(): string;
commaOnlyInX0(): string;
commaOnlyOnX0(): string;
commaAndOnX0(): string;
commaOnThe(): string;
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
commaDaysBeforeTheLastDayOfTheMonth(): string;
commaOnTheLastX0OfTheMonth(): string;
commaOnTheX0OfTheMonth(): string;
commaX0ThroughX1(): string;
commaAndX0ThroughX1(): string;
everyHour(): string;
everyMinute(): string;
everyMinuteBetweenX0AndX1(): string;
everySecond(): string;
everyX0Hours(): string;
everyX0Minutes(): string;
everyX0Seconds(): string;
fifth(): string;
first(): string;
firstWeekday(): string;
fourth(): string;
minutesX0ThroughX1PastTheHour(): string;
second(): string;
secondsX0ThroughX1PastTheMinute(): string;
spaceAnd(): string;
spaceX0OfTheMonth(): string;
lastDay(): string;
third(): string;
weekdayNearestDayX0(): string;
commaMonthX0ThroughMonthX1(): string;
commaYearX0ThroughYearX1(): string;
atX0MinutesPastTheHourGt20(): string;
atX0SecondsPastTheMinuteGt20(): string;
commaStartingX0(): string;
daysOfTheWeek(): string[];
monthsOfTheYear(): string[];
onTheHour(): string;
}
+59
View File
@@ -0,0 +1,59 @@
import { Locale } from "../locale";
export declare class ru implements Locale {
atX0SecondsPastTheMinuteGt20(): string | null;
atX0MinutesPastTheHourGt20(): string | null;
commaMonthX0ThroughMonthX1(): string | null;
commaYearX0ThroughYearX1(): string | null;
use24HourTimeFormatByDefault(): boolean;
everyMinute(): string;
everyHour(): string;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
atSpace(): string;
everyMinuteBetweenX0AndX1(): string;
at(): string;
spaceAnd(): string;
everySecond(): string;
everyX0Seconds(s?: string): string;
secondsX0ThroughX1PastTheMinute(): string;
atX0SecondsPastTheMinute(s?: string): string;
everyX0Minutes(s?: string): string;
minutesX0ThroughX1PastTheHour(): string;
atX0MinutesPastTheHour(s?: string): string;
everyX0Hours(s?: string): string;
betweenX0AndX1(): string;
atX0(): string;
commaEveryDay(): string;
commaEveryX0DaysOfTheWeek(s?: string): string;
commaX0ThroughX1(s?: string): ", со %s по %s" | ", с %s по %s";
commaAndX0ThroughX1(s?: string): " и со %s по %s" | " и с %s по %s";
first(s?: string): string;
second(s?: string): string;
third(s?: string): string;
fourth(s?: string): string;
fifth(s?: string): string;
commaOnThe(s?: string): ", в " | ", во ";
spaceX0OfTheMonth(): string;
lastDay(): string;
commaOnTheLastX0OfTheMonth(s?: string): string;
commaOnlyOnX0(s?: string): ", только во %s" | ", только в %s";
commaAndOnX0(): string;
commaEveryX0Months(s?: string): string;
commaOnlyInMonthX0(): string;
commaOnlyInX0(): string;
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
commaDaysBeforeTheLastDayOfTheMonth(s?: string): string;
firstWeekday(): string;
weekdayNearestDayX0(): string;
commaOnTheX0OfTheMonth(): string;
commaEveryX0Days(s?: string): string;
commaBetweenDayX0AndX1OfTheMonth(s?: string): ", со %s по %s число месяца" | ", с %s по %s число месяца";
commaOnDayX0OfTheMonth(s?: string): ", во %s число месяца" | ", в %s число месяца";
commaEveryX0Years(s?: string): string;
commaStartingX0(): string;
daysOfTheWeek(): string[];
daysOfTheWeekInCase(f?: number): string[];
monthsOfTheYear(): string[];
monthsOfTheYearInCase(f?: number): string[];
onTheHour(): string;
}
+56
View File
@@ -0,0 +1,56 @@
import { Locale } from "../locale";
export declare class sk implements Locale {
atX0SecondsPastTheMinuteGt20(): string | null;
atX0MinutesPastTheHourGt20(): string | null;
commaMonthX0ThroughMonthX1(): string | null;
commaYearX0ThroughYearX1(): string | null;
use24HourTimeFormatByDefault(): boolean;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
everyMinute(): string;
everyHour(): string;
atSpace(): string;
everyMinuteBetweenX0AndX1(): string;
at(): string;
spaceAnd(): string;
everySecond(): string;
everyX0Seconds(): string;
secondsX0ThroughX1PastTheMinute(): string;
atX0SecondsPastTheMinute(): string;
everyX0Minutes(): string;
minutesX0ThroughX1PastTheHour(): string;
atX0MinutesPastTheHour(): string;
everyX0Hours(): string;
betweenX0AndX1(): string;
atX0(): string;
commaEveryDay(): string;
commaEveryX0DaysOfTheWeek(): string;
commaX0ThroughX1(): string;
commaAndX0ThroughX1(): string;
first(): string;
second(): string;
third(): string;
fourth(): string;
fifth(): string;
commaOnThe(): string;
spaceX0OfTheMonth(): string;
lastDay(): string;
commaOnTheLastX0OfTheMonth(): string;
commaOnlyOnX0(): string;
commaAndOnX0(): string;
commaEveryX0Months(): string;
commaOnlyInX0(): string;
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
commaDaysBeforeTheLastDayOfTheMonth(): string;
firstWeekday(): string;
weekdayNearestDayX0(): string;
commaOnTheX0OfTheMonth(): string;
commaEveryX0Days(): string;
commaBetweenDayX0AndX1OfTheMonth(): string;
commaOnDayX0OfTheMonth(): string;
commaEveryX0Years(): string;
commaStartingX0(): string;
daysOfTheWeek(): string[];
monthsOfTheYear(): string[];
onTheHour(): string;
}
+56
View File
@@ -0,0 +1,56 @@
import { Locale } from "../locale";
export declare class sl implements Locale {
use24HourTimeFormatByDefault(): boolean;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
at(): string;
atSpace(): string;
atX0(): string;
atX0MinutesPastTheHour(): string;
atX0SecondsPastTheMinute(): string;
betweenX0AndX1(): string;
commaBetweenDayX0AndX1OfTheMonth(): string;
commaEveryDay(): string;
commaEveryX0Days(): string;
commaEveryX0DaysOfTheWeek(): string;
commaEveryX0Months(): string;
commaEveryX0Years(): string;
commaOnDayX0OfTheMonth(): string;
commaOnlyInX0(): string;
commaOnlyOnX0(): string;
commaAndOnX0(): string;
commaOnThe(): string;
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
commaDaysBeforeTheLastDayOfTheMonth(): string;
commaOnTheLastX0OfTheMonth(): string;
commaOnTheX0OfTheMonth(): string;
commaX0ThroughX1(): string;
commaAndX0ThroughX1(): string;
everyHour(): string;
everyMinute(): string;
everyMinuteBetweenX0AndX1(): string;
everySecond(): string;
everyX0Hours(): string;
everyX0Minutes(): string;
everyX0Seconds(): string;
fifth(): string;
first(): string;
firstWeekday(): string;
fourth(): string;
minutesX0ThroughX1PastTheHour(): string;
second(): string;
secondsX0ThroughX1PastTheMinute(): string;
spaceAnd(): string;
spaceX0OfTheMonth(): string;
lastDay(): string;
third(): string;
weekdayNearestDayX0(): string;
commaMonthX0ThroughMonthX1(): string | null;
commaYearX0ThroughYearX1(): string | null;
atX0MinutesPastTheHourGt20(): string | null;
atX0SecondsPastTheMinuteGt20(): string | null;
commaStartingX0(): string;
daysOfTheWeek(): string[];
monthsOfTheYear(): string[];
onTheHour(): string;
}
+56
View File
@@ -0,0 +1,56 @@
import { Locale } from "../locale";
export declare class sr implements Locale {
use24HourTimeFormatByDefault(): boolean;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
at(): string;
atSpace(): string;
atX0(): string;
atX0MinutesPastTheHour(): string;
atX0SecondsPastTheMinute(): string;
betweenX0AndX1(): string;
commaBetweenDayX0AndX1OfTheMonth(): string;
commaEveryDay(): string;
commaEveryX0Days(): string;
commaEveryX0DaysOfTheWeek(): string;
commaEveryX0Months(): string;
commaEveryX0Years(): string;
commaOnDayX0OfTheMonth(): string;
commaOnlyInX0(): string;
commaOnlyOnX0(): string;
commaAndOnX0(): string;
commaOnThe(): string;
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
commaDaysBeforeTheLastDayOfTheMonth(): string;
commaOnTheLastX0OfTheMonth(): string;
commaOnTheX0OfTheMonth(): string;
commaX0ThroughX1(): string;
commaAndX0ThroughX1(): string;
everyHour(): string;
everyMinute(): string;
everyMinuteBetweenX0AndX1(): string;
everySecond(): string;
everyX0Hours(): string;
everyX0Minutes(): string;
everyX0Seconds(): string;
fifth(): string;
first(): string;
firstWeekday(): string;
fourth(): string;
minutesX0ThroughX1PastTheHour(): string;
second(): string;
secondsX0ThroughX1PastTheMinute(): string;
spaceAnd(): string;
spaceX0OfTheMonth(): string;
lastDay(): string;
third(): string;
weekdayNearestDayX0(): string;
commaMonthX0ThroughMonthX1(): string | null;
commaYearX0ThroughYearX1(): string | null;
atX0MinutesPastTheHourGt20(): string | null;
atX0SecondsPastTheMinuteGt20(): string | null;
commaStartingX0(): string;
daysOfTheWeek(): string[];
monthsOfTheYear(): string[];
onTheHour(): string;
}
+56
View File
@@ -0,0 +1,56 @@
import { Locale } from "../locale";
export declare class sv implements Locale {
atX0SecondsPastTheMinuteGt20(): string | null;
atX0MinutesPastTheHourGt20(): string | null;
commaMonthX0ThroughMonthX1(): string | null;
commaYearX0ThroughYearX1(): string | null;
use24HourTimeFormatByDefault(): boolean;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
everyMinute(): string;
everyHour(): string;
atSpace(): string;
everyMinuteBetweenX0AndX1(): string;
at(): string;
spaceAnd(): string;
everySecond(): string;
everyX0Seconds(): string;
secondsX0ThroughX1PastTheMinute(): string;
atX0SecondsPastTheMinute(): string;
everyX0Minutes(): string;
minutesX0ThroughX1PastTheHour(): string;
atX0MinutesPastTheHour(): string;
everyX0Hours(): string;
betweenX0AndX1(): string;
atX0(): string;
commaEveryDay(): string;
commaEveryX0DaysOfTheWeek(): string;
commaX0ThroughX1(): string;
commaAndX0ThroughX1(): string;
first(): string;
second(): string;
third(): string;
fourth(): string;
fifth(): string;
commaOnThe(): string;
spaceX0OfTheMonth(): string;
lastDay(): string;
commaOnTheLastX0OfTheMonth(): string;
commaOnlyOnX0(): string;
commaAndOnX0(): string;
commaEveryX0Months(): string;
commaOnlyInX0(): string;
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
commaDaysBeforeTheLastDayOfTheMonth(): string;
firstWeekday(): string;
weekdayNearestDayX0(): string;
commaOnTheX0OfTheMonth(): string;
commaEveryX0Days(): string;
commaBetweenDayX0AndX1OfTheMonth(): string;
commaOnDayX0OfTheMonth(): string;
commaEveryX0Years(): string;
commaStartingX0(): string;
daysOfTheWeek(): string[];
monthsOfTheYear(): string[];
onTheHour(): string;
}
+56
View File
@@ -0,0 +1,56 @@
import { Locale } from "../locale";
export declare class sw implements Locale {
atX0SecondsPastTheMinuteGt20(): string | null;
atX0MinutesPastTheHourGt20(): string | null;
commaMonthX0ThroughMonthX1(): string | null;
commaYearX0ThroughYearX1(): string | null;
use24HourTimeFormatByDefault(): boolean;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
everyMinute(): string;
everyHour(): string;
atSpace(): string;
everyMinuteBetweenX0AndX1(): string;
at(): string;
spaceAnd(): string;
everySecond(): string;
everyX0Seconds(): string;
secondsX0ThroughX1PastTheMinute(): string;
atX0SecondsPastTheMinute(): string;
everyX0Minutes(): string;
minutesX0ThroughX1PastTheHour(): string;
atX0MinutesPastTheHour(): string;
everyX0Hours(): string;
betweenX0AndX1(): string;
atX0(): string;
commaEveryDay(): string;
commaEveryX0DaysOfTheWeek(): string;
commaX0ThroughX1(): string;
commaAndX0ThroughX1(): string;
first(): string;
second(): string;
third(): string;
fourth(): string;
fifth(): string;
commaOnThe(): string;
spaceX0OfTheMonth(): string;
lastDay(): string;
commaOnTheLastX0OfTheMonth(): string;
commaOnlyOnX0(): string;
commaAndOnX0(): string;
commaEveryX0Months(): string;
commaOnlyInX0(): string;
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
commaDaysBeforeTheLastDayOfTheMonth(): string;
firstWeekday(): string;
weekdayNearestDayX0(): string;
commaOnTheX0OfTheMonth(): string;
commaEveryX0Days(): string;
commaBetweenDayX0AndX1OfTheMonth(): string;
commaOnDayX0OfTheMonth(): string;
commaEveryX0Years(): string;
commaStartingX0(): string;
daysOfTheWeek(): string[];
monthsOfTheYear(): string[];
onTheHour(): string;
}
+57
View File
@@ -0,0 +1,57 @@
import { Locale } from "../locale";
export declare class th implements Locale {
atX0SecondsPastTheMinuteGt20(): string | null;
atX0MinutesPastTheHourGt20(): string | null;
commaMonthX0ThroughMonthX1(): string | null;
commaYearX0ThroughYearX1(): string | null;
use24HourTimeFormatByDefault(): boolean;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
everyMinute(): string;
everyHour(): string;
atSpace(): string;
everyMinuteBetweenX0AndX1(): string;
at(): string;
spaceAnd(): string;
everySecond(): string;
everyX0Seconds(): string;
secondsX0ThroughX1PastTheMinute(): string;
atX0SecondsPastTheMinute(): string;
everyX0Minutes(): string;
minutesX0ThroughX1PastTheHour(): string;
atX0MinutesPastTheHour(): string;
everyX0Hours(): string;
betweenX0AndX1(): string;
atX0(): string;
commaEveryDay(): string;
commaEveryX0DaysOfTheWeek(): string;
commaX0ThroughX1(): string;
commaAndX0ThroughX1(): string;
first(): string;
second(): string;
third(): string;
fourth(): string;
fifth(): string;
commaOnThe(): string;
spaceX0OfTheMonth(): string;
lastDay(): string;
commaOnTheLastX0OfTheMonth(): string;
commaOnlyOnX0(): string;
commaAndOnX0(): string;
commaEveryX0Months(): string;
commaOnlyInX0(): string;
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
commaDaysBeforeTheLastDayOfTheMonth(): string;
firstWeekday(): string;
weekdayNearestDayX0(): string;
commaOnTheX0OfTheMonth(): string;
commaEveryX0Days(): string;
commaBetweenDayX0AndX1OfTheMonth(): string;
commaOnDayX0OfTheMonth(): string;
commaEveryHour(): string;
commaEveryX0Years(): string;
commaStartingX0(): string;
daysOfTheWeek(): string[];
monthsOfTheYear(): string[];
onTheHour(): string;
}
+56
View File
@@ -0,0 +1,56 @@
import { Locale } from "../locale";
export declare class tr implements Locale {
atX0SecondsPastTheMinuteGt20(): string | null;
atX0MinutesPastTheHourGt20(): string | null;
commaMonthX0ThroughMonthX1(): string | null;
commaYearX0ThroughYearX1(): string | null;
use24HourTimeFormatByDefault(): boolean;
everyMinute(): string;
everyHour(): string;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
atSpace(): string;
everyMinuteBetweenX0AndX1(): string;
at(): string;
spaceAnd(): string;
everySecond(): string;
everyX0Seconds(): string;
secondsX0ThroughX1PastTheMinute(): string;
atX0SecondsPastTheMinute(): string;
everyX0Minutes(): string;
minutesX0ThroughX1PastTheHour(): string;
atX0MinutesPastTheHour(): string;
everyX0Hours(): string;
betweenX0AndX1(): string;
atX0(): string;
commaEveryDay(): string;
commaEveryX0DaysOfTheWeek(): string;
commaX0ThroughX1(): string;
commaAndX0ThroughX1(): string;
first(): string;
second(): string;
third(): string;
fourth(): string;
fifth(): string;
commaOnThe(): string;
spaceX0OfTheMonth(): string;
lastDay(): string;
commaOnTheLastX0OfTheMonth(): string;
commaOnlyOnX0(): string;
commaAndOnX0(): string;
commaEveryX0Months(): string;
commaOnlyInX0(): string;
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
commaDaysBeforeTheLastDayOfTheMonth(): string;
firstWeekday(): string;
weekdayNearestDayX0(): string;
commaOnTheX0OfTheMonth(): string;
commaEveryX0Days(): string;
commaBetweenDayX0AndX1OfTheMonth(): string;
commaOnDayX0OfTheMonth(): string;
commaEveryX0Years(): string;
commaStartingX0(): string;
daysOfTheWeek(): string[];
monthsOfTheYear(): string[];
onTheHour(): string;
}
+56
View File
@@ -0,0 +1,56 @@
import { Locale } from "../locale";
export declare class uk implements Locale {
atX0SecondsPastTheMinuteGt20(): string | null;
atX0MinutesPastTheHourGt20(): string | null;
commaMonthX0ThroughMonthX1(): string | null;
commaYearX0ThroughYearX1(): string | null;
use24HourTimeFormatByDefault(): boolean;
everyMinute(): string;
everyHour(): string;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
atSpace(): string;
everyMinuteBetweenX0AndX1(): string;
at(): string;
spaceAnd(): string;
everySecond(): string;
everyX0Seconds(): string;
secondsX0ThroughX1PastTheMinute(): string;
atX0SecondsPastTheMinute(): string;
everyX0Minutes(): string;
minutesX0ThroughX1PastTheHour(): string;
atX0MinutesPastTheHour(): string;
everyX0Hours(): string;
betweenX0AndX1(): string;
atX0(): string;
commaEveryDay(): string;
commaEveryX0DaysOfTheWeek(): string;
commaX0ThroughX1(): string;
commaAndX0ThroughX1(): string;
first(): string;
second(): string;
third(): string;
fourth(): string;
fifth(): string;
commaOnThe(): string;
spaceX0OfTheMonth(): string;
lastDay(): string;
commaOnTheLastX0OfTheMonth(): string;
commaOnlyOnX0(): string;
commaAndOnX0(): string;
commaEveryX0Months(): string;
commaOnlyInX0(): string;
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
commaDaysBeforeTheLastDayOfTheMonth(): string;
firstWeekday(): string;
weekdayNearestDayX0(): string;
commaOnTheX0OfTheMonth(): string;
commaEveryX0Days(): string;
commaBetweenDayX0AndX1OfTheMonth(): string;
commaOnDayX0OfTheMonth(): string;
commaEveryX0Years(): string;
commaStartingX0(): string;
daysOfTheWeek(): string[];
monthsOfTheYear(): string[];
onTheHour(): string;
}
+57
View File
@@ -0,0 +1,57 @@
import { Locale } from "../locale";
export declare class vi implements Locale {
atX0SecondsPastTheMinuteGt20(): string | null;
atX0MinutesPastTheHourGt20(): string | null;
commaMonthX0ThroughMonthX1(): string | null;
commaYearX0ThroughYearX1(): string | null;
use24HourTimeFormatByDefault(): boolean;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
everyMinute(): string;
everyHour(): string;
atSpace(): string;
everyMinuteBetweenX0AndX1(): string;
at(): string;
spaceAnd(): string;
everySecond(): string;
everyX0Seconds(): string;
secondsX0ThroughX1PastTheMinute(): string;
atX0SecondsPastTheMinute(): string;
everyX0Minutes(): string;
minutesX0ThroughX1PastTheHour(): string;
atX0MinutesPastTheHour(): string;
everyX0Hours(): string;
betweenX0AndX1(): string;
atX0(): string;
commaEveryDay(): string;
commaEveryX0DaysOfTheWeek(): string;
commaX0ThroughX1(): string;
commaAndX0ThroughX1(): string;
first(): string;
second(): string;
third(): string;
fourth(): string;
fifth(): string;
commaOnThe(): string;
spaceX0OfTheMonth(): string;
lastDay(): string;
commaOnTheLastX0OfTheMonth(): string;
commaOnlyOnX0(): string;
commaAndOnX0(): string;
commaEveryX0Months(): string;
commaOnlyInX0(): string;
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
commaDaysBeforeTheLastDayOfTheMonth(): string;
firstWeekday(): string;
weekdayNearestDayX0(): string;
commaOnTheX0OfTheMonth(): string;
commaEveryX0Days(): string;
commaBetweenDayX0AndX1OfTheMonth(): string;
commaOnDayX0OfTheMonth(): string;
commaEveryHour(): string;
commaEveryX0Years(): string;
commaStartingX0(): string;
daysOfTheWeek(): string[];
monthsOfTheYear(): string[];
onTheHour(): string;
}
@@ -0,0 +1,62 @@
import { Locale } from "../locale";
export declare class zh_CN implements Locale {
setPeriodBeforeTime(): boolean;
pm(): string;
am(): string;
atX0SecondsPastTheMinuteGt20(): string | null;
atX0MinutesPastTheHourGt20(): string | null;
commaMonthX0ThroughMonthX1(): string | null;
commaYearX0ThroughYearX1(): string | null;
use24HourTimeFormatByDefault(): boolean;
everyMinute(): string;
everyHour(): string;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
atSpace(): string;
everyMinuteBetweenX0AndX1(): string;
at(): string;
spaceAnd(): string;
everySecond(): string;
everyX0Seconds(): string;
secondsX0ThroughX1PastTheMinute(): string;
atX0SecondsPastTheMinute(): string;
everyX0Minutes(): string;
minutesX0ThroughX1PastTheHour(): string;
atX0MinutesPastTheHour(): string;
everyX0Hours(): string;
betweenX0AndX1(): string;
atX0(): string;
commaEveryDay(): string;
commaEveryX0DaysOfTheWeek(): string;
commaX0ThroughX1(): string;
commaAndX0ThroughX1(): string;
first(): string;
second(): string;
third(): string;
fourth(): string;
fifth(): string;
commaOnThe(): string;
spaceX0OfTheMonth(): string;
lastDay(): string;
commaOnTheLastX0OfTheMonth(): string;
commaOnlyOnX0(): string;
commaAndOnX0(): string;
commaEveryX0Months(): string;
commaOnlyInX0(): string;
commaOnlyInMonthX0(): string;
commaOnlyInYearX0(): string;
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
commaDaysBeforeTheLastDayOfTheMonth(): string;
firstWeekday(): string;
weekdayNearestDayX0(): string;
commaOnTheX0OfTheMonth(): string;
commaEveryX0Days(): string;
commaBetweenDayX0AndX1OfTheMonth(): string;
commaOnDayX0OfTheMonth(): string;
commaEveryX0Years(): string;
commaStartingX0(): string;
dayX0(): string;
daysOfTheWeek(): string[];
monthsOfTheYear(): string[];
onTheHour(): string;
}
@@ -0,0 +1,59 @@
import { Locale } from "../locale";
export declare class zh_TW implements Locale {
atX0SecondsPastTheMinuteGt20(): string | null;
atX0MinutesPastTheHourGt20(): string | null;
commaMonthX0ThroughMonthX1(): string | null;
commaYearX0ThroughYearX1(): string | null;
use24HourTimeFormatByDefault(): boolean;
everyMinute(): string;
everyHour(): string;
anErrorOccuredWhenGeneratingTheExpressionD(): string;
atSpace(): string;
everyMinuteBetweenX0AndX1(): string;
at(): string;
spaceAnd(): string;
everySecond(): string;
everyX0Seconds(): string;
secondsX0ThroughX1PastTheMinute(): string;
atX0SecondsPastTheMinute(): string;
everyX0Minutes(): string;
minutesX0ThroughX1PastTheHour(): string;
atX0MinutesPastTheHour(): string;
everyX0Hours(): string;
betweenX0AndX1(): string;
atX0(): string;
commaEveryDay(): string;
commaEveryX0DaysOfTheWeek(): string;
commaX0ThroughX1(): string;
commaAndX0ThroughX1(): string;
first(): string;
second(): string;
third(): string;
fourth(): string;
fifth(): string;
commaOnThe(): string;
spaceX0OfTheMonth(): string;
lastDay(): string;
commaOnTheLastX0OfTheMonth(): string;
commaOnlyOnX0(): string;
commaAndOnX0(): string;
commaEveryX0Months(): string;
commaOnlyInX0(): string;
commaOnlyInMonthX0(): string;
commaOnlyInYearX0(): string;
commaOnTheLastDayOfTheMonth(): string;
commaOnTheLastWeekdayOfTheMonth(): string;
commaDaysBeforeTheLastDayOfTheMonth(): string;
firstWeekday(): string;
weekdayNearestDayX0(): string;
commaOnTheX0OfTheMonth(): string;
commaEveryX0Days(): string;
commaBetweenDayX0AndX1OfTheMonth(): string;
commaOnDayX0OfTheMonth(): string;
commaEveryX0Years(): string;
commaStartingX0(): string;
dayX0(): string;
daysOfTheWeek(): string[];
monthsOfTheYear(): string[];
onTheHour(): string;
}
+11
View File
@@ -0,0 +1,11 @@
export interface Options {
throwExceptionOnParseError?: boolean;
verbose?: boolean;
dayOfWeekStartIndexZero?: boolean;
monthStartIndexZero?: boolean;
use24HourTimeFormat?: boolean;
trimHoursLeadingZero?: boolean;
locale?: string | null;
logicalAndDayFields?: boolean;
tzOffset?: number;
}
+8
View File
@@ -0,0 +1,8 @@
export default class RangeValidator {
static secondRange(parse: string): void;
static minuteRange(parse: string): void;
static hourRange(parse: string): void;
static dayOfMonthRange(parse: string): void;
static monthRange(parse: string, monthStartIndexZero: boolean): void;
static dayOfWeekRange(parse: string, dayOfWeekStartIndexZero: boolean): void;
}
+4
View File
@@ -0,0 +1,4 @@
export declare class StringUtilities {
static format(template: string, ...values: string[]): string;
static containsAny(text: string, searchStrings: string[]): boolean;
}
+4
View File
@@ -0,0 +1,4 @@
// This definition file allows dist/cronstrue-i18n.js to be required from Node as:
// var cronstrue = require('cronstrue/i18n');
export { default } from "./dist/cronstrue-i18n.d";
+5
View File
@@ -0,0 +1,5 @@
// This file allows dist/cronstrue-i18n.js to be required from Node as:
// var cronstrue = require('cronstrue/i18n');
var cronstrueWithLocales = require("./dist/cronstrue-i18n.js");
module.exports = cronstrueWithLocales;
+286
View File
@@ -0,0 +1,286 @@
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory(require("cronstrue"));
else if(typeof define === 'function' && define.amd)
define("locales/af", ["cronstrue"], factory);
else if(typeof exports === 'object')
exports["locales/af"] = factory(require("cronstrue"));
else
root["locales/af"] = factory(root["cronstrue"]);
})(globalThis, (__WEBPACK_EXTERNAL_MODULE__93__) => {
return /******/ (() => { // webpackBootstrap
/******/ "use strict";
/******/ var __webpack_modules__ = ({
/***/ 93
(module) {
module.exports = __WEBPACK_EXTERNAL_MODULE__93__;
/***/ }
/******/ });
/************************************************************************/
/******/ // The module cache
/******/ var __webpack_module_cache__ = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/ // Check if module is in cache
/******/ var cachedModule = __webpack_module_cache__[moduleId];
/******/ if (cachedModule !== undefined) {
/******/ return cachedModule.exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = __webpack_module_cache__[moduleId] = {
/******/ // no module.id needed
/******/ // no module.loaded needed
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/************************************************************************/
/******/ /* webpack/runtime/compat get default export */
/******/ (() => {
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = (module) => {
/******/ var getter = module && module.__esModule ?
/******/ () => (module['default']) :
/******/ () => (module);
/******/ __webpack_require__.d(getter, { a: getter });
/******/ return getter;
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/define property getters */
/******/ (() => {
/******/ // define getter functions for harmony exports
/******/ __webpack_require__.d = (exports, definition) => {
/******/ for(var key in definition) {
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
/******/ }
/******/ }
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/hasOwnProperty shorthand */
/******/ (() => {
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
/******/ })();
/******/
/******/ /* webpack/runtime/make namespace object */
/******/ (() => {
/******/ // define __esModule on exports
/******/ __webpack_require__.r = (exports) => {
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ }
/******/ Object.defineProperty(exports, '__esModule', { value: true });
/******/ };
/******/ })();
/******/
/************************************************************************/
var __webpack_exports__ = {};
__webpack_require__.r(__webpack_exports__);
/* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(93);
/* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(cronstrue__WEBPACK_IMPORTED_MODULE_0__);
var af_exports = __webpack_exports__;
"use strict";
Object.defineProperty(af_exports, "__esModule", { value: true });
af_exports.af = void 0;
var af = (function () {
function af() {
}
af.prototype.atX0SecondsPastTheMinuteGt20 = function () {
return null;
};
af.prototype.atX0MinutesPastTheHourGt20 = function () {
return null;
};
af.prototype.commaMonthX0ThroughMonthX1 = function () {
return null;
};
af.prototype.commaYearX0ThroughYearX1 = function () {
return ", jaar %s na %s";
};
af.prototype.use24HourTimeFormatByDefault = function () {
return true;
};
af.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () {
return "Daar was 'n fout om die tydsuitdrukking the genereer. Raadpleeg asb die uitdrukking formaat.";
};
af.prototype.everyMinute = function () {
return "elke minuut";
};
af.prototype.everyHour = function () {
return "elke uur";
};
af.prototype.atSpace = function () {
return "Teen ";
};
af.prototype.everyMinuteBetweenX0AndX1 = function () {
return "Elke minuut tussen %s en %s";
};
af.prototype.at = function () {
return "Teen";
};
af.prototype.spaceAnd = function () {
return " en";
};
af.prototype.everySecond = function () {
return "elke sekonde";
};
af.prototype.everyX0Seconds = function () {
return "elke %s sekonde";
};
af.prototype.secondsX0ThroughX1PastTheMinute = function () {
return "sekonde %s deur na %s na die minuut";
};
af.prototype.atX0SecondsPastTheMinute = function () {
return "teen %s sekondes na die minuut";
};
af.prototype.everyX0Minutes = function () {
return "elke %s minute";
};
af.prototype.minutesX0ThroughX1PastTheHour = function () {
return "minute %s deur na %s na die uur";
};
af.prototype.atX0MinutesPastTheHour = function () {
return "teen %s minute na die uur";
};
af.prototype.everyX0Hours = function () {
return "elke %s ure";
};
af.prototype.betweenX0AndX1 = function () {
return "tussen %s en %s";
};
af.prototype.atX0 = function () {
return "teen %s";
};
af.prototype.commaEveryDay = function () {
return ", elke dag";
};
af.prototype.commaEveryX0DaysOfTheWeek = function () {
return ", elke %s dae van die week";
};
af.prototype.commaX0ThroughX1 = function () {
return ", %s deur na %s";
};
af.prototype.commaAndX0ThroughX1 = function () {
return ", en %s deur na %s";
};
af.prototype.first = function () {
return "eerste";
};
af.prototype.second = function () {
return "tweede";
};
af.prototype.third = function () {
return "derde";
};
af.prototype.fourth = function () {
return "vierde";
};
af.prototype.fifth = function () {
return "vyfde";
};
af.prototype.commaOnThe = function () {
return ", op die ";
};
af.prototype.spaceX0OfTheMonth = function () {
return " %s van die maand";
};
af.prototype.lastDay = function () {
return "die laaste dag";
};
af.prototype.commaOnTheLastX0OfTheMonth = function () {
return ", op die laaste %s van die maand";
};
af.prototype.commaOnlyOnX0 = function () {
return ", net op %s";
};
af.prototype.commaAndOnX0 = function () {
return ", en op %s";
};
af.prototype.commaEveryX0Months = function () {
return ", elke %s maande";
};
af.prototype.commaOnlyInX0 = function () {
return ", net in %s";
};
af.prototype.commaOnTheLastDayOfTheMonth = function () {
return ", op die laaste dag van die maand";
};
af.prototype.commaOnTheLastWeekdayOfTheMonth = function () {
return ", op die laaste weeksdag van die maand";
};
af.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () {
return ", %s dae voor die laaste dag van die maand";
};
af.prototype.firstWeekday = function () {
return "eerste weeksdag";
};
af.prototype.weekdayNearestDayX0 = function () {
return "weeksdag naaste aan dag %s";
};
af.prototype.commaOnTheX0OfTheMonth = function () {
return ", op die %s van die maande";
};
af.prototype.commaEveryX0Days = function () {
return ", elke %s dae";
};
af.prototype.commaBetweenDayX0AndX1OfTheMonth = function () {
return ", tussen dag %s en %s van die maand";
};
af.prototype.commaOnDayX0OfTheMonth = function () {
return ", op dag %s van die maand";
};
af.prototype.commaEveryHour = function () {
return ", elke uur";
};
af.prototype.commaEveryX0Years = function () {
return ", elke %s jare";
};
af.prototype.commaStartingX0 = function () {
return ", beginnende %s";
};
af.prototype.daysOfTheWeek = function () {
return ["Sondag", "Maandag", "Dinsdag", "Woensdag", "Donderdag", "Vrydag", "Saterdag"];
};
af.prototype.monthsOfTheYear = function () {
return [
"Januarie",
"Februarie",
"Maart",
"April",
"Mei",
"Junie",
"Julie",
"Augustus",
"September",
"Oktober",
"November",
"Desember",
];
};
af.prototype.onTheHour = function () {
return "op die uur";
};
return af;
}());
af_exports.af = af;
(cronstrue__WEBPACK_IMPORTED_MODULE_0___default().locales)["af"] = new af();
/******/ return __webpack_exports__;
/******/ })()
;
});
+1
View File
@@ -0,0 +1 @@
!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("cronstrue")):"function"==typeof define&&define.amd?define("locales/af.min",["cronstrue"],t):"object"==typeof exports?exports["locales/af.min"]=t(require("cronstrue")):e["locales/af.min"]=t(e.cronstrue)}(globalThis,(e=>(()=>{"use strict";var t={93(t){t.exports=e}},n={};function o(e){var r=n[e];if(void 0!==r)return r.exports;var u=n[e]={exports:{}};return t[e](u,u.exports,o),u.exports}o.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return o.d(t,{a:t}),t},o.d=(e,t)=>{for(var n in t)o.o(t,n)&&!o.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},o.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),o.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var r={};o.r(r);var u=o(93),a=o.n(u),p=r;Object.defineProperty(p,"__esModule",{value:!0}),p.af=void 0;var i=function(){function e(){}return e.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},e.prototype.atX0MinutesPastTheHourGt20=function(){return null},e.prototype.commaMonthX0ThroughMonthX1=function(){return null},e.prototype.commaYearX0ThroughYearX1=function(){return", jaar %s na %s"},e.prototype.use24HourTimeFormatByDefault=function(){return!0},e.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"Daar was 'n fout om die tydsuitdrukking the genereer. Raadpleeg asb die uitdrukking formaat."},e.prototype.everyMinute=function(){return"elke minuut"},e.prototype.everyHour=function(){return"elke uur"},e.prototype.atSpace=function(){return"Teen "},e.prototype.everyMinuteBetweenX0AndX1=function(){return"Elke minuut tussen %s en %s"},e.prototype.at=function(){return"Teen"},e.prototype.spaceAnd=function(){return" en"},e.prototype.everySecond=function(){return"elke sekonde"},e.prototype.everyX0Seconds=function(){return"elke %s sekonde"},e.prototype.secondsX0ThroughX1PastTheMinute=function(){return"sekonde %s deur na %s na die minuut"},e.prototype.atX0SecondsPastTheMinute=function(){return"teen %s sekondes na die minuut"},e.prototype.everyX0Minutes=function(){return"elke %s minute"},e.prototype.minutesX0ThroughX1PastTheHour=function(){return"minute %s deur na %s na die uur"},e.prototype.atX0MinutesPastTheHour=function(){return"teen %s minute na die uur"},e.prototype.everyX0Hours=function(){return"elke %s ure"},e.prototype.betweenX0AndX1=function(){return"tussen %s en %s"},e.prototype.atX0=function(){return"teen %s"},e.prototype.commaEveryDay=function(){return", elke dag"},e.prototype.commaEveryX0DaysOfTheWeek=function(){return", elke %s dae van die week"},e.prototype.commaX0ThroughX1=function(){return", %s deur na %s"},e.prototype.commaAndX0ThroughX1=function(){return", en %s deur na %s"},e.prototype.first=function(){return"eerste"},e.prototype.second=function(){return"tweede"},e.prototype.third=function(){return"derde"},e.prototype.fourth=function(){return"vierde"},e.prototype.fifth=function(){return"vyfde"},e.prototype.commaOnThe=function(){return", op die "},e.prototype.spaceX0OfTheMonth=function(){return" %s van die maand"},e.prototype.lastDay=function(){return"die laaste dag"},e.prototype.commaOnTheLastX0OfTheMonth=function(){return", op die laaste %s van die maand"},e.prototype.commaOnlyOnX0=function(){return", net op %s"},e.prototype.commaAndOnX0=function(){return", en op %s"},e.prototype.commaEveryX0Months=function(){return", elke %s maande"},e.prototype.commaOnlyInX0=function(){return", net in %s"},e.prototype.commaOnTheLastDayOfTheMonth=function(){return", op die laaste dag van die maand"},e.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", op die laaste weeksdag van die maand"},e.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s dae voor die laaste dag van die maand"},e.prototype.firstWeekday=function(){return"eerste weeksdag"},e.prototype.weekdayNearestDayX0=function(){return"weeksdag naaste aan dag %s"},e.prototype.commaOnTheX0OfTheMonth=function(){return", op die %s van die maande"},e.prototype.commaEveryX0Days=function(){return", elke %s dae"},e.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", tussen dag %s en %s van die maand"},e.prototype.commaOnDayX0OfTheMonth=function(){return", op dag %s van die maand"},e.prototype.commaEveryHour=function(){return", elke uur"},e.prototype.commaEveryX0Years=function(){return", elke %s jare"},e.prototype.commaStartingX0=function(){return", beginnende %s"},e.prototype.daysOfTheWeek=function(){return["Sondag","Maandag","Dinsdag","Woensdag","Donderdag","Vrydag","Saterdag"]},e.prototype.monthsOfTheYear=function(){return["Januarie","Februarie","Maart","April","Mei","Junie","Julie","Augustus","September","Oktober","November","Desember"]},e.prototype.onTheHour=function(){return"op die uur"},e}();return p.af=i,a().locales.af=new i,r})()));
+286
View File
@@ -0,0 +1,286 @@
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory(require("cronstrue"));
else if(typeof define === 'function' && define.amd)
define("locales/ar", ["cronstrue"], factory);
else if(typeof exports === 'object')
exports["locales/ar"] = factory(require("cronstrue"));
else
root["locales/ar"] = factory(root["cronstrue"]);
})(globalThis, (__WEBPACK_EXTERNAL_MODULE__93__) => {
return /******/ (() => { // webpackBootstrap
/******/ "use strict";
/******/ var __webpack_modules__ = ({
/***/ 93
(module) {
module.exports = __WEBPACK_EXTERNAL_MODULE__93__;
/***/ }
/******/ });
/************************************************************************/
/******/ // The module cache
/******/ var __webpack_module_cache__ = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/ // Check if module is in cache
/******/ var cachedModule = __webpack_module_cache__[moduleId];
/******/ if (cachedModule !== undefined) {
/******/ return cachedModule.exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = __webpack_module_cache__[moduleId] = {
/******/ // no module.id needed
/******/ // no module.loaded needed
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/************************************************************************/
/******/ /* webpack/runtime/compat get default export */
/******/ (() => {
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = (module) => {
/******/ var getter = module && module.__esModule ?
/******/ () => (module['default']) :
/******/ () => (module);
/******/ __webpack_require__.d(getter, { a: getter });
/******/ return getter;
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/define property getters */
/******/ (() => {
/******/ // define getter functions for harmony exports
/******/ __webpack_require__.d = (exports, definition) => {
/******/ for(var key in definition) {
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
/******/ }
/******/ }
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/hasOwnProperty shorthand */
/******/ (() => {
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
/******/ })();
/******/
/******/ /* webpack/runtime/make namespace object */
/******/ (() => {
/******/ // define __esModule on exports
/******/ __webpack_require__.r = (exports) => {
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ }
/******/ Object.defineProperty(exports, '__esModule', { value: true });
/******/ };
/******/ })();
/******/
/************************************************************************/
var __webpack_exports__ = {};
__webpack_require__.r(__webpack_exports__);
/* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(93);
/* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(cronstrue__WEBPACK_IMPORTED_MODULE_0__);
var ar_exports = __webpack_exports__;
"use strict";
Object.defineProperty(ar_exports, "__esModule", { value: true });
ar_exports.ar = void 0;
var ar = (function () {
function ar() {
}
ar.prototype.atX0SecondsPastTheMinuteGt20 = function () {
return null;
};
ar.prototype.atX0MinutesPastTheHourGt20 = function () {
return null;
};
ar.prototype.commaMonthX0ThroughMonthX1 = function () {
return null;
};
ar.prototype.commaYearX0ThroughYearX1 = function () {
return null;
};
ar.prototype.use24HourTimeFormatByDefault = function () {
return true;
};
ar.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () {
return "حدث خطأ في إنشاء وصف المصطلح٠ تأكد من تركيب مصطلح الكرون";
};
ar.prototype.everyMinute = function () {
return "كل دقيقة";
};
ar.prototype.everyHour = function () {
return "كل ساعة";
};
ar.prototype.atSpace = function () {
return " ";
};
ar.prototype.everyMinuteBetweenX0AndX1 = function () {
return "كل دقيقة بين %s و %s";
};
ar.prototype.at = function () {
return "";
};
ar.prototype.spaceAnd = function () {
return " و";
};
ar.prototype.everySecond = function () {
return "كل ثانية";
};
ar.prototype.everyX0Seconds = function () {
return "كل %s ثواني";
};
ar.prototype.secondsX0ThroughX1PastTheMinute = function () {
return "الثواني %s حتى %s من بداية الدقيقة";
};
ar.prototype.atX0SecondsPastTheMinute = function () {
return "الثانية %s من بداية الدقيقة";
};
ar.prototype.everyX0Minutes = function () {
return "كل %s دقائق";
};
ar.prototype.minutesX0ThroughX1PastTheHour = function () {
return "الدقائق %s حتى %s من بداية الساعة";
};
ar.prototype.atX0MinutesPastTheHour = function () {
return "الدقيقة %s من بداية الساعة";
};
ar.prototype.everyX0Hours = function () {
return "كل %s ساعات";
};
ar.prototype.betweenX0AndX1 = function () {
return "بين %s و %s";
};
ar.prototype.atX0 = function () {
return "%s";
};
ar.prototype.commaEveryDay = function () {
return "، كل يوم";
};
ar.prototype.commaEveryX0DaysOfTheWeek = function () {
return "، كل %s من أيام الأسبوع";
};
ar.prototype.commaX0ThroughX1 = function () {
return "، %s حتى %s";
};
ar.prototype.commaAndX0ThroughX1 = function () {
return "، و %s حتى %s";
};
ar.prototype.first = function () {
return "أول";
};
ar.prototype.second = function () {
return "ثاني";
};
ar.prototype.third = function () {
return "ثالث";
};
ar.prototype.fourth = function () {
return "رابع";
};
ar.prototype.fifth = function () {
return "خامس";
};
ar.prototype.commaOnThe = function () {
return "، في ال";
};
ar.prototype.spaceX0OfTheMonth = function () {
return " %s من الشهر";
};
ar.prototype.lastDay = function () {
return "اليوم الأخير";
};
ar.prototype.commaOnTheLastX0OfTheMonth = function () {
return "، في اخر %s من الشهر";
};
ar.prototype.commaOnlyOnX0 = function () {
return "، %s فقط";
};
ar.prototype.commaAndOnX0 = function () {
return "، وفي %s";
};
ar.prototype.commaEveryX0Months = function () {
return "، كل %s أشهر";
};
ar.prototype.commaOnlyInX0 = function () {
return "، %s فقط";
};
ar.prototype.commaOnTheLastDayOfTheMonth = function () {
return "، في اخر يوم من الشهر";
};
ar.prototype.commaOnTheLastWeekdayOfTheMonth = function () {
return "، في اخر يوم أسبوع من الشهر";
};
ar.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () {
return "، %s أيام قبل اخر يوم من الشهر";
};
ar.prototype.firstWeekday = function () {
return "اول ايام الأسبوع";
};
ar.prototype.weekdayNearestDayX0 = function () {
return "يوم الأسبوع الأقرب ليوم %s";
};
ar.prototype.commaOnTheX0OfTheMonth = function () {
return "، في %s من الشهر";
};
ar.prototype.commaEveryX0Days = function () {
return "، كل %s أيام";
};
ar.prototype.commaBetweenDayX0AndX1OfTheMonth = function () {
return "، بين يوم %s و %s من الشهر";
};
ar.prototype.commaOnDayX0OfTheMonth = function () {
return "، في اليوم %s من الشهر";
};
ar.prototype.commaEveryHour = function () {
return "، كل ساعة";
};
ar.prototype.commaEveryX0Years = function () {
return "، كل %s سنوات";
};
ar.prototype.commaStartingX0 = function () {
return "، بداية من %s";
};
ar.prototype.daysOfTheWeek = function () {
return ["الأحد", "الإثنين", "الثلاثاء", "الأربعاء", "الخميس", "الجمعة", "السبت"];
};
ar.prototype.monthsOfTheYear = function () {
return [
"يناير",
"فبراير",
"مارس",
"ابريل",
"مايو",
"يونيو",
"يوليو",
"أغسطس",
"سبتمبر",
"أكتوبر",
"نوفمبر",
"ديسمبر",
];
};
ar.prototype.onTheHour = function () {
return "في تمام الساعة";
};
return ar;
}());
ar_exports.ar = ar;
(cronstrue__WEBPACK_IMPORTED_MODULE_0___default().locales)["ar"] = new ar();
/******/ return __webpack_exports__;
/******/ })()
;
});
File diff suppressed because one or more lines are too long
+283
View File
@@ -0,0 +1,283 @@
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory(require("cronstrue"));
else if(typeof define === 'function' && define.amd)
define("locales/be", ["cronstrue"], factory);
else if(typeof exports === 'object')
exports["locales/be"] = factory(require("cronstrue"));
else
root["locales/be"] = factory(root["cronstrue"]);
})(globalThis, (__WEBPACK_EXTERNAL_MODULE__93__) => {
return /******/ (() => { // webpackBootstrap
/******/ "use strict";
/******/ var __webpack_modules__ = ({
/***/ 93
(module) {
module.exports = __WEBPACK_EXTERNAL_MODULE__93__;
/***/ }
/******/ });
/************************************************************************/
/******/ // The module cache
/******/ var __webpack_module_cache__ = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/ // Check if module is in cache
/******/ var cachedModule = __webpack_module_cache__[moduleId];
/******/ if (cachedModule !== undefined) {
/******/ return cachedModule.exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = __webpack_module_cache__[moduleId] = {
/******/ // no module.id needed
/******/ // no module.loaded needed
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/************************************************************************/
/******/ /* webpack/runtime/compat get default export */
/******/ (() => {
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = (module) => {
/******/ var getter = module && module.__esModule ?
/******/ () => (module['default']) :
/******/ () => (module);
/******/ __webpack_require__.d(getter, { a: getter });
/******/ return getter;
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/define property getters */
/******/ (() => {
/******/ // define getter functions for harmony exports
/******/ __webpack_require__.d = (exports, definition) => {
/******/ for(var key in definition) {
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
/******/ }
/******/ }
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/hasOwnProperty shorthand */
/******/ (() => {
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
/******/ })();
/******/
/******/ /* webpack/runtime/make namespace object */
/******/ (() => {
/******/ // define __esModule on exports
/******/ __webpack_require__.r = (exports) => {
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ }
/******/ Object.defineProperty(exports, '__esModule', { value: true });
/******/ };
/******/ })();
/******/
/************************************************************************/
var __webpack_exports__ = {};
__webpack_require__.r(__webpack_exports__);
/* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(93);
/* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(cronstrue__WEBPACK_IMPORTED_MODULE_0__);
var be_exports = __webpack_exports__;
"use strict";
Object.defineProperty(be_exports, "__esModule", { value: true });
be_exports.be = void 0;
var be = (function () {
function be() {
}
be.prototype.atX0SecondsPastTheMinuteGt20 = function () {
return null;
};
be.prototype.atX0MinutesPastTheHourGt20 = function () {
return null;
};
be.prototype.commaMonthX0ThroughMonthX1 = function () {
return null;
};
be.prototype.commaYearX0ThroughYearX1 = function () {
return null;
};
be.prototype.use24HourTimeFormatByDefault = function () {
return false;
};
be.prototype.everyMinute = function () {
return "кожную хвіліну";
};
be.prototype.everyHour = function () {
return "кожную гадзіну";
};
be.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () {
return "Адбылася памылка падчас генерацыі апісання выразы. Праверце сінтаксіс крон-выразы.";
};
be.prototype.atSpace = function () {
return "У ";
};
be.prototype.everyMinuteBetweenX0AndX1 = function () {
return "Кожную хвіліну з %s да %s";
};
be.prototype.at = function () {
return "У";
};
be.prototype.spaceAnd = function () {
return " і";
};
be.prototype.everySecond = function () {
return "кожную секунду";
};
be.prototype.everyX0Seconds = function () {
return "кожныя %s секунд";
};
be.prototype.secondsX0ThroughX1PastTheMinute = function () {
return "секунды з %s па %s";
};
be.prototype.atX0SecondsPastTheMinute = function () {
return "у %s секунд";
};
be.prototype.everyX0Minutes = function () {
return "кожныя %s хвілін";
};
be.prototype.minutesX0ThroughX1PastTheHour = function () {
return "хвіліны з %s па %s";
};
be.prototype.atX0MinutesPastTheHour = function () {
return "у %s хвілін";
};
be.prototype.everyX0Hours = function () {
return "кожныя %s гадзін";
};
be.prototype.betweenX0AndX1 = function () {
return "з %s па %s";
};
be.prototype.atX0 = function () {
return "у %s";
};
be.prototype.commaEveryDay = function () {
return ", кожны дзень";
};
be.prototype.commaEveryX0DaysOfTheWeek = function () {
return ", кожныя %s дзён тыдня";
};
be.prototype.commaX0ThroughX1 = function () {
return ", %s па %s";
};
be.prototype.commaAndX0ThroughX1 = function () {
return ", і %s па %s";
};
be.prototype.first = function () {
return "першы";
};
be.prototype.second = function () {
return "другі";
};
be.prototype.third = function () {
return "трэці";
};
be.prototype.fourth = function () {
return "чацвёрты";
};
be.prototype.fifth = function () {
return "пяты";
};
be.prototype.commaOnThe = function () {
return ", у ";
};
be.prototype.spaceX0OfTheMonth = function () {
return " %s месяца";
};
be.prototype.lastDay = function () {
return "апошні дзень";
};
be.prototype.commaOnTheLastX0OfTheMonth = function () {
return ", у апошні %s месяца";
};
be.prototype.commaOnlyOnX0 = function () {
return ", толькі ў %s";
};
be.prototype.commaAndOnX0 = function () {
return ", і ў %s";
};
be.prototype.commaEveryX0Months = function () {
return ", кожныя %s месяцаў";
};
be.prototype.commaOnlyInX0 = function () {
return ", толькі ў %s";
};
be.prototype.commaOnTheLastDayOfTheMonth = function () {
return ", у апошні дзень месяца";
};
be.prototype.commaOnTheLastWeekdayOfTheMonth = function () {
return ", у апошні будні дзень месяца";
};
be.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () {
return ", %s дзён да апошняга дня месяца";
};
be.prototype.firstWeekday = function () {
return "першы будны дзень";
};
be.prototype.weekdayNearestDayX0 = function () {
return "найбліжэйшы будны дзень да %s";
};
be.prototype.commaOnTheX0OfTheMonth = function () {
return ", у %s месяцы";
};
be.prototype.commaEveryX0Days = function () {
return ", кожныя %s дзён";
};
be.prototype.commaBetweenDayX0AndX1OfTheMonth = function () {
return ", з %s па %s лік месяца";
};
be.prototype.commaOnDayX0OfTheMonth = function () {
return ", у %s лік месяца";
};
be.prototype.commaEveryX0Years = function () {
return ", кожныя %s гадоў";
};
be.prototype.commaStartingX0 = function () {
return ", пачатак %s";
};
be.prototype.daysOfTheWeek = function () {
return ["нядзеля", "панядзелак", "аўторак", "серада", "чацвер", "пятніца", "субота"];
};
be.prototype.monthsOfTheYear = function () {
return [
"студзень",
"люты",
"сакавік",
"красавік",
"травень",
"чэрвень",
"ліпень",
"жнівень",
"верасень",
"кастрычнік",
"лістапад",
"снежань",
];
};
be.prototype.onTheHour = function () {
return "роўна ў гадзіну";
};
return be;
}());
be_exports.be = be;
(cronstrue__WEBPACK_IMPORTED_MODULE_0___default().locales)["be"] = new be();
/******/ return __webpack_exports__;
/******/ })()
;
});
File diff suppressed because one or more lines are too long
+289
View File
@@ -0,0 +1,289 @@
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory(require("cronstrue"));
else if(typeof define === 'function' && define.amd)
define("locales/bg", ["cronstrue"], factory);
else if(typeof exports === 'object')
exports["locales/bg"] = factory(require("cronstrue"));
else
root["locales/bg"] = factory(root["cronstrue"]);
})(globalThis, (__WEBPACK_EXTERNAL_MODULE__93__) => {
return /******/ (() => { // webpackBootstrap
/******/ "use strict";
/******/ var __webpack_modules__ = ({
/***/ 93
(module) {
module.exports = __WEBPACK_EXTERNAL_MODULE__93__;
/***/ }
/******/ });
/************************************************************************/
/******/ // The module cache
/******/ var __webpack_module_cache__ = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/ // Check if module is in cache
/******/ var cachedModule = __webpack_module_cache__[moduleId];
/******/ if (cachedModule !== undefined) {
/******/ return cachedModule.exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = __webpack_module_cache__[moduleId] = {
/******/ // no module.id needed
/******/ // no module.loaded needed
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/************************************************************************/
/******/ /* webpack/runtime/compat get default export */
/******/ (() => {
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = (module) => {
/******/ var getter = module && module.__esModule ?
/******/ () => (module['default']) :
/******/ () => (module);
/******/ __webpack_require__.d(getter, { a: getter });
/******/ return getter;
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/define property getters */
/******/ (() => {
/******/ // define getter functions for harmony exports
/******/ __webpack_require__.d = (exports, definition) => {
/******/ for(var key in definition) {
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
/******/ }
/******/ }
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/hasOwnProperty shorthand */
/******/ (() => {
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
/******/ })();
/******/
/******/ /* webpack/runtime/make namespace object */
/******/ (() => {
/******/ // define __esModule on exports
/******/ __webpack_require__.r = (exports) => {
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ }
/******/ Object.defineProperty(exports, '__esModule', { value: true });
/******/ };
/******/ })();
/******/
/************************************************************************/
var __webpack_exports__ = {};
__webpack_require__.r(__webpack_exports__);
/* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(93);
/* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(cronstrue__WEBPACK_IMPORTED_MODULE_0__);
var bg_exports = __webpack_exports__;
"use strict";
Object.defineProperty(bg_exports, "__esModule", { value: true });
bg_exports.bg = void 0;
var getPhraseByPlural = function (str, words) {
var strAsNumber = str != null ? Number(str) : 0;
return strAsNumber < 2 ? words[0] : words[1];
};
var getPhraseByDayOfWeek = function (str, words) {
var strAsNumber = str != null ? Number(str) : 0;
return words[[1, 0, 0, 1, 0, 0, 1][strAsNumber]];
};
var getNumberEnding = function (str, gender) {
var strAsNumber = str != null ? Number(str) : 1;
strAsNumber = Math.max(Math.min(strAsNumber < 10 || (strAsNumber > 20 && strAsNumber % 10 !== 0) ? strAsNumber % 10 : 3, 3), 1) - 1;
var genderIndex = ['м', 'ж', 'ср'].indexOf(gender);
return ['в', 'р', 'т'][strAsNumber] + ['и', 'а', 'о'][genderIndex];
};
var bg = (function () {
function bg() {
}
bg.prototype.atX0SecondsPastTheMinuteGt20 = function () {
return null;
};
bg.prototype.atX0MinutesPastTheHourGt20 = function () {
return null;
};
bg.prototype.commaMonthX0ThroughMonthX1 = function () {
return null;
};
bg.prototype.commaYearX0ThroughYearX1 = function () {
return null;
};
bg.prototype.use24HourTimeFormatByDefault = function () {
return true;
};
bg.prototype.everyMinute = function () {
return 'всяка минута';
};
bg.prototype.everyHour = function () {
return 'всеки час';
};
bg.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () {
return 'Възникна грешка при генериране на описанието на израза. Проверете синтаксиса на cron израза.';
};
bg.prototype.atSpace = function () {
return 'В ';
};
bg.prototype.everyMinuteBetweenX0AndX1 = function () {
return 'Всяка минута от %s до %s';
};
bg.prototype.at = function () {
return 'В';
};
bg.prototype.spaceAnd = function () {
return ' и';
};
bg.prototype.everySecond = function () {
return 'всяка секунда';
};
bg.prototype.everyX0Seconds = function (s) {
return 'всеки %s секунди';
};
bg.prototype.secondsX0ThroughX1PastTheMinute = function () {
return 'секунди от %s до %s';
};
bg.prototype.atX0SecondsPastTheMinute = function (s) {
return "%s-".concat(getNumberEnding(s, 'ж'), " \u0441\u0435\u043A\u0443\u043D\u0434\u0430");
};
bg.prototype.everyX0Minutes = function (s) {
return 'всеки %s минути';
};
bg.prototype.minutesX0ThroughX1PastTheHour = function () {
return 'минути от %s до %s';
};
bg.prototype.atX0MinutesPastTheHour = function (s) {
return "%s-".concat(getNumberEnding(s, 'ж'), " \u043C\u0438\u043D\u0443\u0442a");
};
bg.prototype.everyX0Hours = function (s) {
return 'всеки %s часа';
};
bg.prototype.betweenX0AndX1 = function () {
return 'от %s до %s';
};
bg.prototype.atX0 = function () {
return 'в %s';
};
bg.prototype.commaEveryDay = function () {
return ', всеки ден';
};
bg.prototype.commaEveryX0DaysOfTheWeek = function (s) {
return getPhraseByPlural(s, [', всеки %s ден от седмицата', ', всеки %s дена от седмицата']);
};
bg.prototype.commaX0ThroughX1 = function (s) {
return ', от %s до %s';
};
bg.prototype.commaAndX0ThroughX1 = function (s) {
return ' и от %s до %s';
};
bg.prototype.first = function (s) {
return getPhraseByDayOfWeek(s, ['первият', 'первата']);
};
bg.prototype.second = function (s) {
return getPhraseByDayOfWeek(s, ['вторият', 'втората']);
};
bg.prototype.third = function (s) {
return getPhraseByDayOfWeek(s, ['третият', 'третата']);
};
bg.prototype.fourth = function (s) {
return getPhraseByDayOfWeek(s, ['четвертият', 'четвертата']);
};
bg.prototype.fifth = function (s) {
return getPhraseByDayOfWeek(s, ['петият', 'петата']);
};
bg.prototype.commaOnThe = function (s) {
return ', ';
};
bg.prototype.spaceX0OfTheMonth = function () {
return ' %s на месеца';
};
bg.prototype.lastDay = function () {
return 'последният ден';
};
bg.prototype.commaOnTheLastX0OfTheMonth = function (s) {
return getPhraseByDayOfWeek(s, [', в последният %s от месеца', ', в последната %s отмесеца']);
};
bg.prototype.commaOnlyOnX0 = function (s) {
return ', %s';
};
bg.prototype.commaAndOnX0 = function () {
return ' и %s';
};
bg.prototype.commaEveryX0Months = function (s) {
return ' всеки %s месеца';
};
bg.prototype.commaOnlyInMonthX0 = function () {
return ', %s';
};
bg.prototype.commaOnlyInX0 = function () {
return ', в %s';
};
bg.prototype.commaOnTheLastDayOfTheMonth = function () {
return ', в последният ден на месеца';
};
bg.prototype.commaOnTheLastWeekdayOfTheMonth = function () {
return ', в последния делничен ден от месеца';
};
bg.prototype.commaDaysBeforeTheLastDayOfTheMonth = function (s) {
return getPhraseByPlural(s, [', %s ден преди края на месеца', ', %s дена преди края на месеца']);
};
bg.prototype.firstWeekday = function () {
return 'първият делничен ден';
};
bg.prototype.weekdayNearestDayX0 = function () {
return 'най-близкият делничен ден до %s число';
};
bg.prototype.commaOnTheX0OfTheMonth = function () {
return ', на %s число от месеца';
};
bg.prototype.commaEveryX0Days = function (s) {
return getPhraseByPlural(s, [', всеки %s ден', ', всеки %s дена']);
};
bg.prototype.commaBetweenDayX0AndX1OfTheMonth = function (s) {
var _a;
var values = (_a = s === null || s === void 0 ? void 0 : s.split('-')) !== null && _a !== void 0 ? _a : [];
return ", \u043E\u0442 %s-".concat(getNumberEnding(values[0], 'ср'), " \u0434\u043E %s-").concat(getNumberEnding(values[1], 'ср'), " \u0447\u0438\u0441\u043B\u043E \u043D\u0430 \u043C\u0435\u0441\u0435\u0446\u0430");
};
bg.prototype.commaOnDayX0OfTheMonth = function (s) {
return ", \u043D\u0430 %s-".concat(getNumberEnding(s, 'ср'), " \u0447\u0438\u0441\u043B\u043E \u043E\u0442 \u043C\u0435\u0441\u0435\u0446\u0430");
};
bg.prototype.commaEveryX0Years = function (s) {
return getPhraseByPlural(s, [', всяка %s година', ', всеки %s години']);
};
bg.prototype.commaStartingX0 = function () {
return ', започвайки %s';
};
bg.prototype.daysOfTheWeek = function () {
return ['неделя', 'понеделник', 'вторник', 'сряда', 'четвъртък', 'петък', 'събота'];
};
bg.prototype.monthsOfTheYear = function () {
return ['януари', 'февруари', 'март', 'април', 'май', 'юни', 'юли', 'август', 'септевмври', 'октомври', 'ноември', 'декември'];
};
bg.prototype.onTheHour = function () {
return "в началото на часа";
};
return bg;
}());
bg_exports.bg = bg;
(cronstrue__WEBPACK_IMPORTED_MODULE_0___default().locales)["bg"] = new bg();
/******/ return __webpack_exports__;
/******/ })()
;
});
File diff suppressed because one or more lines are too long
+283
View File
@@ -0,0 +1,283 @@
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory(require("cronstrue"));
else if(typeof define === 'function' && define.amd)
define("locales/ca", ["cronstrue"], factory);
else if(typeof exports === 'object')
exports["locales/ca"] = factory(require("cronstrue"));
else
root["locales/ca"] = factory(root["cronstrue"]);
})(globalThis, (__WEBPACK_EXTERNAL_MODULE__93__) => {
return /******/ (() => { // webpackBootstrap
/******/ "use strict";
/******/ var __webpack_modules__ = ({
/***/ 93
(module) {
module.exports = __WEBPACK_EXTERNAL_MODULE__93__;
/***/ }
/******/ });
/************************************************************************/
/******/ // The module cache
/******/ var __webpack_module_cache__ = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/ // Check if module is in cache
/******/ var cachedModule = __webpack_module_cache__[moduleId];
/******/ if (cachedModule !== undefined) {
/******/ return cachedModule.exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = __webpack_module_cache__[moduleId] = {
/******/ // no module.id needed
/******/ // no module.loaded needed
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/************************************************************************/
/******/ /* webpack/runtime/compat get default export */
/******/ (() => {
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = (module) => {
/******/ var getter = module && module.__esModule ?
/******/ () => (module['default']) :
/******/ () => (module);
/******/ __webpack_require__.d(getter, { a: getter });
/******/ return getter;
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/define property getters */
/******/ (() => {
/******/ // define getter functions for harmony exports
/******/ __webpack_require__.d = (exports, definition) => {
/******/ for(var key in definition) {
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
/******/ }
/******/ }
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/hasOwnProperty shorthand */
/******/ (() => {
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
/******/ })();
/******/
/******/ /* webpack/runtime/make namespace object */
/******/ (() => {
/******/ // define __esModule on exports
/******/ __webpack_require__.r = (exports) => {
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ }
/******/ Object.defineProperty(exports, '__esModule', { value: true });
/******/ };
/******/ })();
/******/
/************************************************************************/
var __webpack_exports__ = {};
__webpack_require__.r(__webpack_exports__);
/* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(93);
/* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(cronstrue__WEBPACK_IMPORTED_MODULE_0__);
var ca_exports = __webpack_exports__;
"use strict";
Object.defineProperty(ca_exports, "__esModule", { value: true });
ca_exports.ca = void 0;
var ca = (function () {
function ca() {
}
ca.prototype.atX0SecondsPastTheMinuteGt20 = function () {
return null;
};
ca.prototype.atX0MinutesPastTheHourGt20 = function () {
return null;
};
ca.prototype.commaMonthX0ThroughMonthX1 = function () {
return null;
};
ca.prototype.commaYearX0ThroughYearX1 = function () {
return null;
};
ca.prototype.use24HourTimeFormatByDefault = function () {
return true;
};
ca.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () {
return "S'ha produït un error mentres es generava la descripció de l'expressió. Revisi la sintaxi de la expressió de cron.";
};
ca.prototype.at = function () {
return "A les";
};
ca.prototype.atSpace = function () {
return "A les ";
};
ca.prototype.atX0 = function () {
return "a les %s";
};
ca.prototype.atX0MinutesPastTheHour = function () {
return "als %s minuts de l'hora";
};
ca.prototype.atX0SecondsPastTheMinute = function () {
return "als %s segonds del minut";
};
ca.prototype.betweenX0AndX1 = function () {
return "entre les %s i les %s";
};
ca.prototype.commaBetweenDayX0AndX1OfTheMonth = function () {
return ", entre els dies %s i %s del mes";
};
ca.prototype.commaEveryDay = function () {
return ", cada dia";
};
ca.prototype.commaEveryX0Days = function () {
return ", cada %s dies";
};
ca.prototype.commaEveryX0DaysOfTheWeek = function () {
return ", cada %s dies de la setmana";
};
ca.prototype.commaEveryX0Months = function () {
return ", cada %s mesos";
};
ca.prototype.commaOnDayX0OfTheMonth = function () {
return ", el dia %s del mes";
};
ca.prototype.commaOnlyInX0 = function () {
return ", sólo en %s";
};
ca.prototype.commaOnlyOnX0 = function () {
return ", només el %s";
};
ca.prototype.commaAndOnX0 = function () {
return ", i el %s";
};
ca.prototype.commaOnThe = function () {
return ", en el ";
};
ca.prototype.commaOnTheLastDayOfTheMonth = function () {
return ", en l'últim dia del mes";
};
ca.prototype.commaOnTheLastWeekdayOfTheMonth = function () {
return ", en l'últim dia de la setmana del mes";
};
ca.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () {
return ", %s dies abans de l'últim dia del mes";
};
ca.prototype.commaOnTheLastX0OfTheMonth = function () {
return ", en l'últim %s del mes";
};
ca.prototype.commaOnTheX0OfTheMonth = function () {
return ", en el %s del mes";
};
ca.prototype.commaX0ThroughX1 = function () {
return ", de %s a %s";
};
ca.prototype.commaAndX0ThroughX1 = function () {
return ", i de %s a %s";
};
ca.prototype.everyHour = function () {
return "cada hora";
};
ca.prototype.everyMinute = function () {
return "cada minut";
};
ca.prototype.everyMinuteBetweenX0AndX1 = function () {
return "cada minut entre les %s i les %s";
};
ca.prototype.everySecond = function () {
return "cada segon";
};
ca.prototype.everyX0Hours = function () {
return "cada %s hores";
};
ca.prototype.everyX0Minutes = function () {
return "cada %s minuts";
};
ca.prototype.everyX0Seconds = function () {
return "cada %s segons";
};
ca.prototype.fifth = function () {
return "cinquè";
};
ca.prototype.first = function () {
return "primer";
};
ca.prototype.firstWeekday = function () {
return "primer dia de la setmana";
};
ca.prototype.fourth = function () {
return "quart";
};
ca.prototype.minutesX0ThroughX1PastTheHour = function () {
return "del minut %s al %s passada l'hora";
};
ca.prototype.second = function () {
return "segon";
};
ca.prototype.secondsX0ThroughX1PastTheMinute = function () {
return "En els segons %s al %s de cada minut";
};
ca.prototype.spaceAnd = function () {
return " i";
};
ca.prototype.spaceX0OfTheMonth = function () {
return " %s del mes";
};
ca.prototype.lastDay = function () {
return "l'últim dia";
};
ca.prototype.third = function () {
return "tercer";
};
ca.prototype.weekdayNearestDayX0 = function () {
return "dia de la setmana més proper al %s";
};
ca.prototype.commaEveryX0Years = function () {
return ", cada %s anys";
};
ca.prototype.commaStartingX0 = function () {
return ", començant %s";
};
ca.prototype.daysOfTheWeek = function () {
return ["diumenge", "dilluns", "dimarts", "dimecres", "dijous", "divendres", "dissabte"];
};
ca.prototype.monthsOfTheYear = function () {
return [
"gener",
"febrer",
"març",
"abril",
"maig",
"juny",
"juliol",
"agost",
"setembre",
"octubre",
"novembre",
"desembre",
];
};
ca.prototype.onTheHour = function () {
return "en punt";
};
return ca;
}());
ca_exports.ca = ca;
(cronstrue__WEBPACK_IMPORTED_MODULE_0___default().locales)["ca"] = new ca();
/******/ return __webpack_exports__;
/******/ })()
;
});
+1
View File
@@ -0,0 +1 @@
!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("cronstrue")):"function"==typeof define&&define.amd?define("locales/ca.min",["cronstrue"],t):"object"==typeof exports?exports["locales/ca.min"]=t(require("cronstrue")):e["locales/ca.min"]=t(e.cronstrue)}(globalThis,(e=>(()=>{"use strict";var t={93(t){t.exports=e}},n={};function r(e){var o=n[e];if(void 0!==o)return o.exports;var u=n[e]={exports:{}};return t[e](u,u.exports,r),u.exports}r.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return r.d(t,{a:t}),t},r.d=(e,t)=>{for(var n in t)r.o(t,n)&&!r.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};r.r(o);var u=r(93),a=r.n(u),s=o;Object.defineProperty(s,"__esModule",{value:!0}),s.ca=void 0;var i=function(){function e(){}return e.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},e.prototype.atX0MinutesPastTheHourGt20=function(){return null},e.prototype.commaMonthX0ThroughMonthX1=function(){return null},e.prototype.commaYearX0ThroughYearX1=function(){return null},e.prototype.use24HourTimeFormatByDefault=function(){return!0},e.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"S'ha produït un error mentres es generava la descripció de l'expressió. Revisi la sintaxi de la expressió de cron."},e.prototype.at=function(){return"A les"},e.prototype.atSpace=function(){return"A les "},e.prototype.atX0=function(){return"a les %s"},e.prototype.atX0MinutesPastTheHour=function(){return"als %s minuts de l'hora"},e.prototype.atX0SecondsPastTheMinute=function(){return"als %s segonds del minut"},e.prototype.betweenX0AndX1=function(){return"entre les %s i les %s"},e.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", entre els dies %s i %s del mes"},e.prototype.commaEveryDay=function(){return", cada dia"},e.prototype.commaEveryX0Days=function(){return", cada %s dies"},e.prototype.commaEveryX0DaysOfTheWeek=function(){return", cada %s dies de la setmana"},e.prototype.commaEveryX0Months=function(){return", cada %s mesos"},e.prototype.commaOnDayX0OfTheMonth=function(){return", el dia %s del mes"},e.prototype.commaOnlyInX0=function(){return", sólo en %s"},e.prototype.commaOnlyOnX0=function(){return", només el %s"},e.prototype.commaAndOnX0=function(){return", i el %s"},e.prototype.commaOnThe=function(){return", en el "},e.prototype.commaOnTheLastDayOfTheMonth=function(){return", en l'últim dia del mes"},e.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", en l'últim dia de la setmana del mes"},e.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s dies abans de l'últim dia del mes"},e.prototype.commaOnTheLastX0OfTheMonth=function(){return", en l'últim %s del mes"},e.prototype.commaOnTheX0OfTheMonth=function(){return", en el %s del mes"},e.prototype.commaX0ThroughX1=function(){return", de %s a %s"},e.prototype.commaAndX0ThroughX1=function(){return", i de %s a %s"},e.prototype.everyHour=function(){return"cada hora"},e.prototype.everyMinute=function(){return"cada minut"},e.prototype.everyMinuteBetweenX0AndX1=function(){return"cada minut entre les %s i les %s"},e.prototype.everySecond=function(){return"cada segon"},e.prototype.everyX0Hours=function(){return"cada %s hores"},e.prototype.everyX0Minutes=function(){return"cada %s minuts"},e.prototype.everyX0Seconds=function(){return"cada %s segons"},e.prototype.fifth=function(){return"cinquè"},e.prototype.first=function(){return"primer"},e.prototype.firstWeekday=function(){return"primer dia de la setmana"},e.prototype.fourth=function(){return"quart"},e.prototype.minutesX0ThroughX1PastTheHour=function(){return"del minut %s al %s passada l'hora"},e.prototype.second=function(){return"segon"},e.prototype.secondsX0ThroughX1PastTheMinute=function(){return"En els segons %s al %s de cada minut"},e.prototype.spaceAnd=function(){return" i"},e.prototype.spaceX0OfTheMonth=function(){return" %s del mes"},e.prototype.lastDay=function(){return"l'últim dia"},e.prototype.third=function(){return"tercer"},e.prototype.weekdayNearestDayX0=function(){return"dia de la setmana més proper al %s"},e.prototype.commaEveryX0Years=function(){return", cada %s anys"},e.prototype.commaStartingX0=function(){return", començant %s"},e.prototype.daysOfTheWeek=function(){return["diumenge","dilluns","dimarts","dimecres","dijous","divendres","dissabte"]},e.prototype.monthsOfTheYear=function(){return["gener","febrer","març","abril","maig","juny","juliol","agost","setembre","octubre","novembre","desembre"]},e.prototype.onTheHour=function(){return"en punt"},e}();return s.ca=i,a().locales.ca=new i,o})()));
+283
View File
@@ -0,0 +1,283 @@
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory(require("cronstrue"));
else if(typeof define === 'function' && define.amd)
define("locales/cs", ["cronstrue"], factory);
else if(typeof exports === 'object')
exports["locales/cs"] = factory(require("cronstrue"));
else
root["locales/cs"] = factory(root["cronstrue"]);
})(globalThis, (__WEBPACK_EXTERNAL_MODULE__93__) => {
return /******/ (() => { // webpackBootstrap
/******/ "use strict";
/******/ var __webpack_modules__ = ({
/***/ 93
(module) {
module.exports = __WEBPACK_EXTERNAL_MODULE__93__;
/***/ }
/******/ });
/************************************************************************/
/******/ // The module cache
/******/ var __webpack_module_cache__ = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/ // Check if module is in cache
/******/ var cachedModule = __webpack_module_cache__[moduleId];
/******/ if (cachedModule !== undefined) {
/******/ return cachedModule.exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = __webpack_module_cache__[moduleId] = {
/******/ // no module.id needed
/******/ // no module.loaded needed
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/************************************************************************/
/******/ /* webpack/runtime/compat get default export */
/******/ (() => {
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = (module) => {
/******/ var getter = module && module.__esModule ?
/******/ () => (module['default']) :
/******/ () => (module);
/******/ __webpack_require__.d(getter, { a: getter });
/******/ return getter;
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/define property getters */
/******/ (() => {
/******/ // define getter functions for harmony exports
/******/ __webpack_require__.d = (exports, definition) => {
/******/ for(var key in definition) {
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
/******/ }
/******/ }
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/hasOwnProperty shorthand */
/******/ (() => {
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
/******/ })();
/******/
/******/ /* webpack/runtime/make namespace object */
/******/ (() => {
/******/ // define __esModule on exports
/******/ __webpack_require__.r = (exports) => {
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ }
/******/ Object.defineProperty(exports, '__esModule', { value: true });
/******/ };
/******/ })();
/******/
/************************************************************************/
var __webpack_exports__ = {};
__webpack_require__.r(__webpack_exports__);
/* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(93);
/* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(cronstrue__WEBPACK_IMPORTED_MODULE_0__);
var cs_exports = __webpack_exports__;
"use strict";
Object.defineProperty(cs_exports, "__esModule", { value: true });
cs_exports.cs = void 0;
var cs = (function () {
function cs() {
}
cs.prototype.atX0SecondsPastTheMinuteGt20 = function () {
return null;
};
cs.prototype.atX0MinutesPastTheHourGt20 = function () {
return null;
};
cs.prototype.commaMonthX0ThroughMonthX1 = function () {
return null;
};
cs.prototype.commaYearX0ThroughYearX1 = function () {
return null;
};
cs.prototype.use24HourTimeFormatByDefault = function () {
return true;
};
cs.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () {
return "Při vytváření popisu došlo k chybě. Zkontrolujte prosím správnost syntaxe cronu.";
};
cs.prototype.everyMinute = function () {
return "každou minutu";
};
cs.prototype.everyHour = function () {
return "každou hodinu";
};
cs.prototype.atSpace = function () {
return "V ";
};
cs.prototype.everyMinuteBetweenX0AndX1 = function () {
return "Každou minutu mezi %s a %s";
};
cs.prototype.at = function () {
return "V";
};
cs.prototype.spaceAnd = function () {
return " a";
};
cs.prototype.everySecond = function () {
return "každou sekundu";
};
cs.prototype.everyX0Seconds = function () {
return "každých %s sekund";
};
cs.prototype.secondsX0ThroughX1PastTheMinute = function () {
return "sekundy od %s do %s";
};
cs.prototype.atX0SecondsPastTheMinute = function () {
return "v %s sekund";
};
cs.prototype.everyX0Minutes = function () {
return "každých %s minut";
};
cs.prototype.minutesX0ThroughX1PastTheHour = function () {
return "minuty od %s do %s";
};
cs.prototype.atX0MinutesPastTheHour = function () {
return "v %s minut";
};
cs.prototype.everyX0Hours = function () {
return "každých %s hodin";
};
cs.prototype.betweenX0AndX1 = function () {
return "mezi %s a %s";
};
cs.prototype.atX0 = function () {
return "v %s";
};
cs.prototype.commaEveryDay = function () {
return ", každý den";
};
cs.prototype.commaEveryX0DaysOfTheWeek = function () {
return ", každých %s dní v týdnu";
};
cs.prototype.commaX0ThroughX1 = function () {
return ", od %s do %s";
};
cs.prototype.commaAndX0ThroughX1 = function () {
return ", a od %s do %s";
};
cs.prototype.first = function () {
return "první";
};
cs.prototype.second = function () {
return "druhý";
};
cs.prototype.third = function () {
return "třetí";
};
cs.prototype.fourth = function () {
return "čtvrtý";
};
cs.prototype.fifth = function () {
return "pátý";
};
cs.prototype.commaOnThe = function () {
return ", ";
};
cs.prototype.spaceX0OfTheMonth = function () {
return " %s v měsíci";
};
cs.prototype.lastDay = function () {
return "poslední den";
};
cs.prototype.commaOnTheLastX0OfTheMonth = function () {
return ", poslední %s v měsíci";
};
cs.prototype.commaOnlyOnX0 = function () {
return ", pouze v %s";
};
cs.prototype.commaAndOnX0 = function () {
return ", a v %s";
};
cs.prototype.commaEveryX0Months = function () {
return ", každých %s měsíců";
};
cs.prototype.commaOnlyInX0 = function () {
return ", pouze v %s";
};
cs.prototype.commaOnTheLastDayOfTheMonth = function () {
return ", poslední den v měsíci";
};
cs.prototype.commaOnTheLastWeekdayOfTheMonth = function () {
return ", poslední pracovní den v měsíci";
};
cs.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () {
return ", %s dní před posledním dnem v měsíci";
};
cs.prototype.firstWeekday = function () {
return "první pracovní den";
};
cs.prototype.weekdayNearestDayX0 = function () {
return "pracovní den nejblíže %s. dni";
};
cs.prototype.commaOnTheX0OfTheMonth = function () {
return ", v %s v měsíci";
};
cs.prototype.commaEveryX0Days = function () {
return ", každých %s dnů";
};
cs.prototype.commaBetweenDayX0AndX1OfTheMonth = function () {
return ", mezi dny %s a %s v měsíci";
};
cs.prototype.commaOnDayX0OfTheMonth = function () {
return ", %s. den v měsíci";
};
cs.prototype.commaEveryX0Years = function () {
return ", každých %s roků";
};
cs.prototype.commaStartingX0 = function () {
return ", začínající %s";
};
cs.prototype.daysOfTheWeek = function () {
return ["Neděle", "Pondělí", "Úterý", "Středa", "Čtvrtek", "Pátek", "Sobota"];
};
cs.prototype.monthsOfTheYear = function () {
return [
"Leden",
"Únor",
"Březen",
"Duben",
"Květen",
"Červen",
"Červenec",
"Srpen",
"Září",
"Říjen",
"Listopad",
"Prosinec",
];
};
cs.prototype.onTheHour = function () {
return "v celou hodinu";
};
return cs;
}());
cs_exports.cs = cs;
(cronstrue__WEBPACK_IMPORTED_MODULE_0___default().locales)["cs"] = new cs();
/******/ return __webpack_exports__;
/******/ })()
;
});
+1
View File
@@ -0,0 +1 @@
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(require("cronstrue")):"function"==typeof define&&define.amd?define("locales/cs.min",["cronstrue"],e):"object"==typeof exports?exports["locales/cs.min"]=e(require("cronstrue")):t["locales/cs.min"]=e(t.cronstrue)}(globalThis,(t=>(()=>{"use strict";var e={93(e){e.exports=t}},o={};function n(t){var r=o[t];if(void 0!==r)return r.exports;var u=o[t]={exports:{}};return e[t](u,u.exports,n),u.exports}n.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return n.d(e,{a:e}),e},n.d=(t,e)=>{for(var o in e)n.o(e,o)&&!n.o(t,o)&&Object.defineProperty(t,o,{enumerable:!0,get:e[o]})},n.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),n.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})};var r={};n.r(r);var u=n(93),p=n.n(u),c=r;Object.defineProperty(c,"__esModule",{value:!0}),c.cs=void 0;var s=function(){function t(){}return t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return null},t.prototype.use24HourTimeFormatByDefault=function(){return!0},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"Při vytváření popisu došlo k chybě. Zkontrolujte prosím správnost syntaxe cronu."},t.prototype.everyMinute=function(){return"každou minutu"},t.prototype.everyHour=function(){return"každou hodinu"},t.prototype.atSpace=function(){return"V "},t.prototype.everyMinuteBetweenX0AndX1=function(){return"Každou minutu mezi %s a %s"},t.prototype.at=function(){return"V"},t.prototype.spaceAnd=function(){return" a"},t.prototype.everySecond=function(){return"každou sekundu"},t.prototype.everyX0Seconds=function(){return"každých %s sekund"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"sekundy od %s do %s"},t.prototype.atX0SecondsPastTheMinute=function(){return"v %s sekund"},t.prototype.everyX0Minutes=function(){return"každých %s minut"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"minuty od %s do %s"},t.prototype.atX0MinutesPastTheHour=function(){return"v %s minut"},t.prototype.everyX0Hours=function(){return"každých %s hodin"},t.prototype.betweenX0AndX1=function(){return"mezi %s a %s"},t.prototype.atX0=function(){return"v %s"},t.prototype.commaEveryDay=function(){return", každý den"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", každých %s dní v týdnu"},t.prototype.commaX0ThroughX1=function(){return", od %s do %s"},t.prototype.commaAndX0ThroughX1=function(){return", a od %s do %s"},t.prototype.first=function(){return"první"},t.prototype.second=function(){return"druhý"},t.prototype.third=function(){return"třetí"},t.prototype.fourth=function(){return"čtvrtý"},t.prototype.fifth=function(){return"pátý"},t.prototype.commaOnThe=function(){return", "},t.prototype.spaceX0OfTheMonth=function(){return" %s v měsíci"},t.prototype.lastDay=function(){return"poslední den"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", poslední %s v měsíci"},t.prototype.commaOnlyOnX0=function(){return", pouze v %s"},t.prototype.commaAndOnX0=function(){return", a v %s"},t.prototype.commaEveryX0Months=function(){return", každých %s měsíců"},t.prototype.commaOnlyInX0=function(){return", pouze v %s"},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", poslední den v měsíci"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", poslední pracovní den v měsíci"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s dní před posledním dnem v měsíci"},t.prototype.firstWeekday=function(){return"první pracovní den"},t.prototype.weekdayNearestDayX0=function(){return"pracovní den nejblíže %s. dni"},t.prototype.commaOnTheX0OfTheMonth=function(){return", v %s v měsíci"},t.prototype.commaEveryX0Days=function(){return", každých %s dnů"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", mezi dny %s a %s v měsíci"},t.prototype.commaOnDayX0OfTheMonth=function(){return", %s. den v měsíci"},t.prototype.commaEveryX0Years=function(){return", každých %s roků"},t.prototype.commaStartingX0=function(){return", začínající %s"},t.prototype.daysOfTheWeek=function(){return["Neděle","Pondělí","Úterý","Středa","Čtvrtek","Pátek","Sobota"]},t.prototype.monthsOfTheYear=function(){return["Leden","Únor","Březen","Duben","Květen","Červen","Červenec","Srpen","Září","Říjen","Listopad","Prosinec"]},t.prototype.onTheHour=function(){return"v celou hodinu"},t}();return c.cs=s,p().locales.cs=new s,r})()));
+283
View File
@@ -0,0 +1,283 @@
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory(require("cronstrue"));
else if(typeof define === 'function' && define.amd)
define("locales/da", ["cronstrue"], factory);
else if(typeof exports === 'object')
exports["locales/da"] = factory(require("cronstrue"));
else
root["locales/da"] = factory(root["cronstrue"]);
})(globalThis, (__WEBPACK_EXTERNAL_MODULE__93__) => {
return /******/ (() => { // webpackBootstrap
/******/ "use strict";
/******/ var __webpack_modules__ = ({
/***/ 93
(module) {
module.exports = __WEBPACK_EXTERNAL_MODULE__93__;
/***/ }
/******/ });
/************************************************************************/
/******/ // The module cache
/******/ var __webpack_module_cache__ = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/ // Check if module is in cache
/******/ var cachedModule = __webpack_module_cache__[moduleId];
/******/ if (cachedModule !== undefined) {
/******/ return cachedModule.exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = __webpack_module_cache__[moduleId] = {
/******/ // no module.id needed
/******/ // no module.loaded needed
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/************************************************************************/
/******/ /* webpack/runtime/compat get default export */
/******/ (() => {
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = (module) => {
/******/ var getter = module && module.__esModule ?
/******/ () => (module['default']) :
/******/ () => (module);
/******/ __webpack_require__.d(getter, { a: getter });
/******/ return getter;
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/define property getters */
/******/ (() => {
/******/ // define getter functions for harmony exports
/******/ __webpack_require__.d = (exports, definition) => {
/******/ for(var key in definition) {
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
/******/ }
/******/ }
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/hasOwnProperty shorthand */
/******/ (() => {
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
/******/ })();
/******/
/******/ /* webpack/runtime/make namespace object */
/******/ (() => {
/******/ // define __esModule on exports
/******/ __webpack_require__.r = (exports) => {
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ }
/******/ Object.defineProperty(exports, '__esModule', { value: true });
/******/ };
/******/ })();
/******/
/************************************************************************/
var __webpack_exports__ = {};
__webpack_require__.r(__webpack_exports__);
/* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(93);
/* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(cronstrue__WEBPACK_IMPORTED_MODULE_0__);
var da_exports = __webpack_exports__;
"use strict";
Object.defineProperty(da_exports, "__esModule", { value: true });
da_exports.da = void 0;
var da = (function () {
function da() {
}
da.prototype.use24HourTimeFormatByDefault = function () {
return true;
};
da.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () {
return "Der opstod en fejl ved generering af udtryksbeskrivelsen. Tjek cron-ekspressionssyntaxen.";
};
da.prototype.at = function () {
return "kl";
};
da.prototype.atSpace = function () {
return "kl ";
};
da.prototype.atX0 = function () {
return "kl %s";
};
da.prototype.atX0MinutesPastTheHour = function () {
return "%s minutter efter timeskift";
};
da.prototype.atX0SecondsPastTheMinute = function () {
return "%s sekunder efter minutskift";
};
da.prototype.betweenX0AndX1 = function () {
return "mellem %s og %s";
};
da.prototype.commaBetweenDayX0AndX1OfTheMonth = function () {
return ", mellem dag %s og %s i måneden";
};
da.prototype.commaEveryDay = function () {
return ", hver dag";
};
da.prototype.commaEveryX0Days = function () {
return ", hver %s. dag";
};
da.prototype.commaEveryX0DaysOfTheWeek = function () {
return ", hver %s. ugedag";
};
da.prototype.commaEveryX0Months = function () {
return ", hver %s. måned";
};
da.prototype.commaEveryX0Years = function () {
return ", hvert %s. år";
};
da.prototype.commaOnDayX0OfTheMonth = function () {
return ", på dag %s i måneden";
};
da.prototype.commaOnlyInX0 = function () {
return ", kun i %s";
};
da.prototype.commaOnlyOnX0 = function (s) {
return ", på enhver %s";
};
da.prototype.commaAndOnX0 = function () {
return ", og på %s";
};
da.prototype.commaOnThe = function () {
return ", på den ";
};
da.prototype.commaOnTheLastDayOfTheMonth = function () {
return ", på den sidste dag i måneden";
};
da.prototype.commaOnTheLastWeekdayOfTheMonth = function () {
return ", på den sidste hverdag i måneden";
};
da.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () {
return ", %s dage før den sidste dag i måneden";
};
da.prototype.commaOnTheLastX0OfTheMonth = function () {
return ", på den sidste %s i måneden";
};
da.prototype.commaOnTheX0OfTheMonth = function () {
return ", på den %s i måneden";
};
da.prototype.commaX0ThroughX1 = function () {
return ", %s til og med %s";
};
da.prototype.commaAndX0ThroughX1 = function () {
return ", og %s til og med %s";
};
da.prototype.everyHour = function () {
return "hver time";
};
da.prototype.everyMinute = function () {
return "hvert minut";
};
da.prototype.everyMinuteBetweenX0AndX1 = function () {
return "hvert minut mellem %s og %s";
};
da.prototype.everySecond = function () {
return "hvert sekund";
};
da.prototype.everyX0Hours = function () {
return "hver %s. time";
};
da.prototype.everyX0Minutes = function () {
return "hvert %s. minut";
};
da.prototype.everyX0Seconds = function () {
return "hvert %s. sekund";
};
da.prototype.fifth = function () {
return "femte";
};
da.prototype.first = function () {
return "første";
};
da.prototype.firstWeekday = function () {
return "første hverdag";
};
da.prototype.fourth = function () {
return "fjerde";
};
da.prototype.minutesX0ThroughX1PastTheHour = function () {
return "minutterne fra %s til og med %s hver time";
};
da.prototype.second = function () {
return "anden";
};
da.prototype.secondsX0ThroughX1PastTheMinute = function () {
return "sekunderne fra %s til og med %s hvert minut";
};
da.prototype.spaceAnd = function () {
return " og";
};
da.prototype.spaceX0OfTheMonth = function () {
return " %s i måneden";
};
da.prototype.lastDay = function () {
return "sidste dag";
};
da.prototype.third = function () {
return "tredje";
};
da.prototype.weekdayNearestDayX0 = function () {
return "hverdag nærmest dag %s";
};
da.prototype.commaMonthX0ThroughMonthX1 = function () {
return null;
};
da.prototype.commaYearX0ThroughYearX1 = function () {
return null;
};
da.prototype.atX0MinutesPastTheHourGt20 = function () {
return null;
};
da.prototype.atX0SecondsPastTheMinuteGt20 = function () {
return null;
};
da.prototype.commaStartingX0 = function () {
return ", startende %s";
};
da.prototype.daysOfTheWeek = function () {
return ["søndag", "mandag", "tirsdag", "onsdag", "torsdag", "fredag", "lørdag"];
};
da.prototype.monthsOfTheYear = function () {
return [
"januar",
"februar",
"marts",
"april",
"maj",
"juni",
"juli",
"august",
"september",
"oktober",
"november",
"december",
];
};
da.prototype.onTheHour = function () {
return "på timen";
};
return da;
}());
da_exports.da = da;
(cronstrue__WEBPACK_IMPORTED_MODULE_0___default().locales)["da"] = new da();
/******/ return __webpack_exports__;
/******/ })()
;
});
+1
View File
@@ -0,0 +1 @@
!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("cronstrue")):"function"==typeof define&&define.amd?define("locales/da.min",["cronstrue"],t):"object"==typeof exports?exports["locales/da.min"]=t(require("cronstrue")):e["locales/da.min"]=t(e.cronstrue)}(globalThis,(e=>(()=>{"use strict";var t={93(t){t.exports=e}},n={};function r(e){var o=n[e];if(void 0!==o)return o.exports;var u=n[e]={exports:{}};return t[e](u,u.exports,r),u.exports}r.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return r.d(t,{a:t}),t},r.d=(e,t)=>{for(var n in t)r.o(t,n)&&!r.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};r.r(o);var u=r(93),p=r.n(u),i=o;Object.defineProperty(i,"__esModule",{value:!0}),i.da=void 0;var s=function(){function e(){}return e.prototype.use24HourTimeFormatByDefault=function(){return!0},e.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"Der opstod en fejl ved generering af udtryksbeskrivelsen. Tjek cron-ekspressionssyntaxen."},e.prototype.at=function(){return"kl"},e.prototype.atSpace=function(){return"kl "},e.prototype.atX0=function(){return"kl %s"},e.prototype.atX0MinutesPastTheHour=function(){return"%s minutter efter timeskift"},e.prototype.atX0SecondsPastTheMinute=function(){return"%s sekunder efter minutskift"},e.prototype.betweenX0AndX1=function(){return"mellem %s og %s"},e.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", mellem dag %s og %s i måneden"},e.prototype.commaEveryDay=function(){return", hver dag"},e.prototype.commaEveryX0Days=function(){return", hver %s. dag"},e.prototype.commaEveryX0DaysOfTheWeek=function(){return", hver %s. ugedag"},e.prototype.commaEveryX0Months=function(){return", hver %s. måned"},e.prototype.commaEveryX0Years=function(){return", hvert %s. år"},e.prototype.commaOnDayX0OfTheMonth=function(){return", på dag %s i måneden"},e.prototype.commaOnlyInX0=function(){return", kun i %s"},e.prototype.commaOnlyOnX0=function(e){return", på enhver %s"},e.prototype.commaAndOnX0=function(){return", og på %s"},e.prototype.commaOnThe=function(){return", på den "},e.prototype.commaOnTheLastDayOfTheMonth=function(){return", på den sidste dag i måneden"},e.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", på den sidste hverdag i måneden"},e.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s dage før den sidste dag i måneden"},e.prototype.commaOnTheLastX0OfTheMonth=function(){return", på den sidste %s i måneden"},e.prototype.commaOnTheX0OfTheMonth=function(){return", på den %s i måneden"},e.prototype.commaX0ThroughX1=function(){return", %s til og med %s"},e.prototype.commaAndX0ThroughX1=function(){return", og %s til og med %s"},e.prototype.everyHour=function(){return"hver time"},e.prototype.everyMinute=function(){return"hvert minut"},e.prototype.everyMinuteBetweenX0AndX1=function(){return"hvert minut mellem %s og %s"},e.prototype.everySecond=function(){return"hvert sekund"},e.prototype.everyX0Hours=function(){return"hver %s. time"},e.prototype.everyX0Minutes=function(){return"hvert %s. minut"},e.prototype.everyX0Seconds=function(){return"hvert %s. sekund"},e.prototype.fifth=function(){return"femte"},e.prototype.first=function(){return"første"},e.prototype.firstWeekday=function(){return"første hverdag"},e.prototype.fourth=function(){return"fjerde"},e.prototype.minutesX0ThroughX1PastTheHour=function(){return"minutterne fra %s til og med %s hver time"},e.prototype.second=function(){return"anden"},e.prototype.secondsX0ThroughX1PastTheMinute=function(){return"sekunderne fra %s til og med %s hvert minut"},e.prototype.spaceAnd=function(){return" og"},e.prototype.spaceX0OfTheMonth=function(){return" %s i måneden"},e.prototype.lastDay=function(){return"sidste dag"},e.prototype.third=function(){return"tredje"},e.prototype.weekdayNearestDayX0=function(){return"hverdag nærmest dag %s"},e.prototype.commaMonthX0ThroughMonthX1=function(){return null},e.prototype.commaYearX0ThroughYearX1=function(){return null},e.prototype.atX0MinutesPastTheHourGt20=function(){return null},e.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},e.prototype.commaStartingX0=function(){return", startende %s"},e.prototype.daysOfTheWeek=function(){return["søndag","mandag","tirsdag","onsdag","torsdag","fredag","lørdag"]},e.prototype.monthsOfTheYear=function(){return["januar","februar","marts","april","maj","juni","juli","august","september","oktober","november","december"]},e.prototype.onTheHour=function(){return"på timen"},e}();return i.da=s,p().locales.da=new s,o})()));
+283
View File
@@ -0,0 +1,283 @@
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory(require("cronstrue"));
else if(typeof define === 'function' && define.amd)
define("locales/de", ["cronstrue"], factory);
else if(typeof exports === 'object')
exports["locales/de"] = factory(require("cronstrue"));
else
root["locales/de"] = factory(root["cronstrue"]);
})(globalThis, (__WEBPACK_EXTERNAL_MODULE__93__) => {
return /******/ (() => { // webpackBootstrap
/******/ "use strict";
/******/ var __webpack_modules__ = ({
/***/ 93
(module) {
module.exports = __WEBPACK_EXTERNAL_MODULE__93__;
/***/ }
/******/ });
/************************************************************************/
/******/ // The module cache
/******/ var __webpack_module_cache__ = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/ // Check if module is in cache
/******/ var cachedModule = __webpack_module_cache__[moduleId];
/******/ if (cachedModule !== undefined) {
/******/ return cachedModule.exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = __webpack_module_cache__[moduleId] = {
/******/ // no module.id needed
/******/ // no module.loaded needed
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/************************************************************************/
/******/ /* webpack/runtime/compat get default export */
/******/ (() => {
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = (module) => {
/******/ var getter = module && module.__esModule ?
/******/ () => (module['default']) :
/******/ () => (module);
/******/ __webpack_require__.d(getter, { a: getter });
/******/ return getter;
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/define property getters */
/******/ (() => {
/******/ // define getter functions for harmony exports
/******/ __webpack_require__.d = (exports, definition) => {
/******/ for(var key in definition) {
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
/******/ }
/******/ }
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/hasOwnProperty shorthand */
/******/ (() => {
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
/******/ })();
/******/
/******/ /* webpack/runtime/make namespace object */
/******/ (() => {
/******/ // define __esModule on exports
/******/ __webpack_require__.r = (exports) => {
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ }
/******/ Object.defineProperty(exports, '__esModule', { value: true });
/******/ };
/******/ })();
/******/
/************************************************************************/
var __webpack_exports__ = {};
__webpack_require__.r(__webpack_exports__);
/* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(93);
/* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(cronstrue__WEBPACK_IMPORTED_MODULE_0__);
var de_exports = __webpack_exports__;
"use strict";
Object.defineProperty(de_exports, "__esModule", { value: true });
de_exports.de = void 0;
var de = (function () {
function de() {
}
de.prototype.atX0SecondsPastTheMinuteGt20 = function () {
return null;
};
de.prototype.atX0MinutesPastTheHourGt20 = function () {
return null;
};
de.prototype.commaMonthX0ThroughMonthX1 = function () {
return null;
};
de.prototype.commaYearX0ThroughYearX1 = function () {
return null;
};
de.prototype.use24HourTimeFormatByDefault = function () {
return true;
};
de.prototype.everyMinute = function () {
return "jede Minute";
};
de.prototype.everyHour = function () {
return "jede Stunde";
};
de.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () {
return "Beim Generieren der Ausdrucksbeschreibung ist ein Fehler aufgetreten. Überprüfen Sie die Syntax des Cron-Ausdrucks.";
};
de.prototype.atSpace = function () {
return "Um ";
};
de.prototype.everyMinuteBetweenX0AndX1 = function () {
return "Jede Minute zwischen %s und %s";
};
de.prototype.at = function () {
return "Um";
};
de.prototype.spaceAnd = function () {
return " und";
};
de.prototype.everySecond = function () {
return "Jede Sekunde";
};
de.prototype.everyX0Seconds = function () {
return "alle %s Sekunden";
};
de.prototype.secondsX0ThroughX1PastTheMinute = function () {
return "Sekunden %s bis %s";
};
de.prototype.atX0SecondsPastTheMinute = function () {
return "bei Sekunde %s";
};
de.prototype.everyX0Minutes = function () {
return "alle %s Minuten";
};
de.prototype.minutesX0ThroughX1PastTheHour = function () {
return "Minuten %s bis %s";
};
de.prototype.atX0MinutesPastTheHour = function () {
return "bei Minute %s";
};
de.prototype.everyX0Hours = function () {
return "alle %s Stunden";
};
de.prototype.betweenX0AndX1 = function () {
return "zwischen %s und %s";
};
de.prototype.atX0 = function () {
return "um %s";
};
de.prototype.commaEveryDay = function () {
return ", jeden Tag";
};
de.prototype.commaEveryX0DaysOfTheWeek = function () {
return ", alle %s Tage der Woche";
};
de.prototype.commaX0ThroughX1 = function () {
return ", %s bis %s";
};
de.prototype.commaAndX0ThroughX1 = function () {
return ", und %s bis %s";
};
de.prototype.first = function () {
return "ersten";
};
de.prototype.second = function () {
return "zweiten";
};
de.prototype.third = function () {
return "dritten";
};
de.prototype.fourth = function () {
return "vierten";
};
de.prototype.fifth = function () {
return "fünften";
};
de.prototype.commaOnThe = function () {
return ", am ";
};
de.prototype.spaceX0OfTheMonth = function () {
return " %s des Monats";
};
de.prototype.lastDay = function () {
return "der letzte Tag";
};
de.prototype.commaOnTheLastX0OfTheMonth = function () {
return ", am letzten %s des Monats";
};
de.prototype.commaOnlyOnX0 = function () {
return ", nur jeden %s";
};
de.prototype.commaAndOnX0 = function () {
return ", und jeden %s";
};
de.prototype.commaEveryX0Months = function () {
return ", alle %s Monate";
};
de.prototype.commaOnlyInX0 = function () {
return ", nur im %s";
};
de.prototype.commaOnTheLastDayOfTheMonth = function () {
return ", am letzten Tag des Monats";
};
de.prototype.commaOnTheLastWeekdayOfTheMonth = function () {
return ", am letzten Werktag des Monats";
};
de.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () {
return ", %s tage vor dem letzten Tag des Monats";
};
de.prototype.firstWeekday = function () {
return "ersten Werktag";
};
de.prototype.weekdayNearestDayX0 = function () {
return "Werktag am nächsten zum %s Tag";
};
de.prototype.commaOnTheX0OfTheMonth = function () {
return ", am %s des Monats";
};
de.prototype.commaEveryX0Days = function () {
return ", alle %s Tage";
};
de.prototype.commaBetweenDayX0AndX1OfTheMonth = function () {
return ", zwischen Tag %s und %s des Monats";
};
de.prototype.commaOnDayX0OfTheMonth = function () {
return ", an Tag %s des Monats";
};
de.prototype.commaEveryX0Years = function () {
return ", alle %s Jahre";
};
de.prototype.commaStartingX0 = function () {
return ", beginnend %s";
};
de.prototype.daysOfTheWeek = function () {
return ["Sonntag", "Montag", "Dienstag", "Mittwoch", "Donnerstag", "Freitag", "Samstag"];
};
de.prototype.monthsOfTheYear = function () {
return [
"Januar",
"Februar",
"März",
"April",
"Mai",
"Juni",
"Juli",
"August",
"September",
"Oktober",
"November",
"Dezember",
];
};
de.prototype.onTheHour = function () {
return "zur vollen Stunde";
};
return de;
}());
de_exports.de = de;
(cronstrue__WEBPACK_IMPORTED_MODULE_0___default().locales)["de"] = new de();
/******/ return __webpack_exports__;
/******/ })()
;
});
+1
View File
@@ -0,0 +1 @@
!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("cronstrue")):"function"==typeof define&&define.amd?define("locales/de.min",["cronstrue"],t):"object"==typeof exports?exports["locales/de.min"]=t(require("cronstrue")):e["locales/de.min"]=t(e.cronstrue)}(globalThis,(e=>(()=>{"use strict";var t={93(t){t.exports=e}},n={};function r(e){var o=n[e];if(void 0!==o)return o.exports;var u=n[e]={exports:{}};return t[e](u,u.exports,r),u.exports}r.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return r.d(t,{a:t}),t},r.d=(e,t)=>{for(var n in t)r.o(t,n)&&!r.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};r.r(o);var u=r(93),a=r.n(u),p=o;Object.defineProperty(p,"__esModule",{value:!0}),p.de=void 0;var s=function(){function e(){}return e.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},e.prototype.atX0MinutesPastTheHourGt20=function(){return null},e.prototype.commaMonthX0ThroughMonthX1=function(){return null},e.prototype.commaYearX0ThroughYearX1=function(){return null},e.prototype.use24HourTimeFormatByDefault=function(){return!0},e.prototype.everyMinute=function(){return"jede Minute"},e.prototype.everyHour=function(){return"jede Stunde"},e.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"Beim Generieren der Ausdrucksbeschreibung ist ein Fehler aufgetreten. Überprüfen Sie die Syntax des Cron-Ausdrucks."},e.prototype.atSpace=function(){return"Um "},e.prototype.everyMinuteBetweenX0AndX1=function(){return"Jede Minute zwischen %s und %s"},e.prototype.at=function(){return"Um"},e.prototype.spaceAnd=function(){return" und"},e.prototype.everySecond=function(){return"Jede Sekunde"},e.prototype.everyX0Seconds=function(){return"alle %s Sekunden"},e.prototype.secondsX0ThroughX1PastTheMinute=function(){return"Sekunden %s bis %s"},e.prototype.atX0SecondsPastTheMinute=function(){return"bei Sekunde %s"},e.prototype.everyX0Minutes=function(){return"alle %s Minuten"},e.prototype.minutesX0ThroughX1PastTheHour=function(){return"Minuten %s bis %s"},e.prototype.atX0MinutesPastTheHour=function(){return"bei Minute %s"},e.prototype.everyX0Hours=function(){return"alle %s Stunden"},e.prototype.betweenX0AndX1=function(){return"zwischen %s und %s"},e.prototype.atX0=function(){return"um %s"},e.prototype.commaEveryDay=function(){return", jeden Tag"},e.prototype.commaEveryX0DaysOfTheWeek=function(){return", alle %s Tage der Woche"},e.prototype.commaX0ThroughX1=function(){return", %s bis %s"},e.prototype.commaAndX0ThroughX1=function(){return", und %s bis %s"},e.prototype.first=function(){return"ersten"},e.prototype.second=function(){return"zweiten"},e.prototype.third=function(){return"dritten"},e.prototype.fourth=function(){return"vierten"},e.prototype.fifth=function(){return"fünften"},e.prototype.commaOnThe=function(){return", am "},e.prototype.spaceX0OfTheMonth=function(){return" %s des Monats"},e.prototype.lastDay=function(){return"der letzte Tag"},e.prototype.commaOnTheLastX0OfTheMonth=function(){return", am letzten %s des Monats"},e.prototype.commaOnlyOnX0=function(){return", nur jeden %s"},e.prototype.commaAndOnX0=function(){return", und jeden %s"},e.prototype.commaEveryX0Months=function(){return", alle %s Monate"},e.prototype.commaOnlyInX0=function(){return", nur im %s"},e.prototype.commaOnTheLastDayOfTheMonth=function(){return", am letzten Tag des Monats"},e.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", am letzten Werktag des Monats"},e.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s tage vor dem letzten Tag des Monats"},e.prototype.firstWeekday=function(){return"ersten Werktag"},e.prototype.weekdayNearestDayX0=function(){return"Werktag am nächsten zum %s Tag"},e.prototype.commaOnTheX0OfTheMonth=function(){return", am %s des Monats"},e.prototype.commaEveryX0Days=function(){return", alle %s Tage"},e.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", zwischen Tag %s und %s des Monats"},e.prototype.commaOnDayX0OfTheMonth=function(){return", an Tag %s des Monats"},e.prototype.commaEveryX0Years=function(){return", alle %s Jahre"},e.prototype.commaStartingX0=function(){return", beginnend %s"},e.prototype.daysOfTheWeek=function(){return["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"]},e.prototype.monthsOfTheYear=function(){return["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"]},e.prototype.onTheHour=function(){return"zur vollen Stunde"},e}();return p.de=s,a().locales.de=new s,o})()));
+289
View File
@@ -0,0 +1,289 @@
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory(require("cronstrue"));
else if(typeof define === 'function' && define.amd)
define("locales/en", ["cronstrue"], factory);
else if(typeof exports === 'object')
exports["locales/en"] = factory(require("cronstrue"));
else
root["locales/en"] = factory(root["cronstrue"]);
})(globalThis, (__WEBPACK_EXTERNAL_MODULE__93__) => {
return /******/ (() => { // webpackBootstrap
/******/ "use strict";
/******/ var __webpack_modules__ = ({
/***/ 93
(module) {
module.exports = __WEBPACK_EXTERNAL_MODULE__93__;
/***/ }
/******/ });
/************************************************************************/
/******/ // The module cache
/******/ var __webpack_module_cache__ = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/ // Check if module is in cache
/******/ var cachedModule = __webpack_module_cache__[moduleId];
/******/ if (cachedModule !== undefined) {
/******/ return cachedModule.exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = __webpack_module_cache__[moduleId] = {
/******/ // no module.id needed
/******/ // no module.loaded needed
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/************************************************************************/
/******/ /* webpack/runtime/compat get default export */
/******/ (() => {
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = (module) => {
/******/ var getter = module && module.__esModule ?
/******/ () => (module['default']) :
/******/ () => (module);
/******/ __webpack_require__.d(getter, { a: getter });
/******/ return getter;
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/define property getters */
/******/ (() => {
/******/ // define getter functions for harmony exports
/******/ __webpack_require__.d = (exports, definition) => {
/******/ for(var key in definition) {
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
/******/ }
/******/ }
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/hasOwnProperty shorthand */
/******/ (() => {
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
/******/ })();
/******/
/******/ /* webpack/runtime/make namespace object */
/******/ (() => {
/******/ // define __esModule on exports
/******/ __webpack_require__.r = (exports) => {
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ }
/******/ Object.defineProperty(exports, '__esModule', { value: true });
/******/ };
/******/ })();
/******/
/************************************************************************/
var __webpack_exports__ = {};
__webpack_require__.r(__webpack_exports__);
/* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(93);
/* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(cronstrue__WEBPACK_IMPORTED_MODULE_0__);
var en_exports = __webpack_exports__;
"use strict";
Object.defineProperty(en_exports, "__esModule", { value: true });
en_exports.en = void 0;
var en = (function () {
function en() {
}
en.prototype.atX0SecondsPastTheMinuteGt20 = function () {
return null;
};
en.prototype.atX0MinutesPastTheHourGt20 = function () {
return null;
};
en.prototype.commaMonthX0ThroughMonthX1 = function () {
return null;
};
en.prototype.commaYearX0ThroughYearX1 = function () {
return null;
};
en.prototype.use24HourTimeFormatByDefault = function () {
return false;
};
en.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () {
return "An error occurred when generating the expression description. Check the cron expression syntax.";
};
en.prototype.everyMinute = function () {
return "every minute";
};
en.prototype.everyHour = function () {
return "every hour";
};
en.prototype.atSpace = function () {
return "At ";
};
en.prototype.everyMinuteBetweenX0AndX1 = function () {
return "Every minute between %s and %s";
};
en.prototype.at = function () {
return "At";
};
en.prototype.spaceAnd = function () {
return " and";
};
en.prototype.everySecond = function () {
return "every second";
};
en.prototype.everyX0Seconds = function () {
return "every %s seconds";
};
en.prototype.secondsX0ThroughX1PastTheMinute = function () {
return "seconds %s through %s past the minute";
};
en.prototype.atX0SecondsPastTheMinute = function () {
return "at %s seconds past the minute";
};
en.prototype.everyX0Minutes = function () {
return "every %s minutes";
};
en.prototype.minutesX0ThroughX1PastTheHour = function () {
return "minutes %s through %s past the hour";
};
en.prototype.atX0MinutesPastTheHour = function () {
return "at %s minutes past the hour";
};
en.prototype.everyX0Hours = function () {
return "every %s hours";
};
en.prototype.betweenX0AndX1 = function () {
return "between %s and %s";
};
en.prototype.atX0 = function () {
return "at %s";
};
en.prototype.commaEveryDay = function () {
return ", every day";
};
en.prototype.commaEveryX0DaysOfTheWeek = function () {
return ", every %s days of the week";
};
en.prototype.commaX0ThroughX1 = function () {
return ", %s through %s";
};
en.prototype.commaAndX0ThroughX1 = function () {
return ", %s through %s";
};
en.prototype.first = function () {
return "first";
};
en.prototype.second = function () {
return "second";
};
en.prototype.third = function () {
return "third";
};
en.prototype.fourth = function () {
return "fourth";
};
en.prototype.fifth = function () {
return "fifth";
};
en.prototype.commaOnThe = function () {
return ", on the ";
};
en.prototype.spaceX0OfTheMonth = function () {
return " %s of the month";
};
en.prototype.lastDay = function () {
return "the last day";
};
en.prototype.commaOnTheLastX0OfTheMonth = function () {
return ", on the last %s of the month";
};
en.prototype.commaOnlyOnX0 = function () {
return ", only on %s";
};
en.prototype.commaAndOnX0 = function () {
return ", and on %s";
};
en.prototype.commaEveryX0Months = function () {
return ", every %s months";
};
en.prototype.commaOnlyInX0 = function () {
return ", only in %s";
};
en.prototype.commaOnTheLastDayOfTheMonth = function () {
return ", on the last day of the month";
};
en.prototype.commaOnTheLastWeekdayOfTheMonth = function () {
return ", on the last weekday of the month";
};
en.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () {
return ", %s days before the last day of the month";
};
en.prototype.firstWeekday = function () {
return "first weekday";
};
en.prototype.weekdayNearestDayX0 = function () {
return "weekday nearest day %s";
};
en.prototype.commaOnTheX0OfTheMonth = function () {
return ", on the %s of the month";
};
en.prototype.commaEveryX0Days = function () {
return ", every %s days in a month";
};
en.prototype.commaBetweenDayX0AndX1OfTheMonth = function () {
return ", between day %s and %s of the month";
};
en.prototype.commaOnDayX0OfTheMonth = function () {
return ", on day %s of the month";
};
en.prototype.commaEveryHour = function () {
return ", every hour";
};
en.prototype.commaEveryX0Years = function () {
return ", every %s years";
};
en.prototype.commaStartingX0 = function () {
return ", starting %s";
};
en.prototype.daysOfTheWeek = function () {
return ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"];
};
en.prototype.monthsOfTheYear = function () {
return [
"January",
"February",
"March",
"April",
"May",
"June",
"July",
"August",
"September",
"October",
"November",
"December",
];
};
en.prototype.atReboot = function () {
return "Run once, at startup";
};
en.prototype.onTheHour = function () {
return "on the hour";
};
return en;
}());
en_exports.en = en;
(cronstrue__WEBPACK_IMPORTED_MODULE_0___default().locales)["en"] = new en();
/******/ return __webpack_exports__;
/******/ })()
;
});
+1
View File
@@ -0,0 +1 @@
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(require("cronstrue")):"function"==typeof define&&define.amd?define("locales/en.min",["cronstrue"],e):"object"==typeof exports?exports["locales/en.min"]=e(require("cronstrue")):t["locales/en.min"]=e(t.cronstrue)}(globalThis,(t=>(()=>{"use strict";var e={93(e){e.exports=t}},o={};function n(t){var r=o[t];if(void 0!==r)return r.exports;var u=o[t]={exports:{}};return e[t](u,u.exports,n),u.exports}n.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return n.d(e,{a:e}),e},n.d=(t,e)=>{for(var o in e)n.o(e,o)&&!n.o(t,o)&&Object.defineProperty(t,o,{enumerable:!0,get:e[o]})},n.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),n.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})};var r={};n.r(r);var u=n(93),p=n.n(u),a=r;Object.defineProperty(a,"__esModule",{value:!0}),a.en=void 0;var y=function(){function t(){}return t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return null},t.prototype.use24HourTimeFormatByDefault=function(){return!1},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"An error occurred when generating the expression description. Check the cron expression syntax."},t.prototype.everyMinute=function(){return"every minute"},t.prototype.everyHour=function(){return"every hour"},t.prototype.atSpace=function(){return"At "},t.prototype.everyMinuteBetweenX0AndX1=function(){return"Every minute between %s and %s"},t.prototype.at=function(){return"At"},t.prototype.spaceAnd=function(){return" and"},t.prototype.everySecond=function(){return"every second"},t.prototype.everyX0Seconds=function(){return"every %s seconds"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"seconds %s through %s past the minute"},t.prototype.atX0SecondsPastTheMinute=function(){return"at %s seconds past the minute"},t.prototype.everyX0Minutes=function(){return"every %s minutes"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"minutes %s through %s past the hour"},t.prototype.atX0MinutesPastTheHour=function(){return"at %s minutes past the hour"},t.prototype.everyX0Hours=function(){return"every %s hours"},t.prototype.betweenX0AndX1=function(){return"between %s and %s"},t.prototype.atX0=function(){return"at %s"},t.prototype.commaEveryDay=function(){return", every day"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", every %s days of the week"},t.prototype.commaX0ThroughX1=function(){return", %s through %s"},t.prototype.commaAndX0ThroughX1=function(){return", %s through %s"},t.prototype.first=function(){return"first"},t.prototype.second=function(){return"second"},t.prototype.third=function(){return"third"},t.prototype.fourth=function(){return"fourth"},t.prototype.fifth=function(){return"fifth"},t.prototype.commaOnThe=function(){return", on the "},t.prototype.spaceX0OfTheMonth=function(){return" %s of the month"},t.prototype.lastDay=function(){return"the last day"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", on the last %s of the month"},t.prototype.commaOnlyOnX0=function(){return", only on %s"},t.prototype.commaAndOnX0=function(){return", and on %s"},t.prototype.commaEveryX0Months=function(){return", every %s months"},t.prototype.commaOnlyInX0=function(){return", only in %s"},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", on the last day of the month"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", on the last weekday of the month"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s days before the last day of the month"},t.prototype.firstWeekday=function(){return"first weekday"},t.prototype.weekdayNearestDayX0=function(){return"weekday nearest day %s"},t.prototype.commaOnTheX0OfTheMonth=function(){return", on the %s of the month"},t.prototype.commaEveryX0Days=function(){return", every %s days in a month"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", between day %s and %s of the month"},t.prototype.commaOnDayX0OfTheMonth=function(){return", on day %s of the month"},t.prototype.commaEveryHour=function(){return", every hour"},t.prototype.commaEveryX0Years=function(){return", every %s years"},t.prototype.commaStartingX0=function(){return", starting %s"},t.prototype.daysOfTheWeek=function(){return["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},t.prototype.monthsOfTheYear=function(){return["January","February","March","April","May","June","July","August","September","October","November","December"]},t.prototype.atReboot=function(){return"Run once, at startup"},t.prototype.onTheHour=function(){return"on the hour"},t}();return a.en=y,p().locales.en=new y,r})()));
+283
View File
@@ -0,0 +1,283 @@
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory(require("cronstrue"));
else if(typeof define === 'function' && define.amd)
define("locales/es", ["cronstrue"], factory);
else if(typeof exports === 'object')
exports["locales/es"] = factory(require("cronstrue"));
else
root["locales/es"] = factory(root["cronstrue"]);
})(globalThis, (__WEBPACK_EXTERNAL_MODULE__93__) => {
return /******/ (() => { // webpackBootstrap
/******/ "use strict";
/******/ var __webpack_modules__ = ({
/***/ 93
(module) {
module.exports = __WEBPACK_EXTERNAL_MODULE__93__;
/***/ }
/******/ });
/************************************************************************/
/******/ // The module cache
/******/ var __webpack_module_cache__ = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/ // Check if module is in cache
/******/ var cachedModule = __webpack_module_cache__[moduleId];
/******/ if (cachedModule !== undefined) {
/******/ return cachedModule.exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = __webpack_module_cache__[moduleId] = {
/******/ // no module.id needed
/******/ // no module.loaded needed
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/************************************************************************/
/******/ /* webpack/runtime/compat get default export */
/******/ (() => {
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = (module) => {
/******/ var getter = module && module.__esModule ?
/******/ () => (module['default']) :
/******/ () => (module);
/******/ __webpack_require__.d(getter, { a: getter });
/******/ return getter;
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/define property getters */
/******/ (() => {
/******/ // define getter functions for harmony exports
/******/ __webpack_require__.d = (exports, definition) => {
/******/ for(var key in definition) {
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
/******/ }
/******/ }
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/hasOwnProperty shorthand */
/******/ (() => {
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
/******/ })();
/******/
/******/ /* webpack/runtime/make namespace object */
/******/ (() => {
/******/ // define __esModule on exports
/******/ __webpack_require__.r = (exports) => {
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ }
/******/ Object.defineProperty(exports, '__esModule', { value: true });
/******/ };
/******/ })();
/******/
/************************************************************************/
var __webpack_exports__ = {};
__webpack_require__.r(__webpack_exports__);
/* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(93);
/* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(cronstrue__WEBPACK_IMPORTED_MODULE_0__);
var es_exports = __webpack_exports__;
"use strict";
Object.defineProperty(es_exports, "__esModule", { value: true });
es_exports.es = void 0;
var es = (function () {
function es() {
}
es.prototype.atX0SecondsPastTheMinuteGt20 = function () {
return null;
};
es.prototype.atX0MinutesPastTheHourGt20 = function () {
return null;
};
es.prototype.commaMonthX0ThroughMonthX1 = function () {
return null;
};
es.prototype.commaYearX0ThroughYearX1 = function () {
return null;
};
es.prototype.use24HourTimeFormatByDefault = function () {
return true;
};
es.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () {
return "Ocurrió un error mientras se generaba la descripción de la expresión. Revise la sintaxis de la expresión de cron.";
};
es.prototype.at = function () {
return "A las";
};
es.prototype.atSpace = function () {
return "A las ";
};
es.prototype.atX0 = function () {
return "a las %s";
};
es.prototype.atX0MinutesPastTheHour = function () {
return "a los %s minutos de la hora";
};
es.prototype.atX0SecondsPastTheMinute = function () {
return "a los %s segundos del minuto";
};
es.prototype.betweenX0AndX1 = function () {
return "entre las %s y las %s";
};
es.prototype.commaBetweenDayX0AndX1OfTheMonth = function () {
return ", entre los días %s y %s del mes";
};
es.prototype.commaEveryDay = function () {
return ", cada día";
};
es.prototype.commaEveryX0Days = function () {
return ", cada %s días";
};
es.prototype.commaEveryX0DaysOfTheWeek = function () {
return ", cada %s días de la semana";
};
es.prototype.commaEveryX0Months = function () {
return ", cada %s meses";
};
es.prototype.commaOnDayX0OfTheMonth = function () {
return ", el día %s del mes";
};
es.prototype.commaOnlyInX0 = function () {
return ", sólo en %s";
};
es.prototype.commaOnlyOnX0 = function () {
return ", sólo el %s";
};
es.prototype.commaAndOnX0 = function () {
return ", y el %s";
};
es.prototype.commaOnThe = function () {
return ", en el ";
};
es.prototype.commaOnTheLastDayOfTheMonth = function () {
return ", en el último día del mes";
};
es.prototype.commaOnTheLastWeekdayOfTheMonth = function () {
return ", en el último día de la semana del mes";
};
es.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () {
return ", %s días antes del último día del mes";
};
es.prototype.commaOnTheLastX0OfTheMonth = function () {
return ", en el último %s del mes";
};
es.prototype.commaOnTheX0OfTheMonth = function () {
return ", en el %s del mes";
};
es.prototype.commaX0ThroughX1 = function () {
return ", de %s a %s";
};
es.prototype.commaAndX0ThroughX1 = function () {
return ", y de %s a %s";
};
es.prototype.everyHour = function () {
return "cada hora";
};
es.prototype.everyMinute = function () {
return "cada minuto";
};
es.prototype.everyMinuteBetweenX0AndX1 = function () {
return "cada minuto entre las %s y las %s";
};
es.prototype.everySecond = function () {
return "cada segundo";
};
es.prototype.everyX0Hours = function () {
return "cada %s horas";
};
es.prototype.everyX0Minutes = function () {
return "cada %s minutos";
};
es.prototype.everyX0Seconds = function () {
return "cada %s segundos";
};
es.prototype.fifth = function () {
return "quinto";
};
es.prototype.first = function () {
return "primero";
};
es.prototype.firstWeekday = function () {
return "primer día de la semana";
};
es.prototype.fourth = function () {
return "cuarto";
};
es.prototype.minutesX0ThroughX1PastTheHour = function () {
return "del minuto %s al %s pasada la hora";
};
es.prototype.second = function () {
return "segundo";
};
es.prototype.secondsX0ThroughX1PastTheMinute = function () {
return "En los segundos %s al %s de cada minuto";
};
es.prototype.spaceAnd = function () {
return " y";
};
es.prototype.spaceX0OfTheMonth = function () {
return " %s del mes";
};
es.prototype.lastDay = function () {
return "el último día";
};
es.prototype.third = function () {
return "tercer";
};
es.prototype.weekdayNearestDayX0 = function () {
return "día de la semana más próximo al %s";
};
es.prototype.commaEveryX0Years = function () {
return ", cada %s años";
};
es.prototype.commaStartingX0 = function () {
return ", comenzando %s";
};
es.prototype.daysOfTheWeek = function () {
return ["domingo", "lunes", "martes", "miércoles", "jueves", "viernes", "sábado"];
};
es.prototype.monthsOfTheYear = function () {
return [
"enero",
"febrero",
"marzo",
"abril",
"mayo",
"junio",
"julio",
"agosto",
"septiembre",
"octubre",
"noviembre",
"diciembre",
];
};
es.prototype.onTheHour = function () {
return "en punto";
};
return es;
}());
es_exports.es = es;
(cronstrue__WEBPACK_IMPORTED_MODULE_0___default().locales)["es"] = new es();
/******/ return __webpack_exports__;
/******/ })()
;
});
+1
View File
@@ -0,0 +1 @@
!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("cronstrue")):"function"==typeof define&&define.amd?define("locales/es.min",["cronstrue"],t):"object"==typeof exports?exports["locales/es.min"]=t(require("cronstrue")):e["locales/es.min"]=t(e.cronstrue)}(globalThis,(e=>(()=>{"use strict";var t={93(t){t.exports=e}},o={};function n(e){var r=o[e];if(void 0!==r)return r.exports;var u=o[e]={exports:{}};return t[e](u,u.exports,n),u.exports}n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var o in t)n.o(t,o)&&!n.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var r={};n.r(r);var u=n(93),a=n.n(u),s=r;Object.defineProperty(s,"__esModule",{value:!0}),s.es=void 0;var p=function(){function e(){}return e.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},e.prototype.atX0MinutesPastTheHourGt20=function(){return null},e.prototype.commaMonthX0ThroughMonthX1=function(){return null},e.prototype.commaYearX0ThroughYearX1=function(){return null},e.prototype.use24HourTimeFormatByDefault=function(){return!0},e.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"Ocurrió un error mientras se generaba la descripción de la expresión. Revise la sintaxis de la expresión de cron."},e.prototype.at=function(){return"A las"},e.prototype.atSpace=function(){return"A las "},e.prototype.atX0=function(){return"a las %s"},e.prototype.atX0MinutesPastTheHour=function(){return"a los %s minutos de la hora"},e.prototype.atX0SecondsPastTheMinute=function(){return"a los %s segundos del minuto"},e.prototype.betweenX0AndX1=function(){return"entre las %s y las %s"},e.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", entre los días %s y %s del mes"},e.prototype.commaEveryDay=function(){return", cada día"},e.prototype.commaEveryX0Days=function(){return", cada %s días"},e.prototype.commaEveryX0DaysOfTheWeek=function(){return", cada %s días de la semana"},e.prototype.commaEveryX0Months=function(){return", cada %s meses"},e.prototype.commaOnDayX0OfTheMonth=function(){return", el día %s del mes"},e.prototype.commaOnlyInX0=function(){return", sólo en %s"},e.prototype.commaOnlyOnX0=function(){return", sólo el %s"},e.prototype.commaAndOnX0=function(){return", y el %s"},e.prototype.commaOnThe=function(){return", en el "},e.prototype.commaOnTheLastDayOfTheMonth=function(){return", en el último día del mes"},e.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", en el último día de la semana del mes"},e.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s días antes del último día del mes"},e.prototype.commaOnTheLastX0OfTheMonth=function(){return", en el último %s del mes"},e.prototype.commaOnTheX0OfTheMonth=function(){return", en el %s del mes"},e.prototype.commaX0ThroughX1=function(){return", de %s a %s"},e.prototype.commaAndX0ThroughX1=function(){return", y de %s a %s"},e.prototype.everyHour=function(){return"cada hora"},e.prototype.everyMinute=function(){return"cada minuto"},e.prototype.everyMinuteBetweenX0AndX1=function(){return"cada minuto entre las %s y las %s"},e.prototype.everySecond=function(){return"cada segundo"},e.prototype.everyX0Hours=function(){return"cada %s horas"},e.prototype.everyX0Minutes=function(){return"cada %s minutos"},e.prototype.everyX0Seconds=function(){return"cada %s segundos"},e.prototype.fifth=function(){return"quinto"},e.prototype.first=function(){return"primero"},e.prototype.firstWeekday=function(){return"primer día de la semana"},e.prototype.fourth=function(){return"cuarto"},e.prototype.minutesX0ThroughX1PastTheHour=function(){return"del minuto %s al %s pasada la hora"},e.prototype.second=function(){return"segundo"},e.prototype.secondsX0ThroughX1PastTheMinute=function(){return"En los segundos %s al %s de cada minuto"},e.prototype.spaceAnd=function(){return" y"},e.prototype.spaceX0OfTheMonth=function(){return" %s del mes"},e.prototype.lastDay=function(){return"el último día"},e.prototype.third=function(){return"tercer"},e.prototype.weekdayNearestDayX0=function(){return"día de la semana más próximo al %s"},e.prototype.commaEveryX0Years=function(){return", cada %s años"},e.prototype.commaStartingX0=function(){return", comenzando %s"},e.prototype.daysOfTheWeek=function(){return["domingo","lunes","martes","miércoles","jueves","viernes","sábado"]},e.prototype.monthsOfTheYear=function(){return["enero","febrero","marzo","abril","mayo","junio","julio","agosto","septiembre","octubre","noviembre","diciembre"]},e.prototype.onTheHour=function(){return"en punto"},e}();return s.es=p,a().locales.es=new p,r})()));
+276
View File
@@ -0,0 +1,276 @@
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory(require("cronstrue"));
else if(typeof define === 'function' && define.amd)
define("locales/fa", ["cronstrue"], factory);
else if(typeof exports === 'object')
exports["locales/fa"] = factory(require("cronstrue"));
else
root["locales/fa"] = factory(root["cronstrue"]);
})(globalThis, (__WEBPACK_EXTERNAL_MODULE__93__) => {
return /******/ (() => { // webpackBootstrap
/******/ "use strict";
/******/ var __webpack_modules__ = ({
/***/ 93
(module) {
module.exports = __WEBPACK_EXTERNAL_MODULE__93__;
/***/ }
/******/ });
/************************************************************************/
/******/ // The module cache
/******/ var __webpack_module_cache__ = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/ // Check if module is in cache
/******/ var cachedModule = __webpack_module_cache__[moduleId];
/******/ if (cachedModule !== undefined) {
/******/ return cachedModule.exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = __webpack_module_cache__[moduleId] = {
/******/ // no module.id needed
/******/ // no module.loaded needed
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/************************************************************************/
/******/ /* webpack/runtime/compat get default export */
/******/ (() => {
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = (module) => {
/******/ var getter = module && module.__esModule ?
/******/ () => (module['default']) :
/******/ () => (module);
/******/ __webpack_require__.d(getter, { a: getter });
/******/ return getter;
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/define property getters */
/******/ (() => {
/******/ // define getter functions for harmony exports
/******/ __webpack_require__.d = (exports, definition) => {
/******/ for(var key in definition) {
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
/******/ }
/******/ }
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/hasOwnProperty shorthand */
/******/ (() => {
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
/******/ })();
/******/
/******/ /* webpack/runtime/make namespace object */
/******/ (() => {
/******/ // define __esModule on exports
/******/ __webpack_require__.r = (exports) => {
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ }
/******/ Object.defineProperty(exports, '__esModule', { value: true });
/******/ };
/******/ })();
/******/
/************************************************************************/
var __webpack_exports__ = {};
__webpack_require__.r(__webpack_exports__);
/* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(93);
/* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(cronstrue__WEBPACK_IMPORTED_MODULE_0__);
var fa_exports = __webpack_exports__;
"use strict";
Object.defineProperty(fa_exports, "__esModule", { value: true });
fa_exports.fa = void 0;
var fa = (function () {
function fa() {
}
fa.prototype.atX0SecondsPastTheMinuteGt20 = function () {
return null;
};
fa.prototype.atX0MinutesPastTheHourGt20 = function () {
return null;
};
fa.prototype.commaMonthX0ThroughMonthX1 = function () {
return null;
};
fa.prototype.commaYearX0ThroughYearX1 = function () {
return null;
};
fa.prototype.use24HourTimeFormatByDefault = function () {
return true;
};
fa.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () {
return "خطایی در نمایش توضیحات این وظیفه رخ داد. لطفا ساختار آن را بررسی کنید.";
};
fa.prototype.everyMinute = function () {
return "هر دقیقه";
};
fa.prototype.everyHour = function () {
return "هر ساعت";
};
fa.prototype.atSpace = function () {
return "در ";
};
fa.prototype.everyMinuteBetweenX0AndX1 = function () {
return "هر دقیقه بین %s و %s";
};
fa.prototype.at = function () {
return "در";
};
fa.prototype.spaceAnd = function () {
return " و";
};
fa.prototype.everySecond = function () {
return "هر ثانیه";
};
fa.prototype.everyX0Seconds = function () {
return "هر %s ثانیه";
};
fa.prototype.secondsX0ThroughX1PastTheMinute = function () {
return "ثانیه %s تا %s دقیقه گذشته";
};
fa.prototype.atX0SecondsPastTheMinute = function () {
return "در %s قانیه از دقیقه گذشته";
};
fa.prototype.everyX0Minutes = function () {
return "هر %s دقیقه";
};
fa.prototype.minutesX0ThroughX1PastTheHour = function () {
return "دقیقه %s تا %s ساعت گذشته";
};
fa.prototype.atX0MinutesPastTheHour = function () {
return "در %s دقیقه پس از ساعت";
};
fa.prototype.everyX0Hours = function () {
return "هر %s ساعت";
};
fa.prototype.betweenX0AndX1 = function () {
return "بین %s و %s";
};
fa.prototype.atX0 = function () {
return "در %s";
};
fa.prototype.commaEveryDay = function () {
return ", هر روز";
};
fa.prototype.commaEveryX0DaysOfTheWeek = function () {
return ", هر %s روز از هفته";
};
fa.prototype.commaX0ThroughX1 = function () {
return ", %s تا %s";
};
fa.prototype.commaAndX0ThroughX1 = function () {
return ", و %s تا %s";
};
fa.prototype.first = function () {
return "اول";
};
fa.prototype.second = function () {
return "دوم";
};
fa.prototype.third = function () {
return "سوم";
};
fa.prototype.fourth = function () {
return "چهارم";
};
fa.prototype.fifth = function () {
return "پنجم";
};
fa.prototype.commaOnThe = function () {
return ", در ";
};
fa.prototype.spaceX0OfTheMonth = function () {
return " %s ماه";
};
fa.prototype.lastDay = function () {
return "آخرین روز";
};
fa.prototype.commaOnTheLastX0OfTheMonth = function () {
return ", در %s ماه";
};
fa.prototype.commaOnlyOnX0 = function () {
return ", فقط در %s";
};
fa.prototype.commaAndOnX0 = function () {
return ", و در %s";
};
fa.prototype.commaEveryX0Months = function () {
return ", هر %s ماه";
};
fa.prototype.commaOnlyInX0 = function () {
return ", فقط در %s";
};
fa.prototype.commaOnTheLastDayOfTheMonth = function () {
return ", در آخرین روز ماه";
};
fa.prototype.commaOnTheLastWeekdayOfTheMonth = function () {
return ", در آخرین روز ماه";
};
fa.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () {
return ", %s روز قبل از آخرین روز ماه";
};
fa.prototype.firstWeekday = function () {
return "اولین روز";
};
fa.prototype.weekdayNearestDayX0 = function () {
return "روز نزدیک به روز %s";
};
fa.prototype.commaOnTheX0OfTheMonth = function () {
return ", در %s ماه";
};
fa.prototype.commaEveryX0Days = function () {
return ", هر %s روز";
};
fa.prototype.commaBetweenDayX0AndX1OfTheMonth = function () {
return ", بین روز %s و %s ماه";
};
fa.prototype.commaOnDayX0OfTheMonth = function () {
return ", در %s ماه";
};
fa.prototype.commaEveryMinute = function () {
return ", هر minute";
};
fa.prototype.commaEveryHour = function () {
return ", هر ساعت";
};
fa.prototype.commaEveryX0Years = function () {
return ", هر %s سال";
};
fa.prototype.commaStartingX0 = function () {
return ", آغاز %s";
};
fa.prototype.daysOfTheWeek = function () {
return ["یک‌شنبه", "دوشنبه", "سه‌شنبه", "چهارشنبه", "پنج‌شنبه", "جمعه", "شنبه"];
};
fa.prototype.monthsOfTheYear = function () {
return ["ژانویه", "فوریه", "مارس", "آپریل", "مه", "ژوئن", "ژوئیه", "آگوست", "سپتامبر", "اکتبر", "نوامبر", "دسامبر"];
};
fa.prototype.onTheHour = function () {
return "سر ساعت";
};
return fa;
}());
fa_exports.fa = fa;
(cronstrue__WEBPACK_IMPORTED_MODULE_0___default().locales)["fa"] = new fa();
/******/ return __webpack_exports__;
/******/ })()
;
});
File diff suppressed because one or more lines are too long
+292
View File
@@ -0,0 +1,292 @@
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory(require("cronstrue"));
else if(typeof define === 'function' && define.amd)
define("locales/fi", ["cronstrue"], factory);
else if(typeof exports === 'object')
exports["locales/fi"] = factory(require("cronstrue"));
else
root["locales/fi"] = factory(root["cronstrue"]);
})(globalThis, (__WEBPACK_EXTERNAL_MODULE__93__) => {
return /******/ (() => { // webpackBootstrap
/******/ "use strict";
/******/ var __webpack_modules__ = ({
/***/ 93
(module) {
module.exports = __WEBPACK_EXTERNAL_MODULE__93__;
/***/ }
/******/ });
/************************************************************************/
/******/ // The module cache
/******/ var __webpack_module_cache__ = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/ // Check if module is in cache
/******/ var cachedModule = __webpack_module_cache__[moduleId];
/******/ if (cachedModule !== undefined) {
/******/ return cachedModule.exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = __webpack_module_cache__[moduleId] = {
/******/ // no module.id needed
/******/ // no module.loaded needed
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/************************************************************************/
/******/ /* webpack/runtime/compat get default export */
/******/ (() => {
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = (module) => {
/******/ var getter = module && module.__esModule ?
/******/ () => (module['default']) :
/******/ () => (module);
/******/ __webpack_require__.d(getter, { a: getter });
/******/ return getter;
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/define property getters */
/******/ (() => {
/******/ // define getter functions for harmony exports
/******/ __webpack_require__.d = (exports, definition) => {
/******/ for(var key in definition) {
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
/******/ }
/******/ }
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/hasOwnProperty shorthand */
/******/ (() => {
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
/******/ })();
/******/
/******/ /* webpack/runtime/make namespace object */
/******/ (() => {
/******/ // define __esModule on exports
/******/ __webpack_require__.r = (exports) => {
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ }
/******/ Object.defineProperty(exports, '__esModule', { value: true });
/******/ };
/******/ })();
/******/
/************************************************************************/
var __webpack_exports__ = {};
__webpack_require__.r(__webpack_exports__);
/* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(93);
/* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(cronstrue__WEBPACK_IMPORTED_MODULE_0__);
var fi_exports = __webpack_exports__;
"use strict";
Object.defineProperty(fi_exports, "__esModule", { value: true });
fi_exports.fi = void 0;
var fi = (function () {
function fi() {
}
fi.prototype.use24HourTimeFormatByDefault = function () {
return true;
};
fi.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () {
return "Virhe kuvauksen generoinnissa. Tarkista cron-syntaksi.";
};
fi.prototype.at = function () {
return "Klo";
};
fi.prototype.atSpace = function () {
return "Klo ";
};
fi.prototype.atX0 = function () {
return "klo %s";
};
fi.prototype.atX0MinutesPastTheHour = function () {
return "%s minuuttia yli";
};
fi.prototype.atX0MinutesPastTheHourGt20 = function () {
return "%s minuuttia yli";
};
fi.prototype.atX0SecondsPastTheMinute = function () {
return "%s sekunnnin jälkeen";
};
fi.prototype.betweenX0AndX1 = function () {
return "%s - %s välillä";
};
fi.prototype.commaBetweenDayX0AndX1OfTheMonth = function () {
return ", kuukauden päivien %s ja %s välillä";
};
fi.prototype.commaEveryDay = function () {
return ", joka päivä";
};
fi.prototype.commaEveryHour = function () {
return ", joka tunti";
};
fi.prototype.commaEveryMinute = function () {
return ", joka minuutti";
};
fi.prototype.commaEveryX0Days = function () {
return ", joka %s. päivä";
};
fi.prototype.commaEveryX0DaysOfTheWeek = function () {
return ", joka %s. viikonpäivä";
};
fi.prototype.commaEveryX0Months = function () {
return ", joka %s. kuukausi";
};
fi.prototype.commaEveryX0Years = function () {
return ", joka %s. vuosi";
};
fi.prototype.commaOnDayX0OfTheMonth = function () {
return ", kuukauden %s päivä";
};
fi.prototype.commaOnlyInX0 = function () {
return ", vain %s";
};
fi.prototype.commaOnlyOnX0 = function () {
return ", vain %s";
};
fi.prototype.commaOnThe = function () {
return ",";
};
fi.prototype.commaOnTheLastDayOfTheMonth = function () {
return ", kuukauden viimeisenä päivänä";
};
fi.prototype.commaOnTheLastWeekdayOfTheMonth = function () {
return ", kuukauden viimeisenä viikonpäivänä";
};
fi.prototype.commaOnTheLastX0OfTheMonth = function () {
return ", kuukauden viimeinen %s";
};
fi.prototype.commaOnTheX0OfTheMonth = function () {
return ", kuukauden %s";
};
fi.prototype.commaX0ThroughX1 = function () {
return ", %s - %s";
};
fi.prototype.commaAndX0ThroughX1 = function () {
return ", %s - %s";
};
fi.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () {
return ", %s päivää ennen kuukauden viimeistä päivää";
};
fi.prototype.commaStartingX0 = function () {
return ", alkaen %s";
};
fi.prototype.everyHour = function () {
return "joka tunti";
};
fi.prototype.everyMinute = function () {
return "joka minuutti";
};
fi.prototype.everyMinuteBetweenX0AndX1 = function () {
return "joka minuutti %s - %s välillä";
};
fi.prototype.everySecond = function () {
return "joka sekunti";
};
fi.prototype.everyX0Hours = function () {
return "joka %s. tunti";
};
fi.prototype.everyX0Minutes = function () {
return "joka %s. minuutti";
};
fi.prototype.everyX0Seconds = function () {
return "joka %s. sekunti";
};
fi.prototype.fifth = function () {
return "viides";
};
fi.prototype.first = function () {
return "ensimmäinen";
};
fi.prototype.firstWeekday = function () {
return "ensimmäinen viikonpäivä";
};
fi.prototype.fourth = function () {
return "neljäs";
};
fi.prototype.minutesX0ThroughX1PastTheHour = function () {
return "joka tunti minuuttien %s - %s välillä";
};
fi.prototype.second = function () {
return "toinen";
};
fi.prototype.secondsX0ThroughX1PastTheMinute = function () {
return "joka minuutti sekunttien %s - %s välillä";
};
fi.prototype.spaceAnd = function () {
return " ja";
};
fi.prototype.spaceAndSpace = function () {
return " ja ";
};
fi.prototype.spaceX0OfTheMonth = function () {
return " %s kuukaudessa";
};
fi.prototype.third = function () {
return "kolmas";
};
fi.prototype.weekdayNearestDayX0 = function () {
return "viikonpäivä lähintä %s päivää";
};
fi.prototype.atX0SecondsPastTheMinuteGt20 = function () {
return null;
};
fi.prototype.commaMonthX0ThroughMonthX1 = function () {
return null;
};
fi.prototype.commaYearX0ThroughYearX1 = function () {
return null;
};
fi.prototype.lastDay = function () {
return "viimeinen päivä";
};
fi.prototype.commaAndOnX0 = function () {
return ", ja edelleen %s";
};
fi.prototype.daysOfTheWeek = function () {
return ["sunnuntai", "maanantai", "tiistai", "keskiviikko", "torstai", "perjantai", "lauantai"];
};
fi.prototype.monthsOfTheYear = function () {
return [
"tammikuu",
"helmikuu",
"maaliskuu",
"huhtikuu",
"toukokuu",
"kesäkuu",
"heinäkuu",
"elokuu",
"syyskuu",
"lokakuu",
"marraskuu",
"joulukuu",
];
};
fi.prototype.onTheHour = function () {
return "tasalta";
};
return fi;
}());
fi_exports.fi = fi;
(cronstrue__WEBPACK_IMPORTED_MODULE_0___default().locales)["fi"] = new fi();
/******/ return __webpack_exports__;
/******/ })()
;
});
File diff suppressed because one or more lines are too long
+294
View File
@@ -0,0 +1,294 @@
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory(require("cronstrue"));
else if(typeof define === 'function' && define.amd)
define("locales/fr", ["cronstrue"], factory);
else if(typeof exports === 'object')
exports["locales/fr"] = factory(require("cronstrue"));
else
root["locales/fr"] = factory(root["cronstrue"]);
})(globalThis, (__WEBPACK_EXTERNAL_MODULE__93__) => {
return /******/ (() => { // webpackBootstrap
/******/ "use strict";
/******/ var __webpack_modules__ = ({
/***/ 93
(module) {
module.exports = __WEBPACK_EXTERNAL_MODULE__93__;
/***/ }
/******/ });
/************************************************************************/
/******/ // The module cache
/******/ var __webpack_module_cache__ = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/ // Check if module is in cache
/******/ var cachedModule = __webpack_module_cache__[moduleId];
/******/ if (cachedModule !== undefined) {
/******/ return cachedModule.exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = __webpack_module_cache__[moduleId] = {
/******/ // no module.id needed
/******/ // no module.loaded needed
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/************************************************************************/
/******/ /* webpack/runtime/compat get default export */
/******/ (() => {
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = (module) => {
/******/ var getter = module && module.__esModule ?
/******/ () => (module['default']) :
/******/ () => (module);
/******/ __webpack_require__.d(getter, { a: getter });
/******/ return getter;
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/define property getters */
/******/ (() => {
/******/ // define getter functions for harmony exports
/******/ __webpack_require__.d = (exports, definition) => {
/******/ for(var key in definition) {
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
/******/ }
/******/ }
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/hasOwnProperty shorthand */
/******/ (() => {
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
/******/ })();
/******/
/******/ /* webpack/runtime/make namespace object */
/******/ (() => {
/******/ // define __esModule on exports
/******/ __webpack_require__.r = (exports) => {
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ }
/******/ Object.defineProperty(exports, '__esModule', { value: true });
/******/ };
/******/ })();
/******/
/************************************************************************/
var __webpack_exports__ = {};
__webpack_require__.r(__webpack_exports__);
/* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(93);
/* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(cronstrue__WEBPACK_IMPORTED_MODULE_0__);
var fr_exports = __webpack_exports__;
"use strict";
Object.defineProperty(fr_exports, "__esModule", { value: true });
fr_exports.fr = void 0;
var fr = (function () {
function fr() {
}
fr.prototype.conciseVerbosityReplacements = function () {
return {
"de le": "du",
};
};
fr.prototype.atX0SecondsPastTheMinuteGt20 = function () {
return null;
};
fr.prototype.atX0MinutesPastTheHourGt20 = function () {
return null;
};
fr.prototype.commaMonthX0ThroughMonthX1 = function () {
return null;
};
fr.prototype.commaYearX0ThroughYearX1 = function () {
return null;
};
fr.prototype.use24HourTimeFormatByDefault = function () {
return true;
};
fr.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () {
return "Une erreur est survenue en générant la description de l'expression cron. Vérifiez sa syntaxe.";
};
fr.prototype.everyMinute = function () {
return "toutes les minutes";
};
fr.prototype.everyHour = function () {
return "toutes les heures";
};
fr.prototype.atSpace = function () {
return "À ";
};
fr.prototype.everyMinuteBetweenX0AndX1 = function () {
return "Toutes les minutes entre %s et %s";
};
fr.prototype.at = function () {
return "À";
};
fr.prototype.spaceAnd = function () {
return " et";
};
fr.prototype.everySecond = function () {
return "toutes les secondes";
};
fr.prototype.everyX0Seconds = function () {
return "toutes les %s secondes";
};
fr.prototype.secondsX0ThroughX1PastTheMinute = function () {
return "les secondes entre %s et %s après la minute";
};
fr.prototype.atX0SecondsPastTheMinute = function () {
return "%s secondes après la minute";
};
fr.prototype.everyX0Minutes = function () {
return "toutes les %s minutes";
};
fr.prototype.minutesX0ThroughX1PastTheHour = function () {
return "les minutes entre %s et %s après l'heure";
};
fr.prototype.atX0MinutesPastTheHour = function () {
return "%s minutes après l'heure";
};
fr.prototype.everyX0Hours = function () {
return "toutes les %s heures";
};
fr.prototype.betweenX0AndX1 = function () {
return "de %s à %s";
};
fr.prototype.atX0 = function () {
return "%s";
};
fr.prototype.commaEveryDay = function () {
return ", tous les jours";
};
fr.prototype.commaEveryX0DaysOfTheWeek = function () {
return ", tous les %s jours de la semaine";
};
fr.prototype.commaX0ThroughX1 = function () {
return ", de %s à %s";
};
fr.prototype.commaAndX0ThroughX1 = function () {
return ", et de %s à %s";
};
fr.prototype.first = function () {
return "premier";
};
fr.prototype.second = function () {
return "second";
};
fr.prototype.third = function () {
return "troisième";
};
fr.prototype.fourth = function () {
return "quatrième";
};
fr.prototype.fifth = function () {
return "cinquième";
};
fr.prototype.commaOnThe = function () {
return ", le ";
};
fr.prototype.spaceX0OfTheMonth = function () {
return " %s du mois";
};
fr.prototype.lastDay = function () {
return "le dernier jour";
};
fr.prototype.commaOnTheLastX0OfTheMonth = function () {
return ", le dernier %s du mois";
};
fr.prototype.commaOnlyOnX0 = function () {
return ", uniquement le %s";
};
fr.prototype.commaAndOnX0 = function () {
return ", et %s";
};
fr.prototype.commaEveryX0Months = function () {
return ", tous les %s mois";
};
fr.prototype.commaOnlyInX0 = function () {
return ", uniquement en %s";
};
fr.prototype.commaOnTheLastDayOfTheMonth = function () {
return ", le dernier jour du mois";
};
fr.prototype.commaOnTheLastWeekdayOfTheMonth = function () {
return ", le dernier jour ouvrable du mois";
};
fr.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () {
return ", %s jours avant le dernier jour du mois";
};
fr.prototype.firstWeekday = function () {
return "premier jour ouvrable";
};
fr.prototype.weekdayNearestDayX0 = function () {
return "jour ouvrable le plus proche du %s";
};
fr.prototype.commaOnTheX0OfTheMonth = function () {
return ", le %s du mois";
};
fr.prototype.commaEveryX0Days = function () {
return ", tous les %s jours";
};
fr.prototype.commaBetweenDayX0AndX1OfTheMonth = function () {
return ", du %s au %s du mois";
};
fr.prototype.commaOnDayX0OfTheMonth = function () {
return ", le %s du mois";
};
fr.prototype.commaEveryHour = function () {
return ", chaque heure";
};
fr.prototype.commaEveryX0Years = function () {
return ", tous les %s ans";
};
fr.prototype.commaDaysX0ThroughX1 = function () {
return ", du %s au %s";
};
fr.prototype.commaStartingX0 = function () {
return ", à partir de %s";
};
fr.prototype.daysOfTheWeek = function () {
return ["dimanche", "lundi", "mardi", "mercredi", "jeudi", "vendredi", "samedi"];
};
fr.prototype.monthsOfTheYear = function () {
return [
"janvier",
"février",
"mars",
"avril",
"mai",
"juin",
"juillet",
"août",
"septembre",
"octobre",
"novembre",
"décembre",
];
};
fr.prototype.onTheHour = function () {
return "à l'heure pile";
};
return fr;
}());
fr_exports.fr = fr;
(cronstrue__WEBPACK_IMPORTED_MODULE_0___default().locales)["fr"] = new fr();
/******/ return __webpack_exports__;
/******/ })()
;
});
File diff suppressed because one or more lines are too long
+270
View File
@@ -0,0 +1,270 @@
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory(require("cronstrue"));
else if(typeof define === 'function' && define.amd)
define("locales/he", ["cronstrue"], factory);
else if(typeof exports === 'object')
exports["locales/he"] = factory(require("cronstrue"));
else
root["locales/he"] = factory(root["cronstrue"]);
})(globalThis, (__WEBPACK_EXTERNAL_MODULE__93__) => {
return /******/ (() => { // webpackBootstrap
/******/ "use strict";
/******/ var __webpack_modules__ = ({
/***/ 93
(module) {
module.exports = __WEBPACK_EXTERNAL_MODULE__93__;
/***/ }
/******/ });
/************************************************************************/
/******/ // The module cache
/******/ var __webpack_module_cache__ = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/ // Check if module is in cache
/******/ var cachedModule = __webpack_module_cache__[moduleId];
/******/ if (cachedModule !== undefined) {
/******/ return cachedModule.exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = __webpack_module_cache__[moduleId] = {
/******/ // no module.id needed
/******/ // no module.loaded needed
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/************************************************************************/
/******/ /* webpack/runtime/compat get default export */
/******/ (() => {
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = (module) => {
/******/ var getter = module && module.__esModule ?
/******/ () => (module['default']) :
/******/ () => (module);
/******/ __webpack_require__.d(getter, { a: getter });
/******/ return getter;
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/define property getters */
/******/ (() => {
/******/ // define getter functions for harmony exports
/******/ __webpack_require__.d = (exports, definition) => {
/******/ for(var key in definition) {
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
/******/ }
/******/ }
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/hasOwnProperty shorthand */
/******/ (() => {
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
/******/ })();
/******/
/******/ /* webpack/runtime/make namespace object */
/******/ (() => {
/******/ // define __esModule on exports
/******/ __webpack_require__.r = (exports) => {
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ }
/******/ Object.defineProperty(exports, '__esModule', { value: true });
/******/ };
/******/ })();
/******/
/************************************************************************/
var __webpack_exports__ = {};
__webpack_require__.r(__webpack_exports__);
/* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(93);
/* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(cronstrue__WEBPACK_IMPORTED_MODULE_0__);
var he_exports = __webpack_exports__;
"use strict";
Object.defineProperty(he_exports, "__esModule", { value: true });
he_exports.he = void 0;
var he = (function () {
function he() {
}
he.prototype.atX0SecondsPastTheMinuteGt20 = function () {
return null;
};
he.prototype.atX0MinutesPastTheHourGt20 = function () {
return null;
};
he.prototype.commaMonthX0ThroughMonthX1 = function () {
return null;
};
he.prototype.commaYearX0ThroughYearX1 = function () {
return null;
};
he.prototype.use24HourTimeFormatByDefault = function () {
return true;
};
he.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () {
return "אירעה שגיאה בעת יצירת תיאור הביטוי. בדוק את תחביר הביטוי cron.";
};
he.prototype.everyMinute = function () {
return "כל דקה";
};
he.prototype.everyHour = function () {
return "כל שעה";
};
he.prototype.atSpace = function () {
return "ב ";
};
he.prototype.everyMinuteBetweenX0AndX1 = function () {
return "כל דקה %s עד %s";
};
he.prototype.at = function () {
return "ב";
};
he.prototype.spaceAnd = function () {
return " ו";
};
he.prototype.everySecond = function () {
return "כל שניה";
};
he.prototype.everyX0Seconds = function () {
return "כל %s שניות";
};
he.prototype.secondsX0ThroughX1PastTheMinute = function () {
return "%s עד %s שניות של הדקה";
};
he.prototype.atX0SecondsPastTheMinute = function () {
return "ב %s שניות של הדקה";
};
he.prototype.everyX0Minutes = function () {
return "כל %s דקות";
};
he.prototype.minutesX0ThroughX1PastTheHour = function () {
return "%s עד %s דקות של השעה";
};
he.prototype.atX0MinutesPastTheHour = function () {
return "ב %s דקות של השעה";
};
he.prototype.everyX0Hours = function () {
return "כל %s שעות";
};
he.prototype.betweenX0AndX1 = function () {
return "%s עד %s";
};
he.prototype.atX0 = function () {
return "ב %s";
};
he.prototype.commaEveryDay = function () {
return ", כל יום";
};
he.prototype.commaEveryX0DaysOfTheWeek = function () {
return ", כל %s ימים בשבוע";
};
he.prototype.commaX0ThroughX1 = function () {
return ", %s עד %s";
};
he.prototype.commaAndX0ThroughX1 = function () {
return ", ו %s עד %s";
};
he.prototype.first = function () {
return "ראשון";
};
he.prototype.second = function () {
return "שני";
};
he.prototype.third = function () {
return "שלישי";
};
he.prototype.fourth = function () {
return "רביעי";
};
he.prototype.fifth = function () {
return "חמישי";
};
he.prototype.commaOnThe = function () {
return ", ב ";
};
he.prototype.spaceX0OfTheMonth = function () {
return " %s של החודש";
};
he.prototype.lastDay = function () {
return "היום האחרון";
};
he.prototype.commaOnTheLastX0OfTheMonth = function () {
return ", רק ב %s של החודש";
};
he.prototype.commaOnlyOnX0 = function () {
return ", רק ב %s";
};
he.prototype.commaAndOnX0 = function () {
return ", וב %s";
};
he.prototype.commaEveryX0Months = function () {
return ", כל %s חודשים";
};
he.prototype.commaOnlyInX0 = function () {
return ", רק ב %s";
};
he.prototype.commaOnTheLastDayOfTheMonth = function () {
return ", ביום האחרון של החודש";
};
he.prototype.commaOnTheLastWeekdayOfTheMonth = function () {
return ", ביום החול האחרון של החודש";
};
he.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () {
return ", %s ימים לפני היום האחרון בחודש";
};
he.prototype.firstWeekday = function () {
return "יום החול הראשון";
};
he.prototype.weekdayNearestDayX0 = function () {
return "יום החול הראשון הקרוב אל %s";
};
he.prototype.commaOnTheX0OfTheMonth = function () {
return ", ביום ה%s של החודש";
};
he.prototype.commaEveryX0Days = function () {
return ", כל %s ימים";
};
he.prototype.commaBetweenDayX0AndX1OfTheMonth = function () {
return ", בין היום ה%s וה%s של החודש";
};
he.prototype.commaOnDayX0OfTheMonth = function () {
return ", ביום ה%s של החודש";
};
he.prototype.commaEveryX0Years = function () {
return ", כל %s שנים";
};
he.prototype.commaStartingX0 = function () {
return ", החל מ %s";
};
he.prototype.daysOfTheWeek = function () {
return ["יום ראשון", "יום שני", "יום שלישי", "יום רביעי", "יום חמישי", "יום שישי", "יום שבת"];
};
he.prototype.monthsOfTheYear = function () {
return ["ינואר", "פברואר", "מרץ", "אפריל", "מאי", "יוני", "יולי", "אוגוסט", "ספטמבר", "אוקטובר", "נובמבר", "דצמבר"];
};
he.prototype.onTheHour = function () {
return "בשעה עגולה";
};
return he;
}());
he_exports.he = he;
(cronstrue__WEBPACK_IMPORTED_MODULE_0___default().locales)["he"] = new he();
/******/ return __webpack_exports__;
/******/ })()
;
});
File diff suppressed because one or more lines are too long
+291
View File
@@ -0,0 +1,291 @@
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory(require("cronstrue"));
else if(typeof define === 'function' && define.amd)
define("locales/hr", ["cronstrue"], factory);
else if(typeof exports === 'object')
exports["locales/hr"] = factory(require("cronstrue"));
else
root["locales/hr"] = factory(root["cronstrue"]);
})(globalThis, (__WEBPACK_EXTERNAL_MODULE__93__) => {
return /******/ (() => { // webpackBootstrap
/******/ "use strict";
/******/ var __webpack_modules__ = ({
/***/ 93
(module) {
module.exports = __WEBPACK_EXTERNAL_MODULE__93__;
/***/ }
/******/ });
/************************************************************************/
/******/ // The module cache
/******/ var __webpack_module_cache__ = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/ // Check if module is in cache
/******/ var cachedModule = __webpack_module_cache__[moduleId];
/******/ if (cachedModule !== undefined) {
/******/ return cachedModule.exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = __webpack_module_cache__[moduleId] = {
/******/ // no module.id needed
/******/ // no module.loaded needed
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/************************************************************************/
/******/ /* webpack/runtime/compat get default export */
/******/ (() => {
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = (module) => {
/******/ var getter = module && module.__esModule ?
/******/ () => (module['default']) :
/******/ () => (module);
/******/ __webpack_require__.d(getter, { a: getter });
/******/ return getter;
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/define property getters */
/******/ (() => {
/******/ // define getter functions for harmony exports
/******/ __webpack_require__.d = (exports, definition) => {
/******/ for(var key in definition) {
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
/******/ }
/******/ }
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/hasOwnProperty shorthand */
/******/ (() => {
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
/******/ })();
/******/
/******/ /* webpack/runtime/make namespace object */
/******/ (() => {
/******/ // define __esModule on exports
/******/ __webpack_require__.r = (exports) => {
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ }
/******/ Object.defineProperty(exports, '__esModule', { value: true });
/******/ };
/******/ })();
/******/
/************************************************************************/
var __webpack_exports__ = {};
__webpack_require__.r(__webpack_exports__);
/* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(93);
/* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(cronstrue__WEBPACK_IMPORTED_MODULE_0__);
var hr_exports = __webpack_exports__;
"use strict";
Object.defineProperty(hr_exports, "__esModule", { value: true });
hr_exports.hr = void 0;
var hr = (function () {
function hr() {
}
hr.prototype.use24HourTimeFormatByDefault = function () {
return true;
};
hr.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () {
return "Došlo je do pogreške pri generiranju izraza. Provjerite sintaksu cron izraza.";
};
hr.prototype.at = function () {
return "U";
};
hr.prototype.atSpace = function () {
return "U ";
};
hr.prototype.atX0 = function () {
return "u %s";
};
hr.prototype.atX0MinutesPastTheHour = function () {
return "u %s minuta nakon punog sata";
};
hr.prototype.atX0SecondsPastTheMinute = function () {
return "u %s sekundi nakon pune minute";
};
hr.prototype.betweenX0AndX1 = function () {
return "između %s i %s";
};
hr.prototype.commaBetweenDayX0AndX1OfTheMonth = function () {
return ", između %s. i %s. dana u mjesecu";
};
hr.prototype.commaEveryDay = function () {
return ", svaki dan";
};
hr.prototype.commaEveryX0Days = function () {
return ", svakih %s dana";
};
hr.prototype.commaEveryX0DaysOfTheWeek = function () {
return ", svakih %s dana u tjednu";
};
hr.prototype.commaEveryX0Months = function () {
return ", svakih %s mjeseci";
};
hr.prototype.commaEveryX0Years = function () {
return ", svakih %s godina";
};
hr.prototype.commaOnDayX0OfTheMonth = function () {
return ", %s. dan u mjesecu";
};
hr.prototype.commaOnlyInX0 = function () {
return ", samo u %s";
};
hr.prototype.commaOnlyOnX0 = function () {
return ", samo %s";
};
hr.prototype.commaAndOnX0 = function () {
return ", i %s";
};
hr.prototype.commaOnThe = function () {
return ", ";
};
hr.prototype.commaOnTheLastDayOfTheMonth = function () {
return ", zadnji dan u mjesecu";
};
hr.prototype.commaOnTheLastWeekdayOfTheMonth = function () {
return ", zadnji radni dan u mjesecu";
};
hr.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () {
return ", %s dana prije kraja mjeseca";
};
hr.prototype.commaOnTheLastX0OfTheMonth = function () {
return ", zadnji %s u mjesecu";
};
hr.prototype.commaOnTheX0OfTheMonth = function () {
return ", %s u mjesecu";
};
hr.prototype.commaX0ThroughX1 = function () {
return ", od %s do %s";
};
hr.prototype.commaAndX0ThroughX1 = function () {
return ", i od %s do %s";
};
hr.prototype.everyHour = function () {
return "svaki sat";
};
hr.prototype.everyMinute = function () {
return "svaku minutu";
};
hr.prototype.everyMinuteBetweenX0AndX1 = function () {
return "Svaku minutu između %s i %s";
};
hr.prototype.everySecond = function () {
return "svaku sekundu";
};
hr.prototype.everyX0Hours = function () {
return "svakih %s sati";
};
hr.prototype.everyX0Minutes = function () {
return "svakih %s minuta";
};
hr.prototype.everyX0Seconds = function () {
return "svakih %s sekundi";
};
hr.prototype.fifth = function () {
return "peti";
};
hr.prototype.first = function () {
return "prvi";
};
hr.prototype.firstWeekday = function () {
return "prvi radni dan";
};
hr.prototype.fourth = function () {
return "četvrti";
};
hr.prototype.minutesX0ThroughX1PastTheHour = function () {
return "minute od %s do %s nakon punog sata";
};
hr.prototype.second = function () {
return "drugi";
};
hr.prototype.secondsX0ThroughX1PastTheMinute = function () {
return "sekunde od %s do %s nakon pune minute";
};
hr.prototype.spaceAnd = function () {
return " i";
};
hr.prototype.spaceX0OfTheMonth = function () {
return " %s u mjesecu";
};
hr.prototype.lastDay = function () {
return "zadnji dan";
};
hr.prototype.third = function () {
return "treći";
};
hr.prototype.weekdayNearestDayX0 = function () {
return "radni dan najbliži %s. danu";
};
hr.prototype.commaMonthX0ThroughMonthX1 = function () {
return null;
};
hr.prototype.commaYearX0ThroughYearX1 = function () {
return null;
};
hr.prototype.atX0MinutesPastTheHourGt20 = function () {
return null;
};
hr.prototype.atX0SecondsPastTheMinuteGt20 = function () {
return null;
};
hr.prototype.commaStartingX0 = function () {
return ", počevši od %s";
};
hr.prototype.daysOfTheWeek = function () {
return [
"Nedjelja",
"Ponedjeljak",
"Utorak",
"Srijeda",
"Četvrtak",
"Petak",
"Subota",
];
};
hr.prototype.monthsOfTheYear = function () {
return [
"siječanj",
"veljača",
"ožujak",
"travanj",
"svibanj",
"lipanj",
"srpanj",
"kolovoz",
"rujan",
"listopad",
"studeni",
"prosinac",
];
};
hr.prototype.onTheHour = function () {
return "u puni sat";
};
return hr;
}());
hr_exports.hr = hr;
(cronstrue__WEBPACK_IMPORTED_MODULE_0___default().locales)["hr"] = new hr();
/******/ return __webpack_exports__;
/******/ })()
;
});
+1
View File
@@ -0,0 +1 @@
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(require("cronstrue")):"function"==typeof define&&define.amd?define("locales/hr.min",["cronstrue"],e):"object"==typeof exports?exports["locales/hr.min"]=e(require("cronstrue")):t["locales/hr.min"]=e(t.cronstrue)}(globalThis,(t=>(()=>{"use strict";var e={93(e){e.exports=t}},n={};function o(t){var r=n[t];if(void 0!==r)return r.exports;var u=n[t]={exports:{}};return e[t](u,u.exports,o),u.exports}o.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return o.d(e,{a:e}),e},o.d=(t,e)=>{for(var n in e)o.o(e,n)&&!o.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},o.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),o.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})};var r={};o.r(r);var u=o(93),a=o.n(u),i=r;Object.defineProperty(i,"__esModule",{value:!0}),i.hr=void 0;var p=function(){function t(){}return t.prototype.use24HourTimeFormatByDefault=function(){return!0},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"Došlo je do pogreške pri generiranju izraza. Provjerite sintaksu cron izraza."},t.prototype.at=function(){return"U"},t.prototype.atSpace=function(){return"U "},t.prototype.atX0=function(){return"u %s"},t.prototype.atX0MinutesPastTheHour=function(){return"u %s minuta nakon punog sata"},t.prototype.atX0SecondsPastTheMinute=function(){return"u %s sekundi nakon pune minute"},t.prototype.betweenX0AndX1=function(){return"između %s i %s"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", između %s. i %s. dana u mjesecu"},t.prototype.commaEveryDay=function(){return", svaki dan"},t.prototype.commaEveryX0Days=function(){return", svakih %s dana"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", svakih %s dana u tjednu"},t.prototype.commaEveryX0Months=function(){return", svakih %s mjeseci"},t.prototype.commaEveryX0Years=function(){return", svakih %s godina"},t.prototype.commaOnDayX0OfTheMonth=function(){return", %s. dan u mjesecu"},t.prototype.commaOnlyInX0=function(){return", samo u %s"},t.prototype.commaOnlyOnX0=function(){return", samo %s"},t.prototype.commaAndOnX0=function(){return", i %s"},t.prototype.commaOnThe=function(){return", "},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", zadnji dan u mjesecu"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", zadnji radni dan u mjesecu"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s dana prije kraja mjeseca"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", zadnji %s u mjesecu"},t.prototype.commaOnTheX0OfTheMonth=function(){return", %s u mjesecu"},t.prototype.commaX0ThroughX1=function(){return", od %s do %s"},t.prototype.commaAndX0ThroughX1=function(){return", i od %s do %s"},t.prototype.everyHour=function(){return"svaki sat"},t.prototype.everyMinute=function(){return"svaku minutu"},t.prototype.everyMinuteBetweenX0AndX1=function(){return"Svaku minutu između %s i %s"},t.prototype.everySecond=function(){return"svaku sekundu"},t.prototype.everyX0Hours=function(){return"svakih %s sati"},t.prototype.everyX0Minutes=function(){return"svakih %s minuta"},t.prototype.everyX0Seconds=function(){return"svakih %s sekundi"},t.prototype.fifth=function(){return"peti"},t.prototype.first=function(){return"prvi"},t.prototype.firstWeekday=function(){return"prvi radni dan"},t.prototype.fourth=function(){return"četvrti"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"minute od %s do %s nakon punog sata"},t.prototype.second=function(){return"drugi"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"sekunde od %s do %s nakon pune minute"},t.prototype.spaceAnd=function(){return" i"},t.prototype.spaceX0OfTheMonth=function(){return" %s u mjesecu"},t.prototype.lastDay=function(){return"zadnji dan"},t.prototype.third=function(){return"treći"},t.prototype.weekdayNearestDayX0=function(){return"radni dan najbliži %s. danu"},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.commaStartingX0=function(){return", počevši od %s"},t.prototype.daysOfTheWeek=function(){return["Nedjelja","Ponedjeljak","Utorak","Srijeda","Četvrtak","Petak","Subota"]},t.prototype.monthsOfTheYear=function(){return["siječanj","veljača","ožujak","travanj","svibanj","lipanj","srpanj","kolovoz","rujan","listopad","studeni","prosinac"]},t.prototype.onTheHour=function(){return"u puni sat"},t}();return i.hr=p,a().locales.hr=new p,r})()));
+286
View File
@@ -0,0 +1,286 @@
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory(require("cronstrue"));
else if(typeof define === 'function' && define.amd)
define("locales/hu", ["cronstrue"], factory);
else if(typeof exports === 'object')
exports["locales/hu"] = factory(require("cronstrue"));
else
root["locales/hu"] = factory(root["cronstrue"]);
})(globalThis, (__WEBPACK_EXTERNAL_MODULE__93__) => {
return /******/ (() => { // webpackBootstrap
/******/ "use strict";
/******/ var __webpack_modules__ = ({
/***/ 93
(module) {
module.exports = __WEBPACK_EXTERNAL_MODULE__93__;
/***/ }
/******/ });
/************************************************************************/
/******/ // The module cache
/******/ var __webpack_module_cache__ = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/ // Check if module is in cache
/******/ var cachedModule = __webpack_module_cache__[moduleId];
/******/ if (cachedModule !== undefined) {
/******/ return cachedModule.exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = __webpack_module_cache__[moduleId] = {
/******/ // no module.id needed
/******/ // no module.loaded needed
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/************************************************************************/
/******/ /* webpack/runtime/compat get default export */
/******/ (() => {
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = (module) => {
/******/ var getter = module && module.__esModule ?
/******/ () => (module['default']) :
/******/ () => (module);
/******/ __webpack_require__.d(getter, { a: getter });
/******/ return getter;
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/define property getters */
/******/ (() => {
/******/ // define getter functions for harmony exports
/******/ __webpack_require__.d = (exports, definition) => {
/******/ for(var key in definition) {
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
/******/ }
/******/ }
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/hasOwnProperty shorthand */
/******/ (() => {
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
/******/ })();
/******/
/******/ /* webpack/runtime/make namespace object */
/******/ (() => {
/******/ // define __esModule on exports
/******/ __webpack_require__.r = (exports) => {
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ }
/******/ Object.defineProperty(exports, '__esModule', { value: true });
/******/ };
/******/ })();
/******/
/************************************************************************/
var __webpack_exports__ = {};
__webpack_require__.r(__webpack_exports__);
/* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(93);
/* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(cronstrue__WEBPACK_IMPORTED_MODULE_0__);
var hu_exports = __webpack_exports__;
"use strict";
Object.defineProperty(hu_exports, "__esModule", { value: true });
hu_exports.hu = void 0;
var hu = (function () {
function hu() {
}
hu.prototype.atX0SecondsPastTheMinuteGt20 = function () {
return null;
};
hu.prototype.atX0MinutesPastTheHourGt20 = function () {
return null;
};
hu.prototype.commaMonthX0ThroughMonthX1 = function () {
return null;
};
hu.prototype.commaYearX0ThroughYearX1 = function () {
return null;
};
hu.prototype.use24HourTimeFormatByDefault = function () {
return true;
};
hu.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () {
return "Hiba történt a kifejezésleírás generálásakor. Ellenőrizze a cron kifejezés szintaxisát.";
};
hu.prototype.everyMinute = function () {
return "minden percben";
};
hu.prototype.everyHour = function () {
return "minden órában";
};
hu.prototype.atSpace = function () {
return "Ekkor: ";
};
hu.prototype.everyMinuteBetweenX0AndX1 = function () {
return "percenként %s és %s között";
};
hu.prototype.at = function () {
return "Ekkor:";
};
hu.prototype.spaceAnd = function () {
return " és";
};
hu.prototype.everySecond = function () {
return "minden másodpercben";
};
hu.prototype.everyX0Seconds = function () {
return "%s másodpercenként";
};
hu.prototype.secondsX0ThroughX1PastTheMinute = function () {
return "%s. másodpercben %s perc után";
};
hu.prototype.atX0SecondsPastTheMinute = function () {
return "%s. másodpercben";
};
hu.prototype.everyX0Minutes = function () {
return "minden %s. percben";
};
hu.prototype.minutesX0ThroughX1PastTheHour = function () {
return "%s. percben %s óra után";
};
hu.prototype.atX0MinutesPastTheHour = function () {
return "%s. percben";
};
hu.prototype.everyX0Hours = function () {
return "minden %s órában";
};
hu.prototype.betweenX0AndX1 = function () {
return "%s és %s között";
};
hu.prototype.atX0 = function () {
return "ekkor %s";
};
hu.prototype.commaEveryDay = function () {
return ", minden nap";
};
hu.prototype.commaEveryX0DaysOfTheWeek = function () {
return ", a hét minden %s napján";
};
hu.prototype.commaX0ThroughX1 = function () {
return ", %s - %s";
};
hu.prototype.commaAndX0ThroughX1 = function () {
return ", és %s - %s";
};
hu.prototype.first = function () {
return "első";
};
hu.prototype.second = function () {
return "második";
};
hu.prototype.third = function () {
return "harmadik";
};
hu.prototype.fourth = function () {
return "negyedik";
};
hu.prototype.fifth = function () {
return "ötödik";
};
hu.prototype.commaOnThe = function () {
return ", ";
};
hu.prototype.spaceX0OfTheMonth = function () {
return " %s a hónapban";
};
hu.prototype.lastDay = function () {
return "az utolsó nap";
};
hu.prototype.commaOnTheLastX0OfTheMonth = function () {
return ", a hónap utolsó %s";
};
hu.prototype.commaOnlyOnX0 = function () {
return ", csak ekkor: %s";
};
hu.prototype.commaAndOnX0 = function () {
return ", és %s";
};
hu.prototype.commaEveryX0Months = function () {
return ", minden %s hónapban";
};
hu.prototype.commaOnlyInX0 = function () {
return ", csak ekkor: %s";
};
hu.prototype.commaOnTheLastDayOfTheMonth = function () {
return ", a hónap utolsó napján";
};
hu.prototype.commaOnTheLastWeekdayOfTheMonth = function () {
return ", a hónap utolsó hétköznapján";
};
hu.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () {
return ", %s nappal a hónap utolsó napja előtt";
};
hu.prototype.firstWeekday = function () {
return "első hétköznap";
};
hu.prototype.weekdayNearestDayX0 = function () {
return "hétköznap legközelebbi nap %s";
};
hu.prototype.commaOnTheX0OfTheMonth = function () {
return ", a hónap %s";
};
hu.prototype.commaEveryX0Days = function () {
return ", %s naponként";
};
hu.prototype.commaBetweenDayX0AndX1OfTheMonth = function () {
return ", a hónap %s és %s napja között";
};
hu.prototype.commaOnDayX0OfTheMonth = function () {
return ", a hónap %s napján";
};
hu.prototype.commaEveryHour = function () {
return ", minden órában";
};
hu.prototype.commaEveryX0Years = function () {
return ", %s évente";
};
hu.prototype.commaStartingX0 = function () {
return ", %s kezdettel";
};
hu.prototype.daysOfTheWeek = function () {
return ["vasárnap", "hétfő", "kedd", "szerda", "csütörtök", "péntek", "szombat"];
};
hu.prototype.monthsOfTheYear = function () {
return [
"január",
"február",
"március",
"április",
"május",
"június",
"július",
"augusztus",
"szeptember",
"október",
"november",
"december",
];
};
hu.prototype.onTheHour = function () {
return "órakor";
};
return hu;
}());
hu_exports.hu = hu;
(cronstrue__WEBPACK_IMPORTED_MODULE_0___default().locales)["hu"] = new hu();
/******/ return __webpack_exports__;
/******/ })()
;
});
+1
View File
@@ -0,0 +1 @@
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(require("cronstrue")):"function"==typeof define&&define.amd?define("locales/hu.min",["cronstrue"],e):"object"==typeof exports?exports["locales/hu.min"]=e(require("cronstrue")):t["locales/hu.min"]=e(t.cronstrue)}(globalThis,(t=>(()=>{"use strict";var e={93(e){e.exports=t}},n={};function r(t){var o=n[t];if(void 0!==o)return o.exports;var u=n[t]={exports:{}};return e[t](u,u.exports,r),u.exports}r.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return r.d(e,{a:e}),e},r.d=(t,e)=>{for(var n in e)r.o(e,n)&&!r.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},r.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),r.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})};var o={};r.r(o);var u=r(93),p=r.n(u),a=o;Object.defineProperty(a,"__esModule",{value:!0}),a.hu=void 0;var s=function(){function t(){}return t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return null},t.prototype.use24HourTimeFormatByDefault=function(){return!0},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"Hiba történt a kifejezésleírás generálásakor. Ellenőrizze a cron kifejezés szintaxisát."},t.prototype.everyMinute=function(){return"minden percben"},t.prototype.everyHour=function(){return"minden órában"},t.prototype.atSpace=function(){return"Ekkor: "},t.prototype.everyMinuteBetweenX0AndX1=function(){return"percenként %s és %s között"},t.prototype.at=function(){return"Ekkor:"},t.prototype.spaceAnd=function(){return" és"},t.prototype.everySecond=function(){return"minden másodpercben"},t.prototype.everyX0Seconds=function(){return"%s másodpercenként"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"%s. másodpercben %s perc után"},t.prototype.atX0SecondsPastTheMinute=function(){return"%s. másodpercben"},t.prototype.everyX0Minutes=function(){return"minden %s. percben"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"%s. percben %s óra után"},t.prototype.atX0MinutesPastTheHour=function(){return"%s. percben"},t.prototype.everyX0Hours=function(){return"minden %s órában"},t.prototype.betweenX0AndX1=function(){return"%s és %s között"},t.prototype.atX0=function(){return"ekkor %s"},t.prototype.commaEveryDay=function(){return", minden nap"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", a hét minden %s napján"},t.prototype.commaX0ThroughX1=function(){return", %s - %s"},t.prototype.commaAndX0ThroughX1=function(){return", és %s - %s"},t.prototype.first=function(){return"első"},t.prototype.second=function(){return"második"},t.prototype.third=function(){return"harmadik"},t.prototype.fourth=function(){return"negyedik"},t.prototype.fifth=function(){return"ötödik"},t.prototype.commaOnThe=function(){return", "},t.prototype.spaceX0OfTheMonth=function(){return" %s a hónapban"},t.prototype.lastDay=function(){return"az utolsó nap"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", a hónap utolsó %s"},t.prototype.commaOnlyOnX0=function(){return", csak ekkor: %s"},t.prototype.commaAndOnX0=function(){return", és %s"},t.prototype.commaEveryX0Months=function(){return", minden %s hónapban"},t.prototype.commaOnlyInX0=function(){return", csak ekkor: %s"},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", a hónap utolsó napján"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", a hónap utolsó hétköznapján"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s nappal a hónap utolsó napja előtt"},t.prototype.firstWeekday=function(){return"első hétköznap"},t.prototype.weekdayNearestDayX0=function(){return"hétköznap legközelebbi nap %s"},t.prototype.commaOnTheX0OfTheMonth=function(){return", a hónap %s"},t.prototype.commaEveryX0Days=function(){return", %s naponként"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", a hónap %s és %s napja között"},t.prototype.commaOnDayX0OfTheMonth=function(){return", a hónap %s napján"},t.prototype.commaEveryHour=function(){return", minden órában"},t.prototype.commaEveryX0Years=function(){return", %s évente"},t.prototype.commaStartingX0=function(){return", %s kezdettel"},t.prototype.daysOfTheWeek=function(){return["vasárnap","hétfő","kedd","szerda","csütörtök","péntek","szombat"]},t.prototype.monthsOfTheYear=function(){return["január","február","március","április","május","június","július","augusztus","szeptember","október","november","december"]},t.prototype.onTheHour=function(){return"órakor"},t}();return a.hu=s,p().locales.hu=new s,o})()));
+286
View File
@@ -0,0 +1,286 @@
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory(require("cronstrue"));
else if(typeof define === 'function' && define.amd)
define("locales/id", ["cronstrue"], factory);
else if(typeof exports === 'object')
exports["locales/id"] = factory(require("cronstrue"));
else
root["locales/id"] = factory(root["cronstrue"]);
})(globalThis, (__WEBPACK_EXTERNAL_MODULE__93__) => {
return /******/ (() => { // webpackBootstrap
/******/ "use strict";
/******/ var __webpack_modules__ = ({
/***/ 93
(module) {
module.exports = __WEBPACK_EXTERNAL_MODULE__93__;
/***/ }
/******/ });
/************************************************************************/
/******/ // The module cache
/******/ var __webpack_module_cache__ = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/ // Check if module is in cache
/******/ var cachedModule = __webpack_module_cache__[moduleId];
/******/ if (cachedModule !== undefined) {
/******/ return cachedModule.exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = __webpack_module_cache__[moduleId] = {
/******/ // no module.id needed
/******/ // no module.loaded needed
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/************************************************************************/
/******/ /* webpack/runtime/compat get default export */
/******/ (() => {
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = (module) => {
/******/ var getter = module && module.__esModule ?
/******/ () => (module['default']) :
/******/ () => (module);
/******/ __webpack_require__.d(getter, { a: getter });
/******/ return getter;
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/define property getters */
/******/ (() => {
/******/ // define getter functions for harmony exports
/******/ __webpack_require__.d = (exports, definition) => {
/******/ for(var key in definition) {
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
/******/ }
/******/ }
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/hasOwnProperty shorthand */
/******/ (() => {
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
/******/ })();
/******/
/******/ /* webpack/runtime/make namespace object */
/******/ (() => {
/******/ // define __esModule on exports
/******/ __webpack_require__.r = (exports) => {
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ }
/******/ Object.defineProperty(exports, '__esModule', { value: true });
/******/ };
/******/ })();
/******/
/************************************************************************/
var __webpack_exports__ = {};
__webpack_require__.r(__webpack_exports__);
/* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(93);
/* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(cronstrue__WEBPACK_IMPORTED_MODULE_0__);
var id_exports = __webpack_exports__;
"use strict";
Object.defineProperty(id_exports, "__esModule", { value: true });
id_exports.id = void 0;
var id = (function () {
function id() {
}
id.prototype.atX0SecondsPastTheMinuteGt20 = function () {
return null;
};
id.prototype.atX0MinutesPastTheHourGt20 = function () {
return null;
};
id.prototype.commaMonthX0ThroughMonthX1 = function () {
return null;
};
id.prototype.commaYearX0ThroughYearX1 = function () {
return null;
};
id.prototype.use24HourTimeFormatByDefault = function () {
return true;
};
id.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () {
return "Terjadi kesalahan saat membuat deskripsi ekspresi. Periksa sintaks ekspresi cron.";
};
id.prototype.everyMinute = function () {
return "setiap menit";
};
id.prototype.everyHour = function () {
return "setiap jam";
};
id.prototype.atSpace = function () {
return "Pada ";
};
id.prototype.everyMinuteBetweenX0AndX1 = function () {
return "Setiap menit diantara %s dan %s";
};
id.prototype.at = function () {
return "Pada";
};
id.prototype.spaceAnd = function () {
return " dan";
};
id.prototype.everySecond = function () {
return "setiap detik";
};
id.prototype.everyX0Seconds = function () {
return "setiap %s detik";
};
id.prototype.secondsX0ThroughX1PastTheMinute = function () {
return "detik ke %s sampai %s melewati menit";
};
id.prototype.atX0SecondsPastTheMinute = function () {
return "pada %s detik lewat satu menit";
};
id.prototype.everyX0Minutes = function () {
return "setiap %s menit";
};
id.prototype.minutesX0ThroughX1PastTheHour = function () {
return "menit ke %s sampai %s melewati jam";
};
id.prototype.atX0MinutesPastTheHour = function () {
return "pada %s menit melewati jam";
};
id.prototype.everyX0Hours = function () {
return "setiap %s jam";
};
id.prototype.betweenX0AndX1 = function () {
return "diantara %s dan %s";
};
id.prototype.atX0 = function () {
return "pada %s";
};
id.prototype.commaEveryDay = function () {
return ", setiap hari";
};
id.prototype.commaEveryX0DaysOfTheWeek = function () {
return ", setiap hari %s dalam seminggu";
};
id.prototype.commaX0ThroughX1 = function () {
return ", %s sampai %s";
};
id.prototype.commaAndX0ThroughX1 = function () {
return ", dan %s sampai %s";
};
id.prototype.first = function () {
return "pertama";
};
id.prototype.second = function () {
return "kedua";
};
id.prototype.third = function () {
return "ketiga";
};
id.prototype.fourth = function () {
return "keempat";
};
id.prototype.fifth = function () {
return "kelima";
};
id.prototype.commaOnThe = function () {
return ", di ";
};
id.prototype.spaceX0OfTheMonth = function () {
return " %s pada bulan";
};
id.prototype.lastDay = function () {
return "hari terakhir";
};
id.prototype.commaOnTheLastX0OfTheMonth = function () {
return ", pada %s terakhir bulan ini";
};
id.prototype.commaOnlyOnX0 = function () {
return ", hanya pada %s";
};
id.prototype.commaAndOnX0 = function () {
return ", dan pada %s";
};
id.prototype.commaEveryX0Months = function () {
return ", setiap bulan %s ";
};
id.prototype.commaOnlyInX0 = function () {
return ", hanya pada %s";
};
id.prototype.commaOnTheLastDayOfTheMonth = function () {
return ", pada hari terakhir bulan ini";
};
id.prototype.commaOnTheLastWeekdayOfTheMonth = function () {
return ", pada hari kerja terakhir setiap bulan";
};
id.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () {
return ", %s hari sebelum hari terakhir setiap bulan";
};
id.prototype.firstWeekday = function () {
return "hari kerja pertama";
};
id.prototype.weekdayNearestDayX0 = function () {
return "hari kerja terdekat %s";
};
id.prototype.commaOnTheX0OfTheMonth = function () {
return ", pada %s bulan ini";
};
id.prototype.commaEveryX0Days = function () {
return ", setiap %s hari";
};
id.prototype.commaBetweenDayX0AndX1OfTheMonth = function () {
return ", antara hari %s dan %s dalam sebulan";
};
id.prototype.commaOnDayX0OfTheMonth = function () {
return ", pada hari %s dalam sebulan";
};
id.prototype.commaEveryHour = function () {
return ", setiap jam";
};
id.prototype.commaEveryX0Years = function () {
return ", setiap %s tahun";
};
id.prototype.commaStartingX0 = function () {
return ", mulai pada %s";
};
id.prototype.daysOfTheWeek = function () {
return ["Minggu", "Senin", "Selasa", "Rabu", "Kamis", "Jumat", "Sabtu"];
};
id.prototype.monthsOfTheYear = function () {
return [
"Januari",
"Februari",
"Maret",
"April",
"Mei",
"Juni",
"Juli",
"Agustus",
"September",
"Oktober",
"November",
"Desember",
];
};
id.prototype.onTheHour = function () {
return "tepat pada jam";
};
return id;
}());
id_exports.id = id;
(cronstrue__WEBPACK_IMPORTED_MODULE_0___default().locales)["id"] = new id();
/******/ return __webpack_exports__;
/******/ })()
;
});
+1
View File
@@ -0,0 +1 @@
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(require("cronstrue")):"function"==typeof define&&define.amd?define("locales/id.min",["cronstrue"],e):"object"==typeof exports?exports["locales/id.min"]=e(require("cronstrue")):t["locales/id.min"]=e(t.cronstrue)}(globalThis,(t=>(()=>{"use strict";var e={93(e){e.exports=t}},r={};function n(t){var o=r[t];if(void 0!==o)return o.exports;var a=r[t]={exports:{}};return e[t](a,a.exports,n),a.exports}n.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return n.d(e,{a:e}),e},n.d=(t,e)=>{for(var r in e)n.o(e,r)&&!n.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:e[r]})},n.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),n.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})};var o={};n.r(o);var a=n(93),u=n.n(a),i=o;Object.defineProperty(i,"__esModule",{value:!0}),i.id=void 0;var p=function(){function t(){}return t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return null},t.prototype.use24HourTimeFormatByDefault=function(){return!0},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"Terjadi kesalahan saat membuat deskripsi ekspresi. Periksa sintaks ekspresi cron."},t.prototype.everyMinute=function(){return"setiap menit"},t.prototype.everyHour=function(){return"setiap jam"},t.prototype.atSpace=function(){return"Pada "},t.prototype.everyMinuteBetweenX0AndX1=function(){return"Setiap menit diantara %s dan %s"},t.prototype.at=function(){return"Pada"},t.prototype.spaceAnd=function(){return" dan"},t.prototype.everySecond=function(){return"setiap detik"},t.prototype.everyX0Seconds=function(){return"setiap %s detik"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"detik ke %s sampai %s melewati menit"},t.prototype.atX0SecondsPastTheMinute=function(){return"pada %s detik lewat satu menit"},t.prototype.everyX0Minutes=function(){return"setiap %s menit"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"menit ke %s sampai %s melewati jam"},t.prototype.atX0MinutesPastTheHour=function(){return"pada %s menit melewati jam"},t.prototype.everyX0Hours=function(){return"setiap %s jam"},t.prototype.betweenX0AndX1=function(){return"diantara %s dan %s"},t.prototype.atX0=function(){return"pada %s"},t.prototype.commaEveryDay=function(){return", setiap hari"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", setiap hari %s dalam seminggu"},t.prototype.commaX0ThroughX1=function(){return", %s sampai %s"},t.prototype.commaAndX0ThroughX1=function(){return", dan %s sampai %s"},t.prototype.first=function(){return"pertama"},t.prototype.second=function(){return"kedua"},t.prototype.third=function(){return"ketiga"},t.prototype.fourth=function(){return"keempat"},t.prototype.fifth=function(){return"kelima"},t.prototype.commaOnThe=function(){return", di "},t.prototype.spaceX0OfTheMonth=function(){return" %s pada bulan"},t.prototype.lastDay=function(){return"hari terakhir"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", pada %s terakhir bulan ini"},t.prototype.commaOnlyOnX0=function(){return", hanya pada %s"},t.prototype.commaAndOnX0=function(){return", dan pada %s"},t.prototype.commaEveryX0Months=function(){return", setiap bulan %s "},t.prototype.commaOnlyInX0=function(){return", hanya pada %s"},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", pada hari terakhir bulan ini"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", pada hari kerja terakhir setiap bulan"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s hari sebelum hari terakhir setiap bulan"},t.prototype.firstWeekday=function(){return"hari kerja pertama"},t.prototype.weekdayNearestDayX0=function(){return"hari kerja terdekat %s"},t.prototype.commaOnTheX0OfTheMonth=function(){return", pada %s bulan ini"},t.prototype.commaEveryX0Days=function(){return", setiap %s hari"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", antara hari %s dan %s dalam sebulan"},t.prototype.commaOnDayX0OfTheMonth=function(){return", pada hari %s dalam sebulan"},t.prototype.commaEveryHour=function(){return", setiap jam"},t.prototype.commaEveryX0Years=function(){return", setiap %s tahun"},t.prototype.commaStartingX0=function(){return", mulai pada %s"},t.prototype.daysOfTheWeek=function(){return["Minggu","Senin","Selasa","Rabu","Kamis","Jumat","Sabtu"]},t.prototype.monthsOfTheYear=function(){return["Januari","Februari","Maret","April","Mei","Juni","Juli","Agustus","September","Oktober","November","Desember"]},t.prototype.onTheHour=function(){return"tepat pada jam"},t}();return i.id=p,u().locales.id=new p,o})()));
+283
View File
@@ -0,0 +1,283 @@
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory(require("cronstrue"));
else if(typeof define === 'function' && define.amd)
define("locales/it", ["cronstrue"], factory);
else if(typeof exports === 'object')
exports["locales/it"] = factory(require("cronstrue"));
else
root["locales/it"] = factory(root["cronstrue"]);
})(globalThis, (__WEBPACK_EXTERNAL_MODULE__93__) => {
return /******/ (() => { // webpackBootstrap
/******/ "use strict";
/******/ var __webpack_modules__ = ({
/***/ 93
(module) {
module.exports = __WEBPACK_EXTERNAL_MODULE__93__;
/***/ }
/******/ });
/************************************************************************/
/******/ // The module cache
/******/ var __webpack_module_cache__ = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/ // Check if module is in cache
/******/ var cachedModule = __webpack_module_cache__[moduleId];
/******/ if (cachedModule !== undefined) {
/******/ return cachedModule.exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = __webpack_module_cache__[moduleId] = {
/******/ // no module.id needed
/******/ // no module.loaded needed
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/************************************************************************/
/******/ /* webpack/runtime/compat get default export */
/******/ (() => {
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = (module) => {
/******/ var getter = module && module.__esModule ?
/******/ () => (module['default']) :
/******/ () => (module);
/******/ __webpack_require__.d(getter, { a: getter });
/******/ return getter;
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/define property getters */
/******/ (() => {
/******/ // define getter functions for harmony exports
/******/ __webpack_require__.d = (exports, definition) => {
/******/ for(var key in definition) {
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
/******/ }
/******/ }
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/hasOwnProperty shorthand */
/******/ (() => {
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
/******/ })();
/******/
/******/ /* webpack/runtime/make namespace object */
/******/ (() => {
/******/ // define __esModule on exports
/******/ __webpack_require__.r = (exports) => {
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ }
/******/ Object.defineProperty(exports, '__esModule', { value: true });
/******/ };
/******/ })();
/******/
/************************************************************************/
var __webpack_exports__ = {};
__webpack_require__.r(__webpack_exports__);
/* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(93);
/* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(cronstrue__WEBPACK_IMPORTED_MODULE_0__);
var it_exports = __webpack_exports__;
"use strict";
Object.defineProperty(it_exports, "__esModule", { value: true });
it_exports.it = void 0;
var it = (function () {
function it() {
}
it.prototype.atX0SecondsPastTheMinuteGt20 = function () {
return null;
};
it.prototype.atX0MinutesPastTheHourGt20 = function () {
return null;
};
it.prototype.commaMonthX0ThroughMonthX1 = function () {
return null;
};
it.prototype.commaYearX0ThroughYearX1 = function () {
return null;
};
it.prototype.use24HourTimeFormatByDefault = function () {
return true;
};
it.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () {
return "È verificato un errore durante la generazione la descrizione espressione. Controllare la sintassi delle espressioni cron.";
};
it.prototype.at = function () {
return "Alle";
};
it.prototype.atSpace = function () {
return "Alle ";
};
it.prototype.atX0 = function () {
return "alle %s";
};
it.prototype.atX0MinutesPastTheHour = function () {
return "al %s minuto passata l'ora";
};
it.prototype.atX0SecondsPastTheMinute = function () {
return "al %s secondo passato il minuto";
};
it.prototype.betweenX0AndX1 = function () {
return "tra le %s e le %s";
};
it.prototype.commaBetweenDayX0AndX1OfTheMonth = function () {
return ", tra il giorno %s e %s del mese";
};
it.prototype.commaEveryDay = function () {
return ", ogni giorno";
};
it.prototype.commaEveryX0Days = function () {
return ", ogni %s giorni";
};
it.prototype.commaEveryX0DaysOfTheWeek = function () {
return ", ogni %s giorni della settimana";
};
it.prototype.commaEveryX0Months = function () {
return ", ogni %s mesi";
};
it.prototype.commaEveryX0Years = function () {
return ", ogni %s anni";
};
it.prototype.commaOnDayX0OfTheMonth = function () {
return ", il giorno %s del mese";
};
it.prototype.commaOnlyInX0 = function () {
return ", solo in %s";
};
it.prototype.commaOnlyOnX0 = function () {
return ", solo il %s";
};
it.prototype.commaAndOnX0 = function () {
return ", e il %s";
};
it.prototype.commaOnThe = function () {
return ", il ";
};
it.prototype.commaOnTheLastDayOfTheMonth = function () {
return ", l'ultimo giorno del mese";
};
it.prototype.commaOnTheLastWeekdayOfTheMonth = function () {
return ", nell'ultima settimana del mese";
};
it.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () {
return ", %s giorni prima dell'ultimo giorno del mese";
};
it.prototype.commaOnTheLastX0OfTheMonth = function () {
return ", l'ultimo %s del mese";
};
it.prototype.commaOnTheX0OfTheMonth = function () {
return ", il %s del mese";
};
it.prototype.commaX0ThroughX1 = function () {
return ", %s al %s";
};
it.prototype.commaAndX0ThroughX1 = function () {
return ", e %s al %s";
};
it.prototype.everyHour = function () {
return "ogni ora";
};
it.prototype.everyMinute = function () {
return "ogni minuto";
};
it.prototype.everyMinuteBetweenX0AndX1 = function () {
return "Ogni minuto tra le %s e le %s";
};
it.prototype.everySecond = function () {
return "ogni secondo";
};
it.prototype.everyX0Hours = function () {
return "ogni %s ore";
};
it.prototype.everyX0Minutes = function () {
return "ogni %s minuti";
};
it.prototype.everyX0Seconds = function () {
return "ogni %s secondi";
};
it.prototype.fifth = function () {
return "quinto";
};
it.prototype.first = function () {
return "primo";
};
it.prototype.firstWeekday = function () {
return "primo giorno della settimana";
};
it.prototype.fourth = function () {
return "quarto";
};
it.prototype.minutesX0ThroughX1PastTheHour = function () {
return "minuti %s al %s dopo l'ora";
};
it.prototype.second = function () {
return "secondo";
};
it.prototype.secondsX0ThroughX1PastTheMinute = function () {
return "secondi %s al %s oltre il minuto";
};
it.prototype.spaceAnd = function () {
return " e";
};
it.prototype.spaceX0OfTheMonth = function () {
return " %s del mese";
};
it.prototype.lastDay = function () {
return "l'ultimo giorno";
};
it.prototype.third = function () {
return "terzo";
};
it.prototype.weekdayNearestDayX0 = function () {
return "giorno della settimana più vicino al %s";
};
it.prototype.commaStartingX0 = function () {
return ", a partire %s";
};
it.prototype.daysOfTheWeek = function () {
return ["domenica", "lunedì", "martedì", "mercoledì", "giovedì", "venerdì", "sabato"];
};
it.prototype.monthsOfTheYear = function () {
return [
"gennaio",
"febbraio",
"marzo",
"aprile",
"maggio",
"giugno",
"luglio",
"agosto",
"settembre",
"ottobre",
"novembre",
"dicembre",
];
};
it.prototype.onTheHour = function () {
return "all'ora esatta";
};
return it;
}());
it_exports.it = it;
(cronstrue__WEBPACK_IMPORTED_MODULE_0___default().locales)["it"] = new it();
/******/ return __webpack_exports__;
/******/ })()
;
});
+1
View File
@@ -0,0 +1 @@
!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("cronstrue")):"function"==typeof define&&define.amd?define("locales/it.min",["cronstrue"],t):"object"==typeof exports?exports["locales/it.min"]=t(require("cronstrue")):e["locales/it.min"]=t(e.cronstrue)}(globalThis,(e=>(()=>{"use strict";var t={93(t){t.exports=e}},o={};function n(e){var r=o[e];if(void 0!==r)return r.exports;var i=o[e]={exports:{}};return t[e](i,i.exports,n),i.exports}n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var o in t)n.o(t,o)&&!n.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var r={};n.r(r);var i=n(93),u=n.n(i),a=r;Object.defineProperty(a,"__esModule",{value:!0}),a.it=void 0;var p=function(){function e(){}return e.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},e.prototype.atX0MinutesPastTheHourGt20=function(){return null},e.prototype.commaMonthX0ThroughMonthX1=function(){return null},e.prototype.commaYearX0ThroughYearX1=function(){return null},e.prototype.use24HourTimeFormatByDefault=function(){return!0},e.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"È verificato un errore durante la generazione la descrizione espressione. Controllare la sintassi delle espressioni cron."},e.prototype.at=function(){return"Alle"},e.prototype.atSpace=function(){return"Alle "},e.prototype.atX0=function(){return"alle %s"},e.prototype.atX0MinutesPastTheHour=function(){return"al %s minuto passata l'ora"},e.prototype.atX0SecondsPastTheMinute=function(){return"al %s secondo passato il minuto"},e.prototype.betweenX0AndX1=function(){return"tra le %s e le %s"},e.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", tra il giorno %s e %s del mese"},e.prototype.commaEveryDay=function(){return", ogni giorno"},e.prototype.commaEveryX0Days=function(){return", ogni %s giorni"},e.prototype.commaEveryX0DaysOfTheWeek=function(){return", ogni %s giorni della settimana"},e.prototype.commaEveryX0Months=function(){return", ogni %s mesi"},e.prototype.commaEveryX0Years=function(){return", ogni %s anni"},e.prototype.commaOnDayX0OfTheMonth=function(){return", il giorno %s del mese"},e.prototype.commaOnlyInX0=function(){return", solo in %s"},e.prototype.commaOnlyOnX0=function(){return", solo il %s"},e.prototype.commaAndOnX0=function(){return", e il %s"},e.prototype.commaOnThe=function(){return", il "},e.prototype.commaOnTheLastDayOfTheMonth=function(){return", l'ultimo giorno del mese"},e.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", nell'ultima settimana del mese"},e.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s giorni prima dell'ultimo giorno del mese"},e.prototype.commaOnTheLastX0OfTheMonth=function(){return", l'ultimo %s del mese"},e.prototype.commaOnTheX0OfTheMonth=function(){return", il %s del mese"},e.prototype.commaX0ThroughX1=function(){return", %s al %s"},e.prototype.commaAndX0ThroughX1=function(){return", e %s al %s"},e.prototype.everyHour=function(){return"ogni ora"},e.prototype.everyMinute=function(){return"ogni minuto"},e.prototype.everyMinuteBetweenX0AndX1=function(){return"Ogni minuto tra le %s e le %s"},e.prototype.everySecond=function(){return"ogni secondo"},e.prototype.everyX0Hours=function(){return"ogni %s ore"},e.prototype.everyX0Minutes=function(){return"ogni %s minuti"},e.prototype.everyX0Seconds=function(){return"ogni %s secondi"},e.prototype.fifth=function(){return"quinto"},e.prototype.first=function(){return"primo"},e.prototype.firstWeekday=function(){return"primo giorno della settimana"},e.prototype.fourth=function(){return"quarto"},e.prototype.minutesX0ThroughX1PastTheHour=function(){return"minuti %s al %s dopo l'ora"},e.prototype.second=function(){return"secondo"},e.prototype.secondsX0ThroughX1PastTheMinute=function(){return"secondi %s al %s oltre il minuto"},e.prototype.spaceAnd=function(){return" e"},e.prototype.spaceX0OfTheMonth=function(){return" %s del mese"},e.prototype.lastDay=function(){return"l'ultimo giorno"},e.prototype.third=function(){return"terzo"},e.prototype.weekdayNearestDayX0=function(){return"giorno della settimana più vicino al %s"},e.prototype.commaStartingX0=function(){return", a partire %s"},e.prototype.daysOfTheWeek=function(){return["domenica","lunedì","martedì","mercoledì","giovedì","venerdì","sabato"]},e.prototype.monthsOfTheYear=function(){return["gennaio","febbraio","marzo","aprile","maggio","giugno","luglio","agosto","settembre","ottobre","novembre","dicembre"]},e.prototype.onTheHour=function(){return"all'ora esatta"},e}();return a.it=p,u().locales.it=new p,r})()));
+285
View File
@@ -0,0 +1,285 @@
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory(require("cronstrue"));
else if(typeof define === 'function' && define.amd)
define("locales/ja", ["cronstrue"], factory);
else if(typeof exports === 'object')
exports["locales/ja"] = factory(require("cronstrue"));
else
root["locales/ja"] = factory(root["cronstrue"]);
})(globalThis, (__WEBPACK_EXTERNAL_MODULE__93__) => {
return /******/ (() => { // webpackBootstrap
/******/ "use strict";
/******/ var __webpack_modules__ = ({
/***/ 93
(module) {
module.exports = __WEBPACK_EXTERNAL_MODULE__93__;
/***/ }
/******/ });
/************************************************************************/
/******/ // The module cache
/******/ var __webpack_module_cache__ = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/ // Check if module is in cache
/******/ var cachedModule = __webpack_module_cache__[moduleId];
/******/ if (cachedModule !== undefined) {
/******/ return cachedModule.exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = __webpack_module_cache__[moduleId] = {
/******/ // no module.id needed
/******/ // no module.loaded needed
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/************************************************************************/
/******/ /* webpack/runtime/compat get default export */
/******/ (() => {
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = (module) => {
/******/ var getter = module && module.__esModule ?
/******/ () => (module['default']) :
/******/ () => (module);
/******/ __webpack_require__.d(getter, { a: getter });
/******/ return getter;
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/define property getters */
/******/ (() => {
/******/ // define getter functions for harmony exports
/******/ __webpack_require__.d = (exports, definition) => {
/******/ for(var key in definition) {
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
/******/ }
/******/ }
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/hasOwnProperty shorthand */
/******/ (() => {
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
/******/ })();
/******/
/******/ /* webpack/runtime/make namespace object */
/******/ (() => {
/******/ // define __esModule on exports
/******/ __webpack_require__.r = (exports) => {
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ }
/******/ Object.defineProperty(exports, '__esModule', { value: true });
/******/ };
/******/ })();
/******/
/************************************************************************/
var __webpack_exports__ = {};
__webpack_require__.r(__webpack_exports__);
/* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(93);
/* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(cronstrue__WEBPACK_IMPORTED_MODULE_0__);
var ja_exports = __webpack_exports__;
"use strict";
Object.defineProperty(ja_exports, "__esModule", { value: true });
ja_exports.ja = void 0;
var ja = (function () {
function ja() {
}
ja.prototype.use24HourTimeFormatByDefault = function () {
return true;
};
ja.prototype.everyMinute = function () {
return "毎分";
};
ja.prototype.everyHour = function () {
return "毎時";
};
ja.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () {
return "式の記述を生成する際にエラーが発生しました。Cron 式の構文を確認してください。";
};
ja.prototype.atSpace = function () {
return "次において実施";
};
ja.prototype.everyMinuteBetweenX0AndX1 = function () {
return "%s から %s まで毎分";
};
ja.prototype.at = function () {
return "次において実施";
};
ja.prototype.spaceAnd = function () {
return "と";
};
ja.prototype.everySecond = function () {
return "毎秒";
};
ja.prototype.everyX0Seconds = function () {
return "%s 秒ごと";
};
ja.prototype.secondsX0ThroughX1PastTheMinute = function () {
return "毎分 %s 秒から %s 秒まで";
};
ja.prototype.atX0SecondsPastTheMinute = function () {
return "毎分 %s 秒過ぎ";
};
ja.prototype.everyX0Minutes = function () {
return "%s 分ごと";
};
ja.prototype.minutesX0ThroughX1PastTheHour = function () {
return "毎時 %s 分から %s 分まで";
};
ja.prototype.atX0MinutesPastTheHour = function () {
return "毎時 %s 分過ぎ";
};
ja.prototype.everyX0Hours = function () {
return "%s 時間ごと";
};
ja.prototype.betweenX0AndX1 = function () {
return "%s と %s の間";
};
ja.prototype.atX0 = function () {
return "次において実施 %s";
};
ja.prototype.commaEveryDay = function () {
return "、毎日";
};
ja.prototype.commaEveryX0DaysOfTheWeek = function () {
return "、週のうち %s 日ごと";
};
ja.prototype.commaX0ThroughX1 = function () {
return "、%s から %s まで";
};
ja.prototype.commaAndX0ThroughX1 = function () {
return "、%s から %s まで";
};
ja.prototype.first = function () {
return "1 番目";
};
ja.prototype.second = function () {
return "2 番目";
};
ja.prototype.third = function () {
return "3 番目";
};
ja.prototype.fourth = function () {
return "4 番目";
};
ja.prototype.fifth = function () {
return "5 番目";
};
ja.prototype.commaOnThe = function () {
return "次に";
};
ja.prototype.spaceX0OfTheMonth = function () {
return "月のうち %s";
};
ja.prototype.commaOnTheLastX0OfTheMonth = function () {
return "月の最後の %s に";
};
ja.prototype.commaOnlyOnX0 = function () {
return "%s にのみ";
};
ja.prototype.commaEveryX0Months = function () {
return "、%s か月ごと";
};
ja.prototype.commaOnlyInX0 = function () {
return "%s でのみ";
};
ja.prototype.commaOnTheLastDayOfTheMonth = function () {
return "次の最終日に";
};
ja.prototype.commaOnTheLastWeekdayOfTheMonth = function () {
return "月の最後の平日に";
};
ja.prototype.firstWeekday = function () {
return "最初の平日";
};
ja.prototype.weekdayNearestDayX0 = function () {
return "%s 日の直近の平日";
};
ja.prototype.commaOnTheX0OfTheMonth = function () {
return "月の %s に";
};
ja.prototype.commaEveryX0Days = function () {
return "、月のうち %s 日ごと";
};
ja.prototype.commaBetweenDayX0AndX1OfTheMonth = function () {
return "、月の %s 日から %s 日の間";
};
ja.prototype.commaOnDayX0OfTheMonth = function () {
return "、月の %s 日目";
};
ja.prototype.spaceAndSpace = function () {
return "と";
};
ja.prototype.commaEveryMinute = function () {
return "、毎分";
};
ja.prototype.commaEveryHour = function () {
return "、毎時";
};
ja.prototype.commaEveryX0Years = function () {
return "、%s 年ごと";
};
ja.prototype.commaStartingX0 = function () {
return "、%s に開始";
};
ja.prototype.aMPeriod = function () {
return "AM";
};
ja.prototype.pMPeriod = function () {
return "PM";
};
ja.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () {
return "月の最終日の %s 日前";
};
ja.prototype.atX0SecondsPastTheMinuteGt20 = function () {
return null;
};
ja.prototype.atX0MinutesPastTheHourGt20 = function () {
return null;
};
ja.prototype.commaMonthX0ThroughMonthX1 = function () {
return null;
};
ja.prototype.commaYearX0ThroughYearX1 = function () {
return null;
};
ja.prototype.lastDay = function () {
return "最終日";
};
ja.prototype.commaAndOnX0 = function () {
return "、〜と %s";
};
ja.prototype.daysOfTheWeek = function () {
return ["日曜日", "月曜日", "火曜日", "水曜日", "木曜日", "金曜日", "土曜日"];
};
ja.prototype.monthsOfTheYear = function () {
return ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"];
};
ja.prototype.onTheHour = function () {
return "時ちょうど";
};
return ja;
}());
ja_exports.ja = ja;
(cronstrue__WEBPACK_IMPORTED_MODULE_0___default().locales)["ja"] = new ja();
/******/ return __webpack_exports__;
/******/ })()
;
});
File diff suppressed because one or more lines are too long
+285
View File
@@ -0,0 +1,285 @@
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory(require("cronstrue"));
else if(typeof define === 'function' && define.amd)
define("locales/ko", ["cronstrue"], factory);
else if(typeof exports === 'object')
exports["locales/ko"] = factory(require("cronstrue"));
else
root["locales/ko"] = factory(root["cronstrue"]);
})(globalThis, (__WEBPACK_EXTERNAL_MODULE__93__) => {
return /******/ (() => { // webpackBootstrap
/******/ "use strict";
/******/ var __webpack_modules__ = ({
/***/ 93
(module) {
module.exports = __WEBPACK_EXTERNAL_MODULE__93__;
/***/ }
/******/ });
/************************************************************************/
/******/ // The module cache
/******/ var __webpack_module_cache__ = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/ // Check if module is in cache
/******/ var cachedModule = __webpack_module_cache__[moduleId];
/******/ if (cachedModule !== undefined) {
/******/ return cachedModule.exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = __webpack_module_cache__[moduleId] = {
/******/ // no module.id needed
/******/ // no module.loaded needed
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/************************************************************************/
/******/ /* webpack/runtime/compat get default export */
/******/ (() => {
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = (module) => {
/******/ var getter = module && module.__esModule ?
/******/ () => (module['default']) :
/******/ () => (module);
/******/ __webpack_require__.d(getter, { a: getter });
/******/ return getter;
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/define property getters */
/******/ (() => {
/******/ // define getter functions for harmony exports
/******/ __webpack_require__.d = (exports, definition) => {
/******/ for(var key in definition) {
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
/******/ }
/******/ }
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/hasOwnProperty shorthand */
/******/ (() => {
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
/******/ })();
/******/
/******/ /* webpack/runtime/make namespace object */
/******/ (() => {
/******/ // define __esModule on exports
/******/ __webpack_require__.r = (exports) => {
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ }
/******/ Object.defineProperty(exports, '__esModule', { value: true });
/******/ };
/******/ })();
/******/
/************************************************************************/
var __webpack_exports__ = {};
__webpack_require__.r(__webpack_exports__);
/* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(93);
/* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(cronstrue__WEBPACK_IMPORTED_MODULE_0__);
var ko_exports = __webpack_exports__;
"use strict";
Object.defineProperty(ko_exports, "__esModule", { value: true });
ko_exports.ko = void 0;
var ko = (function () {
function ko() {
}
ko.prototype.setPeriodBeforeTime = function () {
return true;
};
ko.prototype.pm = function () {
return "오후";
};
ko.prototype.am = function () {
return "오전";
};
ko.prototype.atX0SecondsPastTheMinuteGt20 = function () {
return null;
};
ko.prototype.atX0MinutesPastTheHourGt20 = function () {
return null;
};
ko.prototype.commaMonthX0ThroughMonthX1 = function () {
return null;
};
ko.prototype.commaYearX0ThroughYearX1 = function () {
return null;
};
ko.prototype.use24HourTimeFormatByDefault = function () {
return false;
};
ko.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () {
return "표현식 설명을 생성하는 중 오류가 발생했습니다. cron 표현식 구문을 확인하십시오.";
};
ko.prototype.everyMinute = function () {
return "1분마다";
};
ko.prototype.everyHour = function () {
return "1시간마다";
};
ko.prototype.atSpace = function () {
return "";
};
ko.prototype.everyMinuteBetweenX0AndX1 = function () {
return "매분 %s~%s";
};
ko.prototype.at = function () {
return "";
};
ko.prototype.spaceAnd = function () {
return ",";
};
ko.prototype.everySecond = function () {
return "1초마다";
};
ko.prototype.everyX0Seconds = function () {
return "%s초마다";
};
ko.prototype.secondsX0ThroughX1PastTheMinute = function () {
return "%s~%s초";
};
ko.prototype.atX0SecondsPastTheMinute = function () {
return "%s초";
};
ko.prototype.everyX0Minutes = function () {
return "%s분마다";
};
ko.prototype.minutesX0ThroughX1PastTheHour = function () {
return "%s~%s분";
};
ko.prototype.atX0MinutesPastTheHour = function () {
return "%s분";
};
ko.prototype.everyX0Hours = function () {
return "%s시간마다";
};
ko.prototype.betweenX0AndX1 = function () {
return "%s부터 %s까지";
};
ko.prototype.atX0 = function () {
return "%s에서";
};
ko.prototype.commaEveryDay = function () {
return ", 매일";
};
ko.prototype.commaEveryX0DaysOfTheWeek = function () {
return ", 주 중 %s일마다";
};
ko.prototype.commaX0ThroughX1 = function () {
return ", %s부터 %s까지";
};
ko.prototype.commaAndX0ThroughX1 = function () {
return ", %s부터 %s까지";
};
ko.prototype.first = function () {
return "첫 번째";
};
ko.prototype.second = function () {
return "두 번째";
};
ko.prototype.third = function () {
return "세 번째";
};
ko.prototype.fourth = function () {
return "네 번째";
};
ko.prototype.fifth = function () {
return "다섯 번째";
};
ko.prototype.commaOnThe = function () {
return ", 매월 ";
};
ko.prototype.spaceX0OfTheMonth = function () {
return " %s";
};
ko.prototype.lastDay = function () {
return "마지막 날";
};
ko.prototype.commaOnTheLastX0OfTheMonth = function () {
return ", 해당 월의 마지막 %s";
};
ko.prototype.commaOnlyOnX0 = function () {
return ", %s에만";
};
ko.prototype.commaAndOnX0 = function () {
return ", %s에";
};
ko.prototype.commaEveryX0Months = function () {
return ", %s개월마다";
};
ko.prototype.commaOnlyInX0 = function () {
return ", %s에만";
};
ko.prototype.commaOnTheLastDayOfTheMonth = function () {
return ", 해당 월의 마지막 날에";
};
ko.prototype.commaOnTheLastWeekdayOfTheMonth = function () {
return ", 매월 마지막 평일";
};
ko.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () {
return ", 해당 월의 마지막 날 %s일 전";
};
ko.prototype.firstWeekday = function () {
return "첫 번째 평일";
};
ko.prototype.weekdayNearestDayX0 = function () {
return "%s일과 가장 가까운 평일";
};
ko.prototype.commaOnTheX0OfTheMonth = function () {
return ", 매월 %s";
};
ko.prototype.commaEveryX0Days = function () {
return ", %s일마다";
};
ko.prototype.commaBetweenDayX0AndX1OfTheMonth = function () {
return ", 해당 월의 %s일에서 %s일까지";
};
ko.prototype.commaOnDayX0OfTheMonth = function () {
return ", 매월 %s일";
};
ko.prototype.commaEveryMinute = function () {
return ", 1분마다";
};
ko.prototype.commaEveryHour = function () {
return ", 1시간마다";
};
ko.prototype.commaEveryX0Years = function () {
return ", %s년마다";
};
ko.prototype.commaStartingX0 = function () {
return ", %s부터";
};
ko.prototype.daysOfTheWeek = function () {
return ["일요일", "월요일", "화요일", "수요일", "목요일", "금요일", "토요일"];
};
ko.prototype.monthsOfTheYear = function () {
return ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"];
};
ko.prototype.onTheHour = function () {
return "정각";
};
return ko;
}());
ko_exports.ko = ko;
(cronstrue__WEBPACK_IMPORTED_MODULE_0___default().locales)["ko"] = new ko();
/******/ return __webpack_exports__;
/******/ })()
;
});

Some files were not shown because too many files have changed in this diff Show More