[vlc-commits] dshow: missing translation (fixes #19160)

Rémi Denis-Courmont git at videolan.org
Mon Nov 27 17:15:43 CET 2017


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Mon Nov 27 18:15:09 2017 +0200| [13088dda5dd16beb08c52553d37ab88142d4f572] | committer: Rémi Denis-Courmont

dshow: missing translation (fixes #19160)

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=13088dda5dd16beb08c52553d37ab88142d4f572
---

 modules/access/dshow/dshow.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/access/dshow/dshow.cpp b/modules/access/dshow/dshow.cpp
index 0bc457cc2f..2453a9f2e4 100644
--- a/modules/access/dshow/dshow.cpp
+++ b/modules/access/dshow/dshow.cpp
@@ -2072,9 +2072,9 @@ static int FindDevices( vlc_object_t *p_this, const char *psz_name,
     char **texts = (char **)xmalloc( count * sizeof(*texts) );
 
     values[0] = strdup( "" );
-    texts[0] = strdup( N_("Default") );
+    texts[0] = strdup( _("Default") );
     values[1] = strdup( "none" );
-    texts[1] = strdup( N_("None") );
+    texts[1] = strdup( _("None") );
 
     for( std::list<std::string>::iterator iter = list_devices.begin();
          iter != list_devices.end();



More information about the vlc-commits mailing list