Gradience/src/ui/app_type_dialog.blp
ArtyIF f4f4579476 Added partial localization support
Gotta figure out how to localize the settings schema
2022-07-25 17:35:40 +03:00

20 lines
440 B
Text

using Gtk 4.0;
using Adw 1;
template AdwcustomizerAppTypeDialog : Adw.MessageDialog {
[extra-child]
Box {
orientation: vertical;
Label {
styles ["heading"]
label: _("Select app types you want to affect:");
}
CheckButton gtk4-app-type {
label: _("Libadwaita and GTK 4 apps");
active: true;
}
CheckButton gtk3-app-type {
label: _("GTK 3 apps (adw-gtk3 theme required)");
}
}
}