Common: Typo in file extension description

CHANGED: The description for .erc files reads:

Electronic rule check file

This MR changes it to read...

Electrical rule check file

...which is the commonly accepted definition for ERC

Fixes https://gitlab.com/kicad/code/kicad/issues/6868
This commit is contained in:
PJM 2020-12-27 20:24:56 -08:00 committed by jean-pierre charras
parent 877ac6f7f7
commit a761d42c12
1 changed files with 1 additions and 1 deletions

View File

@ -437,7 +437,7 @@ wxString ModLegacyExportFileWildcard()
wxString ErcFileWildcard()
{
return _( "Electronic rule check file" ) + AddFileExtListToFilter( { "erc" } );
return _( "Electrical rule check file" ) + AddFileExtListToFilter( { "erc" } );
}