From 703594931a691147a6320a5d421a107af7f5cb0e Mon Sep 17 00:00:00 2001 From: Tomas Babej Date: Sat, 2 Oct 2021 11:14:14 -0400 Subject: [PATCH] CmdNews: Add news item about updated holiday data --- src/commands/CmdNews.cpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/commands/CmdNews.cpp b/src/commands/CmdNews.cpp index 6175d76d0..b2559a118 100644 --- a/src/commands/CmdNews.cpp +++ b/src/commands/CmdNews.cpp @@ -468,6 +468,22 @@ void CmdNews::version2_6_0 (std::vector& items) { " hardcode the desired paths on your system." ); items.push_back(xdg_support); + + ///////////////////////////////////////////////////////////////////////////// + // - Update holiday data + + NewsItem holidata_2022 ( + false, + "Updated holiday data for 2022", + "", + "", + " Holiday data has been refreshed for 2022 and five more holiday locales\n" + " have been added: fr-CA, hu-HU, pt-BR, sk-SK and sv-FI.", + "", + " Refreshing the holiday data is part of every release. The addition of the new\n" + " locales allows us to better support users in those particular countries." + ); + items.push_back(holidata_2022); } ////////////////////////////////////////////////////////////////////////////////