bradymholt / cRonstrue

JavaScript library that translates Cron expressions into human readable descriptions
http://bradymholt.github.io/cRonstrue/
MIT License
1.28k stars 168 forks source link

Time in Dutch #316

Closed scola84 closed 5 months ago

scola84 commented 5 months ago

Cron Expression 30 5 * * *

Expected Output "Om 05:30"

Actual Output "Op 05:30"

Prerequisites

In Dutch when referring to a time we say "Om" and not "Op". In the German locale I see "Um", which is correct. So where the German locale says "Um" the Dutch locale should say "Om".

at: https://github.com/bradymholt/cRonstrue/blob/main/src/i18n/locales/nl.ts#L36 atSpace: https://github.com/bradymholt/cRonstrue/blob/main/src/i18n/locales/nl.ts#L30 atX0: https://github.com/bradymholt/cRonstrue/blob/main/src/i18n/locales/nl.ts#L69

Brilliant package!