[vlc-devel] commit: Fix double translation ( Rémi Denis-Courmont )
git version control
git at videolan.org
Thu Jan 29 17:24:31 CET 2009
vlc | branch: master | Rémi Denis-Courmont <rdenis at simphalempin.com> | Thu Jan 29 18:23:31 2009 +0200| [5d682437148aa02bea68fe7225cad26000c81ea3] | committer: Rémi Denis-Courmont
Fix double translation
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=5d682437148aa02bea68fe7225cad26000c81ea3
---
modules/video_output/xcb/xcb.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/video_output/xcb/xcb.c b/modules/video_output/xcb/xcb.c
index 2cd95fb..9cf1535 100644
--- a/modules/video_output/xcb/xcb.c
+++ b/modules/video_output/xcb/xcb.c
@@ -59,8 +59,8 @@ static void Close (vlc_object_t *);
* Module descriptor
*/
vlc_module_begin ()
- set_shortname (_("XCB"))
- set_description (_("(Experimental) XCB video output"))
+ set_shortname (N_("XCB"))
+ set_description (N_("(Experimental) XCB video output"))
set_category (CAT_VIDEO)
set_subcategory (SUBCAT_VIDEO_VOUT)
set_capability ("video output", 0)
More information about the vlc-devel
mailing list