summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexei Podtelezhnikov <apodtele@gmail.com>2022-08-26 22:24:02 -0400
committerAlexei Podtelezhnikov <apodtele@gmail.com>2022-08-26 22:24:02 -0400
commitdd91f6e7f5a051818070c49715125fb72074023e (patch)
tree86d1381e636a820c03a864b0689a49a622b152e1
parent4797b2ff22906ce4ff4e6dcee300a70f94dcc43a (diff)
downloadfreetype2-dd91f6e7f5a051818070c49715125fb72074023e.tar.gz
* src/base/ftver.rc: Explicitly use UTF-16.
Fixes #1177 to avoid mistranslation and other problems.
-rw-r--r--src/base/ftver.rc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/base/ftver.rc b/src/base/ftver.rc
index eb6090ecc..26d2c3f88 100644
--- a/src/base/ftver.rc
+++ b/src/base/ftver.rc
@@ -38,14 +38,14 @@ FILETYPE VFT_STATIC_LIB
BEGIN
BLOCK "StringFileInfo"
BEGIN
- BLOCK "040904E4"
+ BLOCK "040904B0"
BEGIN
VALUE "CompanyName", "The FreeType Project"
VALUE "FileDescription", "Font Rendering Library"
VALUE "FileVersion", FT_VERSION_STR
VALUE "ProductName", "FreeType"
VALUE "ProductVersion", FT_VERSION_STR
- VALUE "LegalCopyright", "\251 2000-2022 The FreeType Project www.freetype.org. All rights reserved."
+ VALUE "LegalCopyright", L"\x00A9 2000-2022 The FreeType Project www.freetype.org. All rights reserved."
VALUE "InternalName", "freetype"
VALUE "OriginalFilename", FT_FILENAME
END
@@ -56,6 +56,6 @@ BEGIN
/* The following line should only be modified for localized versions. */
/* It consists of any number of WORD,WORD pairs, with each pair */
/* describing a "language,codepage" combination supported by the file. */
- VALUE "Translation", 0x409, 1252
+ VALUE "Translation", 0x409, 1200
END
END