From 51d815ff44cbf4a788ad3bba558632bb5f4544c4 Mon Sep 17 00:00:00 2001 From: Frank Lanitz Date: Wed, 28 Feb 2018 17:23:45 +0100 Subject: [PATCH] Add missing space in string. Fixes #1789 --- src/document.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/document.c b/src/document.c index a253cb3b..d5d37b9b 100644 --- a/src/document.c +++ b/src/document.c @@ -1492,7 +1492,7 @@ GeanyDocument *document_open_file_full(GeanyDocument *doc, const gchar *filename /* For translators: this is the status window message for opening a file. %d is the number * of the newly opened file, %s indicates whether the file is opened read-only * (it is replaced with the string ", read-only"). */ - msgwin_status_add(_("File %s opened(%d%s)."), + msgwin_status_add(_("File %s opened (%d%s)."), display_filename, gtk_notebook_get_n_pages(GTK_NOTEBOOK(main_widgets.notebook)), (readonly) ? _(", read-only") : ""); }