From ba7efd136e3fe599178cc1c47a7170059b910a1c Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=BCrgen=20Spitzm=C3=BCller?= Date: Sun, 11 Oct 2009 09:34:13 +0000 Subject: [PATCH] * InsetInclude.cpp: - use bformat for syntactically proper translatable message. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@31586 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/insets/InsetInclude.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/insets/InsetInclude.cpp b/src/insets/InsetInclude.cpp index 6a09af87a4..1169dff4ce 100644 --- a/src/insets/InsetInclude.cpp +++ b/src/insets/InsetInclude.cpp @@ -653,9 +653,9 @@ docstring InsetInclude::xhtml(odocstream & os, OutputParams const &rp) const makeAbsPath(to_utf8(params()["filename"]), onlyPath(parent_filename)); if (!isLyXFilename(included_file.absFilename())) { frontend::Alert::warning(_("Unsupported Inclusion"), - _("LyX does not know how to include non-LyX files when " - "generating HTML output. Offending file: ") + - params()["filename"]); + bformat(_("LyX does not know how to include non-LyX files when " + "generating HTML output. Offending file:\n%1$s"), + params()["filename"])); return docstring(); } -- 2.39.5