]> git.saurik.com Git - wxWidgets.git/commitdiff
Don't translate closing single quote in the font face name.
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 12 Jun 2013 13:54:43 +0000 (13:54 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 12 Jun 2013 13:54:43 +0000 (13:54 +0000)
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

index 52936bfbe16e094a8499ffeb7ff3a0befe2475b9..aeeccfb9e3aa289d3d97f52b216028b59ed0f093 100644 (file)
@@ -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
             // 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;
         }
         else
             desc << wxT(' ') << face;