Libedit: fix Bug #994014.
Pcbnew: fix Pcbnew name capitalization in messages. About dialog: add a link to kicad-pcb.org
This commit is contained in:
parent
9f41cac041
commit
40c5a46f38
|
@ -147,8 +147,8 @@ static void InitKiCadAboutNew( AboutAppInfo& info )
|
|||
HtmlHyperlink( wxT( "https://launchpad.net/kicad" ), _( "Project on Launchpad" ) ) << wxT(
|
||||
"</li>" );
|
||||
description << wxT( "<li>" ) <<
|
||||
HtmlHyperlink( wxT( "http://kicad.sourceforge.net" ),
|
||||
_( "Wiki on Sourceforge with many information" ) ) << wxT( "</li>" );
|
||||
HtmlHyperlink( wxT( "http://www.kicad-pcb.org" ),
|
||||
_( "The new KiCad site" ) ) << wxT( "</li>" );
|
||||
description << wxT( "<li>" ) <<
|
||||
HtmlHyperlink( wxT( "http://www.kicadlib.org" ),
|
||||
_( "Repository with additional component libraries" ) ) << wxT( "</li>" );
|
||||
|
|
|
@ -271,7 +271,8 @@ void LIB_EDIT_FRAME::HandleBlockPlace( wxDC* DC )
|
|||
SaveCopyInUndoList( m_component );
|
||||
|
||||
pt = GetScreen()->m_BlockLocate.Centre();
|
||||
pt.y *= -1;
|
||||
pt = GetScreen()->GetNearestGridPosition( pt );
|
||||
NEGATE( pt.y );
|
||||
|
||||
if ( m_component )
|
||||
{
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/**
|
||||
* @file pcbnew/hotkeys.h
|
||||
* PCBNew hotkeys
|
||||
* Pcbnew hotkeys
|
||||
*/
|
||||
#ifndef _PCBNEW_KOTKEYS_H
|
||||
#define _PCBNEW_HOTKEYS_H
|
||||
|
|
|
@ -88,7 +88,7 @@
|
|||
#include <wx/ffile.h>
|
||||
|
||||
|
||||
#define VERSION_ERROR_FORMAT _( "File '%s' is format version: %d.\nI only support format version <= %d.\nPlease upgrade PCBNew to load this file." )
|
||||
#define VERSION_ERROR_FORMAT _( "File '%s' is format version: %d.\nI only support format version <= %d.\nPlease upgrade Pcbnew to load this file." )
|
||||
#define UNKNOWN_GRAPHIC_FORMAT _( "unknown graphic type: %d")
|
||||
#define UNKNOWN_PAD_FORMAT _( "unknown pad type: %d")
|
||||
#define UNKNOWN_PAD_ATTRIBUTE _( "unknown pad attribute: %d" )
|
||||
|
@ -324,7 +324,7 @@ void LEGACY_PLUGIN::checkVersion()
|
|||
#if !defined(DEBUG)
|
||||
if( ver > LEGACY_BOARD_FILE_VERSION )
|
||||
{
|
||||
// "File '%s' is format version: %d.\nI only support format version <= %d.\nPlease upgrade PCBNew to load this file."
|
||||
// "File '%s' is format version: %d.\nI only support format version <= %d.\nPlease upgrade Pcbnew to load this file."
|
||||
m_error.Printf( VERSION_ERROR_FORMAT,
|
||||
m_reader->GetSource().GetData(), ver, LEGACY_BOARD_FILE_VERSION );
|
||||
THROW_IO_ERROR( m_error );
|
||||
|
@ -358,7 +358,7 @@ void LEGACY_PLUGIN::loadGENERAL()
|
|||
diskToBiu = 10000/25.4;
|
||||
|
||||
#else
|
||||
THROW_IO_ERROR( _( "May not load millimeter *.brd file into 'PCBNew compiled for deci-mils'" ) );
|
||||
THROW_IO_ERROR( _( "May not load millimeter *.brd file into 'Pcbnew compiled for deci-mils'" ) );
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
@ -3844,7 +3844,7 @@ void FPL_CACHE::ReadAndVerifyHeader( LINE_READER* aReader )
|
|||
m_owner->diskToBiu = 10000/25.4;
|
||||
|
||||
#else
|
||||
THROW_IO_ERROR( _( "May not load millimeter legacy library file into 'PCBNew compiled for deci-mils'" ) );
|
||||
THROW_IO_ERROR( _( "May not load millimeter legacy library file into 'Pcbnew compiled for deci-mils'" ) );
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue