Update widget labels
This commit is contained in:
@@ -54,6 +54,7 @@ template $DetailsWindow : Adw.Window {
|
||||
[overlay]
|
||||
Button cover_button_edit {
|
||||
icon-name: "document-edit-symbolic";
|
||||
tooltip-text: _("New Cover");
|
||||
halign: end;
|
||||
valign: end;
|
||||
margin-bottom: 6;
|
||||
@@ -71,6 +72,7 @@ template $DetailsWindow : Adw.Window {
|
||||
|
||||
Button cover_button_delete {
|
||||
icon-name: "user-trash-symbolic";
|
||||
tooltip-text: _("Delete Cover");
|
||||
halign: end;
|
||||
valign: end;
|
||||
margin-bottom: 6;
|
||||
@@ -99,14 +101,22 @@ template $DetailsWindow : Adw.Window {
|
||||
title: _("Title");
|
||||
description: _("The title of the game");
|
||||
|
||||
Entry name {}
|
||||
Entry name {
|
||||
accessibility {
|
||||
label: _("Title");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Adw.PreferencesGroup developer_group {
|
||||
title: _("Developer");
|
||||
description: _("The developer or publisher (optional)");
|
||||
|
||||
Entry developer {}
|
||||
Entry developer {
|
||||
accessibility {
|
||||
label: _("Developer");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Adw.PreferencesGroup exec_group {
|
||||
@@ -137,7 +147,11 @@ template $DetailsWindow : Adw.Window {
|
||||
]
|
||||
}
|
||||
|
||||
Entry executable {}
|
||||
Entry executable {
|
||||
accessibility {
|
||||
label: _("Executable");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -55,6 +55,10 @@ template $Game : Box {
|
||||
name: "cover_button";
|
||||
overflow: hidden;
|
||||
|
||||
accessibility {
|
||||
labelled-by: title;
|
||||
}
|
||||
|
||||
Overlay {
|
||||
[overlay]
|
||||
Spinner spinner {
|
||||
|
||||
Reference in New Issue
Block a user