Update About Window
This commit is contained in:
parent
72424fb148
commit
e23ea0cf00
1 changed files with 4 additions and 4 deletions
|
@ -97,14 +97,14 @@ impl BoostcontrollerApplication {
|
|||
fn show_about(&self) {
|
||||
let window = self.active_window().unwrap();
|
||||
let about = adw::AboutDialog::builder()
|
||||
.application_name("boostcontroller")
|
||||
.application_name("Boost Controller")
|
||||
.application_icon("org.techtransthai.BoostController")
|
||||
.developer_name("Late Night Defender")
|
||||
.developer_name("TechTransThai")
|
||||
.version(VERSION)
|
||||
.developers(vec!["Late Night Defender"])
|
||||
.developers(vec!["TechTransThai"])
|
||||
// Translators: Replace "translator-credits" with your name/username, and optionally an email or URL.
|
||||
.translator_credits(&gettext("translator-credits"))
|
||||
.copyright("© 2024 Late Night Defender")
|
||||
.copyright("© 2024 TechTransThai")
|
||||
.build();
|
||||
|
||||
about.present(Some(&window));
|
||||
|
|
Loading…
Reference in a new issue