aboutsummaryrefslogtreecommitdiff
path: root/lang/include/turns/lang/messages.hpp
blob: 59a099bdf9af4e2b6a41ad0e2b25ce3e54648bbf (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
#ifndef TURNS_LANG_MESSAGES_HPP
#define TURNS_LANG_MESSAGES_HPP

namespace turns::lang
{
  auto constexpr static add_participant = "Add participant";
  auto constexpr static clear = "_Clear";
  auto constexpr static disposition = "Disposition";
  auto constexpr static delete_participant = "Delete participant";
  auto constexpr static edit_participant = "Edit participant";
  auto constexpr static end_turn_order = "End turn order";
  auto constexpr static finish = "Finish";
  auto constexpr static main_menu = "Main Menu";
  auto constexpr static mark_as_defeated = "Mark as defeated";
  auto constexpr static name = "Name";
  auto constexpr static next_participant = "Next participant";
  auto constexpr static no_active_turn_order = "No active turn order";
  auto constexpr static previous_participant = "Previous participant";
  auto constexpr static priority = "Priority";
  auto constexpr static priority_number = "Priority {}";
  auto constexpr static quit = "_Quit";
  auto constexpr static round_number = "Round {}";
  auto constexpr static start_turn_order = "Start turn order";
  auto constexpr static turns = "Turns";
}  // namespace turns::lang

#endif