From 02148f68e5c7280fd4244b35f65c55d9cdd73a5a Mon Sep 17 00:00:00 2001 From: Michael Teeuw Date: Thu, 15 Oct 2020 09:26:56 +0200 Subject: [PATCH 1/2] Rename greek translation. (#2155) --- CHANGELOG.md | 1 + translations/{gr.json => el.json} | 0 translations/translations.js | 2 +- 3 files changed, 2 insertions(+), 1 deletion(-) rename translations/{gr.json => el.json} (100%) diff --git a/CHANGELOG.md b/CHANGELOG.md index c360e511..82fc88fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,7 @@ _This release is scheduled to be released on 2021-01-01._ - Calendar parsing where RRULE bug returns wrong date, add Windows timezone name support. (#2145, #2151) - Wrong node-ical version installed (package.json) requested version. (#2153) - Fix calendar fetcher subsequent timing (#2160) +- Rename Greek translation to correct ISO 639-1 alpha-2 code (gr > el). (#2155) ## [2.13.0] - 2020-10-01 diff --git a/translations/gr.json b/translations/el.json similarity index 100% rename from translations/gr.json rename to translations/el.json diff --git a/translations/translations.js b/translations/translations.js index 7d0fcfa0..b972b9a8 100644 --- a/translations/translations.js +++ b/translations/translations.js @@ -25,7 +25,7 @@ var translations = { "zh-tw": "translations/zh-tw.json", // Traditional Chinese ja: "translations/ja.json", // Japanese pl: "translations/pl.json", // Polish - gr: "translations/gr.json", // Greek + el: "translations/el.json", // Greek da: "translations/da.json", // Danish tr: "translations/tr.json", // Turkish ru: "translations/ru.json", // Russian From 5781c258e0d2fc394be84795bde21e3bb99caa2a Mon Sep 17 00:00:00 2001 From: Szymon Bluma Date: Fri, 16 Oct 2020 12:19:48 +0200 Subject: [PATCH 2/2] A space after icon of sunrise and sunset --- CHANGELOG.md | 1 + modules/default/clock/clock.js | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 82fc88fa..5132d110 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,7 @@ _This release is scheduled to be released on 2021-01-01._ - Wrong node-ical version installed (package.json) requested version. (#2153) - Fix calendar fetcher subsequent timing (#2160) - Rename Greek translation to correct ISO 639-1 alpha-2 code (gr > el). (#2155) +- Add a space after icons of sunrise and sunset (#2169) ## [2.13.0] - 2020-10-01 diff --git a/modules/default/clock/clock.js b/modules/default/clock/clock.js index 1c7109b6..6e3d7090 100644 --- a/modules/default/clock/clock.js +++ b/modules/default/clock/clock.js @@ -187,10 +187,10 @@ Module.register("clock", { '"> ' + untilNextEventString + "" + - '' + + ' ' + formatTime(this.config, sunTimes.sunrise) + "" + - '' + + ' ' + formatTime(this.config, sunTimes.sunset) + ""; }