From 8714470ebb41abec07e178abf4d4739dcd6087fb Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Fri, 12 Jul 2024 16:54:48 +0200 Subject: lang: extract constants for messages --- lang/include/turns/lang/messages.hpp | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 lang/include/turns/lang/messages.hpp (limited to 'lang/include') 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 -- cgit v1.2.3