diff options
| author | Vancho Stojkov <[email protected]> | 2021-05-16 01:11:35 +0200 |
|---|---|---|
| committer | Vancho Stojkov <[email protected]> | 2021-05-16 01:11:35 +0200 |
| commit | 2d6fc412d036f58624815689a8f8d5772479c0ad (patch) | |
| tree | 1078c131b7d9bf94bbebcf5abd99e04c1d4bdc94 /lib | |
| parent | fffb25a3f221689c7411e6b6e668207908bdbffb (diff) | |
| download | faker-2d6fc412d036f58624815689a8f8d5772479c0ad.tar.xz faker-2d6fc412d036f58624815689a8f8d5772479c0ad.zip | |
Correct weekdays
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/locales/mk/date/weekday.js | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/locales/mk/date/weekday.js b/lib/locales/mk/date/weekday.js index 1e468f51..4170e05d 100644 --- a/lib/locales/mk/date/weekday.js +++ b/lib/locales/mk/date/weekday.js @@ -1,13 +1,13 @@ // Source: http://unicode.org/cldr/trac/browser/tags/release-27/common/main/en.xml#L1847 module["exports"] = { wide: [ - "Sunday", - "Monday", - "Tuesday", - "Wednesday", - "Thursday", - "Friday", - "Saturday" + "недела", + "понеделник", + "вторник", + "среда", + "четврток", + "петок", + "сабота" ], // Property "wide_context" is optional, if not set then "wide" will be used instead // It is used to specify a word in context, which may differ from a stand-alone word |
