From 9c0d83f2e55f6b33e650f8dcd6b53866601695fd Mon Sep 17 00:00:00 2001 From: OskarNS Date: Mon, 9 Dec 2019 21:11:13 +0100 Subject: [PATCH] Datepicker: Fix typo in currentText in da localization MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The term for "Today" in Danish is "I dag" not "Idag". This is a common misspelling in the Danish language. see https://dsn.dk/?retskriv=idag Dansk Sprognævn (DSN) is the authority over the Danish language. Closes gh-1862 --- ui/i18n/datepicker-da.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/i18n/datepicker-da.js b/ui/i18n/datepicker-da.js index 273f0e3ff..4d4d823ca 100644 --- a/ui/i18n/datepicker-da.js +++ b/ui/i18n/datepicker-da.js @@ -16,7 +16,7 @@ datepicker.regional.da = { closeText: "Luk", prevText: "<Forrige", nextText: "Næste>", - currentText: "Idag", + currentText: "I dag", monthNames: [ "Januar","Februar","Marts","April","Maj","Juni", "Juli","August","September","Oktober","November","December" ], monthNamesShort: [ "Jan","Feb","Mar","Apr","Maj","Jun", -- 2.39.5