summaryrefslogtreecommitdiff
path: root/lang/include
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2024-07-12 16:54:48 +0200
committerFelix Morgner <felix.morgner@gmail.com>2024-07-12 16:54:48 +0200
commit8714470ebb41abec07e178abf4d4739dcd6087fb (patch)
treeee7a82246286feb80457c96e71a9dd0e88207767 /lang/include
parenta1777f0c9b3322592c702293b747404730dd1a70 (diff)
downloadturns-8714470ebb41abec07e178abf4d4739dcd6087fb.tar.xz
turns-8714470ebb41abec07e178abf4d4739dcd6087fb.zip
lang: extract constants for messages
Diffstat (limited to 'lang/include')
-rw-r--r--lang/include/turns/lang/messages.hpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/lang/include/turns/lang/messages.hpp b/lang/include/turns/lang/messages.hpp
new file mode 100644
index 0000000..a6ff5ee
--- /dev/null
+++ b/lang/include/turns/lang/messages.hpp
@@ -0,0 +1,23 @@
+#ifndef TURNS_LANG_MESSAGES_HPP
+#define TURNS_LANG_MESSAGES_HPP
+
+namespace turns::lang
+{
+ namespace menu_items
+ {
+ auto constexpr static quit = "_Quit";
+ } // namespace menu_items
+
+ namespace labels
+ {
+ auto constexpr static no_active_turn_order = "No active turn-order";
+ auto constexpr static turns = "Turns";
+ } // namespace labels
+
+ namespace tooltips
+ {
+ auto constexpr static add_a_participant = "Add a participant";
+ } // namespace tooltips
+} // namespace turns::lang
+
+#endif \ No newline at end of file