Commit e621ea03 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Fix/improve some strings

parent e0b2c38d
...@@ -86,8 +86,8 @@ static void DemuxClose( vlc_object_t * ); ...@@ -86,8 +86,8 @@ static void DemuxClose( vlc_object_t * );
#define CFG_PREFIX "alsa-" #define CFG_PREFIX "alsa-"
vlc_module_begin() vlc_module_begin()
set_shortname( N_("Alsa") ) set_shortname( N_("ALSA") )
set_description( N_("Alsa audio capture input") ) set_description( N_("ALSA audio capture input") )
set_category( CAT_INPUT ) set_category( CAT_INPUT )
set_subcategory( SUBCAT_INPUT_ACCESS ) set_subcategory( SUBCAT_INPUT_ACCESS )
set_help( HELP_TEXT ) set_help( HELP_TEXT )
......
...@@ -31,7 +31,7 @@ int OpenAvio (vlc_object_t *); ...@@ -31,7 +31,7 @@ int OpenAvio (vlc_object_t *);
void CloseAvio(vlc_object_t *); void CloseAvio(vlc_object_t *);
#define AVIO_MODULE \ #define AVIO_MODULE \
set_shortname(N_("Avio")) \ set_shortname(N_("FFmpeg")) \
set_description(N_("FFmpeg access") ) \ set_description(N_("FFmpeg access") ) \
set_category(CAT_INPUT) \ set_category(CAT_INPUT) \
set_subcategory(SUBCAT_INPUT_ACCESS) \ set_subcategory(SUBCAT_INPUT_ACCESS) \
......
/***************************************************************************** /*****************************************************************************
* netsync.c: synchronisation between several network clients. * netsync.c: synchronization between several network clients.
***************************************************************************** *****************************************************************************
* Copyright (C) 2004-2009 the VideoLAN team * Copyright (C) 2004-2009 the VideoLAN team
* $Id$ * $Id$
...@@ -56,20 +56,20 @@ static void Close(vlc_object_t *); ...@@ -56,20 +56,20 @@ static void Close(vlc_object_t *);
#define NETSYNC_TEXT N_("Network master clock") #define NETSYNC_TEXT N_("Network master clock")
#define NETSYNC_LONGTEXT N_("When set then " \ #define NETSYNC_LONGTEXT N_("When set then " \
"this vlc instance shall dictate its clock for synchronisation" \ "This VLC instance shall dictate its clock for synchronization " \
"over clients listening on the masters network ip address") "over clients listening on the masters network ip address")
#define MIP_TEXT N_("Master server ip address") #define MIP_TEXT N_("Master server ip address")
#define MIP_LONGTEXT N_("The IP address of " \ #define MIP_LONGTEXT N_("The IP address of " \
"the network master clock to use for clock synchronisation.") "The network master clock to use for clock synchronization.")
#define NETSYNC_TIMEOUT_TEXT N_("UDP timeout (in ms)") #define NETSYNC_TIMEOUT_TEXT N_("UDP timeout (in ms)")
#define NETSYNC_TIMEOUT_LONGTEXT N_("Amount of time (in ms) " \ #define NETSYNC_TIMEOUT_LONGTEXT N_("Length of time (in ms) " \
"to wait before aborting network reception of data.") "until aborting data reception.")
vlc_module_begin() vlc_module_begin()
set_shortname(N_("Network Sync")) set_shortname(N_("Network Sync"))
set_description(N_("Network synchronisation")) set_description(N_("Network synchronization"))
set_category(CAT_ADVANCED) set_category(CAT_ADVANCED)
set_subcategory(SUBCAT_ADVANCED_MISC) set_subcategory(SUBCAT_ADVANCED_MISC)
......
...@@ -642,8 +642,8 @@ static const char *const ppsz_pos_descriptions[] = ...@@ -642,8 +642,8 @@ static const char *const ppsz_pos_descriptions[] =
#define CLOCK_JITTER_TEXT N_("Clock jitter") #define CLOCK_JITTER_TEXT N_("Clock jitter")
#define CLOCK_JITTER_LONGTEXT N_( \ #define CLOCK_JITTER_LONGTEXT N_( \
"It tells the clock algorithms what is the maximal input jitter that " \ "This defines the maximum input delay jitter that the synchronization " \
"is considered valid and can be compensated (in milliseconds)" ) "algorithms should try to compensate (in milliseconds)." )
#define NETSYNC_TEXT N_("Network synchronisation" ) #define NETSYNC_TEXT N_("Network synchronisation" )
#define NETSYNC_LONGTEXT N_( "This allows you to remotely " \ #define NETSYNC_LONGTEXT N_( "This allows you to remotely " \
......
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