From bd920cea6e5a6f3db80ca864f333a18190762882 Mon Sep 17 00:00:00 2001 From: Iivari Mokelainen Date: Wed, 22 Jul 2020 10:39:53 +0300 Subject: [PATCH] Fix finnish localization For some reason days ended with the letter "o" instead of dots, so "15o [month]". This is incorrect. Source: I'm a native speaker and https://www.kielikello.fi/-/miten-paivamaara-merkitaan- --- src/locale/fi.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/locale/fi.js b/src/locale/fi.js index 0ff83ee1c..d03f4cbd5 100644 --- a/src/locale/fi.js +++ b/src/locale/fi.js @@ -66,13 +66,13 @@ const locale = { LT: 'HH.mm', LTS: 'HH.mm.ss', L: 'DD.MM.YYYY', - LL: 'Do MMMM[ta] YYYY', - LLL: 'Do MMMM[ta] YYYY, [klo] HH.mm', - LLLL: 'dddd, Do MMMM[ta] YYYY, [klo] HH.mm', + LL: 'D. MMMM[ta] YYYY', + LLL: 'D. MMMM[ta] YYYY, [klo] HH.mm', + LLLL: 'dddd, D. MMMM[ta] YYYY, [klo] HH.mm', l: 'D.M.YYYY', - ll: 'Do MMM YYYY', - lll: 'Do MMM YYYY, [klo] HH.mm', - llll: 'ddd, Do MMM YYYY, [klo] HH.mm' + ll: 'D. MMM YYYY', + lll: 'D. MMM YYYY, [klo] HH.mm', + llll: 'ddd, D. MMM YYYY, [klo] HH.mm' } }