diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2024-07-25 18:17:14 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2024-07-25 18:17:14 +0200 |
| commit | 904601abbc7c97d3c4b9b8224708e51c51d860ec (patch) | |
| tree | 6a7f0b83d473c1eeae5d248187519622a88d43a9 /lang/include | |
| parent | d0b5c8c14d4a41b39470821d43dd719dbb5246aa (diff) | |
| download | turns-904601abbc7c97d3c4b9b8224708e51c51d860ec.tar.xz turns-904601abbc7c97d3c4b9b8224708e51c51d860ec.zip | |
ui/tracker: implement simple saving mechanism
Diffstat (limited to 'lang/include')
| -rw-r--r-- | lang/include/turns/lang/messages.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lang/include/turns/lang/messages.hpp b/lang/include/turns/lang/messages.hpp index 59a099b..b709d9d 100644 --- a/lang/include/turns/lang/messages.hpp +++ b/lang/include/turns/lang/messages.hpp @@ -13,15 +13,20 @@ namespace turns::lang 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 previous_participant = "Previous participant"; auto constexpr static priority = "Priority"; auto constexpr static priority_number = "Priority {}"; auto constexpr static quit = "_Quit"; + auto constexpr static save = "_Save"; + auto constexpr static saving_failed_format = "Saving failed: {}"; auto constexpr static round_number = "Round {}"; auto constexpr static start_turn_order = "Start turn order"; + auto constexpr static successfully_saved_format = "Successfully saved '{}'"; auto constexpr static turns = "Turns"; + auto constexpr static turns_files = "Turns Files"; } // namespace turns::lang #endif
\ No newline at end of file |
