aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
m---------extension/deps/openvic-simulation0
-rw-r--r--extension/src/openvic-extension/utility/Utilities.cpp6
m---------scripts0
3 files changed, 3 insertions, 3 deletions
diff --git a/extension/deps/openvic-simulation b/extension/deps/openvic-simulation
-Subproject 93eaf0f4f2e812000316190c06e6614da2f841e
+Subproject 068c13ede817d17df599ca3481261bf17ed9560
diff --git a/extension/src/openvic-extension/utility/Utilities.cpp b/extension/src/openvic-extension/utility/Utilities.cpp
index 4cf515f..a3fa40a 100644
--- a/extension/src/openvic-extension/utility/Utilities.cpp
+++ b/extension/src/openvic-extension/utility/Utilities.cpp
@@ -46,13 +46,13 @@ String Utilities::float_to_formatted_string(float val) {
/* Date formatted like this: "January 1, 1836" (with the month localised, if possible). */
String Utilities::date_to_formatted_string(Date date) {
- std::string const& month_name = date.get_month_name();
+ const String month_name = std_view_to_godot_string_name(date.get_month_name());
const String day_and_year = " " + String::num_int64(date.get_day()) + ", " + String::num_int64(date.get_year());
TranslationServer const* server = TranslationServer::get_singleton();
if (server != nullptr) {
- return server->translate(std_to_godot_string_name(month_name)) + day_and_year;
+ return server->translate(month_name) + day_and_year;
} else {
- return std_to_godot_string(month_name) + day_and_year;
+ return month_name + day_and_year;
}
}
diff --git a/scripts b/scripts
-Subproject 3a4190526bde8e3fcd49c3ebcf77b5a87dc8ab6
+Subproject 21d142795539d65f30a1862502aae5aa43bd765