diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2024-07-15 00:41:23 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2024-07-15 00:41:23 +0200 |
| commit | acd59d3035fa3a60e6122f486c7ab8dd772e641c (patch) | |
| tree | 35ed26ce8f384ce7bb2549e77574dd23894c1ebe /lang | |
| parent | 092ea787f946abfc3ef9e72c600492157117797a (diff) | |
| download | turns-acd59d3035fa3a60e6122f486c7ab8dd772e641c.tar.xz turns-acd59d3035fa3a60e6122f486c7ab8dd772e641c.zip | |
app/ui: add delete and edit tooltips
Diffstat (limited to 'lang')
| -rw-r--r-- | lang/include/turns/lang/messages.hpp | 2 | ||||
| -rw-r--r-- | lang/po/de.po | 6 | ||||
| -rw-r--r-- | lang/po/en.po | 6 | ||||
| -rw-r--r-- | lang/tests/messages.cpp | 2 |
4 files changed, 16 insertions, 0 deletions
diff --git a/lang/include/turns/lang/messages.hpp b/lang/include/turns/lang/messages.hpp index aed5c77..2558d56 100644 --- a/lang/include/turns/lang/messages.hpp +++ b/lang/include/turns/lang/messages.hpp @@ -5,6 +5,8 @@ namespace turns::lang { auto constexpr static add_participant = "Add participant"; auto constexpr static disposition = "Disposition"; + auto constexpr static delete_participant = "Delete participant"; + auto constexpr static edit_participant = "Edit participant"; auto constexpr static finish = "Finish"; auto constexpr static main_menu = "Main Menu"; auto constexpr static mark_as_defeated = "Mark as defeated"; diff --git a/lang/po/de.po b/lang/po/de.po index 5277d5b..7ee4524 100644 --- a/lang/po/de.po +++ b/lang/po/de.po @@ -14,6 +14,12 @@ msgstr "Teilnehmer hinzufügen" msgid "Disposition" msgstr "Gesinnung" +msgid "Delete participant" +msgstr "Teilnehmer entfernen" + +msgid "Edit participant" +msgstr "Teilnehmer bearbeiten" + msgid "Finish" msgstr "Abschließen" diff --git a/lang/po/en.po b/lang/po/en.po index 927ffdd..079dcbe 100644 --- a/lang/po/en.po +++ b/lang/po/en.po @@ -14,6 +14,12 @@ msgstr "Add participant" msgid "Disposition" msgstr "Disposition" +msgid "Delete participant" +msgstr "Delete participant" + +msgid "Edit participant" +msgstr "Edit participant" + msgid "Finish" msgstr "Finish" diff --git a/lang/tests/messages.cpp b/lang/tests/messages.cpp index 34813f0..51ec19e 100644 --- a/lang/tests/messages.cpp +++ b/lang/tests/messages.cpp @@ -16,6 +16,8 @@ namespace turns::lang::tests auto message = GENERATE( add_participant, disposition, + delete_participant, + edit_participant, finish, main_menu, mark_as_defeated, |
