From 62f0843579b0456842bd2cb3506ee36ca69dd9c4 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Sat, 31 Dec 2022 18:54:36 +0000 Subject: [PATCH] Fix grammar error in warning string. --- eeschema/sim/sim_panel_base.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eeschema/sim/sim_panel_base.cpp b/eeschema/sim/sim_panel_base.cpp index a025a1ba31..5533200292 100644 --- a/eeschema/sim/sim_panel_base.cpp +++ b/eeschema/sim/sim_panel_base.cpp @@ -89,7 +89,7 @@ SIM_NOPLOT_PANEL::SIM_NOPLOT_PANEL( const wxString& aCommand, wxWindow* parent, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_BOLD, false, wxEmptyString ) ); m_textInfo->SetForegroundColour( wxSystemSettings::GetColour( wxSYS_COLOUR_GRAYTEXT ) ); m_textInfo->SetLabel( - _( "This simulation provide no plots. Please refer to console window for results" ) ); + _( "Simulation provided no plots. Please refer to console window for results." ) ); m_sizer->Add( m_textInfo, 1, wxALL | wxEXPAND, 5 ); m_sizer->Add( 0, 1, 1, wxEXPAND, 5 );