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
2662d6ac
Commit
2662d6ac
authored
Jul 19, 2011
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: Firstrun privacy text accuracy changes
parent
7510a32e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
12 deletions
+18
-12
modules/gui/qt4/dialogs/firstrun.cpp
modules/gui/qt4/dialogs/firstrun.cpp
+18
-12
No files found.
modules/gui/qt4/dialogs/firstrun.cpp
View file @
2662d6ac
...
...
@@ -61,7 +61,7 @@ void FirstRun::save()
void
FirstRun
::
buildPrivDialog
()
{
setWindowTitle
(
qtr
(
"Privacy and Network
Policies
"
)
);
setWindowTitle
(
qtr
(
"Privacy and Network
Access Policy
"
)
);
setWindowRole
(
"vlc-privacy"
);
setWindowModality
(
Qt
::
ApplicationModal
);
setWindowFlags
(
Qt
::
Dialog
);
...
...
@@ -69,38 +69,44 @@ void FirstRun::buildPrivDialog()
QGridLayout
*
gLayout
=
new
QGridLayout
(
this
);
QGroupBox
*
blabla
=
new
QGroupBox
(
qtr
(
"Privacy and Network
Warning
"
)
);
QGroupBox
*
blabla
=
new
QGroupBox
(
qtr
(
"Privacy and Network
Access Policy
"
)
);
QGridLayout
*
blablaLayout
=
new
QGridLayout
(
blabla
);
QLabel
*
text
=
new
QLabel
(
qtr
(
"<p><i>VideoLAN</i> prefers when applications request authorization "
"before accessing Internet.</p>
\n
"
"<p><b>VLC media player</b> can get information from the Internet "
"in order to get <b>medias information</b> or to check for available <b>updates</b>.</p>
\n
"
"<p><i>VLC media player</i> <b>doesn't</b> send or collect any "
"information, even anonymously, about your usage.</p>
\n
"
)
);
"<p><i>VLC media player</i> does <b>not</b> send or collect any "
"information, even anonymously, about your usage.</p>
\n
"
"<p>However, it can connect to the Internet "
"in order to display <b>medias information</b> "
#ifdef UPDATE_CHECK
"or to check for available <b>updates</b>"
#endif
".</p>
\n
"
"<p><i>VideoLAN</i> (the authors) requires you to express your consent "
"before allowing this software to access the Internet.</p>
\n
"
"<p>According to your choices, please check or uncheck the following options:</p>
\n
"
)
);
text
->
setWordWrap
(
true
);
text
->
setTextFormat
(
Qt
::
RichText
);
blablaLayout
->
addWidget
(
text
,
0
,
0
)
;
QGroupBox
*
options
=
new
QGroupBox
(
qtr
(
"
Options
"
)
);
QGroupBox
*
options
=
new
QGroupBox
(
qtr
(
"
Network Access Policy
"
)
);
QGridLayout
*
optionsLayout
=
new
QGridLayout
(
options
);
gLayout
->
addWidget
(
blabla
,
0
,
0
,
1
,
3
);
gLayout
->
addWidget
(
options
,
1
,
0
,
1
,
3
);
int
line
=
0
;
checkbox
=
new
QCheckBox
(
qtr
(
"Allow
fetching media information from Internet
"
)
);
checkbox
=
new
QCheckBox
(
qtr
(
"Allow
downloading media information
"
)
);
checkbox
->
setChecked
(
true
);
optionsLayout
->
addWidget
(
checkbox
,
line
++
,
0
);
#ifdef UPDATE_CHECK
checkbox2
=
new
QCheckBox
(
qtr
(
"
Check for
updates"
)
);
checkbox2
=
new
QCheckBox
(
qtr
(
"
Allow checking for VLC
updates"
)
);
checkbox2
->
setChecked
(
true
);
optionsLayout
->
addWidget
(
checkbox2
,
line
++
,
0
);
#endif
QPushButton
*
ok
=
new
QPushButton
(
qtr
(
"
OK
"
)
);
QPushButton
*
ok
=
new
QPushButton
(
qtr
(
"
Save and Continue
"
)
);
gLayout
->
addWidget
(
ok
,
2
,
2
);
...
...
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