From 620251de69aa8e8f14396e1d66b4d4346a0aa956 Mon Sep 17 00:00:00 2001 From: Wayne Stambaugh Date: Sun, 12 Nov 2017 07:38:39 -0500 Subject: [PATCH] Fix UI string typo. --- eeschema/lib_export.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eeschema/lib_export.cpp b/eeschema/lib_export.cpp index 6cbb1ea460..90f19aca05 100644 --- a/eeschema/lib_export.cpp +++ b/eeschema/lib_export.cpp @@ -157,7 +157,7 @@ void LIB_EDIT_FRAME::OnExportPart( wxCommandEvent& event ) if( fn.Exists() && !fn.IsDirWritable() ) { - msg.Printf( _( "Write permissions are requured to save library '%s'." ), fn.GetFullPath() ); + msg.Printf( _( "Write permissions are required to save library '%s'." ), fn.GetFullPath() ); DisplayError( this, msg ); return; }