Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alexey Alyaev
wine
Commits
8f08aee0
Commit
8f08aee0
authored
7 years ago
by
Alexandre Julliard
Browse files
Options
Downloads
Patches
Plain Diff
wrc: Only add translations for specific fields in version blocks.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
9694aeb0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/wine/wine_common_ver.rc
+6
-6
6 additions, 6 deletions
include/wine/wine_common_ver.rc
tools/wrc/po.c
+17
-1
17 additions, 1 deletion
tools/wrc/po.c
with
23 additions
and
7 deletions
include/wine/wine_common_ver.rc
+
6
−
6
View file @
8f08aee0
...
...
@@ -125,14 +125,14 @@ FILESUBTYPE WINE_FILESUBTYPE
/* LANG_ENGLISH/SUBLANG_DEFAULT, WINE_CODEPAGE */
BLOCK "0409" WINE_CODEPAGE_STR
{
VALUE "CompanyName", "
#msgctxt#do not translate#
Microsoft Corporation" /* GameGuard depends on this */
VALUE "CompanyName", "Microsoft Corporation" /* GameGuard depends on this */
VALUE "FileDescription", WINE_FILEDESCRIPTION_STR
VALUE "FileVersion",
"#msgctxt#do not translate#"
WINE_FILEVERSION_STR
VALUE "InternalName",
"#msgctxt#do not translate#"
WINE_FILENAME
VALUE "LegalCopyright",
"#msgctxt#do not translate#"
WINE_LEGALCOPYRIGHT
VALUE "OriginalFilename",
"#msgctxt#do not translate#"
WINE_FILENAME_STR
VALUE "FileVersion", WINE_FILEVERSION_STR
VALUE "InternalName", WINE_FILENAME
VALUE "LegalCopyright", WINE_LEGALCOPYRIGHT
VALUE "OriginalFilename", WINE_FILENAME_STR
VALUE "ProductName", WINE_PRODUCTNAME_STR
VALUE "ProductVersion",
"#msgctxt#do not translate#"
WINE_PRODUCTVERSION_STR
VALUE "ProductVersion", WINE_PRODUCTVERSION_STR
WINE_EXTRAVALUES
}
}
...
...
This diff is collapsed.
Click to expand it.
tools/wrc/po.c
+
17
−
1
View file @
8f08aee0
...
...
@@ -917,6 +917,21 @@ static ver_block_t *get_version_langcharset_block( ver_block_t *block )
return
NULL
;
}
static
int
version_value_needs_translation
(
const
ver_value_t
*
val
)
{
int
ret
;
char
*
key
;
if
(
val
->
type
!=
val_str
)
return
0
;
if
(
!
(
key
=
convert_msgid_ascii
(
val
->
key
,
0
)))
return
0
;
/* most values contain version numbers or file names, only translate a few specific ones */
ret
=
(
!
strcasecmp
(
key
,
"FileDescription"
)
||
!
strcasecmp
(
key
,
"ProductName"
));
free
(
key
);
return
ret
;
}
static
void
add_pot_versioninfo
(
po_file_t
po
,
const
resource_t
*
res
)
{
ver_value_t
*
val
;
...
...
@@ -924,7 +939,8 @@ static void add_pot_versioninfo( po_file_t po, const resource_t *res )
if
(
!
langcharset
)
return
;
for
(
val
=
langcharset
->
values
;
val
;
val
=
val
->
next
)
add_po_string
(
po
,
val
->
value
.
str
,
NULL
,
NULL
);
if
(
version_value_needs_translation
(
val
))
add_po_string
(
po
,
val
->
value
.
str
,
NULL
,
NULL
);
}
static
void
add_po_versioninfo
(
const
resource_t
*
english
,
const
resource_t
*
res
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment