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
bb727b7f
Commit
bb727b7f
authored
Nov 13, 2006
by
Pavlov Konstantin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
properly display translated strings in setWindowTitle in qt4 interface
parent
d1f54c77
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
7 deletions
+7
-7
modules/gui/qt4/dialogs/errors.cpp
modules/gui/qt4/dialogs/errors.cpp
+1
-1
modules/gui/qt4/dialogs/extended.cpp
modules/gui/qt4/dialogs/extended.cpp
+1
-1
modules/gui/qt4/dialogs/messages.cpp
modules/gui/qt4/dialogs/messages.cpp
+1
-1
modules/gui/qt4/dialogs/prefs_dialog.cpp
modules/gui/qt4/dialogs/prefs_dialog.cpp
+1
-1
modules/gui/qt4/dialogs/sout.cpp
modules/gui/qt4/dialogs/sout.cpp
+1
-1
modules/gui/qt4/dialogs/streaminfo.cpp
modules/gui/qt4/dialogs/streaminfo.cpp
+1
-1
modules/gui/qt4/main_interface.cpp
modules/gui/qt4/main_interface.cpp
+1
-1
No files found.
modules/gui/qt4/dialogs/errors.cpp
View file @
bb727b7f
...
...
@@ -34,7 +34,7 @@ ErrorsDialog *ErrorsDialog::instance = NULL;
ErrorsDialog
::
ErrorsDialog
(
intf_thread_t
*
_p_intf
)
:
QVLCFrame
(
_p_intf
)
{
setWindowTitle
(
_
(
"Errors"
)
);
setWindowTitle
(
qtr
(
"Errors"
)
);
resize
(
500
,
200
);
QGridLayout
*
layout
=
new
QGridLayout
(
this
);
...
...
modules/gui/qt4/dialogs/extended.cpp
View file @
bb727b7f
...
...
@@ -38,7 +38,7 @@ ExtendedDialog::ExtendedDialog( intf_thread_t *_p_intf ): QVLCFrame( _p_intf )
l
->
addWidget
(
tab
);
setWindowTitle
(
_
(
"Extended controls"
)
);
setWindowTitle
(
qtr
(
"Extended controls"
)
);
Equalizer
*
foo
=
new
Equalizer
(
p_intf
,
this
);
tab
->
addTab
(
foo
,
qtr
(
"Equalizer"
)
);
...
...
modules/gui/qt4/dialogs/messages.cpp
View file @
bb727b7f
...
...
@@ -38,7 +38,7 @@ MessagesDialog *MessagesDialog::instance = NULL;
MessagesDialog
::
MessagesDialog
(
intf_thread_t
*
_p_intf
)
:
QVLCFrame
(
_p_intf
)
{
setWindowTitle
(
_
(
"Messages"
)
);
setWindowTitle
(
qtr
(
"Messages"
)
);
resize
(
600
,
400
);
QGridLayout
*
layout
=
new
QGridLayout
(
this
);
...
...
modules/gui/qt4/dialogs/prefs_dialog.cpp
View file @
bb727b7f
...
...
@@ -40,7 +40,7 @@ PrefsDialog *PrefsDialog::instance = NULL;
PrefsDialog
::
PrefsDialog
(
intf_thread_t
*
_p_intf
)
:
QVLCFrame
(
_p_intf
)
{
QGridLayout
*
main_layout
=
new
QGridLayout
(
this
);
setWindowTitle
(
qtr
(
"Preferences"
)
);
setWindowTitle
(
qtr
(
"Preferences"
)
);
resize
(
800
,
450
);
tree_panel
=
new
QWidget
(
0
);
...
...
modules/gui/qt4/dialogs/sout.cpp
View file @
bb727b7f
...
...
@@ -29,7 +29,7 @@
SoutDialog
::
SoutDialog
(
intf_thread_t
*
_p_intf
)
:
QVLCFrame
(
_p_intf
)
{
setWindowTitle
(
_
(
"Stream output"
)
);
setWindowTitle
(
qtr
(
"Stream output"
)
);
main
=
new
QWidget
(
this
);
/* UI stuff */
...
...
modules/gui/qt4/dialogs/streaminfo.cpp
View file @
bb727b7f
...
...
@@ -37,7 +37,7 @@ StreamInfoDialog *StreamInfoDialog::instance = NULL;
StreamInfoDialog
::
StreamInfoDialog
(
intf_thread_t
*
_p_intf
)
:
QVLCFrame
(
_p_intf
)
{
i_runs
=
0
;
setWindowTitle
(
_
(
"Stream information"
)
);
setWindowTitle
(
qtr
(
"Stream information"
)
);
QGridLayout
*
layout
=
new
QGridLayout
(
this
);
IT
=
new
InfoTab
(
this
,
p_intf
,
true
)
;
...
...
modules/gui/qt4/main_interface.cpp
View file @
bb727b7f
...
...
@@ -102,7 +102,7 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf )
visualSelectorEnabled
=
settings
->
value
(
"visual-selector"
,
false
).
toBool
();
/* UI */
setWindowTitle
(
QString
::
fromUtf8
(
_
(
"VLC media player"
)
)
);
setWindowTitle
(
qtr
(
"VLC media player"
)
);
handleMainUi
(
settings
);
QVLCMenu
::
createMenuBar
(
this
,
p_intf
,
playlistEmbeddedFlag
,
advControlsEnabled
,
visualSelectorEnabled
);
...
...
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