From: Martin Kretzschmar Date: Mon, 25 Jul 2005 08:01:23 +0000 (+0000) Subject: (font_type_to_string): Remove trailing space from "unknown font" X-Git-Tag: EVINCE_0_3_3~82 X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=commitdiff_plain;h=22125ebfe1521762c29554e272fa7f3d9ae49d68;p=evince.git (font_type_to_string): Remove trailing space from "unknown font" string. Bug #311431 --- 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"); } }