summaryrefslogtreecommitdiff
path: root/lang/include/turns/lang/messages.hpp
blob: ea76565aa185d695790ff6eb3a13ce7cc6261bef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#ifndef TURNS_LANG_MESSAGES_HPP
#define TURNS_LANG_MESSAGES_HPP

namespace turns::lang
{
  namespace buttons
  {
    auto constexpr static finish = "Finish";
  }

  namespace menu_items
  {
    auto constexpr static quit = "_Quit";
  }  // namespace menu_items

  namespace labels
  {
    auto constexpr static add_participant = "Add participant";
    auto constexpr static disposition = "Disposition";
    auto constexpr static name = "Name";
    auto constexpr static no_active_turn_order = "No active turn order";
    auto constexpr static order = "Order";
    auto constexpr static turns = "Turns";
  }  // namespace labels

  namespace tooltips
  {
    auto constexpr static add_a_participant = "Add a participant";
    auto constexpr static main_menu = "Main Menu";
    auto constexpr static mark_as_defeated = "Mark as defeated";
  }  // namespace tooltips
}  // namespace turns::lang

#endif