[MPlayer-cvslog] r36470 - in trunk: help/help_mp-bg.h help/help_mp-cs.h help/help_mp-de.h help/help_mp-en.h help/help_mp-es.h help/help_mp-fr.h help/help_mp-hu.h help/help_mp-it.h help/help_mp-nl.h help/help_mp-pl....
al
subversion at mplayerhq.hu
Wed Oct 16 20:56:17 CEST 2013
Author: al
Date: Wed Oct 16 20:56:16 2013
New Revision: 36470
Log:
vo jpeg, png, pnm: Make output directory message less confusing
The current message is rather irritating and could be easily misread
as an error.
Modified:
trunk/libvo/vo_jpeg.c
trunk/libvo/vo_png.c
trunk/libvo/vo_pnm.c
Changes in other areas also in this revision:
Modified:
trunk/help/help_mp-bg.h
trunk/help/help_mp-cs.h
trunk/help/help_mp-de.h
trunk/help/help_mp-en.h
trunk/help/help_mp-es.h
trunk/help/help_mp-fr.h
trunk/help/help_mp-hu.h
trunk/help/help_mp-it.h
trunk/help/help_mp-nl.h
trunk/help/help_mp-pl.h
trunk/help/help_mp-ru.h
trunk/help/help_mp-sv.h
trunk/help/help_mp-tr.h
trunk/help/help_mp-uk.h
trunk/help/help_mp-zh_CN.h
trunk/help/help_mp-zh_TW.h
Modified: trunk/libvo/vo_jpeg.c
==============================================================================
--- trunk/libvo/vo_jpeg.c Wed Oct 16 19:47:16 2013 (r36469)
+++ trunk/libvo/vo_jpeg.c Wed Oct 16 20:56:16 2013 (r36470)
@@ -134,8 +134,7 @@ static void jpeg_mkdir(const char *buf,
exit_player(EXIT_ERROR);
}
- mp_msg(MSGT_VO, MSGL_INFO, "%s: %s - %s\n", info.short_name,
- buf, MSGTR_VO_DirExistsAndIsWritable);
+ mp_msg(MSGT_VO, MSGL_INFO, "%s: %s: %s\n", info.short_name, MSGTR_VO_OutputDirectory, buf);
break;
default:
Modified: trunk/libvo/vo_png.c
==============================================================================
--- trunk/libvo/vo_png.c Wed Oct 16 19:47:16 2013 (r36469)
+++ trunk/libvo/vo_png.c Wed Oct 16 20:56:16 2013 (r36470)
@@ -91,8 +91,7 @@ static void png_mkdir(char *buf, int ver
exit_player(EXIT_ERROR);
}
- mp_msg(MSGT_VO, MSGL_INFO, "%s: %s - %s\n", info.short_name,
- buf, MSGTR_VO_DirExistsAndIsWritable);
+ mp_msg(MSGT_VO, MSGL_INFO, "%s: %s: %s\n", info.short_name, MSGTR_VO_OutputDirectory, buf);
break;
default:
Modified: trunk/libvo/vo_pnm.c
==============================================================================
--- trunk/libvo/vo_pnm.c Wed Oct 16 19:47:16 2013 (r36469)
+++ trunk/libvo/vo_pnm.c Wed Oct 16 20:56:16 2013 (r36470)
@@ -228,8 +228,7 @@ static void pnm_mkdir(char *buf, int ver
}
if (strcmp(buf, ".") != 0) {
- mp_msg(MSGT_VO, MSGL_INFO, "%s: %s - %s\n", info.short_name,
- buf, MSGTR_VO_DirExistsAndIsWritable);
+ mp_msg(MSGT_VO, MSGL_INFO, "%s: %s: %s\n", info.short_name, MSGTR_VO_OutputDirectory, buf);
}
break;
More information about the MPlayer-cvslog
mailing list