Merge branch 'wip/piotrdrag/unmark-copyright' into 'master'

aboutdialog: Unmark copyright string from translation

See merge request World/podcasts!51
This commit is contained in:
Jordan Petridis 2018-08-10 04:36:54 +00:00
commit 778975fbde

View File

@ -24,7 +24,7 @@ pub(crate) fn about_dialog(window: &gtk::ApplicationWindow) {
let dialog = gtk::AboutDialog::new(); let dialog = gtk::AboutDialog::new();
dialog.set_logo_icon_name(APP_ID); dialog.set_logo_icon_name(APP_ID);
dialog.set_comments(i18n("Podcast Client for the GNOME Desktop.").as_str()); dialog.set_comments(i18n("Podcast Client for the GNOME Desktop.").as_str());
dialog.set_copyright(i18n("© 2017, 2018 Jordan Petridis").as_str()); dialog.set_copyright("© 2017, 2018 Jordan Petridis");
dialog.set_license_type(gtk::License::Gpl30); dialog.set_license_type(gtk::License::Gpl30);
dialog.set_modal(true); dialog.set_modal(true);
// TODO: make it show it fetches the commit hash from which it was built // TODO: make it show it fetches the commit hash from which it was built