mirror of
https://gitlab.cvh-server.de/skrause/flashcards.git
synced 2025-12-12 11:01:38 +01:00
add missing icons, cleanup translations, fix last little issues, prepare for documentation
This commit is contained in:
@@ -24,7 +24,7 @@ template $FlashcardsAppWindow : Adw.ApplicationWindow {
|
||||
Adw.HeaderBar {
|
||||
[start]
|
||||
Gtk.Button {
|
||||
icon-name: "list-add-symbolic";
|
||||
icon-name: "add-symbolic";
|
||||
clicked => $on_add_category();
|
||||
tooltip-text: _("Create category");
|
||||
}
|
||||
@@ -64,14 +64,14 @@ template $FlashcardsAppWindow : Adw.ApplicationWindow {
|
||||
Adw.HeaderBar {
|
||||
[start]
|
||||
Gtk.Button add_card_button {
|
||||
icon-name: "add-card-symbolic";
|
||||
icon-name: "add-symbolic";
|
||||
clicked => $on_add_card();
|
||||
tooltip-text: _("Add flashcard");
|
||||
visible: false;
|
||||
}
|
||||
[start]
|
||||
Gtk.Button delete_card_button {
|
||||
icon-name: "user-trash-symbolic";
|
||||
icon-name: "delete-symbolic";
|
||||
clicked => $on_delete_card();
|
||||
tooltip-text: _("Delete flashcard");
|
||||
visible: false;
|
||||
@@ -86,14 +86,14 @@ template $FlashcardsAppWindow : Adw.ApplicationWindow {
|
||||
Adw.ViewStackPage {
|
||||
child: Adw.StatusPage placeholder_category {
|
||||
title: _("Select a category");
|
||||
icon-name: "edit-find-symbolic";
|
||||
icon-name: "category-symbolic";
|
||||
};
|
||||
}
|
||||
|
||||
Adw.ViewStackPage {
|
||||
child: Adw.StatusPage placeholder_card {
|
||||
title: _("Add a flashcard");
|
||||
icon-name: "list-add-symbolic";
|
||||
icon-name: "add-symbolic";
|
||||
};
|
||||
}
|
||||
|
||||
@@ -121,7 +121,7 @@ template $FlashcardsAppWindow : Adw.ApplicationWindow {
|
||||
margin-end: 48;
|
||||
hexpand: true;
|
||||
justify: center;
|
||||
label: "Wie viele Bäume sind in einem Wald?";
|
||||
label: "";
|
||||
wrap: true;
|
||||
wrap-mode: word_char;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user