X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fgui%2Fqt4%2Fdialogs%2Fhelp.cpp;h=3d787da834d682b2e9d46d7a5e43ea96bf2f5f3b;hb=bfd706067e935775fdb23af2104043b0b722694b;hp=dcfb11f39895d2d206b0dc72d616e974836a2545;hpb=32fce3217529b35c5f7540c30d0a8312f412007f;p=vlc diff --git a/modules/gui/qt4/dialogs/help.cpp b/modules/gui/qt4/dialogs/help.cpp index dcfb11f398..3d787da834 100644 --- a/modules/gui/qt4/dialogs/help.cpp +++ b/modules/gui/qt4/dialogs/help.cpp @@ -21,12 +21,12 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ -#include "dialogs/about.hpp" #include "dialogs/help.hpp" +#include #include "dialogs_provider.hpp" -#include "util/qvlcframe.hpp" -#include "qt4.hpp" + +#include #include #include @@ -36,7 +36,7 @@ HelpDialog *HelpDialog::instance = NULL; -HelpDialog::HelpDialog( intf_thread_t *_p_intf) : QVLCFrame( _p_intf ) +HelpDialog::HelpDialog( intf_thread_t *_p_intf) : QVLCFrame( _p_intf ) { setWindowTitle( qtr( "Help" ) ); resize( 600, 560 ); @@ -44,7 +44,7 @@ HelpDialog::HelpDialog( intf_thread_t *_p_intf) : QVLCFrame( _p_intf ) QGridLayout *layout = new QGridLayout( this ); QTextBrowser *helpBrowser = new QTextBrowser( this ); helpBrowser->setOpenExternalLinks( true ); - helpBrowser->setHtml( _("

Welcome to VLC media player help

Documentation

You can find VLC documentation on VideoLAN's wiki website.

If you are a newcomer to VLC media player, please read the
Introduction to VLC media player.

You will find some information on how to use the player in the
\"How to play files with VLC media player\" document.

For all the saving, converting, transcoding, encoding, muxing and streaming tasks, you should find useful information in the Streaming Documentation.

If you are unsure about terminology, please consult the knowledge base.

To understand the main keyboard shortcuts, read the shortcuts page.

Help

Before asking any question, please refer yourself to the FAQ.

You might then get (and give) help on the Forums, the mailing-lists or our IRC channel ( #videolan on irc.freenode.net ).

Contribute to the project

You can help the VideoLAN project giving some of your time to help the community, to design skins, to translate the documentation, to test and to code. You can also give funds and material to help us. And of course, you can promote VLC media player.

") ); + helpBrowser->setHtml( I_LONGHELP ); QPushButton *closeButton = new QPushButton( qtr( "&Close" ) ); closeButton->setDefault( true ); @@ -89,12 +89,12 @@ AboutDialog::AboutDialog( intf_thread_t *_p_intf) : QVLCFrame( _p_intf ) QWidget *infoWidget = new QWidget( this ); QHBoxLayout *infoLayout = new QHBoxLayout( infoWidget ); QLabel *infoLabel = new QLabel( "VLC media player " PACKAGE_VERSION "\n\n" - "(c) 1996-2007777777 - the VideoLAN Team\n\n" + + "(c) 1996-2007 - the VideoLAN Team\n\n" + qtr( "VLC media player is a free media player, made by the " "VideoLAN Team.\nIt is a standalone multimedia player, " "encoder and streamer, that can read from many supports " - "(files, CDs, DVDs, networks, capture cards) and that works " - "on many platforms.\n\n" ) + "(files, CDs, DVDs, networks, capture cards...) and that " + "works on many platforms.\n\n" ) + qtr( "You are using the new Qt4 Interface.\n" ) + qtr( "Compiled by " ) + qfu( VLC_CompileBy() )+ "@" + qfu( VLC_CompileDomain() ) + ".\n" @@ -114,6 +114,7 @@ AboutDialog::AboutDialog( intf_thread_t *_p_intf) : QVLCFrame( _p_intf ) /* GPL License */ QTextEdit *licenseEdit = new QTextEdit( this ); + licenseEdit->setFontFamily( "Monospace" ); licenseEdit->setText( qfu( psz_license ) ); licenseEdit->setReadOnly( true ); @@ -121,7 +122,7 @@ AboutDialog::AboutDialog( intf_thread_t *_p_intf) : QVLCFrame( _p_intf ) QWidget *thanksWidget = new QWidget( this ); QVBoxLayout *thanksLayout = new QVBoxLayout( thanksWidget ); - QLabel *thanksLabel = new QLabel( qtr("We would like to thanks the whole " + QLabel *thanksLabel = new QLabel( qtr("We would like to thank the whole " "community, the testers, our users and the following people " "(and the missing ones...) for their collaboration to " "provide the best software." ) );