Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
00dcf466
Commit
00dcf466
authored
Sep 05, 2004
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* string review
parent
4fcaafa3
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
16 additions
and
16 deletions
+16
-16
modules/access/pvr/pvr.c
modules/access/pvr/pvr.c
+3
-3
modules/audio_filter/normvol.c
modules/audio_filter/normvol.c
+1
-1
modules/gui/macosx/equalizer.m
modules/gui/macosx/equalizer.m
+1
-1
modules/gui/ncurses.c
modules/gui/ncurses.c
+1
-1
modules/gui/wxwindows/bookmarks.cpp
modules/gui/wxwindows/bookmarks.cpp
+1
-1
modules/gui/wxwindows/extrapanel.cpp
modules/gui/wxwindows/extrapanel.cpp
+3
-3
modules/video_output/snapshot.c
modules/video_output/snapshot.c
+4
-4
src/audio_output/input.c
src/audio_output/input.c
+2
-2
No files found.
modules/access/pvr/pvr.c
View file @
00dcf466
...
@@ -51,7 +51,7 @@ static void Close( vlc_object_t * );
...
@@ -51,7 +51,7 @@ static void Close( vlc_object_t * );
static
int
i_norm_list
[]
=
{
V4L2_STD_UNKNOWN
,
V4L2_STD_SECAM
,
V4L2_STD_PAL
,
static
int
i_norm_list
[]
=
{
V4L2_STD_UNKNOWN
,
V4L2_STD_SECAM
,
V4L2_STD_PAL
,
V4L2_STD_NTSC
};
V4L2_STD_NTSC
};
static
char
*
psz_norm_list_text
[]
=
{
N_
(
"Automatic"
),
N_
(
"SECAM"
),
static
char
*
psz_norm_list_text
[]
=
{
N_
(
"Automatic"
),
N_
(
"SECAM"
),
N_
(
"PAL"
),
N_
(
"N
ST
C"
)
};
N_
(
"PAL"
),
N_
(
"N
TS
C"
)
};
#define WIDTH_TEXT N_( "Width" )
#define WIDTH_TEXT N_( "Width" )
#define WIDTH_LONGTEXT N_( "Width of the stream to capture (-1 for " \
#define WIDTH_LONGTEXT N_( "Width of the stream to capture (-1 for " \
...
@@ -68,7 +68,7 @@ static char *psz_norm_list_text[] = { N_("Automatic"), N_("SECAM"),
...
@@ -68,7 +68,7 @@ static char *psz_norm_list_text[] = { N_("Automatic"), N_("SECAM"),
#define KEYINT_LONGTEXT N_( "Interval between keyframes (-1 for " \
#define KEYINT_LONGTEXT N_( "Interval between keyframes (-1 for " \
" auto)" )
" auto)" )
#define BFRAMES_TEXT N_( "B Frames" )
#define BFRAMES_TEXT N_( "B Frames" )
#define BFRAMES_LONGTEXT N_("If this option is set, B-Frames will be used." \
#define BFRAMES_LONGTEXT N_("If this option is set, B-Frames will be used.
" \
"Use this option to set the number of B-Frames.")
"Use this option to set the number of B-Frames.")
#define BITRATE_TEXT N_( "Bitrate" )
#define BITRATE_TEXT N_( "Bitrate" )
#define BITRATE_LONGTEXT N_( "Bitrate to use (-1 for default)" )
#define BITRATE_LONGTEXT N_( "Bitrate to use (-1 for default)" )
...
@@ -80,7 +80,7 @@ static char *psz_norm_list_text[] = { N_("Automatic"), N_("SECAM"),
...
@@ -80,7 +80,7 @@ static char *psz_norm_list_text[] = { N_("Automatic"), N_("SECAM"),
#define BITMASK_LONGTEXT N_("This option allows setting of bitmask that will get used by the audio part of the card." )
#define BITMASK_LONGTEXT N_("This option allows setting of bitmask that will get used by the audio part of the card." )
#define CHAN_TEXT N_( "Channel" )
#define CHAN_TEXT N_( "Channel" )
#define CHAN_LONGTEXT N_( "Channel of the card to use (Usually, 0 = tuner, " \
#define CHAN_LONGTEXT N_( "Channel of the card to use (Usually, 0 = tuner, " \
"1 = composite, 2 = svideo
)" )
"1 = composite, 2 = svideo)" )
static
int
i_bitrates
[]
=
{
0
,
1
};
static
int
i_bitrates
[]
=
{
0
,
1
};
static
char
*
psz_bitrates_list_text
[]
=
{
N_
(
"vbr"
),
N_
(
"cbr"
)
};
static
char
*
psz_bitrates_list_text
[]
=
{
N_
(
"vbr"
),
N_
(
"cbr"
)
};
...
...
modules/audio_filter/normvol.c
View file @
00dcf466
...
@@ -69,7 +69,7 @@ struct aout_filter_sys_t {
...
@@ -69,7 +69,7 @@ struct aout_filter_sys_t {
#define BUFF_LONGTEXT N_("This is the number of audio buffers on which the " \
#define BUFF_LONGTEXT N_("This is the number of audio buffers on which the " \
"power measurement is made. A higher number of buffers will " \
"power measurement is made. A higher number of buffers will " \
"increase the response time of the filter to a high " \
"increase the response time of the filter to a high " \
"power but will make it less sensitive to short variations
" )
"power but will make it less sensitive to short variations
.
" )
#define LEVEL_TEXT N_("Max level" )
#define LEVEL_TEXT N_("Max level" )
#define LEVEL_LONGTEXT N_("If the average power over the last N buffers " \
#define LEVEL_LONGTEXT N_("If the average power over the last N buffers " \
...
...
modules/gui/macosx/equalizer.m
View file @
00dcf466
...
@@ -140,7 +140,7 @@ static vlc_bool_t GetFiltersStatus( intf_thread_t *p_intf,
...
@@ -140,7 +140,7 @@ static vlc_bool_t GetFiltersStatus( intf_thread_t *p_intf,
[
o_btn_equalizer
setToolTip
:
_NS
(
"Equalizer"
)];
[
o_btn_equalizer
setToolTip
:
_NS
(
"Equalizer"
)];
[
o_ckb_2pass
setTitle
:
_NS
(
"2 Pass"
)];
[
o_ckb_2pass
setTitle
:
_NS
(
"2 Pass"
)];
[
o_ckb_2pass
setToolTip
:
_NS
(
"If you enable this settting, the "
[
o_ckb_2pass
setToolTip
:
_NS
(
"If you enable this settting, the "
"equalizer filter will be applied twice. The effect will be sharper"
)];
"equalizer filter will be applied twice. The effect will be sharper
.
"
)];
[
o_ckb_enable
setTitle
:
_NS
(
"Enable"
)];
[
o_ckb_enable
setTitle
:
_NS
(
"Enable"
)];
[
o_ckb_enable
setToolTip
:
_NS
(
"Enable the equalizer. You can either "
[
o_ckb_enable
setToolTip
:
_NS
(
"Enable the equalizer. You can either "
"manually change the bands or use a preset."
)];
"manually change the bands or use a preset."
)];
...
...
modules/gui/ncurses.c
View file @
00dcf466
...
@@ -85,7 +85,7 @@ static void ReadDir ( intf_thread_t * );
...
@@ -85,7 +85,7 @@ static void ReadDir ( intf_thread_t * );
#define BROWSE_TEXT N_("Filebrowser starting point")
#define BROWSE_TEXT N_("Filebrowser starting point")
#define BROWSE_LONGTEXT N_( \
#define BROWSE_LONGTEXT N_( \
"This option allows you to specify directory the ncurses filebrowser " \
"This option allows you to specify
the
directory the ncurses filebrowser " \
"will show you initially.")
"will show you initially.")
vlc_module_begin
();
vlc_module_begin
();
...
...
modules/gui/wxwindows/bookmarks.cpp
View file @
00dcf466
...
@@ -499,7 +499,7 @@ void BookmarksDialog::OnEdit( wxCommandEvent& event )
...
@@ -499,7 +499,7 @@ void BookmarksDialog::OnEdit( wxCommandEvent& event )
if
(
!
p_input
)
if
(
!
p_input
)
{
{
wxMessageBox
(
wxU
(
_
(
"No input found. The stream must be "
wxMessageBox
(
wxU
(
_
(
"No input found. The stream must be "
"playing or paused for bookmarks to work"
)
),
"playing or paused for bookmarks to work
.
"
)
),
wxU
(
_
(
"No input"
)
),
wxICON_WARNING
|
wxOK
,
wxU
(
_
(
"No input"
)
),
wxICON_WARNING
|
wxOK
,
this
);
this
);
return
;
return
;
...
...
modules/gui/wxwindows/extrapanel.cpp
View file @
00dcf466
...
@@ -394,7 +394,7 @@ wxPanel *ExtraPanel::AudioPanel( wxWindow *parent )
...
@@ -394,7 +394,7 @@ wxPanel *ExtraPanel::AudioPanel( wxWindow *parent )
wxCheckBox
*
normvol_check
=
new
wxCheckBox
(
panel
,
NormVol_Event
,
wxCheckBox
*
normvol_check
=
new
wxCheckBox
(
panel
,
NormVol_Event
,
wxU
(
_
(
"Volume normalization"
)));
wxU
(
_
(
"Volume normalization"
)));
normvol_check
->
SetToolTip
(
wxU
(
_
(
"This filter prevents the audio output "
normvol_check
->
SetToolTip
(
wxU
(
_
(
"This filter prevents the audio output "
"power from going over a defined value"
)
)
);
"power from going over a defined value
.
"
)
)
);
wxStaticText
*
normvol_label
=
new
wxStaticText
(
panel
,
-
1
,
wxStaticText
*
normvol_label
=
new
wxStaticText
(
panel
,
-
1
,
wxU
(
_
(
"Maximum level"
)
)
);
wxU
(
_
(
"Maximum level"
)
)
);
...
@@ -465,7 +465,7 @@ wxPanel *ExtraPanel::EqzPanel( wxWindow *parent )
...
@@ -465,7 +465,7 @@ wxPanel *ExtraPanel::EqzPanel( wxWindow *parent )
wxU
(
_
(
"2 Pass"
)
)
);
wxU
(
_
(
"2 Pass"
)
)
);
eq_2p_chkbox
->
SetToolTip
(
wxU
(
_
(
"If you enable this settting, the "
eq_2p_chkbox
->
SetToolTip
(
wxU
(
_
(
"If you enable this settting, the "
"equalizer filter will be applied twice. The effect will be sharper"
)
)
);
"equalizer filter will be applied twice. The effect will be sharper
.
"
)
)
);
top_sizer
->
Add
(
eq_2p_chkbox
,
0
,
wxALL
,
2
);
top_sizer
->
Add
(
eq_2p_chkbox
,
0
,
wxALL
,
2
);
...
@@ -916,7 +916,7 @@ void ExtraPanel::OnFiltersInfo(wxCommandEvent& event)
...
@@ -916,7 +916,7 @@ void ExtraPanel::OnFiltersInfo(wxCommandEvent& event)
"You can then configure each filter.
\n
"
"You can then configure each filter.
\n
"
"If you want fine control over the filters ( to choose "
"If you want fine control over the filters ( to choose "
"the order in which they are applied ), you need to enter "
"the order in which they are applied ), you need to enter "
"manually a filters string (Preferences / General / Video."
"manually a filters string (Preferences / General / Video.
)
"
)
),
)
),
wxU
(
_
(
"More information"
)
),
wxOK
|
wxICON_INFORMATION
,
wxU
(
_
(
"More information"
)
),
wxOK
|
wxICON_INFORMATION
,
this
->
p_parent
);
this
->
p_parent
);
...
...
modules/video_output/snapshot.c
View file @
00dcf466
...
@@ -44,16 +44,16 @@ static void Display ( vout_thread_t *, picture_t * );
...
@@ -44,16 +44,16 @@ static void Display ( vout_thread_t *, picture_t * );
* Module descriptor
* Module descriptor
*****************************************************************************/
*****************************************************************************/
#define WIDTH_TEXT N_( "snapshot width" )
#define WIDTH_TEXT N_( "snapshot width" )
#define WIDTH_LONGTEXT N_( "Set the width of the snapshot image" )
#define WIDTH_LONGTEXT N_( "Set the width of the snapshot image
.
" )
#define HEIGHT_TEXT N_( "snapshot height" )
#define HEIGHT_TEXT N_( "snapshot height" )
#define HEIGHT_LONGTEXT N_( "Set the height of the snapshot image" )
#define HEIGHT_LONGTEXT N_( "Set the height of the snapshot image
.
" )
#define CHROMA_TEXT N_( "chroma" )
#define CHROMA_TEXT N_( "chroma" )
#define CHROMA_LONGTEXT N_( "Set the desired chroma for the snapshot image (a 4 character string)" )
#define CHROMA_LONGTEXT N_( "Set the desired chroma for the snapshot image (a 4 character string)
.
" )
#define CACHE_TEXT N_( "cache size (number of images)" )
#define CACHE_TEXT N_( "cache size (number of images)" )
#define CACHE_LONGTEXT N_( "Set the cache size (number of images to keep)" )
#define CACHE_LONGTEXT N_( "Set the cache size (number of images to keep)
.
" )
vlc_module_begin
(
);
vlc_module_begin
(
);
...
...
src/audio_output/input.c
View file @
00dcf466
...
@@ -118,7 +118,7 @@ int aout_InputNew( aout_instance_t * p_aout, aout_input_t * p_input )
...
@@ -118,7 +118,7 @@ int aout_InputNew( aout_instance_t * p_aout, aout_input_t * p_input )
p_module
=
config_FindModule
(
VLC_OBJECT
(
p_aout
),
"goom"
);
p_module
=
config_FindModule
(
VLC_OBJECT
(
p_aout
),
"goom"
);
if
(
p_module
)
if
(
p_module
)
{
{
val
.
psz_string
=
"goom"
;
text
.
psz_string
=
_
(
"Goom"
)
;
val
.
psz_string
=
"goom"
;
text
.
psz_string
=
"Goom"
;
var_Change
(
p_aout
,
"visual"
,
VLC_VAR_ADDCHOICE
,
&
val
,
&
text
);
var_Change
(
p_aout
,
"visual"
,
VLC_VAR_ADDCHOICE
,
&
val
,
&
text
);
}
}
...
@@ -126,7 +126,7 @@ int aout_InputNew( aout_instance_t * p_aout, aout_input_t * p_input )
...
@@ -126,7 +126,7 @@ int aout_InputNew( aout_instance_t * p_aout, aout_input_t * p_input )
p_module
=
config_FindModule
(
VLC_OBJECT
(
p_aout
),
"galaktos"
);
p_module
=
config_FindModule
(
VLC_OBJECT
(
p_aout
),
"galaktos"
);
if
(
p_module
)
if
(
p_module
)
{
{
val
.
psz_string
=
"galaktos"
;
text
.
psz_string
=
_
(
"GaLaktos"
)
;
val
.
psz_string
=
"galaktos"
;
text
.
psz_string
=
"GaLaktos"
;
var_Change
(
p_aout
,
"visual"
,
VLC_VAR_ADDCHOICE
,
&
val
,
&
text
);
var_Change
(
p_aout
,
"visual"
,
VLC_VAR_ADDCHOICE
,
&
val
,
&
text
);
}
}
...
...
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