From 8a32243b89a2e893932cbf5e7458a246ed1f31c1 Mon Sep 17 00:00:00 2001
From: Oliver
Date: Fri, 24 Nov 2017 00:29:30 +1100
Subject: [PATCH] Slight tweaks to About dialog
- Small wording improvements
- Hyperlinks now show URL
- Remove links to outdated library sources
---
common/dialog_about/AboutDialog_main.cpp | 44 ++++++++----------------
1 file changed, 14 insertions(+), 30 deletions(-)
diff --git a/common/dialog_about/AboutDialog_main.cpp b/common/dialog_about/AboutDialog_main.cpp
index e23d17c9ad..409862e422 100644
--- a/common/dialog_about/AboutDialog_main.cpp
+++ b/common/dialog_about/AboutDialog_main.cpp
@@ -117,7 +117,7 @@ static void buildKicadAboutBanner( EDA_BASE_FRAME* aParent, ABOUT_APP_INFO& aInf
description << wxT( "" )
<< _( "The KiCad EDA Suite is a set of open source applications for the "
- "creation of electronic schematics and to design printed circuit boards." )
+ "creation of electronic schematics and printed circuit boards." )
<< wxT( "
" );
description << wxT( "
" );
@@ -130,34 +130,17 @@ static void buildKicadAboutBanner( EDA_BASE_FRAME* aParent, ABOUT_APP_INFO& aInf
// bullet-ed list with some http links
description << wxT( "" );
description << wxT( "- " )
- << HtmlHyperlink( wxT( "http://www.kicad-pcb.org" ),
- _( "The official KiCad website" ) )
+ << wxT( "The official KiCad website - " )
+ << HtmlHyperlink( "http://www.kicad-pcb.org" )
<< wxT( "
" );
description << wxT( "- " )
- << HtmlHyperlink( wxT( "https://launchpad.net/kicad" ),
- _( "Developer's website on Launchpad" ) )
+ << wxT( "Developer website on Launchpad - " )
+ << HtmlHyperlink( "https://launchpad.net/kicad" )
<< wxT("
" );
description << wxT( "- " )
- << HtmlHyperlink( wxT( "https://github.com/KiCad/" ),
- _( "Official repository for component and footprint libraries" ) )
- << wxT( "
" );
-
- description << wxT( "- " )
- << HtmlHyperlink( wxT( "https://github.com/KiCad/Footprint_Wizards" ),
- _( "Footprint wizards info on our official repository" ) )
- << wxT( "
" );
- description << wxT( "
" );
-
- description << wxT( "" )
- << _( "Non official repositories" )
- << wxT( "" );
-
- description << wxT( "
" );
-
- description << wxT( "- " )
- << HtmlHyperlink( wxT( "http://smisioto.no-ip.org/elettronica/kicad/kicad-en.htm" ),
- _( "Additional component libraries repository (smisioto)" ) )
+ << wxT( "Official KiCad library repositories - " )
+ << HtmlHyperlink( "https://github.com/KiCad/" )
<< wxT( "
" );
description << wxT( "
" );
@@ -169,8 +152,9 @@ static void buildKicadAboutBanner( EDA_BASE_FRAME* aParent, ABOUT_APP_INFO& aInf
// bullet-ed list with some http links
description << wxT( "" );
description << wxT( "- " )
- << HtmlHyperlink( wxT( "https://bugs.launchpad.net/kicad/+bugs?orderby=-id&start=0" ),
- _( "Report or examine bugs" ) )
+ << wxT( "Report or examine bugs - " )
+ << HtmlHyperlink( "https://bugs.launchpad.net/kicad/+bugs?orderby=-id&start=0",
+ "https://bugs.launchpad.net/kicad" )
<< wxT( "
" );
description << wxT( "
" );
@@ -180,13 +164,13 @@ static void buildKicadAboutBanner( EDA_BASE_FRAME* aParent, ABOUT_APP_INFO& aInf
description << wxT( "" );
description << wxT( "- " )
- << HtmlHyperlink( wxT( "https://groups.yahoo.com/neo/groups/kicad-users/info" ),
- _( "KiCad user's group" ) )
+ << wxT( "KiCad forum - " )
+ << HtmlHyperlink( wxT( "https://forum.kicad.info" ) )
<< wxT( "
" );
description << wxT( "- " )
- << HtmlHyperlink( wxT( "https://forum.kicad.info" ),
- _( "KiCad forum" ) )
+ << wxT( "KiCad user's group - " )
+ << HtmlHyperlink( "https://groups.yahoo.com/neo/groups/kicad-users/info" )
<< wxT( "
" );
description << wxT( "
" );