]> git.sesse.net Git - vlc/commitdiff
file out: translate override dialog
authorRémi Denis-Courmont <remi@remlab.net>
Sun, 30 Sep 2012 13:04:10 +0000 (16:04 +0300)
committerRémi Denis-Courmont <remi@remlab.net>
Sun, 30 Sep 2012 13:51:44 +0000 (16:51 +0300)
modules/access_output/file.c

index 421ac597e6cb98c86f590d96e1cc7c317ecf8e2c..852ba11a86dbca710b7b77624ecc3277cb9b59d1 100644 (file)
@@ -184,11 +184,11 @@ static int Open( vlc_object_t *p_this )
             flags &= ~O_EXCL;
         }
         while (dialog_Question (p_access, path,
-                                N_("The output file already exists. "
+                                _("The output file already exists. "
                                 "If recording continues, the file will be "
                                 "overridden and its content will be lost."),
-                                N_("Keep existing file"),
-                                N_("Overwrite"), NULL) == 2);
+                                _("Keep existing file"),
+                                _("Overwrite"), NULL) == 2);
         free (path);
         if (fd == -1)
             return VLC_EGENERIC;