From 2fc1756882380cd8eae3090b49a283e26fbf1b4b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Cl=C3=A9ment=20Stenac?= Date: Fri, 14 Apr 2006 09:37:39 +0000 Subject: [PATCH] Strings --- modules/access_filter/timeshift.c | 1 + modules/audio_filter/equalizer.c | 1 + modules/demux/playlist/playlist.c | 1 + modules/gui/macosx/extended.m | 1 + modules/gui/skins2/src/skin_main.cpp | 1 + modules/misc/freetype.c | 1 + modules/misc/growl.c | 5 +++++ modules/misc/rtsp.c | 1 + modules/misc/win32text.c | 1 + modules/mux/mpeg/ts.c | 1 + modules/services_discovery/shout.c | 1 + 11 files changed, 15 insertions(+) diff --git a/modules/access_filter/timeshift.c b/modules/access_filter/timeshift.c index 732bc8ff0c..1345f4f28a 100644 --- a/modules/access_filter/timeshift.c +++ b/modules/access_filter/timeshift.c @@ -42,6 +42,7 @@ static int Open ( vlc_object_t * ); static void Close( vlc_object_t * ); #define GRANULARITY_TEXT N_("Timeshift granularity") +/// \bug [String] typo #define GRANULARITY_LONGTEXT N_( "This is the size of the temporary files " \ "tha will be used to store the timeshifted streams." ) #define DIR_TEXT N_("Timeshift directory") diff --git a/modules/audio_filter/equalizer.c b/modules/audio_filter/equalizer.c index 39e2d446f2..a797907b77 100644 --- a/modules/audio_filter/equalizer.c +++ b/modules/audio_filter/equalizer.c @@ -53,6 +53,7 @@ static void Close( vlc_object_t * ); #define PRESET_LONGTEXT N_("Preset to use for the equalizer." ) #define BANDS_TEXT N_( "Bands gain") +/// \bug [String] missing dot #define BANDS_LONGTEXT N_( \ "Don't use presets, but manually specified bands. You need to " \ "provide 10 values between -20dB and 20dB, separated by spaces, " \ diff --git a/modules/demux/playlist/playlist.c b/modules/demux/playlist/playlist.c index 8b0777171e..efbce60540 100644 --- a/modules/demux/playlist/playlist.c +++ b/modules/demux/playlist/playlist.c @@ -34,6 +34,7 @@ * Module descriptor *****************************************************************************/ #define AUTOSTART_TEXT N_( "Auto start" ) +/// \bug [String] Why \n ? #define AUTOSTART_LONGTEXT N_( "Automatically start playing the playlist " \ "content once it's loaded.\n" ) diff --git a/modules/gui/macosx/extended.m b/modules/gui/macosx/extended.m index db656bb268..8987b6d308 100644 --- a/modules/gui/macosx/extended.m +++ b/modules/gui/macosx/extended.m @@ -598,6 +598,7 @@ static VLCExtended *_o_sharedInstance = nil; - (IBAction)vidFlts_mrInfo:(id)sender { /* show info sheet */ +/// \bug [String] Misplaced \n NSBeginInformationalAlertSheet(_NS("More Information"), _NS("OK"), @"", @"", \ o_extended_window, nil, nil, nil, nil, _NS("This panel allows to " \ "select video effects filters to apply.\n" \ diff --git a/modules/gui/skins2/src/skin_main.cpp b/modules/gui/skins2/src/skin_main.cpp index 7d087fdc43..d521580ebf 100644 --- a/modules/gui/skins2/src/skin_main.cpp +++ b/modules/gui/skins2/src/skin_main.cpp @@ -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_LONG N_("Path to the skin to use.") #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. " \ "This option is updated automatically by the skins module." ) diff --git a/modules/misc/freetype.c b/modules/misc/freetype.c index 971b2f6e12..a88a8ee0f5 100644 --- a/modules/misc/freetype.c +++ b/modules/misc/freetype.c @@ -83,6 +83,7 @@ static int SetFontSize( filter_t *, int ); #define FONT_TEXT N_("Font") #define FONT_LONGTEXT N_("Filename for the font you want to use") #define FONTSIZE_TEXT N_("Font size in pixels") +/// \bug [String] Extra space #define FONTSIZE_LONGTEXT N_("This is the default size of the fonts " \ "that will be rendered on the video. " \ "If set to something different than 0 this option will override the " \ diff --git a/modules/misc/growl.c b/modules/misc/growl.c index ec69de0f02..db1d450a4c 100644 --- a/modules/misc/growl.c +++ b/modules/misc/growl.c @@ -52,14 +52,19 @@ static int CheckAndSend( vlc_object_t *p_this, uint8_t* p_data, int i_offset ); /***************************************************************************** * Module descriptor ****************************************************************************/ + +/// \bug [String] REmove all "Growl" in short desc + #define SERVER_DEFAULT "127.0.0.1" #define SERVER_TEXT N_("Growl server") #define SERVER_LONGTEXT N_("This is the host to which Growl notifications " \ "will be sent. By default, notifications are sent locally." ) #define PASS_DEFAULT "" #define PASS_TEXT N_("Growl password") +/// \bug [String] Password on the Growl server. #define PASS_LONGTEXT N_("Growl password on the server.") #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.") vlc_module_begin(); diff --git a/modules/misc/rtsp.c b/modules/misc/rtsp.c index 30ac05effa..a6cd6c2a0f 100644 --- a/modules/misc/rtsp.c +++ b/modules/misc/rtsp.c @@ -46,6 +46,7 @@ static int Open ( vlc_object_t * ); static void Close( vlc_object_t * ); #define HOST_TEXT N_( "RTSP host address" ) +/// \bug [String] extra space #define HOST_LONGTEXT N_( \ "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 "\ diff --git a/modules/misc/win32text.c b/modules/misc/win32text.c index 362c5fea3e..9c6d2204ee 100644 --- a/modules/misc/win32text.c +++ b/modules/misc/win32text.c @@ -54,6 +54,7 @@ static int SetFont( filter_t *, int ); #define FONT_TEXT N_("Font") #define FONT_LONGTEXT N_("Filename for the font you want to use") #define FONTSIZE_TEXT N_("Font size in pixels") +/// \bug [String] extra space #define FONTSIZE_LONGTEXT N_("This is the default size of the fonts " \ "that will be rendered on the video. " \ "If set to something different than 0 this option will override the " \ diff --git a/modules/mux/mpeg/ts.c b/modules/mux/mpeg/ts.c index 0a7fa6749c..a77853fcb0 100644 --- a/modules/mux/mpeg/ts.c +++ b/modules/mux/mpeg/ts.c @@ -156,6 +156,7 @@ static void Close ( vlc_object_t * ); "16 char string (8 hexadecimal bytes).") #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. " \ "The encryption routines subtract the TS-header from the value before " \ "encrypting. " ) diff --git a/modules/services_discovery/shout.c b/modules/services_discovery/shout.c index f5e64acddc..cef4e4543e 100644 --- a/modules/services_discovery/shout.c +++ b/modules/services_discovery/shout.c @@ -59,6 +59,7 @@ static void Close( vlc_object_t * ); #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 " \ "would be listed.") -- 2.39.2