├── .gitignore ├── LICENSE ├── README.md ├── composer.json └── src ├── CronExpression.php ├── CronParsingException.php ├── CronTranslator.php ├── CronType.php ├── DaysOfMonthField.php ├── DaysOfWeekField.php ├── Field.php ├── HoursField.php ├── LanguageLoader.php ├── MinutesField.php ├── MonthsField.php ├── TranslationFileMissingException.php └── lang ├── ar ├── days.php ├── fields.php ├── months.php ├── ordinals.php └── times.php ├── da ├── days.php ├── fields.php ├── months.php ├── ordinals.php └── times.php ├── de ├── days.php ├── fields.php ├── months.php ├── ordinals.php └── times.php ├── en ├── days.php ├── fields.php ├── months.php ├── ordinals.php └── times.php ├── es ├── days.php ├── fields.php ├── months.php ├── ordinals.php └── times.php ├── fr ├── days.php ├── fields.php ├── months.php ├── ordinals.php └── times.php ├── hi ├── days.php ├── fields.php ├── months.php ├── ordinals.php └── times.php ├── lv ├── days.php ├── fields.php ├── months.php ├── ordinals.php └── times.php ├── nl ├── days.php ├── fields.php ├── months.php ├── ordinals.php └── times.php ├── pt ├── days.php ├── fields.php ├── months.php ├── ordinals.php └── times.php ├── ro ├── days.php ├── fields.php ├── months.php ├── ordinals.php └── times.php ├── ru ├── days.php ├── fields.php ├── months.php ├── ordinals.php └── times.php ├── sk ├── days.php ├── fields.php ├── months.php ├── ordinals.php └── times.php ├── ua ├── days.php ├── fields.php ├── months.php ├── ordinals.php └── times.php ├── vi ├── days.php ├── fields.php ├── months.php ├── ordinals.php └── times.php ├── zh-TW ├── days.php ├── fields.php ├── months.php ├── ordinals.php └── times.php └── zh ├── days.php ├── fields.php ├── months.php ├── ordinals.php └── times.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/composer.json -------------------------------------------------------------------------------- /src/CronExpression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/CronExpression.php -------------------------------------------------------------------------------- /src/CronParsingException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/CronParsingException.php -------------------------------------------------------------------------------- /src/CronTranslator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/CronTranslator.php -------------------------------------------------------------------------------- /src/CronType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/CronType.php -------------------------------------------------------------------------------- /src/DaysOfMonthField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/DaysOfMonthField.php -------------------------------------------------------------------------------- /src/DaysOfWeekField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/DaysOfWeekField.php -------------------------------------------------------------------------------- /src/Field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/Field.php -------------------------------------------------------------------------------- /src/HoursField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/HoursField.php -------------------------------------------------------------------------------- /src/LanguageLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/LanguageLoader.php -------------------------------------------------------------------------------- /src/MinutesField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/MinutesField.php -------------------------------------------------------------------------------- /src/MonthsField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/MonthsField.php -------------------------------------------------------------------------------- /src/TranslationFileMissingException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/TranslationFileMissingException.php -------------------------------------------------------------------------------- /src/lang/ar/days.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/ar/days.php -------------------------------------------------------------------------------- /src/lang/ar/fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/ar/fields.php -------------------------------------------------------------------------------- /src/lang/ar/months.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/ar/months.php -------------------------------------------------------------------------------- /src/lang/ar/ordinals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/ar/ordinals.php -------------------------------------------------------------------------------- /src/lang/ar/times.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/ar/times.php -------------------------------------------------------------------------------- /src/lang/da/days.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/da/days.php -------------------------------------------------------------------------------- /src/lang/da/fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/da/fields.php -------------------------------------------------------------------------------- /src/lang/da/months.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/da/months.php -------------------------------------------------------------------------------- /src/lang/da/ordinals.php: -------------------------------------------------------------------------------- 1 | ':number.', 5 | ]; 6 | -------------------------------------------------------------------------------- /src/lang/da/times.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/da/times.php -------------------------------------------------------------------------------- /src/lang/de/days.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/de/days.php -------------------------------------------------------------------------------- /src/lang/de/fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/de/fields.php -------------------------------------------------------------------------------- /src/lang/de/months.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/de/months.php -------------------------------------------------------------------------------- /src/lang/de/ordinals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/de/ordinals.php -------------------------------------------------------------------------------- /src/lang/de/times.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/de/times.php -------------------------------------------------------------------------------- /src/lang/en/days.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/en/days.php -------------------------------------------------------------------------------- /src/lang/en/fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/en/fields.php -------------------------------------------------------------------------------- /src/lang/en/months.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/en/months.php -------------------------------------------------------------------------------- /src/lang/en/ordinals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/en/ordinals.php -------------------------------------------------------------------------------- /src/lang/en/times.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/en/times.php -------------------------------------------------------------------------------- /src/lang/es/days.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/es/days.php -------------------------------------------------------------------------------- /src/lang/es/fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/es/fields.php -------------------------------------------------------------------------------- /src/lang/es/months.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/es/months.php -------------------------------------------------------------------------------- /src/lang/es/ordinals.php: -------------------------------------------------------------------------------- 1 | ':numberº', 5 | ]; 6 | -------------------------------------------------------------------------------- /src/lang/es/times.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/es/times.php -------------------------------------------------------------------------------- /src/lang/fr/days.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/fr/days.php -------------------------------------------------------------------------------- /src/lang/fr/fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/fr/fields.php -------------------------------------------------------------------------------- /src/lang/fr/months.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/fr/months.php -------------------------------------------------------------------------------- /src/lang/fr/ordinals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/fr/ordinals.php -------------------------------------------------------------------------------- /src/lang/fr/times.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/fr/times.php -------------------------------------------------------------------------------- /src/lang/hi/days.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/hi/days.php -------------------------------------------------------------------------------- /src/lang/hi/fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/hi/fields.php -------------------------------------------------------------------------------- /src/lang/hi/months.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/hi/months.php -------------------------------------------------------------------------------- /src/lang/hi/ordinals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/hi/ordinals.php -------------------------------------------------------------------------------- /src/lang/hi/times.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/hi/times.php -------------------------------------------------------------------------------- /src/lang/lv/days.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/lv/days.php -------------------------------------------------------------------------------- /src/lang/lv/fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/lv/fields.php -------------------------------------------------------------------------------- /src/lang/lv/months.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/lv/months.php -------------------------------------------------------------------------------- /src/lang/lv/ordinals.php: -------------------------------------------------------------------------------- 1 | ':number', 5 | ]; 6 | -------------------------------------------------------------------------------- /src/lang/lv/times.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/lv/times.php -------------------------------------------------------------------------------- /src/lang/nl/days.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/nl/days.php -------------------------------------------------------------------------------- /src/lang/nl/fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/nl/fields.php -------------------------------------------------------------------------------- /src/lang/nl/months.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/nl/months.php -------------------------------------------------------------------------------- /src/lang/nl/ordinals.php: -------------------------------------------------------------------------------- 1 | ':numbere', 5 | ]; 6 | -------------------------------------------------------------------------------- /src/lang/nl/times.php: -------------------------------------------------------------------------------- 1 | ':number keer', 5 | ]; 6 | -------------------------------------------------------------------------------- /src/lang/pt/days.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/pt/days.php -------------------------------------------------------------------------------- /src/lang/pt/fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/pt/fields.php -------------------------------------------------------------------------------- /src/lang/pt/months.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/pt/months.php -------------------------------------------------------------------------------- /src/lang/pt/ordinals.php: -------------------------------------------------------------------------------- 1 | ':numberº', 5 | ]; 6 | -------------------------------------------------------------------------------- /src/lang/pt/times.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/pt/times.php -------------------------------------------------------------------------------- /src/lang/ro/days.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/ro/days.php -------------------------------------------------------------------------------- /src/lang/ro/fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/ro/fields.php -------------------------------------------------------------------------------- /src/lang/ro/months.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/ro/months.php -------------------------------------------------------------------------------- /src/lang/ro/ordinals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/ro/ordinals.php -------------------------------------------------------------------------------- /src/lang/ro/times.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/ro/times.php -------------------------------------------------------------------------------- /src/lang/ru/days.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/ru/days.php -------------------------------------------------------------------------------- /src/lang/ru/fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/ru/fields.php -------------------------------------------------------------------------------- /src/lang/ru/months.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/ru/months.php -------------------------------------------------------------------------------- /src/lang/ru/ordinals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/ru/ordinals.php -------------------------------------------------------------------------------- /src/lang/ru/times.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/ru/times.php -------------------------------------------------------------------------------- /src/lang/sk/days.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/sk/days.php -------------------------------------------------------------------------------- /src/lang/sk/fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/sk/fields.php -------------------------------------------------------------------------------- /src/lang/sk/months.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/sk/months.php -------------------------------------------------------------------------------- /src/lang/sk/ordinals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/sk/ordinals.php -------------------------------------------------------------------------------- /src/lang/sk/times.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/sk/times.php -------------------------------------------------------------------------------- /src/lang/ua/days.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/ua/days.php -------------------------------------------------------------------------------- /src/lang/ua/fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/ua/fields.php -------------------------------------------------------------------------------- /src/lang/ua/months.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/ua/months.php -------------------------------------------------------------------------------- /src/lang/ua/ordinals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/ua/ordinals.php -------------------------------------------------------------------------------- /src/lang/ua/times.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/ua/times.php -------------------------------------------------------------------------------- /src/lang/vi/days.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/vi/days.php -------------------------------------------------------------------------------- /src/lang/vi/fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/vi/fields.php -------------------------------------------------------------------------------- /src/lang/vi/months.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/vi/months.php -------------------------------------------------------------------------------- /src/lang/vi/ordinals.php: -------------------------------------------------------------------------------- 1 | 'ngày :number' 5 | ]; 6 | -------------------------------------------------------------------------------- /src/lang/vi/times.php: -------------------------------------------------------------------------------- 1 | ':number lần' 5 | ]; 6 | -------------------------------------------------------------------------------- /src/lang/zh-TW/days.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/zh-TW/days.php -------------------------------------------------------------------------------- /src/lang/zh-TW/fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/zh-TW/fields.php -------------------------------------------------------------------------------- /src/lang/zh-TW/months.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/zh-TW/months.php -------------------------------------------------------------------------------- /src/lang/zh-TW/ordinals.php: -------------------------------------------------------------------------------- 1 | ':number', 5 | ]; 6 | -------------------------------------------------------------------------------- /src/lang/zh-TW/times.php: -------------------------------------------------------------------------------- 1 | ':number次', 5 | ]; 6 | -------------------------------------------------------------------------------- /src/lang/zh/days.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/zh/days.php -------------------------------------------------------------------------------- /src/lang/zh/fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/zh/fields.php -------------------------------------------------------------------------------- /src/lang/zh/months.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorisleiva/cron-translator/HEAD/src/lang/zh/months.php -------------------------------------------------------------------------------- /src/lang/zh/ordinals.php: -------------------------------------------------------------------------------- 1 | ':number', 5 | ]; 6 | -------------------------------------------------------------------------------- /src/lang/zh/times.php: -------------------------------------------------------------------------------- 1 | ':number次', 5 | ]; 6 | --------------------------------------------------------------------------------