Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
ee5b45c2
Commit
ee5b45c2
authored
May 12, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
XCB/window: fix xgettext comments
(cherry picked from commit 82afaa7160855901690f1ae9667904ff1a03e6a1)
parent
bf802ce0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
modules/video_output/xcb/window.c
modules/video_output/xcb/window.c
+8
-8
No files found.
modules/video_output/xcb/window.c
View file @
ee5b45c2
...
...
@@ -279,17 +279,17 @@ static int Open (vlc_object_t *obj)
/* ICCCM
* No cut&paste nor drag&drop, only Window Manager communication. */
/* xgettext:
Plain ASCII of "VLC media player" for the ICCCM window name.
This must be ASCII. The limitation is partially with ICCCM
and partially with VLC.
set_ascii_prop
(
conn
,
window
,
XA_WM_NAME
,
/* xgettext: This is a plain ASCII spelling of "VLC media player"
for the ICCCM window name. This must be pure ASCII.
The limitation is partially with ICCCM
and partially with VLC.
For Latin script languages, you may need to strip accents.
For other scripts, you will need to transliterate into Latin. */
set_ascii_prop
(
conn
,
window
,
XA_WM_NAME
,
vlc_pgettext
(
"ASCII"
,
"VLC media player"
));
/* xgettext:
Plain ASCII of "VLC" for the ICCCM window name. */
vlc_pgettext
(
"ASCII"
,
"VLC media player"
));
set_ascii_prop
(
conn
,
window
,
XA_WM_ICON_NAME
,
/* xgettext: This is a plain ASCII spelling of "VLC"
for the ICCCM window name. This must be pure ASCII. */
vlc_pgettext
(
"ASCII"
,
"VLC"
));
set_wm_hints
(
conn
,
window
);
xcb_change_property
(
conn
,
XCB_PROP_MODE_REPLACE
,
window
,
XA_WM_CLASS
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment