1
0
mirror of https://gitlab.cvh-server.de/skrause/flashcards.git synced 2025-12-12 06:41:38 +01:00

change texts and translations

This commit is contained in:
2025-03-26 14:51:22 +01:00
parent 4ad8fa443d
commit cdc30546cb
4 changed files with 41 additions and 34 deletions

View File

@@ -2,7 +2,7 @@ using Gtk 4.0;
using Adw 1;
template $FlashcardsCreateCardDialog : Adw.AlertDialog {
heading: _("Create a new card");
heading: _("Create a new flashcard");
close-response: "cancel";
responses [
cancel: _("Cancel"),

View File

@@ -65,13 +65,13 @@ template $FlashcardsAppWindow : Adw.ApplicationWindow {
Gtk.Button {
icon-name: "list-add-symbolic";
clicked => $on_add_card();
tooltip-text: _("Add card");
tooltip-text: _("Add flashcard");
}
[start]
Gtk.Button {
icon-name: "user-trash-symbolic";
clicked => $on_delete_card();
tooltip-text: _("Delete card");
tooltip-text: _("Delete flashcard");
}
[title]
Adw.WindowTitle title {
@@ -90,7 +90,7 @@ template $FlashcardsAppWindow : Adw.ApplicationWindow {
Adw.ViewStackPage {
child: Adw.StatusPage placeholder_card {
title: _("Add a card");
title: _("Add a flashcard");
icon-name: "list-add-symbolic";
};
}