summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrbuj <[email protected]>2020-03-31 18:20:02 +0200
committerraveit65 <[email protected]>2020-04-21 16:32:35 +0200
commit0b51c98f08df605a87d264ae5a972b984238b3f4 (patch)
tree4ba09043cb1ff88d207262dea77fbe3191bd1943
parentc64a905a9f0a794fda3743cc4499dc5f063b0954 (diff)
downloadatril-0b51c98f08df605a87d264ae5a972b984238b3f4.tar.bz2
atril-0b51c98f08df605a87d264ae5a972b984238b3f4.tar.xz
ev-window: expand the comment on about dialog
-rw-r--r--shell/ev-window.c9
1 files 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;