summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Zotti <Georg.Zotti@univie.ac.at>2022-01-24 15:55:37 +0100
committerGeorg Zotti <Georg.Zotti@univie.ac.at>2022-01-24 15:56:04 +0100
commitcda63bf04894a0dc1f9a9b9b9228f46ad5674081 (patch)
tree6367aebd21733fdaca261bbadef0dbce8077e6f3
parent8f53fb4cf95f81dc88046ff4956fc562b00f4bc9 (diff)
Added missing timezone for Nuuk (Fix #2140)
-rw-r--r--src/core/StelLocationMgr.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/StelLocationMgr.cpp b/src/core/StelLocationMgr.cpp
index f0f0901b94..cca0d82ca1 100644
--- a/src/core/StelLocationMgr.cpp
+++ b/src/core/StelLocationMgr.cpp
@@ -467,6 +467,8 @@ StelLocationMgr::StelLocationMgr()
locationDBToIANAtranslations.insert("Asia/Atyrau", "UTC+05:00"); // no DST; https://www.zeitverschiebung.net/en/timezone/asia--atyrau
locationDBToIANAtranslations.insert("Asia/Famagusta", "Asia/Nicosia"); // Asia/Nicosia has no DST, but Asia/Famagusta has DST!
locationDBToIANAtranslations.insert("America/Punta_Arenas", "UTC-03:00"); // no DST; https://www.zeitverschiebung.net/en/timezone/america--punta_arenas
+ // Missing on Qt5.15.2/Win10
+ locationDBToIANAtranslations.insert("America/Nuuk", "America/Godthab");
// N.B. Further missing TZ names will be printed out in the log.txt. Resolve these by adding into this list.
// TODO later: create a text file in user data directory, and auto-update it weekly.
}