Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
VideoLAN
VLMC
Commits
7cda0ce4
Commit
7cda0ce4
authored
Oct 26, 2010
by
Hugo Beauzée-Luyssen
Browse files
About: Don't duplicate translators task.
parent
9e8d2b88
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/Gui/About.cpp
View file @
7cda0ce4
...
...
@@ -40,10 +40,6 @@ About::About( QWidget *parent ) : QDialog( parent )
setText
(
":/text/TRANSLATORS"
,
m_ui
.
plainTextEditTranslators
);
setText
(
":/text/COPYING"
,
m_ui
.
plainTextEditLicense
);
m_ui
.
labelAbout
->
setText
(
tr
(
"VLMC (VideoLAN Movie Creator) is a "
"cross-platform, non-linear video editing software based on the VLC "
"Media Player.
\n
"
)
);
m_ui
.
labelTitle
->
setText
(
m_ui
.
labelTitle
->
text
().
arg
(
PROJECT_VERSION
,
CODENAME
)
);
...
...
@@ -71,7 +67,7 @@ About::changeEvent( QEvent *e )
m_ui
.
labelBuild
->
setText
(
m_ui
.
labelBuild
->
text
().
arg
(
HOSTNAME
,
SYSNAME
,
QT_VERSION_STR
,
qVersion
()
)
);
m_ui
.
labelCopyright
->
setText
(
m_ui
.
labelCopyright
->
setText
(
m_ui
.
labelCopyright
->
text
().
arg
(
PROJECT_COPYRIGHT
,
PROJECT_CONTACT
,
ORG_WEBSITE
)
);
break
;
...
...
src/Gui/settings/PathWidget.cpp
View file @
7cda0ce4
...
...
@@ -35,7 +35,7 @@ PathWidget::PathWidget( SettingValue *s, QWidget *parent /*= NULL*/ ) :
QHBoxLayout
*
layout
=
new
QHBoxLayout
;
m_lineEdit
=
new
QLineEdit
(
m_widget
);
m_pushButton
=
new
QPushButton
(
m_widget
);
m_pushButton
->
setText
(
tr
(
"Select path"
)
);
m_pushButton
->
setText
(
tr
(
"Select
a
path"
)
);
layout
->
addWidget
(
m_lineEdit
);
layout
->
addWidget
(
m_pushButton
);
m_widget
->
setLayout
(
layout
);
...
...
src/Gui/ui/About.ui
View file @
7cda0ce4
...
...
@@ -163,7 +163,7 @@ Your Qt runtime version: %4
<item
row=
"3"
column=
"1"
>
<widget
class=
"QLabel"
name=
"labelCopyright"
>
<property
name=
"text"
>
<string>
%1
<string
notr=
"true"
>
%1
%2, %3
</string>
</property>
<property
name=
"wordWrap"
>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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