From 22125ebfe1521762c29554e272fa7f3d9ae49d68 Mon Sep 17 00:00:00 2001 From: Martin Kretzschmar Date: Mon, 25 Jul 2005 08:01:23 +0000 Subject: [PATCH] (font_type_to_string): Remove trailing space from "unknown font" string. Bug #311431 --- ChangeLog | 5 +++++ pdf/ev-poppler.cc | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index d1b66196..b80c16b8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-07-25 Martin Kretzschmar + + * pdf/ev-poppler.cc (font_type_to_string): Remove trailing space + from "unknown font" string. Bug #311431 + 2005-07-24 Martin Kretzschmar * help/es/.cvsignore, help/sr/.cvsignore: ignore xmlpo output. diff --git a/pdf/ev-poppler.cc b/pdf/ev-poppler.cc index be2de7de..29f18cf0 100644 --- a/pdf/ev-poppler.cc +++ b/pdf/ev-poppler.cc @@ -698,7 +698,7 @@ font_type_to_string (PopplerFontType type) case POPPLER_FONT_TYPE_CID_TYPE2: return _("TrueType (CID)"); default: - return _("Unknown font type "); + return _("Unknown font type"); } } -- 2.47.1