summaryrefslogtreecommitdiff
path: root/gui/include/messages.hpp
blob: b47cdc9a924e76ddb884c195d34a31dca990cdb9 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
 * SPDX-FileCopyrightText: 2025 Felix Morgner <felix.morgner@gmail.com>
 * SPDX-License-Identifier: LGPL-2.1-only
 */

#ifndef TURNS_GUI_MESSAGES_HPP
#define TURNS_GUI_MESSAGES_HPP

namespace Turns::gui::message
{
  auto constexpr static add_participant = "Add participant";
  auto constexpr static cancel = "Cancel";
  auto constexpr static clear = "_Clear";
  auto constexpr static delete_participant = "Delete participant";
  auto constexpr static disposition = "Disposition";
  auto constexpr static disposition_colors = "Disposition Colors";
  auto constexpr static edit_participant = "Edit participant";
  auto constexpr static end_turn_order = "End turn order";
  auto constexpr static finish = "Finish";
  auto constexpr static flow = "Flow";
  auto constexpr static friendly = "Friendly";
  auto constexpr static hostile = "Hostile";
  auto constexpr static main_menu = "Main Menu";
  auto constexpr static mark_as_defeated = "Mark as defeated";
  auto constexpr static name = "Name";
  auto constexpr static new_turn_order_file_name = "New turn order.trns";
  auto constexpr static next_participant = "Next participant";
  auto constexpr static no_active_turn_order = "No active turn order";
  auto constexpr static open = "_Open...";
  auto constexpr static preferences = "Preferences";
  auto constexpr static preferences_mnemonic = "_Preferences";
  auto constexpr static previous_participant = "Previous participant";
  auto constexpr static priority = "Priority";
  auto constexpr static priority_number = "Priority {}";
  auto constexpr static question_clear_turn_order = "Do you want to clear the turn order?";
  auto constexpr static quit = "_Quit";
  auto constexpr static reset = "Reset";
  auto constexpr static round_number = "Round {}";
  auto constexpr static save = "_Save";
  auto constexpr static save_as = "Save as...";
  auto constexpr static saving_failed_format = "Saving failed: {}";
  auto constexpr static secret = "Secret";
  auto constexpr static skip_defeated = "Skip defeated";
  auto constexpr static start_turn_order = "Start turn order";
  auto constexpr static stop = "Stop";
  auto constexpr static stop_and_clear = "Stop and clear";
  auto constexpr static stop_turn_order = "Stop turn order";
  auto constexpr static successfully_opened_format = "Successfully opened '{}'";
  auto constexpr static successfully_saved_format = "Successfully saved '{}'";
  auto constexpr static turns = "Turns";
  auto constexpr static turns_files = "Turns Files";
}  // namespace Turns::gui::message

#endif