Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
8e756cec
Commit
8e756cec
authored
Jun 20, 2008
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
String updates ( some are meant to match the macosx interface and simplify translators' work)
parent
6a260a1c
Changes
11
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
27 additions
and
27 deletions
+27
-27
modules/gui/qt4/components/extended_panels.cpp
modules/gui/qt4/components/extended_panels.cpp
+1
-1
modules/gui/qt4/components/info_panels.cpp
modules/gui/qt4/components/info_panels.cpp
+4
-4
modules/gui/qt4/components/open_panels.cpp
modules/gui/qt4/components/open_panels.cpp
+4
-4
modules/gui/qt4/components/playlist/playlist.cpp
modules/gui/qt4/components/playlist/playlist.cpp
+1
-1
modules/gui/qt4/components/simple_preferences.cpp
modules/gui/qt4/components/simple_preferences.cpp
+5
-5
modules/gui/qt4/dialogs/extended.cpp
modules/gui/qt4/dialogs/extended.cpp
+1
-1
modules/gui/qt4/dialogs/gototime.cpp
modules/gui/qt4/dialogs/gototime.cpp
+1
-1
modules/gui/qt4/dialogs/help.cpp
modules/gui/qt4/dialogs/help.cpp
+2
-2
modules/gui/qt4/dialogs/vlm.cpp
modules/gui/qt4/dialogs/vlm.cpp
+2
-2
modules/gui/qt4/menus.cpp
modules/gui/qt4/menus.cpp
+1
-1
modules/gui/qt4/ui/equalizer.ui
modules/gui/qt4/ui/equalizer.ui
+5
-5
No files found.
modules/gui/qt4/components/extended_panels.cpp
View file @
8e756cec
...
...
@@ -1294,7 +1294,7 @@ SyncControls::SyncControls( intf_thread_t *_p_intf, QWidget *_parent ) :
updateButton
=
new
QToolButton
;
updateButton
->
setAutoRaise
(
true
);
updateButton
->
setText
(
"u"
);
updateButton
->
setToolTip
(
qtr
(
"Force update of th
e values in this dialog
"
)
);
updateButton
->
setToolTip
(
qtr
(
"Force update of th
is dialog's values
"
)
);
mainLayout
->
addWidget
(
updateButton
,
0
,
4
,
1
,
1
);
...
...
modules/gui/qt4/components/info_panels.cpp
View file @
8e756cec
...
...
@@ -419,7 +419,7 @@ InfoPanel::InfoPanel( QWidget *parent,
QList
<
QTreeWidgetItem
*>
items
;
QLabel
*
topLabel
=
new
QLabel
(
qtr
(
"Information about what your media or"
" stream is made of.
\n
Muxer, Audio and Video Codecs, Subtitles "
" stream is made of.
\n
Muxer, Audio and Video Codecs, Subtitles "
"are shown."
)
);
topLabel
->
setWordWrap
(
true
);
layout
->
addWidget
(
topLabel
,
0
,
0
);
...
...
@@ -492,8 +492,8 @@ InputStatsPanel::InputStatsPanel( QWidget *parent,
QList
<
QTreeWidgetItem
*>
items
;
QLabel
*
topLabel
=
new
QLabel
(
qtr
(
"
Various statistics about the current
"
"
media or stream.
\n
Played and streamed info are shown
."
)
);
QLabel
*
topLabel
=
new
QLabel
(
qtr
(
"
Statistics about the currently
"
"
playing media or stream
."
)
);
topLabel
->
setWordWrap
(
true
);
layout
->
addWidget
(
topLabel
,
0
,
0
);
...
...
@@ -540,7 +540,7 @@ InputStatsPanel::InputStatsPanel( QWidget *parent,
CREATE_AND_ADD_TO_CAT
(
send_stat
,
qtr
(
"Sent packets"
),
"0"
,
streaming
,
""
);
CREATE_AND_ADD_TO_CAT
(
send_bytes_stat
,
qtr
(
"Sent bytes"
),
"0"
,
streaming
,
"kB"
);
CREATE_AND_ADD_TO_CAT
(
send_bitrate_stat
,
qtr
(
"Sent bitrate
s
"
),
CREATE_AND_ADD_TO_CAT
(
send_bitrate_stat
,
qtr
(
"Sent bitrate"
),
"0"
,
streaming
,
"kb/s"
);
CREATE_AND_ADD_TO_CAT
(
adecoded_stat
,
qtr
(
"Decoded blocks"
),
...
...
modules/gui/qt4/components/open_panels.cpp
View file @
8e756cec
...
...
@@ -81,7 +81,7 @@ FileOpenPanel::FileOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
dialogBox
->
setSizeGripEnabled
(
false
);
/* Add a tooltip */
dialogBox
->
setToolTip
(
qtr
(
"Select one or multiple files
, or a folder
"
)
);
dialogBox
->
setToolTip
(
qtr
(
"Select one or multiple files"
)
);
// But hide the two OK/Cancel buttons. Enable them for debug.
QDialogButtonBox
*
fileDialogAcceptBox
=
...
...
@@ -733,7 +733,7 @@ CaptureOpenPanel::CaptureOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
/* Jack Main panel */
/* Channels */
QLabel
*
jackChannelsLabel
=
new
QLabel
(
qtr
(
"Channels
:"
)
);
QLabel
*
jackChannelsLabel
=
new
QLabel
(
qtr
(
"Channels:"
)
);
jackDevLayout
->
addWidget
(
jackChannelsLabel
,
1
,
0
);
jackChannels
=
new
QSpinBox
;
...
...
@@ -746,7 +746,7 @@ CaptureOpenPanel::CaptureOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
/* Jack Props panel */
/* Selected ports */
QLabel
*
jackPortsLabel
=
new
QLabel
(
qtr
(
"Selected ports
:"
)
);
QLabel
*
jackPortsLabel
=
new
QLabel
(
qtr
(
"Selected ports:"
)
);
jackPropLayout
->
addWidget
(
jackPortsLabel
,
0
,
0
);
jackPortsSelected
=
new
QLineEdit
(
qtr
(
".*"
)
);
...
...
@@ -754,7 +754,7 @@ CaptureOpenPanel::CaptureOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
jackPropLayout
->
addWidget
(
jackPortsSelected
,
0
,
1
);
/* Caching */
QLabel
*
jackCachingLabel
=
new
QLabel
(
qtr
(
"Input caching
:"
)
);
QLabel
*
jackCachingLabel
=
new
QLabel
(
qtr
(
"Input caching:"
)
);
jackPropLayout
->
addWidget
(
jackCachingLabel
,
1
,
0
);
jackCaching
=
new
QSpinBox
;
setSpinBoxFreq
(
jackCaching
);
...
...
modules/gui/qt4/components/playlist/playlist.cpp
View file @
8e756cec
...
...
@@ -72,7 +72,7 @@ PlaylistWidget::PlaylistWidget( intf_thread_t *_p_i,
art
->
setMaximumWidth
(
128
);
art
->
setScaledContents
(
true
);
art
->
setPixmap
(
QPixmap
(
":/noart.png"
)
);
art
->
setToolTip
(
qtr
(
"Double click to get
the
media informations"
)
);
art
->
setToolTip
(
qtr
(
"Double click to get media informations"
)
);
artContLay
->
addWidget
(
art
,
1
);
...
...
modules/gui/qt4/components/simple_preferences.cpp
View file @
8e756cec
...
...
@@ -178,7 +178,7 @@ SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
/******************************
* VIDEO Panel Implementation *
******************************/
START_SPREFS_CAT
(
Video
,
qtr
(
"General
video s
ettings"
)
);
START_SPREFS_CAT
(
Video
,
qtr
(
"General
Video S
ettings"
)
);
CONFIG_GENERIC
(
"video"
,
Bool
,
NULL
,
enableVideo
);
CONFIG_GENERIC
(
"fullscreen"
,
Bool
,
NULL
,
fullscreen
);
...
...
@@ -208,7 +208,7 @@ SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
/******************************
* AUDIO Panel Implementation *
******************************/
START_SPREFS_CAT
(
Audio
,
qtr
(
"General
audio s
ettings"
)
);
START_SPREFS_CAT
(
Audio
,
qtr
(
"General
Audio S
ettings"
)
);
CONFIG_GENERIC
(
"audio"
,
Bool
,
NULL
,
enableAudio
);
...
...
@@ -347,7 +347,7 @@ SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
END_SPREFS_CAT
;
/* Input and Codecs Panel Implementation */
START_SPREFS_CAT
(
InputAndCodecs
,
qtr
(
"Input & Codecs
s
ettings"
)
);
START_SPREFS_CAT
(
InputAndCodecs
,
qtr
(
"Input & Codecs
S
ettings"
)
);
/* Disk Devices */
{
...
...
@@ -448,7 +448,7 @@ SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
/*******************
* Interface Panel *
*******************/
START_SPREFS_CAT
(
Interface
,
qtr
(
"Interface
s
ettings"
)
);
START_SPREFS_CAT
(
Interface
,
qtr
(
"Interface
S
ettings"
)
);
ui
.
defaultLabel
->
setFont
(
italicFont
);
ui
.
skinsLabel
->
setFont
(
italicFont
);
...
...
@@ -507,7 +507,7 @@ SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
#endif
END_SPREFS_CAT
;
START_SPREFS_CAT
(
Subtitles
,
qtr
(
"Subtitles & OSD
s
ettings"
)
);
START_SPREFS_CAT
(
Subtitles
,
qtr
(
"Subtitles & OSD
S
ettings"
)
);
CONFIG_GENERIC
(
"osd"
,
Bool
,
NULL
,
OSDBox
);
CONFIG_GENERIC
(
"subsdec-encoding"
,
StringList
,
NULL
,
encoding
);
...
...
modules/gui/qt4/dialogs/extended.cpp
View file @
8e756cec
...
...
@@ -58,7 +58,7 @@ ExtendedDialog::ExtendedDialog( intf_thread_t *_p_intf ): QVLCFrame( _p_intf )
audioTab
->
addTab
(
spatial
,
qtr
(
"Spatializer"
)
);
audioLayout
->
addWidget
(
audioTab
);
mainTabW
->
addTab
(
audioWidget
,
qtr
(
"Audio
e
ffects"
)
);
mainTabW
->
addTab
(
audioWidget
,
qtr
(
"Audio
E
ffects"
)
);
/* Video Effects */
QWidget
*
videoWidget
=
new
QWidget
;
...
...
modules/gui/qt4/dialogs/gototime.cpp
View file @
8e756cec
...
...
@@ -59,7 +59,7 @@ GotoTimeDialog::GotoTimeDialog( QWidget *parent, intf_thread_t *_p_intf)
QGroupBox
*
timeGroupBox
=
new
QGroupBox
;
QGridLayout
*
boxLayout
=
new
QGridLayout
(
timeGroupBox
);
QLabel
*
timeIntro
=
new
QLabel
(
qtr
(
"Go to time
:"
)
);
QLabel
*
timeIntro
=
new
QLabel
(
qtr
(
"Go to time
"
)
+
":"
);
timeIntro
->
setWordWrap
(
true
);
timeIntro
->
setAlignment
(
Qt
::
AlignCenter
);
...
...
modules/gui/qt4/dialogs/help.cpp
View file @
8e756cec
...
...
@@ -99,7 +99,7 @@ AboutDialog::AboutDialog( QWidget *parent, intf_thread_t *_p_intf)
closeButton
->
setDefault
(
true
);
QLabel
*
introduction
=
new
QLabel
(
qtr
(
"VLC media player "
VERSION_MESSAGE
)
);
qtr
(
"VLC media player
"
"
"
VERSION_MESSAGE
)
);
QLabel
*
iconVLC
=
new
QLabel
;
if
(
QDate
::
currentDate
().
dayOfYear
()
>=
354
)
iconVLC
->
setPixmap
(
QPixmap
(
":/vlc48-christmas.png"
)
);
...
...
@@ -124,7 +124,7 @@ AboutDialog::AboutDialog( QWidget *parent, intf_thread_t *_p_intf)
+
"Compiler: "
+
qfu
(
VLC_Compiler
()
)
+
".
\n
"
+
qtr
(
"Based on Git commit: "
)
+
qfu
(
VLC_Changeset
()
)
+
".
\n
"
+
qtr
(
"You are using the Qt4 Interface.
\n\n
"
)
+
qtr
(
"Copyright
(c)
"
COPYRIGHT_YEARS
" by the VideoLAN Team.
\n
"
)
+
qtr
(
"Copyright
©
"
COPYRIGHT_YEARS
" by the VideoLAN Team.
\n
"
)
+
"vlc@videolan.org, http://www.videolan.org"
);
infoLabel
->
setWordWrap
(
infoLabel
);
...
...
modules/gui/qt4/dialogs/vlm.cpp
View file @
8e756cec
...
...
@@ -80,9 +80,9 @@ VLMDialog::VLMDialog( QWidget *parent, intf_thread_t *_p_intf ) : QVLCDialog( pa
/* Schedule Stuffs */
QGridLayout
*
schetimelayout
=
new
QGridLayout
(
ui
.
schedBox
);
QLabel
*
schetimelabel
=
new
QLabel
(
qtr
(
"Hours
/Minutes/
Seconds:"
)
);
QLabel
*
schetimelabel
=
new
QLabel
(
qtr
(
"Hours
/ Minutes /
Seconds:"
)
);
schetimelayout
->
addWidget
(
schetimelabel
,
0
,
0
);
QLabel
*
schedatelabel
=
new
QLabel
(
qtr
(
"Day
Month
Year:"
)
);
QLabel
*
schedatelabel
=
new
QLabel
(
qtr
(
"Day
/ Month /
Year:"
)
);
schetimelayout
->
addWidget
(
schedatelabel
,
1
,
0
);
QLabel
*
scherepeatLabel
=
new
QLabel
(
qtr
(
"Repeat:"
)
);
schetimelayout
->
addWidget
(
scherepeatLabel
,
2
,
0
);
...
...
modules/gui/qt4/menus.cpp
View file @
8e756cec
...
...
@@ -379,7 +379,7 @@ QMenu *QVLCMenu::ToolsMenu( intf_thread_t *p_intf,
/* FullScreen View */
action
=
menu
->
addAction
(
qtr
(
"Toggle Fullscreen Interface"
),
mi
,
SLOT
(
toggleFullScreen
()
),
qtr
(
"F11"
)
);
SLOT
(
toggleFullScreen
()
),
QString
(
"F11"
)
);
/* Advanced Controls */
action
=
menu
->
addAction
(
qtr
(
"Advanced controls"
),
mi
,
...
...
modules/gui/qt4/ui/equalizer.ui
View file @
8e756cec
...
...
@@ -31,7 +31,7 @@
<item>
<widget class="QCheckBox" name="eq2PassCheck" >
<property name="text" >
<string>_("2
p
ass")</string>
<string>_("2
P
ass")</string>
</property>
</widget>
</item>
...
...
@@ -40,7 +40,7 @@
<property name="orientation" >
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" >
<property name="sizeHint"
stdset="0"
>
<size>
<width>40</width>
<height>20</height>
...
...
@@ -72,7 +72,7 @@
<property name="margin" >
<number>0</number>
</property>
<item row="1" column="0" colspan="2">
<item row="1" column="0" colspan="2"
>
<widget class="QLabel" name="preampLabel" >
<property name="text" >
<string>_("Preamp")</string>
...
...
@@ -94,7 +94,7 @@
<property name="orientation" >
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" >
<property name="sizeHint"
stdset="0"
>
<size>
<width>40</width>
<height>20</height>
...
...
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