Add Italian translator. very minor 2 other fixes
This commit is contained in:
parent
6d713f064b
commit
5f6cd45445
|
@ -1,5 +1,5 @@
|
|||
/* XPM */
|
||||
char *gerber_recent_files_xpm[] = {
|
||||
const char *gerber_recent_files_xpm[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"16 16 16 1",
|
||||
"$ c #969997",
|
||||
|
|
|
@ -255,6 +255,9 @@ static void InitKiCadAboutNew( AboutAppInfo& info )
|
|||
info.AddTranslator( new Contributor( wxT( "Manolis Stefanis and Milonas Kostas" ),
|
||||
wxT( "milonas.ko@gmail.com" ), wxT( "Greek (el_GR)" ),
|
||||
new wxBitmap( lang_gr_xpm ) ) );
|
||||
info.AddTranslator( new Contributor( wxT( "Massimo Cioce" ),
|
||||
wxT( "ciocemax@alice.it" ), wxT( "Italian (IT)" ),
|
||||
new wxBitmap( lang_it_xpm ) ) );
|
||||
|
||||
/* TODO: are these all russian translators, placed them here now, or else align them below other language maintainer with mail adress */
|
||||
info.AddTranslator( new Contributor( wxT( "Remy Halvick" ), wxEmptyString, wxT( "Others" ) ) );
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
*/
|
||||
SCH_COMPONENT* LocateSmallestComponent( SCH_SCREEN* Screen )
|
||||
{
|
||||
double area;
|
||||
double area = 0.0; // Quiet compiler
|
||||
EDA_Rect rect;
|
||||
PICKED_ITEMS_LIST itemList;
|
||||
SCH_COMPONENT* component = NULL;
|
||||
|
|
Loading…
Reference in New Issue