Commit 2fc17568 authored by Clément Stenac's avatar Clément Stenac

Strings

parent 3975d8c9
...@@ -42,6 +42,7 @@ static int Open ( vlc_object_t * ); ...@@ -42,6 +42,7 @@ static int Open ( vlc_object_t * );
static void Close( vlc_object_t * ); static void Close( vlc_object_t * );
#define GRANULARITY_TEXT N_("Timeshift granularity") #define GRANULARITY_TEXT N_("Timeshift granularity")
/// \bug [String] typo
#define GRANULARITY_LONGTEXT N_( "This is the size of the temporary files " \ #define GRANULARITY_LONGTEXT N_( "This is the size of the temporary files " \
"tha will be used to store the timeshifted streams." ) "tha will be used to store the timeshifted streams." )
#define DIR_TEXT N_("Timeshift directory") #define DIR_TEXT N_("Timeshift directory")
......
...@@ -53,6 +53,7 @@ static void Close( vlc_object_t * ); ...@@ -53,6 +53,7 @@ static void Close( vlc_object_t * );
#define PRESET_LONGTEXT N_("Preset to use for the equalizer." ) #define PRESET_LONGTEXT N_("Preset to use for the equalizer." )
#define BANDS_TEXT N_( "Bands gain") #define BANDS_TEXT N_( "Bands gain")
/// \bug [String] missing dot
#define BANDS_LONGTEXT N_( \ #define BANDS_LONGTEXT N_( \
"Don't use presets, but manually specified bands. You need to " \ "Don't use presets, but manually specified bands. You need to " \
"provide 10 values between -20dB and 20dB, separated by spaces, " \ "provide 10 values between -20dB and 20dB, separated by spaces, " \
......
...@@ -34,6 +34,7 @@ ...@@ -34,6 +34,7 @@
* Module descriptor * Module descriptor
*****************************************************************************/ *****************************************************************************/
#define AUTOSTART_TEXT N_( "Auto start" ) #define AUTOSTART_TEXT N_( "Auto start" )
/// \bug [String] Why \n ?
#define AUTOSTART_LONGTEXT N_( "Automatically start playing the playlist " \ #define AUTOSTART_LONGTEXT N_( "Automatically start playing the playlist " \
"content once it's loaded.\n" ) "content once it's loaded.\n" )
......
...@@ -598,6 +598,7 @@ static VLCExtended *_o_sharedInstance = nil; ...@@ -598,6 +598,7 @@ static VLCExtended *_o_sharedInstance = nil;
- (IBAction)vidFlts_mrInfo:(id)sender - (IBAction)vidFlts_mrInfo:(id)sender
{ {
/* show info sheet */ /* show info sheet */
/// \bug [String] Misplaced \n
NSBeginInformationalAlertSheet(_NS("More Information"), _NS("OK"), @"", @"", \ NSBeginInformationalAlertSheet(_NS("More Information"), _NS("OK"), @"", @"", \
o_extended_window, nil, nil, nil, nil, _NS("This panel allows to " \ o_extended_window, nil, nil, nil, nil, _NS("This panel allows to " \
"select video effects filters to apply.\n" \ "select video effects filters to apply.\n" \
......
...@@ -343,6 +343,7 @@ static int DemuxControl( demux_t *p_demux, int i_query, va_list args ) ...@@ -343,6 +343,7 @@ static int DemuxControl( demux_t *p_demux, int i_query, va_list args )
#define SKINS2_LAST N_("Skin to use") #define SKINS2_LAST N_("Skin to use")
#define SKINS2_LAST_LONG N_("Path to the skin to use.") #define SKINS2_LAST_LONG N_("Path to the skin to use.")
#define SKINS2_CONFIG N_("Config of last used skin") #define SKINS2_CONFIG N_("Config of last used skin")
/// \bug [String] missing "skin". Remove "by the skins module". Add "do not touch"
#define SKINS2_CONFIG_LONG N_("Windows configuration of the last used. " \ #define SKINS2_CONFIG_LONG N_("Windows configuration of the last used. " \
"This option is updated automatically by the skins module." ) "This option is updated automatically by the skins module." )
......
...@@ -83,6 +83,7 @@ static int SetFontSize( filter_t *, int ); ...@@ -83,6 +83,7 @@ static int SetFontSize( filter_t *, int );
#define FONT_TEXT N_("Font") #define FONT_TEXT N_("Font")
#define FONT_LONGTEXT N_("Filename for the font you want to use") #define FONT_LONGTEXT N_("Filename for the font you want to use")
#define FONTSIZE_TEXT N_("Font size in pixels") #define FONTSIZE_TEXT N_("Font size in pixels")
/// \bug [String] Extra space
#define FONTSIZE_LONGTEXT N_("This is the default size of the fonts " \ #define FONTSIZE_LONGTEXT N_("This is the default size of the fonts " \
"that will be rendered on the video. " \ "that will be rendered on the video. " \
"If set to something different than 0 this option will override the " \ "If set to something different than 0 this option will override the " \
......
...@@ -52,14 +52,19 @@ static int CheckAndSend( vlc_object_t *p_this, uint8_t* p_data, int i_offset ); ...@@ -52,14 +52,19 @@ static int CheckAndSend( vlc_object_t *p_this, uint8_t* p_data, int i_offset );
/***************************************************************************** /*****************************************************************************
* Module descriptor * Module descriptor
****************************************************************************/ ****************************************************************************/
/// \bug [String] REmove all "Growl" in short desc
#define SERVER_DEFAULT "127.0.0.1" #define SERVER_DEFAULT "127.0.0.1"
#define SERVER_TEXT N_("Growl server") #define SERVER_TEXT N_("Growl server")
#define SERVER_LONGTEXT N_("This is the host to which Growl notifications " \ #define SERVER_LONGTEXT N_("This is the host to which Growl notifications " \
"will be sent. By default, notifications are sent locally." ) "will be sent. By default, notifications are sent locally." )
#define PASS_DEFAULT "" #define PASS_DEFAULT ""
#define PASS_TEXT N_("Growl password") #define PASS_TEXT N_("Growl password")
/// \bug [String] Password on the Growl server.
#define PASS_LONGTEXT N_("Growl password on the server.") #define PASS_LONGTEXT N_("Growl password on the server.")
#define PORT_TEXT N_("Growl UDP port") #define PORT_TEXT N_("Growl UDP port")
/// \bug [String] UDP port on the Growl server
#define PORT_LONGTEXT N_("Growl UDP port on the server.") #define PORT_LONGTEXT N_("Growl UDP port on the server.")
vlc_module_begin(); vlc_module_begin();
......
...@@ -46,6 +46,7 @@ static int Open ( vlc_object_t * ); ...@@ -46,6 +46,7 @@ static int Open ( vlc_object_t * );
static void Close( vlc_object_t * ); static void Close( vlc_object_t * );
#define HOST_TEXT N_( "RTSP host address" ) #define HOST_TEXT N_( "RTSP host address" )
/// \bug [String] extra space
#define HOST_LONGTEXT N_( \ #define HOST_LONGTEXT N_( \
"This defines the address, port and path the RTSP VOD server will listen " \ "This defines the address, port and path the RTSP VOD server will listen " \
"on.\nSyntax is address:port/path. The default is to listen on all "\ "on.\nSyntax is address:port/path. The default is to listen on all "\
......
...@@ -54,6 +54,7 @@ static int SetFont( filter_t *, int ); ...@@ -54,6 +54,7 @@ static int SetFont( filter_t *, int );
#define FONT_TEXT N_("Font") #define FONT_TEXT N_("Font")
#define FONT_LONGTEXT N_("Filename for the font you want to use") #define FONT_LONGTEXT N_("Filename for the font you want to use")
#define FONTSIZE_TEXT N_("Font size in pixels") #define FONTSIZE_TEXT N_("Font size in pixels")
/// \bug [String] extra space
#define FONTSIZE_LONGTEXT N_("This is the default size of the fonts " \ #define FONTSIZE_LONGTEXT N_("This is the default size of the fonts " \
"that will be rendered on the video. " \ "that will be rendered on the video. " \
"If set to something different than 0 this option will override the " \ "If set to something different than 0 this option will override the " \
......
...@@ -156,6 +156,7 @@ static void Close ( vlc_object_t * ); ...@@ -156,6 +156,7 @@ static void Close ( vlc_object_t * );
"16 char string (8 hexadecimal bytes).") "16 char string (8 hexadecimal bytes).")
#define CPKT_TEXT N_("Packet size in bytes to encrypt") #define CPKT_TEXT N_("Packet size in bytes to encrypt")
/// \bug [String] Extra space
#define CPKT_LONGTEXT N_("Size of the TS packet to encrypt. " \ #define CPKT_LONGTEXT N_("Size of the TS packet to encrypt. " \
"The encryption routines subtract the TS-header from the value before " \ "The encryption routines subtract the TS-header from the value before " \
"encrypting. " ) "encrypting. " )
......
...@@ -59,6 +59,7 @@ ...@@ -59,6 +59,7 @@
static void Close( vlc_object_t * ); static void Close( vlc_object_t * );
#define LIMIT_TEXT N_("Number of streams") #define LIMIT_TEXT N_("Number of streams")
/// \bug [String] -which would be listed + to list
#define LIMIT_LONGTEXT N_("Maximum number of Shoutcast radio streams which " \ #define LIMIT_LONGTEXT N_("Maximum number of Shoutcast radio streams which " \
"would be listed.") "would be listed.")
......
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