Commit fb3a12ad authored by charras's avatar charras
Browse files

fixed typo and minor problems. updated German translation

parent f3590e51
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -107,8 +107,11 @@ check_find_package_result(OPENGL_FOUND "OpenGL")
######################
# Find Boost library #
######################
find_package(Boost 1.36 QUIET)
check_find_package_result(Boost_FOUND "Boost")
# kicad now includes needed boost files.
# the two next lines can be uncommented to use the native boost lib.
# but this is not a good idea
#find_package(Boost 1.36 QUIET)
#check_find_package_result(Boost_FOUND "Boost")

##########################
# Find wxWidgets library #
+1 −1
Original line number Diff line number Diff line
@@ -153,7 +153,7 @@ void InitKiCadAbout( wxAboutDialogInfo& info )
	info.AddTranslator( SetMsg( wxT( "Russian (RU) Igor Plyatov <plyatov@gmail.com>" ) ) );
	info.AddTranslator( SetMsg( wxT( "Spanish (ES) Pedro Martin del Valle <pkicad@yahoo.es>" ) ) );
	info.AddTranslator( SetMsg( wxT( "Spanish (ES) Iñigo Zuluaga <inigo_zuluaga@yahoo.es>" ) ) );
	info.AddTranslator( SetMsg( wxT( "German (DE) Rafael.Sokolowski <rafael.sokolowski@web.de>" ) ) );
	info.AddTranslator( SetMsg( wxT( "German (DE) Rafael Sokolowski <rafael.sokolowski@web.de>" ) ) );

	/* TODO are these all russian translators, placed them here now              TODO
		TODO or else align them below other language maintainer with mail adres   TODO*/
+1 −1
Original line number Diff line number Diff line
@@ -48,7 +48,7 @@ public:

// Filename extension for BOM list
static const wxString BomFileExtension( wxT( "lst" ) );
static const wxString BomFileWildcard( wxT( "Bill of Materials file (*.lst)|*.lst" ) );
#define BomFileWildcard _( "Bill of Materials file (*.lst)|*.lst" )


/* Local functions */
+2 −2
Original line number Diff line number Diff line
@@ -44,9 +44,9 @@ wxString DRC_ITEM::GetErrorText() const
    case ERCE_PIN_NOT_DRIVEN:
        return wxString( _("Pin connected to some others pins but no pin to drive it") );
    case ERCE_PIN_TO_PIN_WARNING:
        return wxString( _("Confict problem between pins. Severity: warning") );
        return wxString( _("Conflict problem between pins. Severity: warning") );
    case ERCE_PIN_TO_PIN_ERROR:
        return wxString( _("Confict problem between pins. Severity: error") );
        return wxString( _("Conflict problem between pins. Severity: error") );
    case ERCE_HIERACHICAL_LABEL:
        return wxString( _("Mismatch between hierarchical labels and pins sheets"));
    case ERCE_NOCONNECT_CONNECTED:
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@


static const wxChar* duplicate_name_msg = _( "Component library <%s> has \
duplicate entry name <%s>.  This may cause some expected behavior when \
duplicate entry name <%s>.  This may cause some unexpected behavior when \
loading components into a schematic." );


Loading