From 5cfad5f0add4922eb37b289b13692461293deb8e Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Mon, 20 Nov 2017 12:40:09 -0500 Subject: about(:version): Split copyright date and holder out of TLed string --- 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.")), -- cgit v0.9.1