diff --git a/po/de.po b/po/de.po index 8e017dc..058d066 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: flashcards\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-07-03 14:34+0200\n" +"POT-Creation-Date: 2025-07-03 14:48+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -49,19 +49,35 @@ msgstr "Wähle eine Kategorie" msgid "Add a flashcard" msgstr "Füge eine Karteikarte hinzu" -#: resources/ui/window.blp:136 +#: resources/ui/window.blp:116 +msgid "Show answer" +msgstr "Antwort zeigen" + +#: resources/ui/window.blp:137 msgid "Hard" msgstr "Schwer" -#: resources/ui/window.blp:142 +#: resources/ui/window.blp:140 +msgid "Reappears in 6 hours" +msgstr "Erscheint erneut in 6 Stunden" + +#: resources/ui/window.blp:144 msgid "Medium" msgstr "Mittel" -#: resources/ui/window.blp:148 +#: resources/ui/window.blp:147 +msgid "Reappears in 12 hours" +msgstr "Erscheint erneut in 12 Stunden" + +#: resources/ui/window.blp:151 msgid "Easy" msgstr "Einfach" -#: resources/ui/window.blp:166 +#: resources/ui/window.blp:154 +msgid "Reappears in 24 hours" +msgstr "Erscheint erneut in 24 Stunden" + +#: resources/ui/window.blp:170 msgid "About Flashcards" msgstr "Über Karteikarten" diff --git a/po/flashcards.pot b/po/flashcards.pot index d239dc9..6c9fe57 100644 --- a/po/flashcards.pot +++ b/po/flashcards.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: flashcards\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-07-03 14:34+0200\n" +"POT-Creation-Date: 2025-07-03 14:48+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -55,19 +55,35 @@ msgstr "" msgid "Add a flashcard" msgstr "" -#: resources/ui/window.blp:136 +#: resources/ui/window.blp:116 +msgid "Show answer" +msgstr "" + +#: resources/ui/window.blp:137 msgid "Hard" msgstr "" -#: resources/ui/window.blp:142 +#: resources/ui/window.blp:140 +msgid "Reappears in 6 hours" +msgstr "" + +#: resources/ui/window.blp:144 msgid "Medium" msgstr "" -#: resources/ui/window.blp:148 +#: resources/ui/window.blp:147 +msgid "Reappears in 12 hours" +msgstr "" + +#: resources/ui/window.blp:151 msgid "Easy" msgstr "" -#: resources/ui/window.blp:166 +#: resources/ui/window.blp:154 +msgid "Reappears in 24 hours" +msgstr "" + +#: resources/ui/window.blp:170 msgid "About Flashcards" msgstr "" diff --git a/resources/ui/window.blp b/resources/ui/window.blp index 6e8993c..0a11f80 100644 --- a/resources/ui/window.blp +++ b/resources/ui/window.blp @@ -113,6 +113,7 @@ template $FlashcardsAppWindow : Adw.ApplicationWindow { styles ["card", "activatable"] halign: center; clicked => $on_flip_card(); + tooltip-text: _("Show answer"); Label card_title { styles ["title-4"] margin-top: 24; @@ -136,18 +137,21 @@ template $FlashcardsAppWindow : Adw.ApplicationWindow { label: _("Hard"); hexpand: true; clicked => $on_answer_hard(); + tooltip-text: _("Reappears in 6 hours"); } Button { styles ["pill"] label: _("Medium"); hexpand: true; clicked => $on_answer_medium(); + tooltip-text: _("Reappears in 12 hours"); } Button { styles ["pill"] label: _("Easy"); hexpand: true; clicked => $on_answer_easy(); + tooltip-text: _("Reappears in 24 hours"); } } }