From 08267a6e1f3a600064949718f554734292f7d1f8 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 12 Jun 2013 13:54:43 +0000 Subject: [PATCH] Don't translate closing single quote in the font face name. This is completely unnecessary and just creates extra work for the translators. See #15247. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74181 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/fontcmn.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/fontcmn.cpp b/src/common/fontcmn.cpp index 52936bfbe1..aeeccfb9e3 100644 --- a/src/common/fontcmn.cpp +++ b/src/common/fontcmn.cpp @@ -842,7 +842,7 @@ wxString wxNativeFontInfo::ToUserString() const // that the different words which compose this facename are // not different adjectives or other data but rather all parts // of the facename - desc << wxT(" '") << face << _("'"); + desc << wxT(" '") << face << wxT("'"); } else desc << wxT(' ') << face; -- 2.45.2