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
7b885b9b
Commit
7b885b9b
authored
Nov 23, 2005
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Put licensing terms instead of description in about boxes
parent
fdaab7f5
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
16 deletions
+10
-16
include/vlc/vlc.h
include/vlc/vlc.h
+6
-0
include/vlc_interface.h
include/vlc_interface.h
+1
-9
modules/gui/wxwidgets/interface.cpp
modules/gui/wxwidgets/interface.cpp
+2
-2
src/libvlc.c
src/libvlc.c
+1
-5
No files found.
include/vlc/vlc.h
View file @
7b885b9b
...
...
@@ -572,4 +572,10 @@ int VLC_FullScreen( int );
}
# endif
#define LICENSE_MSG \
_("This program comes with NO WARRANTY, to the extent permitted by " \
"law.\nYou may redistribute it under the terms of the GNU General " \
"Public License;\nsee the file named COPYING for details.\n" \
"Written by the VideoLAN team; see the AUTHORS file.\n")
#endif
/* <vlc/vlc.h> */
include/vlc_interface.h
View file @
7b885b9b
...
...
@@ -163,12 +163,4 @@ VLC_EXPORT( void, intf_Destroy, ( intf_thread_t * ) );
#define INTF_DIALOG_EXIT 99
/* Useful text messages shared by interfaces */
#define INTF_ABOUT_MSG \
_( "VLC is an open-source and cross-platform multimedia " \
"player for various audio and video formats (MPEG-1, MPEG-2, MPEG-4, " \
"DivX, mp3, Ogg, etc.) as well as DVDs, VCDs, CD audio, and various " \
"streaming protocols.\n\n" \
"VLC is also a streaming server with transcoding capabilities " \
"(UDP unicast and multicast, HTTP, etc.) mainly designed for " \
"high-bandwidth networks.\n\n"\
"For more information, have a look at the web site." )
#define INTF_ABOUT_MSG LICENSE_MSG
modules/gui/wxwidgets/interface.cpp
View file @
7b885b9b
...
...
@@ -952,9 +952,9 @@ void Interface::OnAbout( wxCommandEvent& WXUNUSED(event) )
wxU
(
_
(
"Compiler: "
))
+
wxU
(
VLC_Compiler
())
+
wxT
(
".
\n
"
)
+
wxU
(
_
(
"Based on SVN revision: "
))
+
wxU
(
VLC_Changeset
())
+
wxT
(
".
\n\n
"
)
+
#ifdef __WXMSW__
wxU
(
vlc_wraptext
(
INTF_ABOUT
_MSG
,
WRAPCOUNT
,
VLC_TRUE
)
)
+
wxT
(
"
\n\n
"
)
+
wxU
(
vlc_wraptext
(
LICENSE
_MSG
,
WRAPCOUNT
,
VLC_TRUE
)
)
+
wxT
(
"
\n\n
"
)
+
#else
wxU
(
INTF_ABOUT
_MSG
)
+
wxT
(
"
\n\n
"
)
+
wxU
(
LICENSE
_MSG
)
+
wxT
(
"
\n\n
"
)
+
#endif
wxU
(
_
(
"The VideoLAN team <videolan@videolan.org>
\n
"
"http://www.videolan.org/
\n\n
"
))
);
...
...
src/libvlc.c
View file @
7b885b9b
...
...
@@ -2433,11 +2433,7 @@ static void Version( void )
if
(
strcmp
(
VLC_Changeset
(),
"exported"
)
)
fprintf
(
stdout
,
_
(
"Based upon svn changeset [%s]
\n
"
),
VLC_Changeset
()
);
fprintf
(
stdout
,
_
(
"This program comes with NO WARRANTY, to the extent permitted by "
"law.
\n
You may redistribute it under the terms of the GNU General "
"Public License;
\n
see the file named COPYING for details.
\n
"
"Written by the VideoLAN team; see the AUTHORS file.
\n
"
)
);
fprintf
(
stdout
,
LICENSE_MSG
);
#ifdef WIN32
/* Pause the console because it's destroyed when we exit */
PauseConsole
();
...
...
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