summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
Diffstat (limited to 'lang')
-rw-r--r--lang/include/turns/lang/messages.hpp4
-rw-r--r--lang/tests/intl_test_init.cpp2
-rw-r--r--lang/tests/messages.cpp1
3 files changed, 5 insertions, 2 deletions
diff --git a/lang/include/turns/lang/messages.hpp b/lang/include/turns/lang/messages.hpp
index 8dc9981..42de7bb 100644
--- a/lang/include/turns/lang/messages.hpp
+++ b/lang/include/turns/lang/messages.hpp
@@ -6,8 +6,8 @@ namespace turns::lang
auto constexpr static add_participant = "Add participant";
auto constexpr static cancel = "Cancel";
auto constexpr static clear = "_Clear";
- auto constexpr static disposition = "Disposition";
auto constexpr static delete_participant = "Delete participant";
+ auto constexpr static disposition = "Disposition";
auto constexpr static edit_participant = "Edit participant";
auto constexpr static end_turn_order = "End turn order";
auto constexpr static finish = "Finish";
@@ -23,10 +23,10 @@ namespace turns::lang
auto constexpr static priority_number = "Priority {}";
auto constexpr static question_clear_turn_order = "Do you want to clear the turn order?";
auto constexpr static quit = "_Quit";
+ auto constexpr static round_number = "Round {}";
auto constexpr static save = "_Save";
auto constexpr static save_as = "Save as...";
auto constexpr static saving_failed_format = "Saving failed: {}";
- auto constexpr static round_number = "Round {}";
auto constexpr static start_turn_order = "Start turn order";
auto constexpr static stop = "Stop";
auto constexpr static stop_and_clear = "Stop and clear";
diff --git a/lang/tests/intl_test_init.cpp b/lang/tests/intl_test_init.cpp
index 6a79040..5438179 100644
--- a/lang/tests/intl_test_init.cpp
+++ b/lang/tests/intl_test_init.cpp
@@ -3,6 +3,8 @@
#include <libintl.h>
+#include <clocale>
+
namespace turns::lang::tests
{
diff --git a/lang/tests/messages.cpp b/lang/tests/messages.cpp
index 7db0e53..441a831 100644
--- a/lang/tests/messages.cpp
+++ b/lang/tests/messages.cpp
@@ -5,6 +5,7 @@
#include <libintl.h>
+#include <clocale>
#include <format>
#include <string>