Skip to content

Commit 301acb9

Browse files
author
Lasse Malmberg
committed
Make corrections to Finnish locale translations
Months and days of the week are written lowercase in Finnish. The list of short days also included a duplicate Sunday in place of Saturday.
1 parent 07d73df commit 301acb9

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

lib/locales/fi.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@ module.exports = {
1414
dictionary: {},
1515
format: {
1616
days: [
17-
'Sunnuntai', 'Maanantai', 'Tiistai', 'Keskiviikko',
18-
'Torstai', 'Perjantai', 'Lauantai'
17+
'sunnuntai', 'maanantai', 'tiistai', 'keskiviikko',
18+
'torstai', 'perjantai', 'lauantai'
1919
],
20-
shortDays: ['Su', 'Ma', 'Ti', 'Ke', 'To', 'Pe', 'Su'],
20+
shortDays: ['su', 'ma', 'ti', 'ke', 'to', 'pe', 'la'],
2121
months: [
22-
'Tammikuu', 'Helmikuu', 'Maaliskuu', 'Huhtikuu', 'Toukokuu', 'Kesäkuu',
23-
'Heinäkuu', 'Elokuu', 'Syyskuu', 'Lokakuu', 'Marraskuu', 'Joulukuu'
22+
'tammikuu', 'helmikuu', 'maaliskuu', 'huhtikuu', 'toukokuu', 'kesäkuu',
23+
'heinäkuu', 'elokuu', 'syyskuu', 'lokakuu', 'marraskuu', 'joulukuu'
2424
],
2525
shortMonths: [
26-
'Tammi', 'Helmi', 'Maalis', 'Huhti', 'Touko', 'Kesä',
27-
'Heinä', 'Elo', 'Syys', 'Loka', 'Marras', 'Joulu'
26+
'tammi', 'helmi', 'maalis', 'huhti', 'touko', 'kesä',
27+
'heinä', 'elo', 'syys', 'loka', 'marras', 'joulu'
2828
],
2929
date: '%d.%m.%Y'
3030
}

0 commit comments

Comments
 (0)