diff options
-rw-r--r-- | src/schemes/about/version.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/schemes/about/version.c b/src/schemes/about/version.c index 1619dfe..5d05daa 100644 --- a/src/schemes/about/version.c +++ b/src/schemes/about/version.c @@ -52,8 +52,9 @@ mq_about_version_response(MqApplication G_GNUC_UNUSED *application, PACKAGE_VERSION_GIT, NULL)), /* TODO: Comments */ /* TODO: Web site link */ - mq_html_p(_("Copyright © 2017 " - "Patrick McDermott")), + mq_html_p_free(g_strdup_printf( + _("Copyright © %s %s"), + "2017", "Patrick McDermott")), mq_html_p(_("This program comes with " "ABSOLUTELY NO WARRANTY. " "See the license text for details.")), |