Commit 41d66821 authored by Clément Stenac's avatar Clément Stenac

A few string fixes

Update PO files

Update and proofread of the french translation
parent aad6775b
......@@ -119,7 +119,7 @@ cdio_log_handler (cdio_log_level_t level, const char message[])
break;
default:
msg_Warn( p_cdda_input, message,
_("The above message had unknown cdio log level"),
"The above message had unknown cdio log level",
level);
}
return;
......@@ -175,7 +175,7 @@ uninit_log_handler (cdio_log_level_t level, const char message[])
default:
fprintf(stderr, "UNKNOWN ERROR: %s\n%s %d\n",
message,
_("The above message had unknown cdio log level"),
"The above message had unknown cdio log level",
level);
}
......@@ -239,15 +239,15 @@ CDDAReadBlocks( access_t * p_access )
p_block = block_New( p_access, i_blocks * CDIO_CD_FRAMESIZE_RAW );
if( !p_block)
{
msg_Err( p_access, _("Cannot get a new block of size: %i"),
msg_Err( p_access, "Cannot get a new block of size: %i",
i_blocks * CDIO_CD_FRAMESIZE_RAW );
return NULL;
}
if( cdio_read_audio_sectors( p_cdda->p_cdio, p_block->p_buffer,
p_cdda->i_lsn, i_blocks) != 0 )
p_cdda->i_lsn, i_blocks) != 0 )
{
msg_Err( p_access, _("could not read sector %lu"),
msg_Err( p_access, "could not read sector %lu",
(long unsigned int) p_cdda->i_lsn );
block_Release( p_block );
......@@ -307,7 +307,7 @@ GetCDDBInfo( access_t *p_access, cdda_data_t *p_cdda )
cddb_log_set_handler (uninit_log_handler);
if (!conn) {
msg_Warn( p_access, _("Unable to initialize libcddb") );
msg_Warn( p_access, "Unable to initialize libcddb" );
goto cddb_destroy;
}
......@@ -344,7 +344,7 @@ GetCDDBInfo( access_t *p_access, cdda_data_t *p_cdda )
p_cdda->cddb.disc = cddb_disc_new();
if (!p_cdda->cddb.disc) {
msg_Err( p_access, _("Unable to create CDDB disc structure.") );
msg_Err( p_access, "Unable to create CDDB disc structure." );
goto cddb_end;
}
......@@ -361,14 +361,14 @@ GetCDDBInfo( access_t *p_access, cdda_data_t *p_cdda )
/ CDIO_CD_FRAMES_PER_SEC;
if (!cddb_disc_calc_discid(p_cdda->cddb.disc)) {
msg_Err( p_access, _("CDDB disc ID calculation failed") );
msg_Err( p_access, "CDDB disc ID calculation failed" );
goto cddb_destroy;
}
i_matches = cddb_query(conn, p_cdda->cddb.disc);
if (i_matches > 0) {
if (i_matches > 1)
msg_Warn( p_access, _("Found %d matches in CDDB. Using first one."),
msg_Warn( p_access, "Found %d matches in CDDB. Using first one.",
i_matches);
cddb_read(conn, p_cdda->cddb.disc);
......@@ -376,7 +376,7 @@ GetCDDBInfo( access_t *p_access, cdda_data_t *p_cdda )
cddb_disc_print(p_cdda->cddb.disc);
} else {
msg_Warn( p_access, _("CDDB error: %s"), cddb_error_str(errno));
msg_Warn( p_access, "CDDB error: %s", cddb_error_str(errno));
}
cddb_destroy:
......@@ -869,7 +869,7 @@ E_(CDDAOpen)( vlc_object_t *p_this )
if (NULL == cd_drives || NULL == cd_drives[0] ) {
msg_Err( p_access,
_("libcdio couldn't find something with a CD-DA in it") );
"libcdio couldn't find something with a CD-DA in it" );
if (cd_drives) cdio_free_device_list(cd_drives);
return VLC_EGENERIC;
}
......@@ -1041,9 +1041,9 @@ static int CDDAControl( access_t *p_access, int i_query, va_list args )
vlc_meta_t **pp_meta = (vlc_meta_t**)va_arg( args, vlc_meta_t** );
if ( p_cdda->p_meta ) {
*pp_meta = vlc_meta_Duplicate( p_cdda->p_meta );
dbg_print( INPUT_DBG_META, "%s", _("Meta copied") );
dbg_print( INPUT_DBG_META, "%s", "Meta copied" );
} else
msg_Warn( p_access, _("Tried to copy NULL meta info") );
msg_Warn( p_access, "tried to copy NULL meta info" );
return VLC_SUCCESS;
}
......@@ -1118,7 +1118,7 @@ static int CDDAControl( access_t *p_access, int i_query, va_list args )
case ACCESS_SET_PRIVATE_ID_STATE:
return VLC_EGENERIC;
default:
msg_Warn( p_access, _("unimplemented query in control") );
msg_Warn( p_access, "unimplemented query in control" );
return VLC_EGENERIC;
}
......@@ -1156,7 +1156,7 @@ GetCDInfo( access_t *p_access, cdda_data_t *p_cdda )
default:
/* These are not possible for CD-DA */
msg_Err( p_access,
_("Disc seems not to be CD-DA. libcdio reports it is %s"),
"Disc seems not to be CD-DA. libcdio reports it is %s",
discmode2str[discmode]
);
return VLC_EGENERIC;
......
......@@ -55,8 +55,7 @@ static void DoWork ( aout_instance_t *, aout_filter_t *, aout_buffer_t *,
#define HEADPHONE_DIM_TEXT N_("Characteristic dimension")
#define HEADPHONE_DIM_LONGTEXT N_( \
"Headphone virtual spatialization effect parameter: "\
"distance between front left speaker and listener in meters.")
"Distance between front left speaker and listener in meters.")
vlc_module_begin();
set_description( N_("headphone channel mixer with virtual spatialization effect") );
......
......@@ -51,11 +51,13 @@ include/vlc_messages.h
include/vlc_meta.h
include/vlc_objects.h
include/vlc_playlist.h
include/vlc_spu.h
include/vlc_stream.h
include/vlc_threads.h
include/vlc_threads_funcs.h
include/vlc_video.h
include/vlc_vlm.h
include/vlc_vod.h
include/vout_synchro.h
include/win32_specific.h
src/audio_output/common.c
......@@ -128,9 +130,14 @@ src/vlc.c
# modules
modules/access/cdda.c
modules/access/cdda/access.c
modules/access/cdda/access.h
modules/access/cdda/callback.c
modules/access/cdda/callback.h
modules/access/cdda/cdda.c
modules/access/cdda/cdda.h
modules/access/directory.c
modules/access/dshow/common.h
modules/access/dshow/crossbar.cpp
modules/access/dshow/dshow.cpp
modules/access/dshow/filter.cpp
modules/access/dshow/filter.h
......@@ -342,6 +349,7 @@ modules/demux/mp4/libmp4.c
modules/demux/mp4/libmp4.h
modules/demux/mp4/mp4.c
modules/demux/mpeg/h264.c
modules/demux/mpeg/m4a.c
modules/demux/mpeg/m4v.c
modules/demux/mpeg/mpga.c
modules/demux/mpeg/mpgv.c
......@@ -363,6 +371,7 @@ modules/demux/ts.c
modules/demux/util/id3.c
modules/demux/util/id3genres.h
modules/demux/util/id3tag.c
modules/demux/vobsub.c
modules/demux/wav.c
modules/gui/beos/AudioOutput.cpp
modules/gui/beos/BeOS.cpp
......@@ -711,6 +720,7 @@ modules/misc/playlist/export.c
modules/misc/playlist/m3u.c
modules/misc/playlist/old.c
modules/misc/qte_main.cpp
modules/misc/rtsp.c
modules/misc/sap.c
modules/misc/screensaver.c
modules/misc/svg.c
......@@ -739,6 +749,7 @@ modules/packetizer/mpeg4video.c
modules/packetizer/mpegvideo.c
modules/stream_out/announce.c
modules/stream_out/announce.h
modules/stream_out/description.c
modules/stream_out/display.c
modules/stream_out/dummy.c
modules/stream_out/duplicate.c
......@@ -773,7 +784,24 @@ modules/video_filter/distort.c
modules/video_filter/filter_common.h
modules/video_filter/invert.c
modules/video_filter/logo.c
modules/video_filter/marq.c
modules/video_filter/motionblur.c
modules/video_filter/scale.c
modules/video_filter/swscale/common.h
modules/video_filter/swscale/filter.c
modules/video_filter/swscale/rgb2rgb.c
modules/video_filter/swscale/rgb2rgb.h
modules/video_filter/swscale/rgb2rgb_template.c
modules/video_filter/swscale/swscale.c
modules/video_filter/swscale/swscale.h
modules/video_filter/swscale/swscale_altivec_template.c
modules/video_filter/swscale/swscale_internal.h
modules/video_filter/swscale/swscale_template.c
modules/video_filter/swscale/yuv2rgb.c
modules/video_filter/swscale/yuv2rgb_altivec.c
modules/video_filter/swscale/yuv2rgb_mlib.c
modules/video_filter/swscale/yuv2rgb_template.c
modules/video_filter/time.c
modules/video_filter/transform.c
modules/video_filter/wall.c
modules/video_output/aa.c
......
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment