Skip to content

Commit

Permalink
fix: update Slovenian [sl] locale to set correct ordinal (#1386)
Browse files Browse the repository at this point in the history
  • Loading branch information
sesam committed Feb 16, 2021
1 parent 66c5935 commit cb4f746
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/locale/sl.js
Expand Up @@ -9,7 +9,7 @@ const locale = {
weekdaysShort: 'ned._pon._tor._sre._čet._pet._sob.'.split('_'),
monthsShort: 'jan._feb._mar._apr._maj._jun._jul._avg._sep._okt._nov._dec.'.split('_'),
weekdaysMin: 'ne_po_to_sr_če_pe_so'.split('_'),
ordinal: n => n,
ordinal: n => `${n}.`,
formats: {
LT: 'H:mm',
LTS: 'H:mm:ss',
Expand Down

0 comments on commit cb4f746

Please sign in to comment.