[vlc-commits] file out: translate override dialog
Rémi Denis-Courmont
git at videolan.org
Sun Sep 30 15:51:49 CEST 2012
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sun Sep 30 16:04:10 2012 +0300| [77646da009115d81af8dd29277e7c5f8ae44272c] | committer: Rémi Denis-Courmont
file out: translate override dialog
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=77646da009115d81af8dd29277e7c5f8ae44272c
---
modules/access_output/file.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/modules/access_output/file.c b/modules/access_output/file.c
index 421ac59..852ba11 100644
--- a/modules/access_output/file.c
+++ b/modules/access_output/file.c
@@ -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;
More information about the vlc-commits
mailing list