Application name capitalization fixes.

* Correct all user strings and comments for the correct capitalization of
  application names according to JP.  They are KiCad, Pcbnew, CvPcb,
  Eeschema, and GerbView.
* Add a note the the user interface policy about the correct capitalization.
This commit is contained in:
Wayne Stambaugh
2011-09-30 14:15:37 -04:00
parent 5d1f303a16
commit 181f4ab54c
265 changed files with 959 additions and 924 deletions
+2 -2
View File
@@ -675,14 +675,14 @@ void EDA_DRAW_FRAME::UpdateStatusBar()
* Converting from inches to mm can give some coordinates due to
* float point precision rounding errors, like 1.999 or 2.001 so
* round to the nearest drawing precision required by the application.
*/
*/
if ( g_UserUnit == MILLIMETRES )
{
dXpos = RoundTo0( dXpos, (double)( m_InternalUnits / 10 ) );
dYpos = RoundTo0( dYpos, (double)( m_InternalUnits / 10 ) );
}
/* The following sadly is an if eeschema/if pcbnew */
/* The following sadly is an if Eeschema/if Pcbnew */
wxString absformatter;
wxString locformatter;
switch( g_UserUnit )