Add missing space in string. Fixes #1789

This commit is contained in:
Frank Lanitz 2018-02-28 17:23:45 +01:00
parent 045a92a7a4
commit 51d815ff44

View File

@ -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") : "");
}