summaryrefslogtreecommitdiff
path: root/lang/include
diff options
context:
space:
mode:
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