vlc | branch: master | Rémi Denis-Courmont <[email protected]> | Sat May 16 23:27:02 2015 +0300| [3d94da0dbd0c468c493ae8d9c8f0b993d65da3b0] | committer: Rémi Denis-Courmont
mkv: remove incorrect use of N_() > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=3d94da0dbd0c468c493ae8d9c8f0b993d65da3b0 --- modules/demux/mkv/chapter_command.cpp | 10 +++++----- modules/demux/mkv/demux.cpp | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/modules/demux/mkv/chapter_command.cpp b/modules/demux/mkv/chapter_command.cpp index a6821d6..30eee29 100644 --- a/modules/demux/mkv/chapter_command.cpp +++ b/modules/demux/mkv/chapter_command.cpp @@ -133,28 +133,28 @@ std::string dvd_chapter_codec_c::GetCodecName( bool f_for_title ) const uint16_t i_title = (p_data[1] << 8) + p_data[2]; char psz_str[11]; sprintf( psz_str, " %d ---", i_title ); - result = N_("--- DVD Title"); + result = "--- DVD Title"; result += psz_str; } else */ if ( p_data[0] == MATROSKA_DVD_LEVEL_LU ) { char psz_str[11]; sprintf( psz_str, " (%c%c) ---", p_data[1], p_data[2] ); - result = N_("--- DVD Menu"); + result = "--- DVD Menu"; result += psz_str; } else if ( p_data[0] == MATROSKA_DVD_LEVEL_SS && f_for_title ) { if ( p_data[1] == 0x00 ) - result = N_("First Played"); + result = "First Played"; else if ( p_data[1] == 0xC0 ) - result = N_("Video Manager"); + result = "Video Manager"; else if ( p_data[1] == 0x80 ) { uint16_t i_title = (p_data[2] << 8) + p_data[3]; char psz_str[20]; sprintf( psz_str, " %d -----", i_title ); - result = N_("----- Title"); + result = "----- Title"; result += psz_str; } } diff --git a/modules/demux/mkv/demux.cpp b/modules/demux/mkv/demux.cpp index c49c5cb..9ed3729 100644 --- a/modules/demux/mkv/demux.cpp +++ b/modules/demux/mkv/demux.cpp @@ -705,7 +705,7 @@ bool demux_sys_t::PreloadLinked() } if( !p_title->psz_name && - asprintf(&(p_title->psz_name), "%s %d", N_("Segment"), (int)ij) == -1 ) + asprintf(&(p_title->psz_name), "%s %d", "Segment", (int)ij) == -1 ) p_title->psz_name = NULL; } } _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
