mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 02:03:12 +02:00
Tweak display names for via protection features
- "Type II a" -> "Type II-a", as given in IPC-4761 text - remove unnecessary spaces in parentheses
This commit is contained in:
parent
c47641f454
commit
a467727503
@ -180,23 +180,23 @@ private:
|
||||
const std::map<IPC4761_PRESET, wxString> m_IPC4761Names{
|
||||
{ IPC4761_PRESET::FROM_RULES, _( "From rules" ) },
|
||||
{ IPC4761_PRESET::NONE, _( "None" ) },
|
||||
{ IPC4761_PRESET::IA, _( "Type I a ( tented top )" ) },
|
||||
{ IPC4761_PRESET::IB, _( "Type I b ( tented both sides )" ) },
|
||||
{ IPC4761_PRESET::IA_INVERTED, _( "Type I a ( tented bottom )" ) },
|
||||
{ IPC4761_PRESET::IIA, _( "Type II a ( covered and tented top )" ) },
|
||||
{ IPC4761_PRESET::IIB, _( "Type II b ( covered and tented both sides )" ) },
|
||||
{ IPC4761_PRESET::IIA_INVERTED, _( "Type II a ( covered and tented bottom )" ) },
|
||||
{ IPC4761_PRESET::IIIA, _( "Type III a ( plugged top )" ) },
|
||||
{ IPC4761_PRESET::IIIB, _( "Type III b ( plugged both sides )" ) },
|
||||
{ IPC4761_PRESET::IIIA_INVERTED, _( "Type III a ( plugged bottom )" ) },
|
||||
{ IPC4761_PRESET::IVA, _( "Type IV a ( plugged and tented top )" ) },
|
||||
{ IPC4761_PRESET::IVB, _( "Type IV b ( plugged and tented both sides )" ) },
|
||||
{ IPC4761_PRESET::IVA_INVERTED, _( "Type IV a ( plugged and tented bottom )" ) },
|
||||
{ IPC4761_PRESET::V, _( "Type V ( filled )" ) },
|
||||
{ IPC4761_PRESET::VIA, _( "Type VI a ( filled and tented top )" ) },
|
||||
{ IPC4761_PRESET::VIB, _( "Type VI b ( filled and tented both sides )" ) },
|
||||
{ IPC4761_PRESET::VIA_INVERTED, _( "Type VI a ( filled and tented bottom )" ) },
|
||||
{ IPC4761_PRESET::VII, _( "Type VII ( filled and capped )" ) },
|
||||
{ IPC4761_PRESET::IA, _( "Type I-a (tented top)" ) },
|
||||
{ IPC4761_PRESET::IB, _( "Type I-b (tented both sides)" ) },
|
||||
{ IPC4761_PRESET::IA_INVERTED, _( "Type I-a (tented bottom)" ) },
|
||||
{ IPC4761_PRESET::IIA, _( "Type II-a (covered and tented top)" ) },
|
||||
{ IPC4761_PRESET::IIB, _( "Type II-b (covered and tented both sides)" ) },
|
||||
{ IPC4761_PRESET::IIA_INVERTED, _( "Type II-a (covered and tented bottom)" ) },
|
||||
{ IPC4761_PRESET::IIIA, _( "Type III-a (plugged top)" ) },
|
||||
{ IPC4761_PRESET::IIIB, _( "Type III-b (plugged both sides)" ) },
|
||||
{ IPC4761_PRESET::IIIA_INVERTED, _( "Type III-a (plugged bottom)" ) },
|
||||
{ IPC4761_PRESET::IVA, _( "Type IV-a (plugged and tented top)" ) },
|
||||
{ IPC4761_PRESET::IVB, _( "Type IV-b (plugged and tented both sides)" ) },
|
||||
{ IPC4761_PRESET::IVA_INVERTED, _( "Type IV-a (plugged and tented bottom)" ) },
|
||||
{ IPC4761_PRESET::V, _( "Type V (filled )" ) },
|
||||
{ IPC4761_PRESET::VIA, _( "Type VI-a (filled and tented top)" ) },
|
||||
{ IPC4761_PRESET::VIB, _( "Type VI-b (filled and tented both sides)" ) },
|
||||
{ IPC4761_PRESET::VIA_INVERTED, _( "Type VI-a (filled and tented bottom)" ) },
|
||||
{ IPC4761_PRESET::VII, _( "Type VII (filled and capped)" ) },
|
||||
{ IPC4761_PRESET::CUSTOM, _( "Custom" ) },
|
||||
{ IPC4761_PRESET::END, _( "End" ) }
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user