Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
2fc17568
Commit
2fc17568
authored
Apr 14, 2006
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Strings
parent
3975d8c9
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
15 additions
and
0 deletions
+15
-0
modules/access_filter/timeshift.c
modules/access_filter/timeshift.c
+1
-0
modules/audio_filter/equalizer.c
modules/audio_filter/equalizer.c
+1
-0
modules/demux/playlist/playlist.c
modules/demux/playlist/playlist.c
+1
-0
modules/gui/macosx/extended.m
modules/gui/macosx/extended.m
+1
-0
modules/gui/skins2/src/skin_main.cpp
modules/gui/skins2/src/skin_main.cpp
+1
-0
modules/misc/freetype.c
modules/misc/freetype.c
+1
-0
modules/misc/growl.c
modules/misc/growl.c
+5
-0
modules/misc/rtsp.c
modules/misc/rtsp.c
+1
-0
modules/misc/win32text.c
modules/misc/win32text.c
+1
-0
modules/mux/mpeg/ts.c
modules/mux/mpeg/ts.c
+1
-0
modules/services_discovery/shout.c
modules/services_discovery/shout.c
+1
-0
No files found.
modules/access_filter/timeshift.c
View file @
2fc17568
...
...
@@ -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")
...
...
modules/audio_filter/equalizer.c
View file @
2fc17568
...
...
@@ -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, " \
...
...
modules/demux/playlist/playlist.c
View file @
2fc17568
...
...
@@ -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" )
...
...
modules/gui/macosx/extended.m
View file @
2fc17568
...
...
@@ -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
"
\
...
...
modules/gui/skins2/src/skin_main.cpp
View file @
2fc17568
...
...
@@ -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." )
...
...
modules/misc/freetype.c
View file @
2fc17568
...
...
@@ -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 " \
...
...
modules/misc/growl.c
View file @
2fc17568
...
...
@@ -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
();
...
...
modules/misc/rtsp.c
View file @
2fc17568
...
...
@@ -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 "\
...
...
modules/misc/win32text.c
View file @
2fc17568
...
...
@@ -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 " \
...
...
modules/mux/mpeg/ts.c
View file @
2fc17568
...
...
@@ -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. " )
...
...
modules/services_discovery/shout.c
View file @
2fc17568
...
...
@@ -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.")
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment