Fix broken HTML formatting in about dialog.

This commit is contained in:
Wayne Stambaugh 2017-03-07 14:18:37 -05:00
parent eedf7cb243
commit ef74f245cb
1 changed files with 13 additions and 10 deletions

View File

@ -145,7 +145,7 @@ static void InitKiCadAboutNew( AboutAppInfo& info )
description << wxT( "<ul>" );
description << wxT( "<li>" )
<< HtmlHyperlink( wxT( "http://www.kicad-pcb.org" ),
_( "The official KiCad site" ) )
_( "The official KiCad website" ) )
<< wxT( "</li>" );
description << wxT( "<li>" )
<< HtmlHyperlink( wxT( "https://launchpad.net/kicad" ),
@ -154,24 +154,27 @@ static void InitKiCadAboutNew( AboutAppInfo& info )
description << wxT( "<li>" )
<< HtmlHyperlink( wxT( "https://github.com/KiCad/" ),
_( "Our official Repository for component and footprint libraries" ) )
_( "Official repository for component and footprint libraries" ) )
<< wxT( "</li>" );
description << wxT( "<li>" )
<< HtmlHyperlink( wxT( "https://github.com/KiCad/Footprint_Wizards" ),
_( "Footprint wizards info on our official repository " ) )
<< wxT( "</li>" );
description << wxT( "</ul></p>" );
description << wxT( "<p><u>" )
description << wxT( "<p><b><u>" )
<< _( "Non official repositories" )
<< wxT( "</u>" );
<< wxT( "</b></u>" );
description << wxT( "<ul>" );
description << wxT( "<li>" )
<< HtmlHyperlink( wxT( "http://smisioto.no-ip.org/elettronica/kicad/kicad-en.htm" ),
_( "Additional component libraries repository (smisioto)" ) )
<< wxT( "</li>" );
description << wxT( "</ul>" );
description << wxT( "</p>" );
description << wxT( "</ul></p>" );
description << wxT( "<p><b><u>" )
<< _( "Bug tracker" )
@ -180,19 +183,19 @@ static void InitKiCadAboutNew( AboutAppInfo& info )
// bullet-ed list with some http links
description << wxT( "<ul>" );
description << wxT( "<li>" )
<<HtmlHyperlink( wxT( "https://bugs.launchpad.net/kicad/+bugs?orderby=-id&start=0" ),
<< HtmlHyperlink( wxT( "https://bugs.launchpad.net/kicad/+bugs?orderby=-id&start=0" ),
_( "Report or examine bugs" ) )
<< wxT( "</li>" );
description << wxT( "</ul></p>" );
description << wxT( "<p><b><u>" )
<< _( "KiCad user group and community" )
<< _( "KiCad user's groups and community" )
<< wxT( "</u></b>" ); // bold & underlined font caption
description << wxT( "<ul>" );
description << wxT( "<li>" )
<< HtmlHyperlink( wxT( "https://groups.yahoo.com/neo/groups/kicad-users/info" ),
_( "KiCad user group" ) )
_( "KiCad user's group" ) )
<< wxT( "</li>" );
description << wxT( "<li>" )