73 wxStaticText* pageTitle =
new wxStaticText(
76 wxFont( 14, wxFONTFAMILY_DEFAULT, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_BOLD ) );
77 m_mainSizer->Add( pageTitle, 0, wxALIGN_CENTRE | wxALL, 5 );
79 wxStaticLine* pageDivider =
new wxStaticLine(
this, wxID_ANY, wxDefaultPosition,
80 wxDefaultSize, wxLI_HORIZONTAL );
81 m_mainSizer->Add( pageDivider, 0, wxEXPAND | wxALL, 5 );
84 _(
"KiCad is starting for the first time, or some of its configuration files are missing.\n\n"
85 "Let's take a moment to configure some basic settings. You can always modify these "
86 "settings later by opening the Preferences dialog." ) );
89 wxBoxSizer* helpSizer =
new wxBoxSizer( wxHORIZONTAL );
90 wxStaticText* helpLabel =
new wxStaticText(
this, -1,
_(
"For help, please visit " ) );
92 wxHyperlinkCtrl* helpLink =
new wxHyperlinkCtrl(
this, -1, wxT(
"docs.kicad.org" ), docsUrl );
93 helpSizer->Add( helpLabel, 0, wxEXPAND | wxLEFT | wxTOP | wxBOTTOM, 5 );
94 helpSizer->Add( helpLink, 0, wxEXPAND | wxRIGHT | wxTOP | wxBOTTOM, 5 );