Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
ef680434
Commit
ef680434
authored
Jun 14, 2007
by
Christophe Mutricy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
i18n fixes
parent
954866c0
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
16 deletions
+17
-16
modules/gui/qt4/components/infopanels.cpp
modules/gui/qt4/components/infopanels.cpp
+4
-4
modules/gui/qt4/components/simple_preferences.cpp
modules/gui/qt4/components/simple_preferences.cpp
+6
-6
modules/gui/qt4/dialogs/preferences.cpp
modules/gui/qt4/dialogs/preferences.cpp
+3
-2
modules/video_filter/colorthres.c
modules/video_filter/colorthres.c
+4
-4
No files found.
modules/gui/qt4/components/infopanels.cpp
View file @
ef680434
...
...
@@ -64,17 +64,17 @@ MetaPanel::MetaPanel( QWidget *parent, intf_thread_t *_p_intf ) :
l
->
addWidget
(
genre_text
,
line
,
1
,
1
,
6
);
/* Date (Should be in years) */
date_text
=
new
QSpinBox
;
setSpinBounds
(
date_text
);
l
->
addWidget
(
new
QLabel
(
q
fu
(
VLC_META_DATE
)
+
" :"
),
line
,
7
);
l
->
addWidget
(
new
QLabel
(
q
tr
(
VLC_META_DATE
)
+
" :"
),
line
,
7
);
l
->
addWidget
(
date_text
,
line
,
8
,
1
,
2
);
line
++
;
/* Number and Rating */
l
->
addWidget
(
new
QLabel
(
q
fu
(
_
(
"Track number/Position"
)
)
+
" :"
),
l
->
addWidget
(
new
QLabel
(
q
tr
(
"Track number/Position"
)
+
" :"
),
line
,
0
);
seqnum_text
=
new
QSpinBox
;
setSpinBounds
(
seqnum_text
);
l
->
addWidget
(
seqnum_text
,
line
,
1
,
1
,
4
);
l
->
addWidget
(
new
QLabel
(
q
fu
(
VLC_META_RATING
)
+
" :"
),
line
,
5
);
l
->
addWidget
(
new
QLabel
(
q
tr
(
VLC_META_RATING
)
+
" :"
),
line
,
5
);
rating_text
=
new
QSpinBox
;
setSpinBounds
(
rating_text
)
;
l
->
addWidget
(
rating_text
,
line
,
6
,
1
,
4
);
line
++
;
...
...
@@ -85,7 +85,7 @@ MetaPanel::MetaPanel( QWidget *parent, intf_thread_t *_p_intf ) :
l
->
addWidget
(
new
QLabel
(
qfu
(
VLC_META_LANGUAGE
)
+
" :"
),
line
,
0
);
language_text
=
new
QLineEdit
;
l
->
addWidget
(
language_text
,
line
,
1
,
1
,
4
);
l
->
addWidget
(
new
QLabel
(
q
fu
(
VLC_META_SETTING
)
+
" :"
),
line
,
5
);
l
->
addWidget
(
new
QLabel
(
q
tr
(
VLC_META_SETTING
)
+
" :"
),
line
,
5
);
setting_text
=
new
QLineEdit
;
l
->
addWidget
(
setting_text
,
line
,
6
,
1
,
4
);
line
++
;
...
...
modules/gui/qt4/components/simple_preferences.cpp
View file @
ef680434
...
...
@@ -138,7 +138,7 @@ SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
{ \
Ui::SPrefs ## name ui; \
ui.setupUi( panel ); \
panel_label->setText(
qtr( label )
);
panel_label->setText(
label
);
#define END_SPREFS_CAT \
break; \
...
...
@@ -166,7 +166,7 @@ SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
switch
(
number
)
{
/* Video Panel Implementation */
START_SPREFS_CAT
(
Video
,
"General video settings"
);
START_SPREFS_CAT
(
Video
,
qtr
(
"General video settings"
)
);
CONFIG_GENERIC
(
"video"
,
Bool
,
NULL
,
enableVideo
);
CONFIG_GENERIC
(
"fullscreen"
,
Bool
,
NULL
,
fullscreen
);
...
...
@@ -195,7 +195,7 @@ SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
END_SPREFS_CAT
;
/* Audio Panel Implementation */
START_SPREFS_CAT
(
Audio
,
"General audio settings"
);
START_SPREFS_CAT
(
Audio
,
qtr
(
"General audio settings"
)
);
#ifdef WIN32
ui
.
OSSBrowse
->
hide
();
ui
.
OSSDevice
->
hide
();
...
...
@@ -236,7 +236,7 @@ SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
END_SPREFS_CAT
;
/* Input and Codecs Panel Implementation */
START_SPREFS_CAT
(
InputAndCodecs
,
"Input & Codecs settings"
);
START_SPREFS_CAT
(
InputAndCodecs
,
qtr
(
"Input & Codecs settings"
)
);
/* Disk Devices */
/* CONFIG_GENERIC( );*/
//FIXME
...
...
@@ -260,7 +260,7 @@ SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
END_SPREFS_CAT
;
/* Interface Panel */
START_SPREFS_CAT
(
Interface
,
"Interface settings"
);
START_SPREFS_CAT
(
Interface
,
qtr
(
"Interface settings"
)
);
ui
.
defaultLabel
->
setFont
(
italicFont
);
ui
.
skinsLabel
->
setFont
(
italicFont
);
...
...
@@ -295,7 +295,7 @@ SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
#endif
END_SPREFS_CAT
;
START_SPREFS_CAT
(
Subtitles
,
"Subtitles & OSD settings"
);
START_SPREFS_CAT
(
Subtitles
,
qtr
(
"Subtitles & OSD settings"
)
);
CONFIG_GENERIC
(
"osd"
,
Bool
,
NULL
,
OSDBox
);
CONFIG_GENERIC
(
"subsdec-encoding"
,
StringList
,
NULL
,
encoding
);
...
...
modules/gui/qt4/dialogs/preferences.cpp
View file @
ef680434
...
...
@@ -61,8 +61,9 @@ PrefsDialog::PrefsDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf )
types
->
setAlignment
(
Qt
::
AlignHCenter
);
QHBoxLayout
*
types_l
=
new
QHBoxLayout
(
0
);
types_l
->
setSpacing
(
3
);
types_l
->
setMargin
(
3
);
small
=
new
QRadioButton
(
"Basic"
,
types
);
types_l
->
addWidget
(
small
);
all
=
new
QRadioButton
(
"All"
,
types
);
types_l
->
addWidget
(
all
);
small
=
new
QRadioButton
(
qtr
(
"Basic"
),
types
);
types_l
->
addWidget
(
small
);
all
=
new
QRadioButton
(
qtr
(
"All"
),
types
);
types_l
->
addWidget
(
all
);
types
->
setLayout
(
types_l
);
small
->
setChecked
(
true
);
...
...
modules/video_filter/colorthres.c
View file @
ef680434
...
...
@@ -68,10 +68,10 @@ vlc_module_begin();
add_integer
(
CFG_PREFIX
"color"
,
0x00FF0000
,
NULL
,
COLOR_TEXT
,
COLOR_LONGTEXT
,
VLC_FALSE
);
change_integer_list
(
pi_color_values
,
ppsz_color_descriptions
,
0
);
add_integer
(
CFG_PREFIX
"saturationthres"
,
20
,
NULL
,
"saturaton threshold"
,
""
,
VLC_FALSE
);
add_integer
(
CFG_PREFIX
"similaritythres"
,
15
,
NULL
,
"similarity threshold"
,
""
,
VLC_FALSE
);
add_integer
(
CFG_PREFIX
"saturationthres"
,
20
,
NULL
,
_
(
"Saturaton threshold"
),
""
,
VLC_FALSE
);
add_integer
(
CFG_PREFIX
"similaritythres"
,
15
,
NULL
,
_
(
"Similarity threshold"
),
""
,
VLC_FALSE
);
set_callbacks
(
Create
,
Destroy
);
vlc_module_end
();
...
...
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