Update About Window

This commit is contained in:
Late Night Defender 2024-10-24 01:28:32 +07:00
parent 72424fb148
commit e23ea0cf00

View file

@ -97,14 +97,14 @@ impl BoostcontrollerApplication {
fn show_about(&self) { fn show_about(&self) {
let window = self.active_window().unwrap(); let window = self.active_window().unwrap();
let about = adw::AboutDialog::builder() let about = adw::AboutDialog::builder()
.application_name("boostcontroller") .application_name("Boost Controller")
.application_icon("org.techtransthai.BoostController") .application_icon("org.techtransthai.BoostController")
.developer_name("Late Night Defender") .developer_name("TechTransThai")
.version(VERSION) .version(VERSION)
.developers(vec!["Late Night Defender"]) .developers(vec!["TechTransThai"])
// Translators: Replace "translator-credits" with your name/username, and optionally an email or URL. // Translators: Replace "translator-credits" with your name/username, and optionally an email or URL.
.translator_credits(&gettext("translator-credits")) .translator_credits(&gettext("translator-credits"))
.copyright("© 2024 Late Night Defender") .copyright("© 2024 TechTransThai")
.build(); .build();
about.present(Some(&window)); about.present(Some(&window));