From 0b51c98f08df605a87d264ae5a972b984238b3f4 Mon Sep 17 00:00:00 2001 From: rbuj Date: Tue, 31 Mar 2020 18:20:02 +0200 Subject: ev-window: expand the comment on about dialog --- shell/ev-window.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/shell/ev-window.c b/shell/ev-window.c index 25e12274..e2dfbf72 100644 --- a/shell/ev-window.c +++ b/shell/ev-window.c @@ -5365,16 +5365,15 @@ ev_window_dual_mode_odd_pages_left_changed_cb (EvDocumentModel *model, static char * build_comments_string (EvDocument *document) { - gchar *comments = NULL; + gchar *comments; EvDocumentBackendInfo info; if (document && ev_document_get_backend_info (document, &info)) { comments = g_strdup_printf ( - _("Document Viewer\nUsing %s (%s)\nand SyncTeX %s"), - info.name, info.version, document->synctex_version); + _("Atril is a simple multi-page document viewer,\npowered by SyncTex %s and %s %s."), + document->synctex_version, info.name, info.version); } else { - comments = g_strdup_printf ( - _("Document Viewer")); + comments = g_strdup (_("Atril is a simple multi-page document viewer.")); } return comments; -- cgit v1.2.1