🧹 make clippy happy

This commit is contained in:
Vladislav Nepogodin 2023-03-13 03:51:38 +04:00
parent b948ee4fdb
commit 02189262fe
No known key found for this signature in database
GPG Key ID: B62C3D10C54D5DA9
1 changed files with 3 additions and 3 deletions

View File

@ -94,15 +94,15 @@ fn show_about_dialog() {
let dialog = gtk::AboutDialog::builder()
.transient_for(main_window)
.modal(true)
.program_name(&gettextrs::gettext("CachyOS Hello"))
.comments(&gettextrs::gettext("Welcome screen for CachyOS"))
.program_name(gettextrs::gettext("CachyOS Hello"))
.comments(gettextrs::gettext("Welcome screen for CachyOS"))
.version(VERSION)
.logo(&logo)
.authors(vec![
"Vladislav Nepogodin".to_owned(),
])
// Translators: Replace "translator-credits" with your names. Put a comma between.
.translator_credits(&gettextrs::gettext("translator-credits"))
.translator_credits(gettextrs::gettext("translator-credits"))
.copyright("2021-2023 CachyOS team")
.license_type(gtk::License::Gpl30)
.website("https://github.com/cachyos/cachyos-welcome")