From 57f920624fe75039583a862863bb30065b8e33bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Dr=C4=85g?= Date: Thu, 9 Aug 2018 23:53:39 +0200 Subject: [PATCH] aboutdialog: Unmark copyright string from translation --- podcasts-gtk/src/widgets/aboutdialog.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/podcasts-gtk/src/widgets/aboutdialog.rs b/podcasts-gtk/src/widgets/aboutdialog.rs index a1bda53..2340a1d 100644 --- a/podcasts-gtk/src/widgets/aboutdialog.rs +++ b/podcasts-gtk/src/widgets/aboutdialog.rs @@ -24,7 +24,7 @@ pub(crate) fn about_dialog(window: >k::ApplicationWindow) { let dialog = gtk::AboutDialog::new(); dialog.set_logo_icon_name(APP_ID); 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_modal(true); // TODO: make it show it fetches the commit hash from which it was built