[vlc-devel] commit: XCBV/window: document ASCII VLC to translators ( Rémi Denis-Courmont )
git version control
git at videolan.org
Sat Jan 30 20:03:25 CET 2010
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sat Jan 30 21:02:52 2010 +0200| [8c1ba715636d0e273955f4e0a61f1da5955c300f] | committer: Rémi Denis-Courmont
XCBV/window: document ASCII VLC to translators
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=8c1ba715636d0e273955f4e0a61f1da5955c300f
---
modules/video_output/xcb/window.c | 9 ++++++++-
1 files changed, 8 insertions(+), 1 deletions(-)
diff --git a/modules/video_output/xcb/window.c b/modules/video_output/xcb/window.c
index 57f13df..33815dc 100644
--- a/modules/video_output/xcb/window.c
+++ b/modules/video_output/xcb/window.c
@@ -278,9 +278,16 @@ static int Open (vlc_object_t *obj)
/* ICCCM
* No cut&paste nor drag&drop, only Window Manager communication. */
- /* Plain ASCII localization of VLC for ICCCM window name */
+ /* 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.
+ 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. */
set_ascii_prop (conn, window, XA_WM_ICON_NAME,
vlc_pgettext ("ASCII", "VLC"));
set_wm_hints (conn, window);
More information about the vlc-devel
mailing list