cvpcb: 2 missing .prj files added
This commit is contained in:
parent
8a17ac00ce
commit
a3c60f3692
|
@ -4,6 +4,12 @@ Started 2007-June-11
|
||||||
Please add newer entries at the top, list the date and your name with
|
Please add newer entries at the top, list the date and your name with
|
||||||
email address.
|
email address.
|
||||||
|
|
||||||
|
2007-Oct-24 UPDATE Jean-Pierre Charras <jean-pierre.charras@inpg.fr>
|
||||||
|
================================================================================
|
||||||
|
+ cvpcb:
|
||||||
|
2 missing .prj files added (and updated)
|
||||||
|
dialog_display_option.cpp is rebuild from its dialog_display_option.prj source
|
||||||
|
|
||||||
|
|
||||||
2007-Oct-23 UPDATE Geoff Harland <gharlandau@yahoo.com.au>
|
2007-Oct-23 UPDATE Geoff Harland <gharlandau@yahoo.com.au>
|
||||||
================================================================================
|
================================================================================
|
||||||
|
|
|
@ -261,10 +261,11 @@ wxBitmap KiConfigCvpcbFrame::GetBitmapResource( const wxString& name )
|
||||||
wxIcon KiConfigCvpcbFrame::GetIconResource( const wxString& name )
|
wxIcon KiConfigCvpcbFrame::GetIconResource( const wxString& name )
|
||||||
{
|
{
|
||||||
// Icon retrieval
|
// Icon retrieval
|
||||||
////@begin KiConfigCvpcbFrame icon retrieval
|
#ifdef __WINDOWS__
|
||||||
wxUnusedVar(name);
|
return( wxICON(a_icon_cvpcb));
|
||||||
return wxNullIcon;
|
#else
|
||||||
////@end KiConfigCvpcbFrame icon retrieval
|
return( wxICON(icon_cvpcb));
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
/*!
|
/*!
|
||||||
* wxEVT_COMMAND_BUTTON_CLICKED event handler for SAVE_CFG
|
* wxEVT_COMMAND_BUTTON_CLICKED event handler for SAVE_CFG
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -66,6 +66,14 @@ IMPLEMENT_DYNAMIC_CLASS( KiDisplayOptionsFrame, wxDialog )
|
||||||
BEGIN_EVENT_TABLE( KiDisplayOptionsFrame, wxDialog )
|
BEGIN_EVENT_TABLE( KiDisplayOptionsFrame, wxDialog )
|
||||||
|
|
||||||
////@begin KiDisplayOptionsFrame event table entries
|
////@begin KiDisplayOptionsFrame event table entries
|
||||||
|
EVT_RADIOBOX( EDGE_SELECT, KiDisplayOptionsFrame::OnEdgeSelectSelected )
|
||||||
|
|
||||||
|
EVT_RADIOBOX( TEXT_SELECT, KiDisplayOptionsFrame::OnTextSelectSelected )
|
||||||
|
|
||||||
|
EVT_CHECKBOX( PADFILL_OPT, KiDisplayOptionsFrame::OnPadfillOptClick )
|
||||||
|
|
||||||
|
EVT_CHECKBOX( PADNUM_OPT, KiDisplayOptionsFrame::OnPadnumOptClick )
|
||||||
|
|
||||||
EVT_BUTTON( ID_SAVE_CONFIG, KiDisplayOptionsFrame::OnSaveConfigClick )
|
EVT_BUTTON( ID_SAVE_CONFIG, KiDisplayOptionsFrame::OnSaveConfigClick )
|
||||||
|
|
||||||
EVT_BUTTON( wxID_OK, KiDisplayOptionsFrame::OnOkClick )
|
EVT_BUTTON( wxID_OK, KiDisplayOptionsFrame::OnOkClick )
|
||||||
|
@ -102,17 +110,19 @@ bool KiDisplayOptionsFrame::Create( wxWindow* parent, wxWindowID id, const wxStr
|
||||||
////@begin KiDisplayOptionsFrame member initialisation
|
////@begin KiDisplayOptionsFrame member initialisation
|
||||||
m_EdgesDisplayOption = NULL;
|
m_EdgesDisplayOption = NULL;
|
||||||
m_TextDisplayOption = NULL;
|
m_TextDisplayOption = NULL;
|
||||||
m_IsShowPadNum = NULL;
|
|
||||||
m_IsShowPadFill = NULL;
|
m_IsShowPadFill = NULL;
|
||||||
|
m_IsShowPadNum = NULL;
|
||||||
////@end KiDisplayOptionsFrame member initialisation
|
////@end KiDisplayOptionsFrame member initialisation
|
||||||
|
|
||||||
////@begin KiDisplayOptionsFrame creation
|
////@begin KiDisplayOptionsFrame creation
|
||||||
SetExtraStyle(GetExtraStyle()|wxWS_EX_BLOCK_EVENTS);
|
SetExtraStyle(wxWS_EX_BLOCK_EVENTS);
|
||||||
wxDialog::Create( parent, id, caption, pos, size, style );
|
wxDialog::Create( parent, id, caption, pos, size, style );
|
||||||
|
|
||||||
CreateControls();
|
CreateControls();
|
||||||
GetSizer()->Fit(this);
|
if (GetSizer())
|
||||||
GetSizer()->SetSizeHints(this);
|
{
|
||||||
|
GetSizer()->SetSizeHints(this);
|
||||||
|
}
|
||||||
Centre();
|
Centre();
|
||||||
////@end KiDisplayOptionsFrame creation
|
////@end KiDisplayOptionsFrame creation
|
||||||
return true;
|
return true;
|
||||||
|
@ -127,7 +137,7 @@ void KiDisplayOptionsFrame::CreateControls()
|
||||||
SetFont(*g_DialogFont);
|
SetFont(*g_DialogFont);
|
||||||
|
|
||||||
////@begin KiDisplayOptionsFrame content construction
|
////@begin KiDisplayOptionsFrame content construction
|
||||||
// Generated by DialogBlocks, 17/02/2006 18:31:55 (unregistered)
|
// Generated by DialogBlocks, 24/10/2007 22:11:46 (unregistered)
|
||||||
|
|
||||||
KiDisplayOptionsFrame* itemDialog1 = this;
|
KiDisplayOptionsFrame* itemDialog1 = this;
|
||||||
|
|
||||||
|
@ -135,76 +145,65 @@ void KiDisplayOptionsFrame::CreateControls()
|
||||||
itemDialog1->SetSizer(itemBoxSizer2);
|
itemDialog1->SetSizer(itemBoxSizer2);
|
||||||
|
|
||||||
wxBoxSizer* itemBoxSizer3 = new wxBoxSizer(wxHORIZONTAL);
|
wxBoxSizer* itemBoxSizer3 = new wxBoxSizer(wxHORIZONTAL);
|
||||||
// itemBoxSizer2->Add(itemBoxSizer3, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);
|
itemBoxSizer2->Add(itemBoxSizer3, 0, wxGROW|wxALL, 5);
|
||||||
itemBoxSizer2->Add(itemBoxSizer3, 0, wxALIGN_TOP|wxALL, 5);
|
|
||||||
|
|
||||||
wxBoxSizer* itemBoxSizer4 = new wxBoxSizer(wxHORIZONTAL);
|
wxArrayString m_EdgesDisplayOptionStrings;
|
||||||
// itemBoxSizer2->Add(itemBoxSizer4, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);
|
m_EdgesDisplayOptionStrings.Add(_("&Line"));
|
||||||
itemBoxSizer2->Add(itemBoxSizer4, 0, wxGROW|wxALIGN_TOP|wxALL, 5);
|
m_EdgesDisplayOptionStrings.Add(_("&Filled"));
|
||||||
|
m_EdgesDisplayOptionStrings.Add(_("&Sketch"));
|
||||||
|
m_EdgesDisplayOption = new wxRadioBox( itemDialog1, EDGE_SELECT, _("Edges:"), wxDefaultPosition, wxDefaultSize, m_EdgesDisplayOptionStrings, 1, wxRA_SPECIFY_COLS );
|
||||||
|
m_EdgesDisplayOption->SetSelection(0);
|
||||||
|
itemBoxSizer3->Add(m_EdgesDisplayOption, 0, wxGROW|wxALL, 5);
|
||||||
|
|
||||||
wxString m_EdgesDisplayOptionStrings[] = {
|
wxArrayString m_TextDisplayOptionStrings;
|
||||||
_("&Filaire"),
|
m_TextDisplayOptionStrings.Add(_("&Line"));
|
||||||
_("&Filled"),
|
m_TextDisplayOptionStrings.Add(_("&Filled"));
|
||||||
_("&Sketch")
|
m_TextDisplayOptionStrings.Add(_("&Sketch"));
|
||||||
};
|
m_TextDisplayOption = new wxRadioBox( itemDialog1, TEXT_SELECT, _("Texts:"), wxDefaultPosition, wxDefaultSize, m_TextDisplayOptionStrings, 1, wxRA_SPECIFY_COLS );
|
||||||
m_EdgesDisplayOption = new wxRadioBox( itemDialog1, EDGE_SELECT, _("Edges:"), wxDefaultPosition, wxDefaultSize, 3, m_EdgesDisplayOptionStrings, 1, wxRA_SPECIFY_COLS );
|
m_TextDisplayOption->SetSelection(0);
|
||||||
// itemBoxSizer3->Add(m_EdgesDisplayOption, 0, wxGROW|wxALL, 5);
|
itemBoxSizer3->Add(m_TextDisplayOption, 0, wxGROW|wxALL, 5);
|
||||||
itemBoxSizer3->Add(m_EdgesDisplayOption, 0, wxALIGN_LEFT|wxALL, 5);
|
|
||||||
|
|
||||||
wxString m_TextDisplayOptionStrings[] = {
|
wxBoxSizer* itemBoxSizer6 = new wxBoxSizer(wxVERTICAL);
|
||||||
_("&Filaire"),
|
itemBoxSizer3->Add(itemBoxSizer6, 0, wxGROW|wxALL, 5);
|
||||||
_("&Filled"),
|
|
||||||
_("&Sketch")
|
|
||||||
};
|
|
||||||
m_TextDisplayOption = new wxRadioBox( itemDialog1, TEXT_SELECT, _("Texts:"), wxDefaultPosition, wxDefaultSize, 3, m_TextDisplayOptionStrings, 1, wxRA_SPECIFY_COLS );
|
|
||||||
// itemBoxSizer3->Add(m_TextDisplayOption, 0, wxGROW|wxALL, 5);
|
|
||||||
itemBoxSizer3->Add(m_TextDisplayOption, 0, wxALIGN_LEFT|wxALL, 5);
|
|
||||||
|
|
||||||
wxBoxSizer* itemBoxSizer5 = new wxBoxSizer(wxVERTICAL);
|
m_IsShowPadFill = new wxCheckBox( itemDialog1, PADFILL_OPT, _("&Pad Filled"), wxDefaultPosition, wxDefaultSize, wxCHK_2STATE );
|
||||||
// itemBoxSizer3->Add(itemBoxSizer5, 0, wxGROW|wxALIGN_CENTER_VERTICAL|wxALL, 5);
|
|
||||||
itemBoxSizer3->Add(itemBoxSizer5, 0, wxGROW|wxALL, 0);
|
|
||||||
|
|
||||||
// Provide a spacer to improve appearance of dialog box
|
|
||||||
itemBoxSizer5->AddSpacer(5);
|
|
||||||
|
|
||||||
m_IsShowPadNum = new wxCheckBox( itemDialog1, PADNUM_OPT, _("Pad &Num"), wxDefaultPosition, wxDefaultSize, wxCHK_2STATE );
|
|
||||||
m_IsShowPadNum->SetValue(false);
|
|
||||||
// itemBoxSizer5->Add(m_IsShowPadNum, 0, wxGROW|wxALL, 5);
|
|
||||||
itemBoxSizer5->Add(m_IsShowPadNum, 0, wxALIGN_TOP|wxALL, 5);
|
|
||||||
|
|
||||||
m_IsShowPadFill = new wxCheckBox( itemDialog1, PADFILL_OPT, _("&Pad Fill"), wxDefaultPosition, wxDefaultSize, wxCHK_2STATE );
|
|
||||||
m_IsShowPadFill->SetValue(false);
|
m_IsShowPadFill->SetValue(false);
|
||||||
// itemBoxSizer5->Add(m_IsShowPadFill, 0, wxGROW|wxALL, 5);
|
itemBoxSizer6->Add(m_IsShowPadFill, 0, wxGROW|wxALL, 5);
|
||||||
itemBoxSizer5->Add(m_IsShowPadFill, 0, wxALIGN_TOP|wxALL, 5);
|
|
||||||
|
|
||||||
// Provide a stretch spacer to improve appearance of dialog box
|
m_IsShowPadNum = new wxCheckBox( itemDialog1, PADNUM_OPT, _("Display Pad &Num"), wxDefaultPosition, wxDefaultSize, wxCHK_2STATE );
|
||||||
itemBoxSizer5->AddStretchSpacer();
|
m_IsShowPadNum->SetValue(false);
|
||||||
|
if (ShowToolTips())
|
||||||
|
m_IsShowPadNum->SetToolTip(_("Display pad number"));
|
||||||
|
itemBoxSizer6->Add(m_IsShowPadNum, 0, wxGROW|wxALL, 5);
|
||||||
|
|
||||||
wxButton* itemButton6 = new wxButton( itemDialog1, ID_SAVE_CONFIG, _("Save Cfg..."), wxDefaultPosition, wxDefaultSize, 0 );
|
itemBoxSizer6->Add(5, 5, 0, wxGROW|wxLEFT|wxTOP|wxBOTTOM, 5);
|
||||||
// itemBoxSizer5->Add(itemButton6, 0, wxGROW|wxALL, 5);
|
|
||||||
itemBoxSizer5->Add(itemButton6, 0, wxALIGN_BOTTOM|wxALL, 5);
|
|
||||||
|
|
||||||
// itemBoxSizer4->AddStretchSpacer();
|
wxButton* itemButton10 = new wxButton( itemDialog1, ID_SAVE_CONFIG, _("Save Cfg"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||||
|
itemBoxSizer6->Add(itemButton10, 0, wxGROW|wxALL, 5);
|
||||||
|
|
||||||
wxButton* itemButton7 = new wxButton( itemDialog1, wxID_OK, _("OK"), wxDefaultPosition, wxDefaultSize, 0 );
|
wxStaticLine* itemStaticLine11 = new wxStaticLine( itemDialog1, ID_STATICLINE1, wxDefaultPosition, wxDefaultSize, wxLI_HORIZONTAL );
|
||||||
itemButton7->SetForegroundColour(*wxRED);
|
itemBoxSizer2->Add(itemStaticLine11, 0, wxGROW|wxALL, 5);
|
||||||
// itemBoxSizer4->Add(itemButton7, 0, wxGROW|wxALL, 5);
|
|
||||||
itemBoxSizer4->Add(itemButton7, 0, wxALIGN_RIGHT|wxALL, 5);
|
|
||||||
|
|
||||||
wxButton* itemButton8 = new wxButton( itemDialog1, wxID_CANCEL, _("Cancel"), wxDefaultPosition, wxDefaultSize, 0 );
|
wxBoxSizer* itemBoxSizer12 = new wxBoxSizer(wxHORIZONTAL);
|
||||||
itemButton8->SetForegroundColour(*wxBLUE);
|
itemBoxSizer2->Add(itemBoxSizer12, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);
|
||||||
// itemBoxSizer4->Add(itemButton8, 0, wxGROW|wxALL, 5);
|
|
||||||
itemBoxSizer4->Add(itemButton8, 0, wxALIGN_RIGHT|wxALL, 5);
|
|
||||||
|
|
||||||
wxButton* itemButton9 = new wxButton( itemDialog1, wxID_APPLY, _("Apply"), wxDefaultPosition, wxDefaultSize, 0 );
|
wxButton* itemButton13 = new wxButton( itemDialog1, wxID_OK, _("&OK"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||||
// itemBoxSizer4->Add(itemButton9, 0, wxGROW|wxALL, 5);
|
itemButton13->SetDefault();
|
||||||
itemBoxSizer4->Add(itemButton9, 0, wxALIGN_RIGHT|wxALL, 5);
|
itemButton13->SetForegroundColour(wxColour(255, 0, 0));
|
||||||
|
itemBoxSizer12->Add(itemButton13, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5);
|
||||||
|
|
||||||
|
wxButton* itemButton14 = new wxButton( itemDialog1, wxID_CANCEL, _("&Cancel"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||||
|
itemButton14->SetForegroundColour(wxColour(0, 0, 255));
|
||||||
|
itemBoxSizer12->Add(itemButton14, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5);
|
||||||
|
|
||||||
|
wxButton* itemButton15 = new wxButton( itemDialog1, wxID_APPLY, _("&Apply"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||||
|
itemBoxSizer12->Add(itemButton15, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5);
|
||||||
|
|
||||||
// Set validators
|
// Set validators
|
||||||
m_EdgesDisplayOption->SetValidator( wxGenericValidator(& DisplayOpt.DisplayModEdge) );
|
m_EdgesDisplayOption->SetValidator( wxGenericValidator(& DisplayOpt.DisplayModEdge) );
|
||||||
m_TextDisplayOption->SetValidator( wxGenericValidator(& DisplayOpt.DisplayModText) );
|
m_TextDisplayOption->SetValidator( wxGenericValidator(& DisplayOpt.DisplayModText) );
|
||||||
m_IsShowPadNum->SetValidator( wxGenericValidator(& DisplayOpt.DisplayPadNum) );
|
|
||||||
m_IsShowPadFill->SetValidator( wxGenericValidator(& DisplayOpt.DisplayPadFill) );
|
m_IsShowPadFill->SetValidator( wxGenericValidator(& DisplayOpt.DisplayPadFill) );
|
||||||
|
m_IsShowPadNum->SetValidator( wxGenericValidator(& DisplayOpt.DisplayPadNum) );
|
||||||
////@end KiDisplayOptionsFrame content construction
|
////@end KiDisplayOptionsFrame content construction
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -247,7 +246,7 @@ wxIcon KiDisplayOptionsFrame::GetIconResource( const wxString& name )
|
||||||
* Update settings related to edges, text strings, and pads
|
* Update settings related to edges, text strings, and pads
|
||||||
*/
|
*/
|
||||||
|
|
||||||
void KiDisplayOptionsFrame::UpdateObjectSettings()
|
void KiDisplayOptionsFrame::UpdateObjectSettings(void)
|
||||||
{
|
{
|
||||||
// Update settings
|
// Update settings
|
||||||
////@begin KiDisplayOptionsFrame update settings
|
////@begin KiDisplayOptionsFrame update settings
|
||||||
|
@ -305,3 +304,55 @@ void KiDisplayOptionsFrame::OnApplyClick( wxCommandEvent& event )
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* wxEVT_COMMAND_RADIOBOX_SELECTED event handler for EDGE_SELECT
|
||||||
|
*/
|
||||||
|
|
||||||
|
void KiDisplayOptionsFrame::OnEdgeSelectSelected( wxCommandEvent& event )
|
||||||
|
{
|
||||||
|
////@begin wxEVT_COMMAND_RADIOBOX_SELECTED event handler for EDGE_SELECT in KiDisplayOptionsFrame.
|
||||||
|
// Before editing this code, remove the block markers.
|
||||||
|
event.Skip();
|
||||||
|
////@end wxEVT_COMMAND_RADIOBOX_SELECTED event handler for EDGE_SELECT in KiDisplayOptionsFrame.
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* wxEVT_COMMAND_RADIOBOX_SELECTED event handler for TEXT_SELECT
|
||||||
|
*/
|
||||||
|
|
||||||
|
void KiDisplayOptionsFrame::OnTextSelectSelected( wxCommandEvent& event )
|
||||||
|
{
|
||||||
|
////@begin wxEVT_COMMAND_RADIOBOX_SELECTED event handler for TEXT_SELECT in KiDisplayOptionsFrame.
|
||||||
|
// Before editing this code, remove the block markers.
|
||||||
|
event.Skip();
|
||||||
|
////@end wxEVT_COMMAND_RADIOBOX_SELECTED event handler for TEXT_SELECT in KiDisplayOptionsFrame.
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* wxEVT_COMMAND_CHECKBOX_CLICKED event handler for PADFILL_OPT
|
||||||
|
*/
|
||||||
|
|
||||||
|
void KiDisplayOptionsFrame::OnPadfillOptClick( wxCommandEvent& event )
|
||||||
|
{
|
||||||
|
////@begin wxEVT_COMMAND_CHECKBOX_CLICKED event handler for PADFILL_OPT in KiDisplayOptionsFrame.
|
||||||
|
// Before editing this code, remove the block markers.
|
||||||
|
event.Skip();
|
||||||
|
////@end wxEVT_COMMAND_CHECKBOX_CLICKED event handler for PADFILL_OPT in KiDisplayOptionsFrame.
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* wxEVT_COMMAND_CHECKBOX_CLICKED event handler for PADNUM_OPT
|
||||||
|
*/
|
||||||
|
|
||||||
|
void KiDisplayOptionsFrame::OnPadnumOptClick( wxCommandEvent& event )
|
||||||
|
{
|
||||||
|
////@begin wxEVT_COMMAND_CHECKBOX_CLICKED event handler for PADNUM_OPT in KiDisplayOptionsFrame.
|
||||||
|
// Before editing this code, remove the block markers.
|
||||||
|
event.Skip();
|
||||||
|
////@end wxEVT_COMMAND_CHECKBOX_CLICKED event handler for PADNUM_OPT in KiDisplayOptionsFrame.
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
@ -24,6 +24,7 @@
|
||||||
|
|
||||||
////@begin includes
|
////@begin includes
|
||||||
#include "wx/valgen.h"
|
#include "wx/valgen.h"
|
||||||
|
#include "wx/statline.h"
|
||||||
////@end includes
|
////@end includes
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
|
@ -39,16 +40,17 @@
|
||||||
|
|
||||||
////@begin control identifiers
|
////@begin control identifiers
|
||||||
#define ID_DIALOG 10000
|
#define ID_DIALOG 10000
|
||||||
#define SYMBOL_KIDISPLAYOPTIONSFRAME_STYLE wxCAPTION|wxSYSTEM_MENU|wxCLOSE_BOX|MAYBE_RESIZE_BORDER
|
#define EDGE_SELECT 10003
|
||||||
|
#define TEXT_SELECT 10004
|
||||||
|
#define PADFILL_OPT 10001
|
||||||
|
#define PADNUM_OPT 10002
|
||||||
|
#define ID_SAVE_CONFIG 10005
|
||||||
|
#define ID_STATICLINE1 10007
|
||||||
|
#define SYMBOL_KIDISPLAYOPTIONSFRAME_STYLE wxCAPTION|wxRESIZE_BORDER|wxSYSTEM_MENU|wxCLOSE_BOX
|
||||||
#define SYMBOL_KIDISPLAYOPTIONSFRAME_TITLE _("Options")
|
#define SYMBOL_KIDISPLAYOPTIONSFRAME_TITLE _("Options")
|
||||||
#define SYMBOL_KIDISPLAYOPTIONSFRAME_IDNAME ID_DIALOG
|
#define SYMBOL_KIDISPLAYOPTIONSFRAME_IDNAME ID_DIALOG
|
||||||
#define SYMBOL_KIDISPLAYOPTIONSFRAME_SIZE wxSize(400, 300)
|
#define SYMBOL_KIDISPLAYOPTIONSFRAME_SIZE wxSize(400, 300)
|
||||||
#define SYMBOL_KIDISPLAYOPTIONSFRAME_POSITION wxDefaultPosition
|
#define SYMBOL_KIDISPLAYOPTIONSFRAME_POSITION wxDefaultPosition
|
||||||
#define PADNUM_OPT 10002
|
|
||||||
#define ID_SAVE_CONFIG 10005
|
|
||||||
#define PADFILL_OPT 10001
|
|
||||||
#define EDGE_SELECT 10003
|
|
||||||
#define TEXT_SELECT 10004
|
|
||||||
////@end control identifiers
|
////@end control identifiers
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
|
@ -81,6 +83,18 @@ public:
|
||||||
|
|
||||||
////@begin KiDisplayOptionsFrame event handler declarations
|
////@begin KiDisplayOptionsFrame event handler declarations
|
||||||
|
|
||||||
|
/// wxEVT_COMMAND_RADIOBOX_SELECTED event handler for EDGE_SELECT
|
||||||
|
void OnEdgeSelectSelected( wxCommandEvent& event );
|
||||||
|
|
||||||
|
/// wxEVT_COMMAND_RADIOBOX_SELECTED event handler for TEXT_SELECT
|
||||||
|
void OnTextSelectSelected( wxCommandEvent& event );
|
||||||
|
|
||||||
|
/// wxEVT_COMMAND_CHECKBOX_CLICKED event handler for PADFILL_OPT
|
||||||
|
void OnPadfillOptClick( wxCommandEvent& event );
|
||||||
|
|
||||||
|
/// wxEVT_COMMAND_CHECKBOX_CLICKED event handler for PADNUM_OPT
|
||||||
|
void OnPadnumOptClick( wxCommandEvent& event );
|
||||||
|
|
||||||
/// wxEVT_COMMAND_BUTTON_CLICKED event handler for ID_SAVE_CONFIG
|
/// wxEVT_COMMAND_BUTTON_CLICKED event handler for ID_SAVE_CONFIG
|
||||||
void OnSaveConfigClick( wxCommandEvent& event );
|
void OnSaveConfigClick( wxCommandEvent& event );
|
||||||
|
|
||||||
|
@ -102,19 +116,18 @@ public:
|
||||||
|
|
||||||
/// Retrieves icon resources
|
/// Retrieves icon resources
|
||||||
wxIcon GetIconResource( const wxString& name );
|
wxIcon GetIconResource( const wxString& name );
|
||||||
|
|
||||||
/// Updates settings related to edges, text strings, and pads
|
|
||||||
void UpdateObjectSettings();
|
|
||||||
////@end KiDisplayOptionsFrame member function declarations
|
////@end KiDisplayOptionsFrame member function declarations
|
||||||
|
|
||||||
/// Should we show tooltips?
|
/// Should we show tooltips?
|
||||||
static bool ShowToolTips();
|
static bool ShowToolTips();
|
||||||
|
|
||||||
|
void UpdateObjectSettings(void);
|
||||||
|
|
||||||
////@begin KiDisplayOptionsFrame member variables
|
////@begin KiDisplayOptionsFrame member variables
|
||||||
wxRadioBox* m_EdgesDisplayOption;
|
wxRadioBox* m_EdgesDisplayOption;
|
||||||
wxRadioBox* m_TextDisplayOption;
|
wxRadioBox* m_TextDisplayOption;
|
||||||
wxCheckBox* m_IsShowPadNum;
|
|
||||||
wxCheckBox* m_IsShowPadFill;
|
wxCheckBox* m_IsShowPadFill;
|
||||||
|
wxCheckBox* m_IsShowPadNum;
|
||||||
////@end KiDisplayOptionsFrame member variables
|
////@end KiDisplayOptionsFrame member variables
|
||||||
|
|
||||||
WinEDA_BasePcbFrame * m_Parent;
|
WinEDA_BasePcbFrame * m_Parent;
|
||||||
|
|
|
@ -0,0 +1,955 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<anthemion-project version="1.0.0.0" xmlns="http://www.anthemion.co.uk">
|
||||||
|
<header>
|
||||||
|
<long name="name_counter">0</long>
|
||||||
|
<string name="html_path">""</string>
|
||||||
|
<string name="title">""</string>
|
||||||
|
<string name="author">""</string>
|
||||||
|
<string name="description">""</string>
|
||||||
|
<string name="xrc_filename">""</string>
|
||||||
|
<bool name="convert_images_to_xpm">0</bool>
|
||||||
|
<bool name="inline_images">0</bool>
|
||||||
|
<bool name="generate_cpp_for_xrc">0</bool>
|
||||||
|
<bool name="use_help_text_for_tooltips">1</bool>
|
||||||
|
<bool name="translate_strings">1</bool>
|
||||||
|
<bool name="extract_strings">0</bool>
|
||||||
|
<string name="user_name">"jean-pierre Charras"</string>
|
||||||
|
<string name="copyright_string">"License GNU"</string>
|
||||||
|
<string name="resource_prefix">""</string>
|
||||||
|
<bool name="use_two_step_construction">0</bool>
|
||||||
|
<bool name="use_enums">0</bool>
|
||||||
|
<string name="current_platform">"<All platforms>"</string>
|
||||||
|
<string name="target_wx_version">"<Any>"</string>
|
||||||
|
<string name="cpp_header_comment">"/////////////////////////////////////////////////////////////////////////////
|
||||||
|
// Name: %HEADER-FILENAME%
|
||||||
|
// Purpose:
|
||||||
|
// Author: %AUTHOR%
|
||||||
|
// Modified by:
|
||||||
|
// Created: %DATE%
|
||||||
|
// RCS-ID:
|
||||||
|
// Copyright: %COPYRIGHT%
|
||||||
|
// Licence:
|
||||||
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
"</string>
|
||||||
|
<string name="cpp_implementation_comment">"/////////////////////////////////////////////////////////////////////////////
|
||||||
|
// Name: %SOURCE-FILENAME%
|
||||||
|
// Purpose:
|
||||||
|
// Author: %AUTHOR%
|
||||||
|
// Modified by:
|
||||||
|
// Created: %DATE%
|
||||||
|
// RCS-ID:
|
||||||
|
// Copyright: %COPYRIGHT%
|
||||||
|
// Licence:
|
||||||
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
"</string>
|
||||||
|
<string name="cpp_symbols_file_comment">"/////////////////////////////////////////////////////////////////////////////
|
||||||
|
// Name: %SYMBOLS-FILENAME%
|
||||||
|
// Purpose: Symbols file
|
||||||
|
// Author: %AUTHOR%
|
||||||
|
// Modified by:
|
||||||
|
// Created: %DATE%
|
||||||
|
// RCS-ID:
|
||||||
|
// Copyright: %COPYRIGHT%
|
||||||
|
// Licence:
|
||||||
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
"</string>
|
||||||
|
<string name="cpp_header_preamble">"#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
||||||
|
#pragma interface "%HEADER-FILENAME%"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
"</string>
|
||||||
|
<string name="cpp_implementation_preamble">"#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
||||||
|
#pragma implementation "%HEADER-FILENAME%"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// For compilers that support precompilation, includes "wx/wx.h".
|
||||||
|
#include "wx/wxprec.h"
|
||||||
|
|
||||||
|
#ifdef __BORLANDC__
|
||||||
|
#pragma hdrstop
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef WX_PRECOMP
|
||||||
|
#include "wx/wx.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
"</string>
|
||||||
|
<string name="cpp_function_declaration_comment">" /// %BODY%
|
||||||
|
"</string>
|
||||||
|
<string name="cpp_function_implementation_comment">"
|
||||||
|
/*!
|
||||||
|
* %BODY%
|
||||||
|
*/
|
||||||
|
|
||||||
|
"</string>
|
||||||
|
<string name="resource_file_header">"app_resources.h"</string>
|
||||||
|
<string name="resource_file_implementation">"app_resources.cpp"</string>
|
||||||
|
<string name="resource_class_name">"AppResources"</string>
|
||||||
|
<string name="app_file_header">"app.h"</string>
|
||||||
|
<string name="app_file_implementation">"app.cpp"</string>
|
||||||
|
<string name="app_class_name">"Application"</string>
|
||||||
|
<bool name="generate_app_class">0</bool>
|
||||||
|
<string name="external_symbol_filenames">""</string>
|
||||||
|
<string name="configuration">"<None>"</string>
|
||||||
|
<string name="source_encoding">"<System>"</string>
|
||||||
|
<string name="xrc_encoding">"utf-8"</string>
|
||||||
|
<string name="project_encoding">"<System>"</string>
|
||||||
|
<string name="resource_archive">""</string>
|
||||||
|
<long name="text_file_type">0</long>
|
||||||
|
<bool name="use_tabs">0</bool>
|
||||||
|
<long name="indent_size">4</long>
|
||||||
|
<string name="whitespace_after_return_type">" "</string>
|
||||||
|
<string name="resource_xrc_cpp">""</string>
|
||||||
|
<bool name="use_resource_archive">0</bool>
|
||||||
|
<bool name="use_generated_xrc_cpp">0</bool>
|
||||||
|
<bool name="always_generate_xrc">1</bool>
|
||||||
|
<bool name="archive_xrc_files">1</bool>
|
||||||
|
<bool name="archive_image_files">1</bool>
|
||||||
|
<bool name="archive_all_image_files">0</bool>
|
||||||
|
<bool name="xrc_retain_relative_paths">1</bool>
|
||||||
|
</header>
|
||||||
|
<data>
|
||||||
|
<document>
|
||||||
|
<string name="title">""</string>
|
||||||
|
<string name="type">"data-document"</string>
|
||||||
|
<string name="filename">""</string>
|
||||||
|
<string name="icon-name">""</string>
|
||||||
|
<long name="is-transient">0</long>
|
||||||
|
<long name="owns-file">1</long>
|
||||||
|
<long name="title-mode">0</long>
|
||||||
|
<long name="locked">0</long>
|
||||||
|
<document>
|
||||||
|
<string name="title">"Configurations"</string>
|
||||||
|
<string name="type">"config-data-document"</string>
|
||||||
|
<string name="filename">""</string>
|
||||||
|
<string name="icon-name">""</string>
|
||||||
|
<long name="is-transient">0</long>
|
||||||
|
<long name="owns-file">1</long>
|
||||||
|
<long name="title-mode">0</long>
|
||||||
|
<long name="locked">0</long>
|
||||||
|
<string name="template-name">""</string>
|
||||||
|
<bool name="dirty">1</bool>
|
||||||
|
<string name="Compiler name">""</string>
|
||||||
|
<string name="Build mode">"Debug"</string>
|
||||||
|
<string name="Unicode mode">"ANSI"</string>
|
||||||
|
<string name="Shared mode">"Static"</string>
|
||||||
|
<string name="Modularity">"Modular"</string>
|
||||||
|
<string name="GUI mode">"GUI"</string>
|
||||||
|
<string name="Toolkit">"wxMSW"</string>
|
||||||
|
<string name="Runtime linking">"Dynamic"</string>
|
||||||
|
<string name="Use exceptions">"Yes"</string>
|
||||||
|
<string name="Use ODBC">"No"</string>
|
||||||
|
<string name="Use OpenGL">"No"</string>
|
||||||
|
<string name="wxWidgets version">"%WXVERSION%"</string>
|
||||||
|
<string name="Executable name">"%EXECUTABLE%"</string>
|
||||||
|
<string name="Program arguments">""</string>
|
||||||
|
<string name="Working path">"%AUTO%"</string>
|
||||||
|
<string name="Output path">"%AUTO%"</string>
|
||||||
|
<string name="Objects path">"%AUTO%"</string>
|
||||||
|
<string name="Compiler location">"%AUTO%"</string>
|
||||||
|
<string name="wxWidgets location">"%AUTO%"</string>
|
||||||
|
<string name="C++ command">"%AUTO%"</string>
|
||||||
|
<string name="Resource compiler">"%AUTO%"</string>
|
||||||
|
<string name="Make command">"%AUTO%"</string>
|
||||||
|
<string name="Project makefile">"%AUTO%"</string>
|
||||||
|
<string name="wxWidgets makefile">"%AUTO%"</string>
|
||||||
|
<string name="Compiler bin path">"%AUTO%"</string>
|
||||||
|
<string name="Compiler include path">"%AUTO%"</string>
|
||||||
|
<string name="Compiler lib path">"%AUTO%"</string>
|
||||||
|
<string name="Preprocessor flags">"%AUTO%"</string>
|
||||||
|
<string name="Optimizations">"%AUTO%"</string>
|
||||||
|
<string name="Warnings">"%AUTO%"</string>
|
||||||
|
<string name="Debug flags">"%AUTO%"</string>
|
||||||
|
<string name="Libraries">"%AUTO%"</string>
|
||||||
|
<string name="Library path">"%AUTO%"</string>
|
||||||
|
<string name="Linker flags">"%AUTO%"</string>
|
||||||
|
<string name="Include path">"%AUTO%"</string>
|
||||||
|
<string name="Resource flags">"%AUTO%"</string>
|
||||||
|
<string name="Resource path">"%AUTO%"</string>
|
||||||
|
<string name="wxWidgets build path">"%AUTO%"</string>
|
||||||
|
<string name="wxWidgets build command">"%AUTO%"</string>
|
||||||
|
<string name="wxWidgets clean command">"%AUTO%"</string>
|
||||||
|
<string name="PATH variable">"%AUTO%"</string>
|
||||||
|
</document>
|
||||||
|
</document>
|
||||||
|
</data>
|
||||||
|
|
||||||
|
<documents>
|
||||||
|
<document>
|
||||||
|
<string name="title">"Projects"</string>
|
||||||
|
<string name="type">"root-document"</string>
|
||||||
|
<string name="filename">""</string>
|
||||||
|
<string name="icon-name">"project"</string>
|
||||||
|
<long name="is-transient">1</long>
|
||||||
|
<long name="owns-file">1</long>
|
||||||
|
<long name="title-mode">0</long>
|
||||||
|
<long name="locked">1</long>
|
||||||
|
<document>
|
||||||
|
<string name="title">"Windows"</string>
|
||||||
|
<string name="type">"html-document"</string>
|
||||||
|
<string name="filename">""</string>
|
||||||
|
<string name="icon-name">"dialogsfolder"</string>
|
||||||
|
<long name="is-transient">1</long>
|
||||||
|
<long name="owns-file">1</long>
|
||||||
|
<long name="title-mode">0</long>
|
||||||
|
<long name="locked">1</long>
|
||||||
|
<document>
|
||||||
|
<string name="title">"Options"</string>
|
||||||
|
<string name="type">"dialog-document"</string>
|
||||||
|
<string name="filename">""</string>
|
||||||
|
<string name="icon-name">"dialog"</string>
|
||||||
|
<long name="is-transient">0</long>
|
||||||
|
<long name="owns-file">1</long>
|
||||||
|
<long name="title-mode">0</long>
|
||||||
|
<long name="locked">0</long>
|
||||||
|
<string name="created">"17/6/2006"</string>
|
||||||
|
<string name="proxy-type">"wbDialogProxy"</string>
|
||||||
|
<long name="base-id">10000</long>
|
||||||
|
<bool name="use-id-prefix">0</bool>
|
||||||
|
<string name="id-prefix">""</string>
|
||||||
|
<bool name="use-id-suffix">0</bool>
|
||||||
|
<string name="id-suffix">""</string>
|
||||||
|
<long name="use-xrc">0</long>
|
||||||
|
<string name="proxy-Id name">"ID_DIALOG"</string>
|
||||||
|
<long name="proxy-Id value">10000</long>
|
||||||
|
<string name="proxy-Class">"KiDisplayOptionsFrame"</string>
|
||||||
|
<string name="proxy-Base class">"wxDialog"</string>
|
||||||
|
<string name="proxy-Window kind">"wxDialog"</string>
|
||||||
|
<string name="proxy-Implementation filename">"dialog_display_options.cpp"</string>
|
||||||
|
<string name="proxy-Header filename">"dialog_display_options.h"</string>
|
||||||
|
<string name="proxy-XRC filename">""</string>
|
||||||
|
<string name="proxy-Title">"Options"</string>
|
||||||
|
<bool name="proxy-Centre">1</bool>
|
||||||
|
<string name="proxy-Icon">""</string>
|
||||||
|
<bool name="proxy-Dialog units">0</bool>
|
||||||
|
<string name="proxy-Help text">""</string>
|
||||||
|
<string name="proxy-Tooltip text">""</string>
|
||||||
|
<string name="proxy-Background colour">""</string>
|
||||||
|
<string name="proxy-Foreground colour">""</string>
|
||||||
|
<string name="proxy-Font">""</string>
|
||||||
|
<bool name="proxy-Hidden">0</bool>
|
||||||
|
<bool name="proxy-Enabled">1</bool>
|
||||||
|
<string name="proxy-Platform">"<Any platform>"</string>
|
||||||
|
<bool name="proxy-wxDEFAULT_DIALOG_STYLE">0</bool>
|
||||||
|
<bool name="proxy-wxCAPTION">1</bool>
|
||||||
|
<bool name="proxy-wxRESIZE_BORDER">1</bool>
|
||||||
|
<bool name="proxy-wxTHICK_FRAME">0</bool>
|
||||||
|
<bool name="proxy-wxSYSTEM_MENU">1</bool>
|
||||||
|
<bool name="proxy-wxSTAY_ON_TOP">0</bool>
|
||||||
|
<bool name="proxy-wxDIALOG_NO_PARENT">0</bool>
|
||||||
|
<bool name="proxy-wxCLOSE_BOX">1</bool>
|
||||||
|
<bool name="proxy-wxMAXIMIZE_BOX">0</bool>
|
||||||
|
<bool name="proxy-wxMINIMIZE_BOX">0</bool>
|
||||||
|
<bool name="proxy-wxDIALOG_MODAL">0</bool>
|
||||||
|
<bool name="proxy-wxNO_BORDER">0</bool>
|
||||||
|
<bool name="proxy-wxSIMPLE_BORDER">0</bool>
|
||||||
|
<bool name="proxy-wxDOUBLE_BORDER">0</bool>
|
||||||
|
<bool name="proxy-wxSUNKEN_BORDER">0</bool>
|
||||||
|
<bool name="proxy-wxRAISED_BORDER">0</bool>
|
||||||
|
<bool name="proxy-wxSTATIC_BORDER">0</bool>
|
||||||
|
<bool name="proxy-wxWANTS_CHARS">0</bool>
|
||||||
|
<bool name="proxy-wxNO_FULL_REPAINT_ON_RESIZE">0</bool>
|
||||||
|
<bool name="proxy-wxFULL_REPAINT_ON_RESIZE">0</bool>
|
||||||
|
<bool name="proxy-wxCLIP_CHILDREN">0</bool>
|
||||||
|
<bool name="proxy-wxTAB_TRAVERSAL">0</bool>
|
||||||
|
<bool name="proxy-wxWS_EX_VALIDATE_RECURSIVELY">0</bool>
|
||||||
|
<bool name="proxy-wxWS_EX_BLOCK_EVENTS">1</bool>
|
||||||
|
<bool name="proxy-wxWS_EX_TRANSIENT">0</bool>
|
||||||
|
<string name="proxy-Custom styles">""</string>
|
||||||
|
<bool name="proxy-wxDIALOG_EX_CONTEXTHELP">0</bool>
|
||||||
|
<bool name="proxy-Fit to content">1</bool>
|
||||||
|
<long name="proxy-X">-1</long>
|
||||||
|
<long name="proxy-Y">-1</long>
|
||||||
|
<long name="proxy-Width">400</long>
|
||||||
|
<long name="proxy-Height">300</long>
|
||||||
|
<bool name="proxy-AUI manager">0</bool>
|
||||||
|
<string name="proxy-Event sources">""</string>
|
||||||
|
<document>
|
||||||
|
<string name="title">"wxBoxSizer V"</string>
|
||||||
|
<string name="type">"dialog-control-document"</string>
|
||||||
|
<string name="filename">""</string>
|
||||||
|
<string name="icon-name">"sizer"</string>
|
||||||
|
<long name="is-transient">0</long>
|
||||||
|
<long name="owns-file">1</long>
|
||||||
|
<long name="title-mode">0</long>
|
||||||
|
<long name="locked">0</long>
|
||||||
|
<string name="created">"24/10/2007"</string>
|
||||||
|
<string name="proxy-type">"wbBoxSizerProxy"</string>
|
||||||
|
<string name="proxy-Orientation">"Vertical"</string>
|
||||||
|
<string name="proxy-Member variable name">""</string>
|
||||||
|
<bool name="proxy-wxSHAPED">0</bool>
|
||||||
|
<bool name="proxy-wxADJUST_MINSIZE">0</bool>
|
||||||
|
<bool name="proxy-wxFIXED_MINSIZE">0</bool>
|
||||||
|
<string name="proxy-Platform">"<Any platform>"</string>
|
||||||
|
<document>
|
||||||
|
<string name="title">"wxBoxSizer H"</string>
|
||||||
|
<string name="type">"dialog-control-document"</string>
|
||||||
|
<string name="filename">""</string>
|
||||||
|
<string name="icon-name">"sizer"</string>
|
||||||
|
<long name="is-transient">0</long>
|
||||||
|
<long name="owns-file">1</long>
|
||||||
|
<long name="title-mode">0</long>
|
||||||
|
<long name="locked">0</long>
|
||||||
|
<string name="created">"24/10/2007"</string>
|
||||||
|
<string name="proxy-type">"wbBoxSizerProxy"</string>
|
||||||
|
<string name="proxy-Orientation">"Horizontal"</string>
|
||||||
|
<string name="proxy-Member variable name">""</string>
|
||||||
|
<string name="proxy-AlignH">"Expand"</string>
|
||||||
|
<string name="proxy-AlignV">"Centre"</string>
|
||||||
|
<long name="proxy-Stretch factor">0</long>
|
||||||
|
<long name="proxy-Border">5</long>
|
||||||
|
<bool name="proxy-wxLEFT">1</bool>
|
||||||
|
<bool name="proxy-wxRIGHT">1</bool>
|
||||||
|
<bool name="proxy-wxTOP">1</bool>
|
||||||
|
<bool name="proxy-wxBOTTOM">1</bool>
|
||||||
|
<bool name="proxy-wxSHAPED">0</bool>
|
||||||
|
<bool name="proxy-wxADJUST_MINSIZE">0</bool>
|
||||||
|
<bool name="proxy-wxFIXED_MINSIZE">0</bool>
|
||||||
|
<string name="proxy-Platform">"<Any platform>"</string>
|
||||||
|
<document>
|
||||||
|
<string name="title">"wxRadioBox: EDGE_SELECT"</string>
|
||||||
|
<string name="type">"dialog-control-document"</string>
|
||||||
|
<string name="filename">""</string>
|
||||||
|
<string name="icon-name">"radiobox"</string>
|
||||||
|
<long name="is-transient">0</long>
|
||||||
|
<long name="owns-file">1</long>
|
||||||
|
<long name="title-mode">0</long>
|
||||||
|
<long name="locked">0</long>
|
||||||
|
<string name="created">"24/10/2007"</string>
|
||||||
|
<string name="proxy-type">"wbRadioBoxProxy"</string>
|
||||||
|
<string name="event-handler-0">"wxEVT_COMMAND_RADIOBOX_SELECTED|OnEdgeSelectSelected"</string>
|
||||||
|
<string name="proxy-Id name">"EDGE_SELECT"</string>
|
||||||
|
<long name="proxy-Id value">10003</long>
|
||||||
|
<string name="proxy-Class">"wxRadioBox"</string>
|
||||||
|
<string name="proxy-Base class">"wxRadioBox"</string>
|
||||||
|
<bool name="proxy-External implementation">1</bool>
|
||||||
|
<bool name="proxy-Separate files">0</bool>
|
||||||
|
<string name="proxy-Implementation filename">""</string>
|
||||||
|
<string name="proxy-Header filename">""</string>
|
||||||
|
<string name="proxy-Member variable name">"m_EdgesDisplayOption"</string>
|
||||||
|
<string name="proxy-Label">"Edges:"</string>
|
||||||
|
<long name="proxy-Major dimension count">1</long>
|
||||||
|
<string name="proxy-Items">"&Line|&Filled|&Sketch"</string>
|
||||||
|
<long name="proxy-Initial value">0</long>
|
||||||
|
<string name="proxy-Help text">""</string>
|
||||||
|
<string name="proxy-Tooltip text">""</string>
|
||||||
|
<string name="proxy-Background colour">""</string>
|
||||||
|
<string name="proxy-Foreground colour">""</string>
|
||||||
|
<string name="proxy-Font">""</string>
|
||||||
|
<bool name="proxy-Hidden">0</bool>
|
||||||
|
<bool name="proxy-Enabled">1</bool>
|
||||||
|
<string name="proxy-Platform">"<Any platform>"</string>
|
||||||
|
<string name="proxy-Data variable">"DisplayOpt.DisplayModEdge"</string>
|
||||||
|
<string name="proxy-Data validator">"wxGenericValidator(& %VARIABLE%)"</string>
|
||||||
|
<bool name="proxy-wxRA_SPECIFY_ROWS">0</bool>
|
||||||
|
<bool name="proxy-wxRA_SPECIFY_COLS">1</bool>
|
||||||
|
<bool name="proxy-wxWANTS_CHARS">0</bool>
|
||||||
|
<bool name="proxy-wxNO_FULL_REPAINT_ON_RESIZE">0</bool>
|
||||||
|
<bool name="proxy-wxFULL_REPAINT_ON_RESIZE">0</bool>
|
||||||
|
<string name="proxy-Custom styles">""</string>
|
||||||
|
<long name="proxy-X">-1</long>
|
||||||
|
<long name="proxy-Y">-1</long>
|
||||||
|
<long name="proxy-Width">-1</long>
|
||||||
|
<long name="proxy-Height">-1</long>
|
||||||
|
<string name="proxy-AlignH">"Left"</string>
|
||||||
|
<string name="proxy-AlignV">"Expand"</string>
|
||||||
|
<long name="proxy-Stretch factor">0</long>
|
||||||
|
<long name="proxy-Border">5</long>
|
||||||
|
<bool name="proxy-wxLEFT">1</bool>
|
||||||
|
<bool name="proxy-wxRIGHT">1</bool>
|
||||||
|
<bool name="proxy-wxTOP">1</bool>
|
||||||
|
<bool name="proxy-wxBOTTOM">1</bool>
|
||||||
|
<bool name="proxy-wxSHAPED">0</bool>
|
||||||
|
<bool name="proxy-wxADJUST_MINSIZE">0</bool>
|
||||||
|
<bool name="proxy-wxFIXED_MINSIZE">0</bool>
|
||||||
|
<string name="proxy-Custom arguments">""</string>
|
||||||
|
<string name="proxy-Custom ctor arguments">""</string>
|
||||||
|
</document>
|
||||||
|
<document>
|
||||||
|
<string name="title">"wxRadioBox: TEXT_SELECT"</string>
|
||||||
|
<string name="type">"dialog-control-document"</string>
|
||||||
|
<string name="filename">""</string>
|
||||||
|
<string name="icon-name">"radiobox"</string>
|
||||||
|
<long name="is-transient">0</long>
|
||||||
|
<long name="owns-file">1</long>
|
||||||
|
<long name="title-mode">0</long>
|
||||||
|
<long name="locked">0</long>
|
||||||
|
<string name="created">"24/10/2007"</string>
|
||||||
|
<string name="proxy-type">"wbRadioBoxProxy"</string>
|
||||||
|
<string name="event-handler-0">"wxEVT_COMMAND_RADIOBOX_SELECTED|OnTextSelectSelected"</string>
|
||||||
|
<string name="proxy-Id name">"TEXT_SELECT"</string>
|
||||||
|
<long name="proxy-Id value">10004</long>
|
||||||
|
<string name="proxy-Class">"wxRadioBox"</string>
|
||||||
|
<string name="proxy-Base class">"wxRadioBox"</string>
|
||||||
|
<bool name="proxy-External implementation">1</bool>
|
||||||
|
<bool name="proxy-Separate files">0</bool>
|
||||||
|
<string name="proxy-Implementation filename">""</string>
|
||||||
|
<string name="proxy-Header filename">""</string>
|
||||||
|
<string name="proxy-Member variable name">"m_TextDisplayOption"</string>
|
||||||
|
<string name="proxy-Label">"Texts:"</string>
|
||||||
|
<long name="proxy-Major dimension count">1</long>
|
||||||
|
<string name="proxy-Items">"&Line|&Filled|&Sketch"</string>
|
||||||
|
<long name="proxy-Initial value">0</long>
|
||||||
|
<string name="proxy-Help text">""</string>
|
||||||
|
<string name="proxy-Tooltip text">""</string>
|
||||||
|
<string name="proxy-Background colour">""</string>
|
||||||
|
<string name="proxy-Foreground colour">""</string>
|
||||||
|
<string name="proxy-Font">""</string>
|
||||||
|
<bool name="proxy-Hidden">0</bool>
|
||||||
|
<bool name="proxy-Enabled">1</bool>
|
||||||
|
<string name="proxy-Platform">"<Any platform>"</string>
|
||||||
|
<string name="proxy-Data variable">"DisplayOpt.DisplayModText"</string>
|
||||||
|
<string name="proxy-Data validator">"wxGenericValidator(& %VARIABLE%)"</string>
|
||||||
|
<bool name="proxy-wxRA_SPECIFY_ROWS">0</bool>
|
||||||
|
<bool name="proxy-wxRA_SPECIFY_COLS">1</bool>
|
||||||
|
<bool name="proxy-wxWANTS_CHARS">0</bool>
|
||||||
|
<bool name="proxy-wxNO_FULL_REPAINT_ON_RESIZE">0</bool>
|
||||||
|
<bool name="proxy-wxFULL_REPAINT_ON_RESIZE">0</bool>
|
||||||
|
<string name="proxy-Custom styles">""</string>
|
||||||
|
<long name="proxy-X">-1</long>
|
||||||
|
<long name="proxy-Y">-1</long>
|
||||||
|
<long name="proxy-Width">-1</long>
|
||||||
|
<long name="proxy-Height">-1</long>
|
||||||
|
<string name="proxy-AlignH">"Centre"</string>
|
||||||
|
<string name="proxy-AlignV">"Expand"</string>
|
||||||
|
<long name="proxy-Stretch factor">0</long>
|
||||||
|
<long name="proxy-Border">5</long>
|
||||||
|
<bool name="proxy-wxLEFT">1</bool>
|
||||||
|
<bool name="proxy-wxRIGHT">1</bool>
|
||||||
|
<bool name="proxy-wxTOP">1</bool>
|
||||||
|
<bool name="proxy-wxBOTTOM">1</bool>
|
||||||
|
<bool name="proxy-wxSHAPED">0</bool>
|
||||||
|
<bool name="proxy-wxADJUST_MINSIZE">0</bool>
|
||||||
|
<bool name="proxy-wxFIXED_MINSIZE">0</bool>
|
||||||
|
<string name="proxy-Custom arguments">""</string>
|
||||||
|
<string name="proxy-Custom ctor arguments">""</string>
|
||||||
|
</document>
|
||||||
|
<document>
|
||||||
|
<string name="title">"wxBoxSizer V"</string>
|
||||||
|
<string name="type">"dialog-control-document"</string>
|
||||||
|
<string name="filename">""</string>
|
||||||
|
<string name="icon-name">"sizer"</string>
|
||||||
|
<long name="is-transient">0</long>
|
||||||
|
<long name="owns-file">1</long>
|
||||||
|
<long name="title-mode">0</long>
|
||||||
|
<long name="locked">0</long>
|
||||||
|
<string name="created">"24/10/2007"</string>
|
||||||
|
<string name="proxy-type">"wbBoxSizerProxy"</string>
|
||||||
|
<string name="proxy-Orientation">"Vertical"</string>
|
||||||
|
<string name="proxy-Member variable name">""</string>
|
||||||
|
<string name="proxy-AlignH">"Centre"</string>
|
||||||
|
<string name="proxy-AlignV">"Expand"</string>
|
||||||
|
<long name="proxy-Stretch factor">0</long>
|
||||||
|
<long name="proxy-Border">5</long>
|
||||||
|
<bool name="proxy-wxLEFT">1</bool>
|
||||||
|
<bool name="proxy-wxRIGHT">1</bool>
|
||||||
|
<bool name="proxy-wxTOP">1</bool>
|
||||||
|
<bool name="proxy-wxBOTTOM">1</bool>
|
||||||
|
<bool name="proxy-wxSHAPED">0</bool>
|
||||||
|
<bool name="proxy-wxADJUST_MINSIZE">0</bool>
|
||||||
|
<bool name="proxy-wxFIXED_MINSIZE">0</bool>
|
||||||
|
<string name="proxy-Platform">"<Any platform>"</string>
|
||||||
|
<document>
|
||||||
|
<string name="title">"wxCheckBox: PADFILL_OPT"</string>
|
||||||
|
<string name="type">"dialog-control-document"</string>
|
||||||
|
<string name="filename">""</string>
|
||||||
|
<string name="icon-name">"checkbox"</string>
|
||||||
|
<long name="is-transient">0</long>
|
||||||
|
<long name="owns-file">1</long>
|
||||||
|
<long name="title-mode">0</long>
|
||||||
|
<long name="locked">0</long>
|
||||||
|
<string name="created">"24/10/2007"</string>
|
||||||
|
<string name="proxy-type">"wbCheckBoxProxy"</string>
|
||||||
|
<string name="event-handler-0">"wxEVT_COMMAND_CHECKBOX_CLICKED|OnPadfillOptClick"</string>
|
||||||
|
<string name="proxy-Id name">"PADFILL_OPT"</string>
|
||||||
|
<long name="proxy-Id value">10001</long>
|
||||||
|
<string name="proxy-Class">"wxCheckBox"</string>
|
||||||
|
<string name="proxy-Base class">"wxCheckBox"</string>
|
||||||
|
<bool name="proxy-External implementation">1</bool>
|
||||||
|
<bool name="proxy-Separate files">0</bool>
|
||||||
|
<string name="proxy-Implementation filename">""</string>
|
||||||
|
<string name="proxy-Header filename">""</string>
|
||||||
|
<string name="proxy-Member variable name">"m_IsShowPadFill"</string>
|
||||||
|
<string name="proxy-Label">"&Pad Filled"</string>
|
||||||
|
<bool name="proxy-Initial value">0</bool>
|
||||||
|
<string name="proxy-Help text">""</string>
|
||||||
|
<string name="proxy-Tooltip text">""</string>
|
||||||
|
<string name="proxy-Data variable">"DisplayOpt.DisplayPadFill"</string>
|
||||||
|
<string name="proxy-Data validator">"wxGenericValidator(& %VARIABLE%)"</string>
|
||||||
|
<string name="proxy-Background colour">""</string>
|
||||||
|
<string name="proxy-Foreground colour">""</string>
|
||||||
|
<string name="proxy-Font">""</string>
|
||||||
|
<bool name="proxy-Hidden">0</bool>
|
||||||
|
<bool name="proxy-Enabled">1</bool>
|
||||||
|
<string name="proxy-Platform">"<Any platform>"</string>
|
||||||
|
<bool name="proxy-wxALIGN_RIGHT">0</bool>
|
||||||
|
<bool name="proxy-wxCHK_2STATE">1</bool>
|
||||||
|
<bool name="proxy-wxCHK_3STATE">0</bool>
|
||||||
|
<bool name="proxy-wxCHK_ALLOW_3RD_STATE_FOR_USER">0</bool>
|
||||||
|
<bool name="proxy-wxWANTS_CHARS">0</bool>
|
||||||
|
<bool name="proxy-wxNO_FULL_REPAINT_ON_RESIZE">0</bool>
|
||||||
|
<bool name="proxy-wxFULL_REPAINT_ON_RESIZE">0</bool>
|
||||||
|
<string name="proxy-Custom styles">""</string>
|
||||||
|
<long name="proxy-X">-1</long>
|
||||||
|
<long name="proxy-Y">-1</long>
|
||||||
|
<long name="proxy-Width">-1</long>
|
||||||
|
<long name="proxy-Height">-1</long>
|
||||||
|
<string name="proxy-AlignH">"Expand"</string>
|
||||||
|
<string name="proxy-AlignV">"Centre"</string>
|
||||||
|
<long name="proxy-Stretch factor">0</long>
|
||||||
|
<long name="proxy-Border">5</long>
|
||||||
|
<bool name="proxy-wxLEFT">1</bool>
|
||||||
|
<bool name="proxy-wxRIGHT">1</bool>
|
||||||
|
<bool name="proxy-wxTOP">1</bool>
|
||||||
|
<bool name="proxy-wxBOTTOM">1</bool>
|
||||||
|
<bool name="proxy-wxSHAPED">0</bool>
|
||||||
|
<bool name="proxy-wxADJUST_MINSIZE">0</bool>
|
||||||
|
<bool name="proxy-wxFIXED_MINSIZE">0</bool>
|
||||||
|
<string name="proxy-Custom arguments">""</string>
|
||||||
|
<string name="proxy-Custom ctor arguments">""</string>
|
||||||
|
</document>
|
||||||
|
<document>
|
||||||
|
<string name="title">"wxCheckBox: PADNUM_OPT"</string>
|
||||||
|
<string name="type">"dialog-control-document"</string>
|
||||||
|
<string name="filename">""</string>
|
||||||
|
<string name="icon-name">"checkbox"</string>
|
||||||
|
<long name="is-transient">0</long>
|
||||||
|
<long name="owns-file">1</long>
|
||||||
|
<long name="title-mode">0</long>
|
||||||
|
<long name="locked">0</long>
|
||||||
|
<string name="created">"24/10/2007"</string>
|
||||||
|
<string name="proxy-type">"wbCheckBoxProxy"</string>
|
||||||
|
<string name="event-handler-0">"wxEVT_COMMAND_CHECKBOX_CLICKED|OnPadnumOptClick"</string>
|
||||||
|
<string name="proxy-Id name">"PADNUM_OPT"</string>
|
||||||
|
<long name="proxy-Id value">10002</long>
|
||||||
|
<string name="proxy-Class">"wxCheckBox"</string>
|
||||||
|
<string name="proxy-Base class">"wxCheckBox"</string>
|
||||||
|
<bool name="proxy-External implementation">1</bool>
|
||||||
|
<bool name="proxy-Separate files">0</bool>
|
||||||
|
<string name="proxy-Implementation filename">""</string>
|
||||||
|
<string name="proxy-Header filename">""</string>
|
||||||
|
<string name="proxy-Member variable name">"m_IsShowPadNum"</string>
|
||||||
|
<string name="proxy-Label">"Display Pad &Num"</string>
|
||||||
|
<bool name="proxy-Initial value">0</bool>
|
||||||
|
<string name="proxy-Help text">""</string>
|
||||||
|
<string name="proxy-Tooltip text">"Display pad number"</string>
|
||||||
|
<string name="proxy-Data variable">"DisplayOpt.DisplayPadNum"</string>
|
||||||
|
<string name="proxy-Data validator">"wxGenericValidator(& %VARIABLE%)"</string>
|
||||||
|
<string name="proxy-Background colour">""</string>
|
||||||
|
<string name="proxy-Foreground colour">""</string>
|
||||||
|
<string name="proxy-Font">""</string>
|
||||||
|
<bool name="proxy-Hidden">0</bool>
|
||||||
|
<bool name="proxy-Enabled">1</bool>
|
||||||
|
<string name="proxy-Platform">"<Any platform>"</string>
|
||||||
|
<bool name="proxy-wxALIGN_RIGHT">0</bool>
|
||||||
|
<bool name="proxy-wxCHK_2STATE">1</bool>
|
||||||
|
<bool name="proxy-wxCHK_3STATE">0</bool>
|
||||||
|
<bool name="proxy-wxCHK_ALLOW_3RD_STATE_FOR_USER">0</bool>
|
||||||
|
<bool name="proxy-wxWANTS_CHARS">0</bool>
|
||||||
|
<bool name="proxy-wxNO_FULL_REPAINT_ON_RESIZE">0</bool>
|
||||||
|
<bool name="proxy-wxFULL_REPAINT_ON_RESIZE">0</bool>
|
||||||
|
<string name="proxy-Custom styles">""</string>
|
||||||
|
<long name="proxy-X">-1</long>
|
||||||
|
<long name="proxy-Y">-1</long>
|
||||||
|
<long name="proxy-Width">-1</long>
|
||||||
|
<long name="proxy-Height">-1</long>
|
||||||
|
<string name="proxy-AlignH">"Expand"</string>
|
||||||
|
<string name="proxy-AlignV">"Centre"</string>
|
||||||
|
<long name="proxy-Stretch factor">0</long>
|
||||||
|
<long name="proxy-Border">5</long>
|
||||||
|
<bool name="proxy-wxLEFT">1</bool>
|
||||||
|
<bool name="proxy-wxRIGHT">1</bool>
|
||||||
|
<bool name="proxy-wxTOP">1</bool>
|
||||||
|
<bool name="proxy-wxBOTTOM">1</bool>
|
||||||
|
<bool name="proxy-wxSHAPED">0</bool>
|
||||||
|
<bool name="proxy-wxADJUST_MINSIZE">0</bool>
|
||||||
|
<bool name="proxy-wxFIXED_MINSIZE">0</bool>
|
||||||
|
<string name="proxy-Custom arguments">""</string>
|
||||||
|
<string name="proxy-Custom ctor arguments">""</string>
|
||||||
|
</document>
|
||||||
|
<document>
|
||||||
|
<string name="title">"Spacer"</string>
|
||||||
|
<string name="type">"dialog-control-document"</string>
|
||||||
|
<string name="filename">""</string>
|
||||||
|
<string name="icon-name">"spacer"</string>
|
||||||
|
<long name="is-transient">0</long>
|
||||||
|
<long name="owns-file">1</long>
|
||||||
|
<long name="title-mode">0</long>
|
||||||
|
<long name="locked">0</long>
|
||||||
|
<string name="created">"24/10/2007"</string>
|
||||||
|
<string name="proxy-type">"wbSpacerProxy"</string>
|
||||||
|
<long name="proxy-Width">5</long>
|
||||||
|
<long name="proxy-Height">5</long>
|
||||||
|
<string name="proxy-AlignH">"Expand"</string>
|
||||||
|
<string name="proxy-AlignV">"Centre"</string>
|
||||||
|
<long name="proxy-Stretch factor">0</long>
|
||||||
|
<long name="proxy-Border">5</long>
|
||||||
|
<bool name="proxy-wxLEFT">1</bool>
|
||||||
|
<bool name="proxy-wxRIGHT">0</bool>
|
||||||
|
<bool name="proxy-wxTOP">1</bool>
|
||||||
|
<bool name="proxy-wxBOTTOM">1</bool>
|
||||||
|
<bool name="proxy-wxSHAPED">0</bool>
|
||||||
|
<bool name="proxy-wxADJUST_MINSIZE">0</bool>
|
||||||
|
<bool name="proxy-wxFIXED_MINSIZE">0</bool>
|
||||||
|
<string name="proxy-Platform">"<Any platform>"</string>
|
||||||
|
</document>
|
||||||
|
<document>
|
||||||
|
<string name="title">"wxButton: ID_SAVE_CONFIG"</string>
|
||||||
|
<string name="type">"dialog-control-document"</string>
|
||||||
|
<string name="filename">""</string>
|
||||||
|
<string name="icon-name">"dialogcontrol"</string>
|
||||||
|
<long name="is-transient">0</long>
|
||||||
|
<long name="owns-file">1</long>
|
||||||
|
<long name="title-mode">0</long>
|
||||||
|
<long name="locked">0</long>
|
||||||
|
<string name="created">"24/10/2007"</string>
|
||||||
|
<string name="proxy-type">"wbButtonProxy"</string>
|
||||||
|
<string name="event-handler-0">"wxEVT_COMMAND_BUTTON_CLICKED|OnSaveConfigClick|||"</string>
|
||||||
|
<string name="proxy-Id name">"ID_SAVE_CONFIG"</string>
|
||||||
|
<long name="proxy-Id value">10005</long>
|
||||||
|
<string name="proxy-Class">"wxButton"</string>
|
||||||
|
<string name="proxy-Base class">"wxButton"</string>
|
||||||
|
<bool name="proxy-External implementation">1</bool>
|
||||||
|
<bool name="proxy-Separate files">0</bool>
|
||||||
|
<string name="proxy-Implementation filename">""</string>
|
||||||
|
<string name="proxy-Header filename">""</string>
|
||||||
|
<string name="proxy-Member variable name">""</string>
|
||||||
|
<string name="proxy-Label">"Save Cfg"</string>
|
||||||
|
<bool name="proxy-Default">0</bool>
|
||||||
|
<string name="proxy-Help text">""</string>
|
||||||
|
<string name="proxy-Tooltip text">""</string>
|
||||||
|
<string name="proxy-Background colour">""</string>
|
||||||
|
<string name="proxy-Foreground colour">""</string>
|
||||||
|
<string name="proxy-Font">""</string>
|
||||||
|
<bool name="proxy-Hidden">0</bool>
|
||||||
|
<bool name="proxy-Enabled">1</bool>
|
||||||
|
<string name="proxy-Platform">"<Any platform>"</string>
|
||||||
|
<bool name="proxy-wxBU_LEFT">0</bool>
|
||||||
|
<bool name="proxy-wxBU_RIGHT">0</bool>
|
||||||
|
<bool name="proxy-wxBU_TOP">0</bool>
|
||||||
|
<bool name="proxy-wxBU_BOTTOM">0</bool>
|
||||||
|
<bool name="proxy-wxBU_EXACTFIT">0</bool>
|
||||||
|
<bool name="proxy-wxNO_BORDER">0</bool>
|
||||||
|
<bool name="proxy-wxWANTS_CHARS">0</bool>
|
||||||
|
<bool name="proxy-wxNO_FULL_REPAINT_ON_RESIZE">0</bool>
|
||||||
|
<bool name="proxy-wxFULL_REPAINT_ON_RESIZE">0</bool>
|
||||||
|
<string name="proxy-Custom styles">""</string>
|
||||||
|
<long name="proxy-X">-1</long>
|
||||||
|
<long name="proxy-Y">-1</long>
|
||||||
|
<long name="proxy-Width">-1</long>
|
||||||
|
<long name="proxy-Height">-1</long>
|
||||||
|
<string name="proxy-AlignH">"Expand"</string>
|
||||||
|
<string name="proxy-AlignV">"Centre"</string>
|
||||||
|
<long name="proxy-Stretch factor">0</long>
|
||||||
|
<long name="proxy-Border">5</long>
|
||||||
|
<bool name="proxy-wxLEFT">1</bool>
|
||||||
|
<bool name="proxy-wxRIGHT">1</bool>
|
||||||
|
<bool name="proxy-wxTOP">1</bool>
|
||||||
|
<bool name="proxy-wxBOTTOM">1</bool>
|
||||||
|
<bool name="proxy-wxSHAPED">0</bool>
|
||||||
|
<bool name="proxy-wxADJUST_MINSIZE">0</bool>
|
||||||
|
<bool name="proxy-wxFIXED_MINSIZE">0</bool>
|
||||||
|
<string name="proxy-Custom arguments">""</string>
|
||||||
|
<string name="proxy-Custom ctor arguments">""</string>
|
||||||
|
</document>
|
||||||
|
</document>
|
||||||
|
</document>
|
||||||
|
<document>
|
||||||
|
<string name="title">"wxStaticLine: ID_STATICLINE1"</string>
|
||||||
|
<string name="type">"dialog-control-document"</string>
|
||||||
|
<string name="filename">""</string>
|
||||||
|
<string name="icon-name">"staticline"</string>
|
||||||
|
<long name="is-transient">0</long>
|
||||||
|
<long name="owns-file">1</long>
|
||||||
|
<long name="title-mode">0</long>
|
||||||
|
<long name="locked">0</long>
|
||||||
|
<string name="created">"24/10/2007"</string>
|
||||||
|
<string name="proxy-type">"wbStaticLineProxy"</string>
|
||||||
|
<string name="proxy-Id name">"ID_STATICLINE1"</string>
|
||||||
|
<long name="proxy-Id value">10007</long>
|
||||||
|
<string name="proxy-Class">"wxStaticLine"</string>
|
||||||
|
<string name="proxy-Base class">"wxStaticLine"</string>
|
||||||
|
<bool name="proxy-External implementation">1</bool>
|
||||||
|
<bool name="proxy-Separate files">0</bool>
|
||||||
|
<string name="proxy-Implementation filename">""</string>
|
||||||
|
<string name="proxy-Header filename">""</string>
|
||||||
|
<string name="proxy-Member variable name">""</string>
|
||||||
|
<string name="proxy-Background colour">""</string>
|
||||||
|
<string name="proxy-Foreground colour">""</string>
|
||||||
|
<string name="proxy-Font">""</string>
|
||||||
|
<bool name="proxy-Hidden">0</bool>
|
||||||
|
<bool name="proxy-Enabled">1</bool>
|
||||||
|
<string name="proxy-Platform">"<Any platform>"</string>
|
||||||
|
<bool name="proxy-wxLI_HORIZONTAL">1</bool>
|
||||||
|
<bool name="proxy-wxLI_VERTICAL">0</bool>
|
||||||
|
<bool name="proxy-wxNO_BORDER">0</bool>
|
||||||
|
<bool name="proxy-wxSIMPLE_BORDER">0</bool>
|
||||||
|
<bool name="proxy-wxDOUBLE_BORDER">0</bool>
|
||||||
|
<bool name="proxy-wxSUNKEN_BORDER">0</bool>
|
||||||
|
<bool name="proxy-wxRAISED_BORDER">0</bool>
|
||||||
|
<bool name="proxy-wxSTATIC_BORDER">0</bool>
|
||||||
|
<bool name="proxy-wxWANTS_CHARS">0</bool>
|
||||||
|
<bool name="proxy-wxNO_FULL_REPAINT_ON_RESIZE">0</bool>
|
||||||
|
<bool name="proxy-wxFULL_REPAINT_ON_RESIZE">0</bool>
|
||||||
|
<string name="proxy-Custom styles">""</string>
|
||||||
|
<long name="proxy-X">-1</long>
|
||||||
|
<long name="proxy-Y">-1</long>
|
||||||
|
<long name="proxy-Width">-1</long>
|
||||||
|
<long name="proxy-Height">-1</long>
|
||||||
|
<string name="proxy-AlignH">"Expand"</string>
|
||||||
|
<string name="proxy-AlignV">"Centre"</string>
|
||||||
|
<long name="proxy-Stretch factor">0</long>
|
||||||
|
<long name="proxy-Border">5</long>
|
||||||
|
<bool name="proxy-wxLEFT">1</bool>
|
||||||
|
<bool name="proxy-wxRIGHT">1</bool>
|
||||||
|
<bool name="proxy-wxTOP">1</bool>
|
||||||
|
<bool name="proxy-wxBOTTOM">1</bool>
|
||||||
|
<bool name="proxy-wxSHAPED">0</bool>
|
||||||
|
<bool name="proxy-wxADJUST_MINSIZE">0</bool>
|
||||||
|
<bool name="proxy-wxFIXED_MINSIZE">0</bool>
|
||||||
|
</document>
|
||||||
|
<document>
|
||||||
|
<string name="title">"wxBoxSizer H"</string>
|
||||||
|
<string name="type">"dialog-control-document"</string>
|
||||||
|
<string name="filename">""</string>
|
||||||
|
<string name="icon-name">"sizer"</string>
|
||||||
|
<long name="is-transient">0</long>
|
||||||
|
<long name="owns-file">1</long>
|
||||||
|
<long name="title-mode">0</long>
|
||||||
|
<long name="locked">0</long>
|
||||||
|
<string name="created">"24/10/2007"</string>
|
||||||
|
<string name="proxy-type">"wbBoxSizerProxy"</string>
|
||||||
|
<string name="proxy-Orientation">"Horizontal"</string>
|
||||||
|
<string name="proxy-Member variable name">""</string>
|
||||||
|
<string name="proxy-AlignH">"Centre"</string>
|
||||||
|
<string name="proxy-AlignV">"Centre"</string>
|
||||||
|
<long name="proxy-Stretch factor">0</long>
|
||||||
|
<long name="proxy-Border">5</long>
|
||||||
|
<bool name="proxy-wxLEFT">1</bool>
|
||||||
|
<bool name="proxy-wxRIGHT">1</bool>
|
||||||
|
<bool name="proxy-wxTOP">1</bool>
|
||||||
|
<bool name="proxy-wxBOTTOM">1</bool>
|
||||||
|
<bool name="proxy-wxSHAPED">0</bool>
|
||||||
|
<bool name="proxy-wxADJUST_MINSIZE">0</bool>
|
||||||
|
<bool name="proxy-wxFIXED_MINSIZE">0</bool>
|
||||||
|
<string name="proxy-Platform">"<Any platform>"</string>
|
||||||
|
<document>
|
||||||
|
<string name="title">"wxButton: wxID_OK"</string>
|
||||||
|
<string name="type">"dialog-control-document"</string>
|
||||||
|
<string name="filename">""</string>
|
||||||
|
<string name="icon-name">"dialogcontrol"</string>
|
||||||
|
<long name="is-transient">0</long>
|
||||||
|
<long name="owns-file">1</long>
|
||||||
|
<long name="title-mode">0</long>
|
||||||
|
<long name="locked">0</long>
|
||||||
|
<string name="created">"24/10/2007"</string>
|
||||||
|
<string name="proxy-type">"wbButtonProxy"</string>
|
||||||
|
<string name="event-handler-0">"wxEVT_COMMAND_BUTTON_CLICKED|OnOkClick|NONE||"</string>
|
||||||
|
<string name="proxy-Id name">"wxID_OK"</string>
|
||||||
|
<long name="proxy-Id value">5100</long>
|
||||||
|
<string name="proxy-Class">"wxButton"</string>
|
||||||
|
<string name="proxy-Base class">"wxButton"</string>
|
||||||
|
<bool name="proxy-External implementation">1</bool>
|
||||||
|
<bool name="proxy-Separate files">0</bool>
|
||||||
|
<string name="proxy-Implementation filename">""</string>
|
||||||
|
<string name="proxy-Header filename">""</string>
|
||||||
|
<string name="proxy-Member variable name">""</string>
|
||||||
|
<string name="proxy-Label">"&OK"</string>
|
||||||
|
<bool name="proxy-Default">1</bool>
|
||||||
|
<string name="proxy-Help text">""</string>
|
||||||
|
<string name="proxy-Tooltip text">""</string>
|
||||||
|
<string name="proxy-Background colour">""</string>
|
||||||
|
<string name="proxy-Foreground colour">"FF0000"</string>
|
||||||
|
<string name="proxy-Font">""</string>
|
||||||
|
<bool name="proxy-Hidden">0</bool>
|
||||||
|
<bool name="proxy-Enabled">1</bool>
|
||||||
|
<string name="proxy-Platform">"<Any platform>"</string>
|
||||||
|
<bool name="proxy-wxBU_LEFT">0</bool>
|
||||||
|
<bool name="proxy-wxBU_RIGHT">0</bool>
|
||||||
|
<bool name="proxy-wxBU_TOP">0</bool>
|
||||||
|
<bool name="proxy-wxBU_BOTTOM">0</bool>
|
||||||
|
<bool name="proxy-wxBU_EXACTFIT">0</bool>
|
||||||
|
<bool name="proxy-wxNO_BORDER">0</bool>
|
||||||
|
<bool name="proxy-wxWANTS_CHARS">0</bool>
|
||||||
|
<bool name="proxy-wxNO_FULL_REPAINT_ON_RESIZE">0</bool>
|
||||||
|
<bool name="proxy-wxFULL_REPAINT_ON_RESIZE">0</bool>
|
||||||
|
<string name="proxy-Custom styles">""</string>
|
||||||
|
<long name="proxy-X">-1</long>
|
||||||
|
<long name="proxy-Y">-1</long>
|
||||||
|
<long name="proxy-Width">-1</long>
|
||||||
|
<long name="proxy-Height">-1</long>
|
||||||
|
<string name="proxy-AlignH">"Centre"</string>
|
||||||
|
<string name="proxy-AlignV">"Centre"</string>
|
||||||
|
<long name="proxy-Stretch factor">0</long>
|
||||||
|
<long name="proxy-Border">5</long>
|
||||||
|
<bool name="proxy-wxLEFT">1</bool>
|
||||||
|
<bool name="proxy-wxRIGHT">1</bool>
|
||||||
|
<bool name="proxy-wxTOP">1</bool>
|
||||||
|
<bool name="proxy-wxBOTTOM">1</bool>
|
||||||
|
<bool name="proxy-wxSHAPED">0</bool>
|
||||||
|
<bool name="proxy-wxADJUST_MINSIZE">0</bool>
|
||||||
|
<bool name="proxy-wxFIXED_MINSIZE">0</bool>
|
||||||
|
<string name="proxy-Custom arguments">""</string>
|
||||||
|
<string name="proxy-Custom ctor arguments">""</string>
|
||||||
|
</document>
|
||||||
|
<document>
|
||||||
|
<string name="title">"wxButton: wxID_CANCEL"</string>
|
||||||
|
<string name="type">"dialog-control-document"</string>
|
||||||
|
<string name="filename">""</string>
|
||||||
|
<string name="icon-name">"dialogcontrol"</string>
|
||||||
|
<long name="is-transient">0</long>
|
||||||
|
<long name="owns-file">1</long>
|
||||||
|
<long name="title-mode">0</long>
|
||||||
|
<long name="locked">0</long>
|
||||||
|
<string name="created">"24/10/2007"</string>
|
||||||
|
<string name="proxy-type">"wbButtonProxy"</string>
|
||||||
|
<string name="event-handler-0">"wxEVT_COMMAND_BUTTON_CLICKED|OnCancelClick|NONE||"</string>
|
||||||
|
<string name="proxy-Id name">"wxID_CANCEL"</string>
|
||||||
|
<long name="proxy-Id value">5101</long>
|
||||||
|
<string name="proxy-Class">"wxButton"</string>
|
||||||
|
<string name="proxy-Base class">"wxButton"</string>
|
||||||
|
<bool name="proxy-External implementation">1</bool>
|
||||||
|
<bool name="proxy-Separate files">0</bool>
|
||||||
|
<string name="proxy-Implementation filename">""</string>
|
||||||
|
<string name="proxy-Header filename">""</string>
|
||||||
|
<string name="proxy-Member variable name">""</string>
|
||||||
|
<string name="proxy-Label">"&Cancel"</string>
|
||||||
|
<bool name="proxy-Default">0</bool>
|
||||||
|
<string name="proxy-Help text">""</string>
|
||||||
|
<string name="proxy-Tooltip text">""</string>
|
||||||
|
<string name="proxy-Background colour">""</string>
|
||||||
|
<string name="proxy-Foreground colour">"0000FF"</string>
|
||||||
|
<string name="proxy-Font">""</string>
|
||||||
|
<bool name="proxy-Hidden">0</bool>
|
||||||
|
<bool name="proxy-Enabled">1</bool>
|
||||||
|
<string name="proxy-Platform">"<Any platform>"</string>
|
||||||
|
<bool name="proxy-wxBU_LEFT">0</bool>
|
||||||
|
<bool name="proxy-wxBU_RIGHT">0</bool>
|
||||||
|
<bool name="proxy-wxBU_TOP">0</bool>
|
||||||
|
<bool name="proxy-wxBU_BOTTOM">0</bool>
|
||||||
|
<bool name="proxy-wxBU_EXACTFIT">0</bool>
|
||||||
|
<bool name="proxy-wxNO_BORDER">0</bool>
|
||||||
|
<bool name="proxy-wxWANTS_CHARS">0</bool>
|
||||||
|
<bool name="proxy-wxNO_FULL_REPAINT_ON_RESIZE">0</bool>
|
||||||
|
<bool name="proxy-wxFULL_REPAINT_ON_RESIZE">0</bool>
|
||||||
|
<string name="proxy-Custom styles">""</string>
|
||||||
|
<long name="proxy-X">-1</long>
|
||||||
|
<long name="proxy-Y">-1</long>
|
||||||
|
<long name="proxy-Width">-1</long>
|
||||||
|
<long name="proxy-Height">-1</long>
|
||||||
|
<string name="proxy-AlignH">"Centre"</string>
|
||||||
|
<string name="proxy-AlignV">"Centre"</string>
|
||||||
|
<long name="proxy-Stretch factor">0</long>
|
||||||
|
<long name="proxy-Border">5</long>
|
||||||
|
<bool name="proxy-wxLEFT">1</bool>
|
||||||
|
<bool name="proxy-wxRIGHT">1</bool>
|
||||||
|
<bool name="proxy-wxTOP">1</bool>
|
||||||
|
<bool name="proxy-wxBOTTOM">1</bool>
|
||||||
|
<bool name="proxy-wxSHAPED">0</bool>
|
||||||
|
<bool name="proxy-wxADJUST_MINSIZE">0</bool>
|
||||||
|
<bool name="proxy-wxFIXED_MINSIZE">0</bool>
|
||||||
|
<string name="proxy-Custom arguments">""</string>
|
||||||
|
<string name="proxy-Custom ctor arguments">""</string>
|
||||||
|
</document>
|
||||||
|
<document>
|
||||||
|
<string name="title">"wxButton: wxID_APPLY"</string>
|
||||||
|
<string name="type">"dialog-control-document"</string>
|
||||||
|
<string name="filename">""</string>
|
||||||
|
<string name="icon-name">"dialogcontrol"</string>
|
||||||
|
<long name="is-transient">0</long>
|
||||||
|
<long name="owns-file">1</long>
|
||||||
|
<long name="title-mode">0</long>
|
||||||
|
<long name="locked">0</long>
|
||||||
|
<string name="created">"24/10/2007"</string>
|
||||||
|
<string name="proxy-type">"wbButtonProxy"</string>
|
||||||
|
<string name="event-handler-0">"wxEVT_COMMAND_BUTTON_CLICKED|OnApplyClick|NONE||"</string>
|
||||||
|
<string name="proxy-Id name">"wxID_APPLY"</string>
|
||||||
|
<long name="proxy-Id value">5102</long>
|
||||||
|
<string name="proxy-Class">"wxButton"</string>
|
||||||
|
<string name="proxy-Base class">"wxButton"</string>
|
||||||
|
<bool name="proxy-External implementation">1</bool>
|
||||||
|
<bool name="proxy-Separate files">0</bool>
|
||||||
|
<string name="proxy-Implementation filename">""</string>
|
||||||
|
<string name="proxy-Header filename">""</string>
|
||||||
|
<string name="proxy-Member variable name">""</string>
|
||||||
|
<string name="proxy-Label">"&Apply"</string>
|
||||||
|
<bool name="proxy-Default">0</bool>
|
||||||
|
<string name="proxy-Help text">""</string>
|
||||||
|
<string name="proxy-Tooltip text">""</string>
|
||||||
|
<string name="proxy-Background colour">""</string>
|
||||||
|
<string name="proxy-Foreground colour">""</string>
|
||||||
|
<string name="proxy-Font">""</string>
|
||||||
|
<bool name="proxy-Hidden">0</bool>
|
||||||
|
<bool name="proxy-Enabled">1</bool>
|
||||||
|
<string name="proxy-Platform">"<Any platform>"</string>
|
||||||
|
<bool name="proxy-wxBU_LEFT">0</bool>
|
||||||
|
<bool name="proxy-wxBU_RIGHT">0</bool>
|
||||||
|
<bool name="proxy-wxBU_TOP">0</bool>
|
||||||
|
<bool name="proxy-wxBU_BOTTOM">0</bool>
|
||||||
|
<bool name="proxy-wxBU_EXACTFIT">0</bool>
|
||||||
|
<bool name="proxy-wxNO_BORDER">0</bool>
|
||||||
|
<bool name="proxy-wxWANTS_CHARS">0</bool>
|
||||||
|
<bool name="proxy-wxNO_FULL_REPAINT_ON_RESIZE">0</bool>
|
||||||
|
<bool name="proxy-wxFULL_REPAINT_ON_RESIZE">0</bool>
|
||||||
|
<string name="proxy-Custom styles">""</string>
|
||||||
|
<long name="proxy-X">-1</long>
|
||||||
|
<long name="proxy-Y">-1</long>
|
||||||
|
<long name="proxy-Width">-1</long>
|
||||||
|
<long name="proxy-Height">-1</long>
|
||||||
|
<string name="proxy-AlignH">"Centre"</string>
|
||||||
|
<string name="proxy-AlignV">"Centre"</string>
|
||||||
|
<long name="proxy-Stretch factor">0</long>
|
||||||
|
<long name="proxy-Border">5</long>
|
||||||
|
<bool name="proxy-wxLEFT">1</bool>
|
||||||
|
<bool name="proxy-wxRIGHT">1</bool>
|
||||||
|
<bool name="proxy-wxTOP">1</bool>
|
||||||
|
<bool name="proxy-wxBOTTOM">1</bool>
|
||||||
|
<bool name="proxy-wxSHAPED">0</bool>
|
||||||
|
<bool name="proxy-wxADJUST_MINSIZE">0</bool>
|
||||||
|
<bool name="proxy-wxFIXED_MINSIZE">0</bool>
|
||||||
|
<string name="proxy-Custom arguments">""</string>
|
||||||
|
<string name="proxy-Custom ctor arguments">""</string>
|
||||||
|
</document>
|
||||||
|
</document>
|
||||||
|
</document>
|
||||||
|
</document>
|
||||||
|
</document>
|
||||||
|
<document>
|
||||||
|
<string name="title">"Sources"</string>
|
||||||
|
<string name="type">"html-document"</string>
|
||||||
|
<string name="filename">""</string>
|
||||||
|
<string name="icon-name">"sourcesfolder"</string>
|
||||||
|
<long name="is-transient">1</long>
|
||||||
|
<long name="owns-file">1</long>
|
||||||
|
<long name="title-mode">0</long>
|
||||||
|
<long name="locked">1</long>
|
||||||
|
<document>
|
||||||
|
<string name="title">"dialog_display_options.rc"</string>
|
||||||
|
<string name="type">"source-editor-document"</string>
|
||||||
|
<string name="filename">"dialog_display_options.rc"</string>
|
||||||
|
<string name="icon-name">"source-editor"</string>
|
||||||
|
<long name="is-transient">0</long>
|
||||||
|
<long name="owns-file">0</long>
|
||||||
|
<long name="title-mode">1</long>
|
||||||
|
<long name="locked">0</long>
|
||||||
|
<string name="created">"17/6/2006"</string>
|
||||||
|
<string name="language">""</string>
|
||||||
|
</document>
|
||||||
|
</document>
|
||||||
|
<document>
|
||||||
|
<string name="title">"Images"</string>
|
||||||
|
<string name="type">"html-document"</string>
|
||||||
|
<string name="filename">""</string>
|
||||||
|
<string name="icon-name">"bitmapsfolder"</string>
|
||||||
|
<long name="is-transient">1</long>
|
||||||
|
<long name="owns-file">1</long>
|
||||||
|
<long name="title-mode">0</long>
|
||||||
|
<long name="locked">1</long>
|
||||||
|
</document>
|
||||||
|
</document>
|
||||||
|
</documents>
|
||||||
|
|
||||||
|
</anthemion-project>
|
Binary file not shown.
|
@ -2,7 +2,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: kicad\n"
|
"Project-Id-Version: kicad\n"
|
||||||
"POT-Creation-Date: \n"
|
"POT-Creation-Date: \n"
|
||||||
"PO-Revision-Date: 2007-10-21 19:16+0100\n"
|
"PO-Revision-Date: 2007-10-24 22:13+0100\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: kicad team <jean-pierre.charras@ujf-grenoble.fr>\n"
|
"Language-Team: kicad team <jean-pierre.charras@ujf-grenoble.fr>\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -82,7 +82,7 @@ msgid "Connect"
|
||||||
msgstr "Connect"
|
msgstr "Connect"
|
||||||
|
|
||||||
#: pcbnew/class_board.cpp:329
|
#: pcbnew/class_board.cpp:329
|
||||||
#: eeschema/eelayer.cpp:177
|
#: eeschema/eelayer.h:115
|
||||||
msgid "NoConn"
|
msgid "NoConn"
|
||||||
msgstr "Non Conn"
|
msgstr "Non Conn"
|
||||||
|
|
||||||
|
@ -325,7 +325,7 @@ msgstr "Module [%s] non trouv
|
||||||
#: pcbnew/librairi.cpp:518
|
#: pcbnew/librairi.cpp:518
|
||||||
#: pcbnew/librairi.cpp:712
|
#: pcbnew/librairi.cpp:712
|
||||||
#: pcbnew/plothpgl.cpp:67
|
#: pcbnew/plothpgl.cpp:67
|
||||||
#: pcbnew/files.cpp:314
|
#: pcbnew/files.cpp:321
|
||||||
#: pcbnew/gen_modules_placefile.cpp:87
|
#: pcbnew/gen_modules_placefile.cpp:87
|
||||||
#: pcbnew/gen_modules_placefile.cpp:98
|
#: pcbnew/gen_modules_placefile.cpp:98
|
||||||
#: pcbnew/gen_modules_placefile.cpp:251
|
#: pcbnew/gen_modules_placefile.cpp:251
|
||||||
|
@ -491,7 +491,7 @@ msgstr "Tst Pistes\n"
|
||||||
|
|
||||||
#: pcbnew/drc.cpp:361
|
#: pcbnew/drc.cpp:361
|
||||||
#: pcbnew/drc.cpp:439
|
#: pcbnew/drc.cpp:439
|
||||||
#: eeschema/eelayer.cpp:141
|
#: eeschema/eelayer.h:103
|
||||||
msgid "Netname"
|
msgid "Netname"
|
||||||
msgstr "NetName"
|
msgstr "NetName"
|
||||||
|
|
||||||
|
@ -845,11 +845,11 @@ msgstr "Inclure couche Edge"
|
||||||
#: pcbnew/sel_layer.cpp:162
|
#: pcbnew/sel_layer.cpp:162
|
||||||
#: pcbnew/sel_layer.cpp:320
|
#: pcbnew/sel_layer.cpp:320
|
||||||
#: eeschema/sheetlab.cpp:97
|
#: eeschema/sheetlab.cpp:97
|
||||||
|
#: eeschema/eelayer.cpp:252
|
||||||
#: eeschema/libedit_onrightclick.cpp:68
|
#: eeschema/libedit_onrightclick.cpp:68
|
||||||
#: eeschema/libedit_onrightclick.cpp:83
|
#: eeschema/libedit_onrightclick.cpp:83
|
||||||
#: eeschema/onrightclick.cpp:121
|
#: eeschema/onrightclick.cpp:121
|
||||||
#: eeschema/onrightclick.cpp:133
|
#: eeschema/onrightclick.cpp:133
|
||||||
#: cvpcb/dialog_display_options.cpp:194
|
|
||||||
#: gerbview/set_color.cpp:253
|
#: gerbview/set_color.cpp:253
|
||||||
#: gerbview/options.cpp:167
|
#: gerbview/options.cpp:167
|
||||||
#: gerbview/options.cpp:296
|
#: gerbview/options.cpp:296
|
||||||
|
@ -875,7 +875,7 @@ msgstr "Annuler"
|
||||||
#: pcbnew/sel_layer.cpp:158
|
#: pcbnew/sel_layer.cpp:158
|
||||||
#: pcbnew/sel_layer.cpp:316
|
#: pcbnew/sel_layer.cpp:316
|
||||||
#: eeschema/sheetlab.cpp:93
|
#: eeschema/sheetlab.cpp:93
|
||||||
#: cvpcb/dialog_display_options.cpp:189
|
#: eeschema/eelayer.cpp:248
|
||||||
#: gerbview/set_color.cpp:249
|
#: gerbview/set_color.cpp:249
|
||||||
#: gerbview/options.cpp:163
|
#: gerbview/options.cpp:163
|
||||||
#: gerbview/options.cpp:292
|
#: gerbview/options.cpp:292
|
||||||
|
@ -1131,6 +1131,7 @@ msgstr "Offset Y"
|
||||||
#: eeschema/dialog_cmp_graphic_properties.cpp:178
|
#: eeschema/dialog_cmp_graphic_properties.cpp:178
|
||||||
#: eeschema/pinedit-dialog.cpp:308
|
#: eeschema/pinedit-dialog.cpp:308
|
||||||
#: eeschema/dialog_build_BOM.cpp:339
|
#: eeschema/dialog_build_BOM.cpp:339
|
||||||
|
#: cvpcb/dialog_display_options.cpp:190
|
||||||
#: cvpcb/dialog_cvpcb_config.cpp:135
|
#: cvpcb/dialog_cvpcb_config.cpp:135
|
||||||
#: share/setpage.cpp:232
|
#: share/setpage.cpp:232
|
||||||
msgid "&OK"
|
msgid "&OK"
|
||||||
|
@ -1154,6 +1155,7 @@ msgstr "&OK"
|
||||||
#: eeschema/dialog_cmp_graphic_properties.cpp:182
|
#: eeschema/dialog_cmp_graphic_properties.cpp:182
|
||||||
#: eeschema/pinedit-dialog.cpp:304
|
#: eeschema/pinedit-dialog.cpp:304
|
||||||
#: eeschema/dialog_build_BOM.cpp:343
|
#: eeschema/dialog_build_BOM.cpp:343
|
||||||
|
#: cvpcb/dialog_display_options.cpp:195
|
||||||
#: share/setpage.cpp:237
|
#: share/setpage.cpp:237
|
||||||
msgid "&Cancel"
|
msgid "&Cancel"
|
||||||
msgstr "&Annuler"
|
msgstr "&Annuler"
|
||||||
|
@ -1285,6 +1287,7 @@ msgstr "De "
|
||||||
#: pcbnew/dialog_setup_libs.cpp:153
|
#: pcbnew/dialog_setup_libs.cpp:153
|
||||||
#: eeschema/eestatus.cpp:116
|
#: eeschema/eestatus.cpp:116
|
||||||
#: eeschema/dialog_eeschema_config.cpp:161
|
#: eeschema/dialog_eeschema_config.cpp:161
|
||||||
|
#: cvpcb/dialog_display_options.cpp:181
|
||||||
#: cvpcb/dialog_cvpcb_config.cpp:127
|
#: cvpcb/dialog_cvpcb_config.cpp:127
|
||||||
msgid "Save Cfg"
|
msgid "Save Cfg"
|
||||||
msgstr "Sauver config"
|
msgstr "Sauver config"
|
||||||
|
@ -1414,10 +1417,10 @@ msgstr "Couche:"
|
||||||
|
|
||||||
#: pcbnew/dialog_netlist.cpp:133
|
#: pcbnew/dialog_netlist.cpp:133
|
||||||
#: pcbnew/class_board_item.cpp:76
|
#: pcbnew/class_board_item.cpp:76
|
||||||
#: eeschema/eelayer.cpp:99
|
|
||||||
#: eeschema/dialog_create_component.cpp:164
|
#: eeschema/dialog_create_component.cpp:164
|
||||||
#: eeschema/onrightclick.cpp:317
|
#: eeschema/onrightclick.cpp:317
|
||||||
#: eeschema/edit_component_in_schematic.cpp:745
|
#: eeschema/edit_component_in_schematic.cpp:745
|
||||||
|
#: eeschema/eelayer.h:152
|
||||||
msgid "Reference"
|
msgid "Reference"
|
||||||
msgstr "Référence"
|
msgstr "Référence"
|
||||||
|
|
||||||
|
@ -1859,7 +1862,9 @@ msgid "Zoom "
|
||||||
msgstr "Zoom "
|
msgstr "Zoom "
|
||||||
|
|
||||||
#: pcbnew/tool_pcb.cpp:585
|
#: pcbnew/tool_pcb.cpp:585
|
||||||
|
#: eeschema/eelayer.cpp:223
|
||||||
#: pcbnew/set_color.h:335
|
#: pcbnew/set_color.h:335
|
||||||
|
#: eeschema/eelayer.h:209
|
||||||
#: gerbview/set_color.h:246
|
#: gerbview/set_color.h:246
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr "Grille"
|
msgstr "Grille"
|
||||||
|
@ -1991,10 +1996,10 @@ msgstr "Texte Pcb"
|
||||||
#: pcbnew/class_board_item.cpp:80
|
#: pcbnew/class_board_item.cpp:80
|
||||||
#: pcbnew/class_text_mod.cpp:323
|
#: pcbnew/class_text_mod.cpp:323
|
||||||
#: pcbnew/class_edge_mod.cpp:286
|
#: pcbnew/class_edge_mod.cpp:286
|
||||||
#: eeschema/eelayer.cpp:105
|
|
||||||
#: eeschema/component_class.cpp:55
|
#: eeschema/component_class.cpp:55
|
||||||
#: eeschema/onrightclick.cpp:316
|
#: eeschema/onrightclick.cpp:316
|
||||||
#: eeschema/edit_component_in_schematic.cpp:784
|
#: eeschema/edit_component_in_schematic.cpp:784
|
||||||
|
#: eeschema/eelayer.h:158
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Valeur"
|
msgstr "Valeur"
|
||||||
|
|
||||||
|
@ -2795,42 +2800,6 @@ msgstr "connecte une extr
|
||||||
msgid "Clean pcb"
|
msgid "Clean pcb"
|
||||||
msgstr "Nettoyage PCB"
|
msgstr "Nettoyage PCB"
|
||||||
|
|
||||||
#: pcbnew/files.cpp:57
|
|
||||||
msgid "Recovery file "
|
|
||||||
msgstr "Fichier de secours "
|
|
||||||
|
|
||||||
#: pcbnew/files.cpp:63
|
|
||||||
msgid "Ok to load Recovery file "
|
|
||||||
msgstr "Ok pour charger le fichier de secours"
|
|
||||||
|
|
||||||
#: pcbnew/files.cpp:143
|
|
||||||
msgid "Board Modified: Continue ?"
|
|
||||||
msgstr "Circuit imprimé modifié, Continuer ?"
|
|
||||||
|
|
||||||
#: pcbnew/files.cpp:161
|
|
||||||
msgid "Load board files:"
|
|
||||||
msgstr "Charger Fichiers C.I.:"
|
|
||||||
|
|
||||||
#: pcbnew/files.cpp:263
|
|
||||||
msgid "Save board files:"
|
|
||||||
msgstr "Sauver Fichiers C.I.:"
|
|
||||||
|
|
||||||
#: pcbnew/files.cpp:299
|
|
||||||
msgid "Warning: unable to create bakfile "
|
|
||||||
msgstr "Attention: Impossible de créer fichier backup "
|
|
||||||
|
|
||||||
#: pcbnew/files.cpp:335
|
|
||||||
msgid "Backup file: "
|
|
||||||
msgstr "Fichier backup: "
|
|
||||||
|
|
||||||
#: pcbnew/files.cpp:340
|
|
||||||
msgid "Write Board file: "
|
|
||||||
msgstr "Ecriture fichier CI: "
|
|
||||||
|
|
||||||
#: pcbnew/files.cpp:342
|
|
||||||
msgid "Failed to create "
|
|
||||||
msgstr "Impossible de créer fichier "
|
|
||||||
|
|
||||||
#: pcbnew/pcbplot.cpp:115
|
#: pcbnew/pcbplot.cpp:115
|
||||||
#: pcbnew/pcbplot.cpp:205
|
#: pcbnew/pcbplot.cpp:205
|
||||||
#: gerbview/tool_gerber.cpp:91
|
#: gerbview/tool_gerber.cpp:91
|
||||||
|
@ -3286,6 +3255,42 @@ msgstr "Fenetre 3D d
|
||||||
msgid "3D Viewer"
|
msgid "3D Viewer"
|
||||||
msgstr "Visu 3D"
|
msgstr "Visu 3D"
|
||||||
|
|
||||||
|
#: pcbnew/files.cpp:57
|
||||||
|
msgid "Recovery file "
|
||||||
|
msgstr "Fichier de secours "
|
||||||
|
|
||||||
|
#: pcbnew/files.cpp:63
|
||||||
|
msgid "Ok to load Recovery file "
|
||||||
|
msgstr "Ok pour charger le fichier de secours"
|
||||||
|
|
||||||
|
#: pcbnew/files.cpp:143
|
||||||
|
msgid "Board Modified: Continue ?"
|
||||||
|
msgstr "Circuit imprimé modifié, Continuer ?"
|
||||||
|
|
||||||
|
#: pcbnew/files.cpp:161
|
||||||
|
msgid "Load board files:"
|
||||||
|
msgstr "Charger Fichiers C.I.:"
|
||||||
|
|
||||||
|
#: pcbnew/files.cpp:269
|
||||||
|
msgid "Save board files:"
|
||||||
|
msgstr "Sauver Fichiers C.I.:"
|
||||||
|
|
||||||
|
#: pcbnew/files.cpp:306
|
||||||
|
msgid "Warning: unable to create bakfile "
|
||||||
|
msgstr "Attention: Impossible de créer fichier backup "
|
||||||
|
|
||||||
|
#: pcbnew/files.cpp:340
|
||||||
|
msgid "Backup file: "
|
||||||
|
msgstr "Fichier backup: "
|
||||||
|
|
||||||
|
#: pcbnew/files.cpp:344
|
||||||
|
msgid "Wrote board file: "
|
||||||
|
msgstr "Ecriture fichier CI: "
|
||||||
|
|
||||||
|
#: pcbnew/files.cpp:346
|
||||||
|
msgid "Failed to create "
|
||||||
|
msgstr "Impossible de créer fichier "
|
||||||
|
|
||||||
#: pcbnew/modedit_onclick.cpp:205
|
#: pcbnew/modedit_onclick.cpp:205
|
||||||
#: pcbnew/onrightclick.cpp:151
|
#: pcbnew/onrightclick.cpp:151
|
||||||
#: eeschema/libedit_onrightclick.cpp:73
|
#: eeschema/libedit_onrightclick.cpp:73
|
||||||
|
@ -3467,7 +3472,7 @@ msgid "Show None"
|
||||||
msgstr "Rien Afficher"
|
msgstr "Rien Afficher"
|
||||||
|
|
||||||
#: pcbnew/set_color.cpp:285
|
#: pcbnew/set_color.cpp:285
|
||||||
#: cvpcb/dialog_display_options.cpp:199
|
#: eeschema/eelayer.cpp:256
|
||||||
#: gerbview/set_color.cpp:257
|
#: gerbview/set_color.cpp:257
|
||||||
msgid "Apply"
|
msgid "Apply"
|
||||||
msgstr "Appliquer"
|
msgstr "Appliquer"
|
||||||
|
@ -4798,7 +4803,7 @@ msgstr "KeyW: "
|
||||||
#: eeschema/dialog_edit_component_in_lib.cpp:166
|
#: eeschema/dialog_edit_component_in_lib.cpp:166
|
||||||
#: eeschema/dialog_create_component.cpp:176
|
#: eeschema/dialog_create_component.cpp:176
|
||||||
#: eeschema/dialog_edit_component_in_schematic.cpp:204
|
#: eeschema/dialog_edit_component_in_schematic.cpp:204
|
||||||
#: cvpcb/dialog_display_options.h:43
|
#: cvpcb/dialog_display_options.h:50
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
msgstr "Options"
|
msgstr "Options"
|
||||||
|
|
||||||
|
@ -5230,6 +5235,18 @@ msgstr "Forme Pin de hi
|
||||||
msgid "No New Global Label found"
|
msgid "No New Global Label found"
|
||||||
msgstr "Pas de nouveau Global Label trouvé"
|
msgstr "Pas de nouveau Global Label trouvé"
|
||||||
|
|
||||||
|
#: eeschema/eelayer.cpp:233
|
||||||
|
msgid "White Background"
|
||||||
|
msgstr "Fond Blanc"
|
||||||
|
|
||||||
|
#: eeschema/eelayer.cpp:234
|
||||||
|
msgid "Black Background"
|
||||||
|
msgstr "Fond Noir"
|
||||||
|
|
||||||
|
#: eeschema/eelayer.cpp:235
|
||||||
|
msgid "Background Color"
|
||||||
|
msgstr "Couleur du Fond"
|
||||||
|
|
||||||
#: eeschema/dialog_options.cpp:140
|
#: eeschema/dialog_options.cpp:140
|
||||||
#: eeschema/dialog_options.cpp:288
|
#: eeschema/dialog_options.cpp:288
|
||||||
msgid "Delta Step X"
|
msgid "Delta Step X"
|
||||||
|
@ -6181,114 +6198,6 @@ msgstr "Erreur: Root Part <%s> non trouv
|
||||||
msgid "Current Part: <%s>"
|
msgid "Current Part: <%s>"
|
||||||
msgstr "Cmp Courant: <%s>"
|
msgstr "Cmp Courant: <%s>"
|
||||||
|
|
||||||
#: eeschema/eelayer.cpp:45
|
|
||||||
msgid "General"
|
|
||||||
msgstr " Général "
|
|
||||||
|
|
||||||
#: eeschema/eelayer.cpp:51
|
|
||||||
msgid "Sheets"
|
|
||||||
msgstr "Feuilles"
|
|
||||||
|
|
||||||
#: eeschema/eelayer.cpp:57
|
|
||||||
msgid "Wire"
|
|
||||||
msgstr "Fil"
|
|
||||||
|
|
||||||
#: eeschema/eelayer.cpp:63
|
|
||||||
msgid "Bus"
|
|
||||||
msgstr "Bus"
|
|
||||||
|
|
||||||
#: eeschema/eelayer.cpp:69
|
|
||||||
msgid "Junction"
|
|
||||||
msgstr "Jonction"
|
|
||||||
|
|
||||||
#: eeschema/eelayer.cpp:75
|
|
||||||
msgid "Label"
|
|
||||||
msgstr "Label"
|
|
||||||
|
|
||||||
#: eeschema/eelayer.cpp:81
|
|
||||||
msgid "GlobLabel"
|
|
||||||
msgstr "Lab Global"
|
|
||||||
|
|
||||||
#: eeschema/eelayer.cpp:87
|
|
||||||
#: eeschema/affiche.cpp:80
|
|
||||||
msgid "PinNum"
|
|
||||||
msgstr "Num Pin"
|
|
||||||
|
|
||||||
#: eeschema/eelayer.cpp:93
|
|
||||||
msgid "PinNam"
|
|
||||||
msgstr "Nom Pin"
|
|
||||||
|
|
||||||
#: eeschema/eelayer.cpp:111
|
|
||||||
#: eeschema/dialog_edit_component_in_schematic.cpp:228
|
|
||||||
#: eeschema/edit_component_in_lib.cpp:484
|
|
||||||
msgid "Fields"
|
|
||||||
msgstr "Champs"
|
|
||||||
|
|
||||||
#: eeschema/eelayer.cpp:117
|
|
||||||
msgid "Body"
|
|
||||||
msgstr "Body"
|
|
||||||
|
|
||||||
#: eeschema/eelayer.cpp:123
|
|
||||||
msgid "Body Bg"
|
|
||||||
msgstr "Body Bg"
|
|
||||||
|
|
||||||
#: eeschema/eelayer.cpp:129
|
|
||||||
msgid "Device"
|
|
||||||
msgstr "Composant"
|
|
||||||
|
|
||||||
#: eeschema/eelayer.cpp:135
|
|
||||||
msgid "Notes"
|
|
||||||
msgstr "Notes"
|
|
||||||
|
|
||||||
#: eeschema/eelayer.cpp:147
|
|
||||||
msgid "Pin"
|
|
||||||
msgstr "Pin"
|
|
||||||
|
|
||||||
#: eeschema/eelayer.cpp:153
|
|
||||||
#: eeschema/component_class.cpp:57
|
|
||||||
msgid "Sheet"
|
|
||||||
msgstr "Feuille"
|
|
||||||
|
|
||||||
#: eeschema/eelayer.cpp:159
|
|
||||||
msgid "SheetName"
|
|
||||||
msgstr "Nom feuille"
|
|
||||||
|
|
||||||
#: eeschema/eelayer.cpp:165
|
|
||||||
msgid "Sheetfile"
|
|
||||||
msgstr "Fichier feuille"
|
|
||||||
|
|
||||||
#: eeschema/eelayer.cpp:171
|
|
||||||
msgid "SheetLabel"
|
|
||||||
msgstr "SheetLabel"
|
|
||||||
|
|
||||||
#: eeschema/eelayer.cpp:184
|
|
||||||
msgid "Erc Mark"
|
|
||||||
msgstr "Marqueur ERC"
|
|
||||||
|
|
||||||
#: eeschema/eelayer.cpp:190
|
|
||||||
msgid "Erc Warning"
|
|
||||||
msgstr "ERC Warning"
|
|
||||||
|
|
||||||
#: eeschema/eelayer.cpp:196
|
|
||||||
msgid "Erc Error"
|
|
||||||
msgstr "ERC Erreur"
|
|
||||||
|
|
||||||
#: eeschema/eelayer.cpp:282
|
|
||||||
msgid "EESchema Preferences"
|
|
||||||
msgstr "EESchema Préférences"
|
|
||||||
|
|
||||||
#: eeschema/eelayer.cpp:367
|
|
||||||
msgid "White Background"
|
|
||||||
msgstr "Fond Blanc"
|
|
||||||
|
|
||||||
#: eeschema/eelayer.cpp:367
|
|
||||||
msgid "Black Background"
|
|
||||||
msgstr "Fond Noir"
|
|
||||||
|
|
||||||
#: eeschema/eelayer.cpp:370
|
|
||||||
msgid "Background Colour"
|
|
||||||
msgstr "Couleur du fond"
|
|
||||||
|
|
||||||
#: eeschema/affiche.cpp:22
|
#: eeschema/affiche.cpp:22
|
||||||
#: eeschema/dialog_create_component.cpp:157
|
#: eeschema/dialog_create_component.cpp:157
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
|
@ -6323,6 +6232,11 @@ msgstr "Lib"
|
||||||
msgid "PinName"
|
msgid "PinName"
|
||||||
msgstr "Nom Pin"
|
msgstr "Nom Pin"
|
||||||
|
|
||||||
|
#: eeschema/affiche.cpp:80
|
||||||
|
#: eeschema/eelayer.h:140
|
||||||
|
msgid "PinNum"
|
||||||
|
msgstr "Num Pin"
|
||||||
|
|
||||||
#: eeschema/affiche.cpp:84
|
#: eeschema/affiche.cpp:84
|
||||||
msgid "PinType"
|
msgid "PinType"
|
||||||
msgstr "Type Pin"
|
msgstr "Type Pin"
|
||||||
|
@ -6609,6 +6523,7 @@ msgid "&Spice"
|
||||||
msgstr "&Spice"
|
msgstr "&Spice"
|
||||||
|
|
||||||
#: eeschema/dialog_eeschema_config.cpp:172
|
#: eeschema/dialog_eeschema_config.cpp:172
|
||||||
|
#: eeschema/eelayer.h:271
|
||||||
msgid "Other"
|
msgid "Other"
|
||||||
msgstr "Autre"
|
msgstr "Autre"
|
||||||
|
|
||||||
|
@ -6759,6 +6674,12 @@ msgstr "Nom en librairie"
|
||||||
msgid "Show Text"
|
msgid "Show Text"
|
||||||
msgstr "Texte visible"
|
msgstr "Texte visible"
|
||||||
|
|
||||||
|
#: eeschema/dialog_edit_component_in_schematic.cpp:228
|
||||||
|
#: eeschema/edit_component_in_lib.cpp:484
|
||||||
|
#: eeschema/eelayer.h:164
|
||||||
|
msgid "Fields"
|
||||||
|
msgstr "Champs"
|
||||||
|
|
||||||
#: eeschema/dialog_edit_component_in_schematic.cpp:239
|
#: eeschema/dialog_edit_component_in_schematic.cpp:239
|
||||||
msgid "Defaults"
|
msgid "Defaults"
|
||||||
msgstr "Defauts"
|
msgstr "Defauts"
|
||||||
|
@ -7241,6 +7162,11 @@ msgstr "Effacement Bloc (shift+ctrl + drag mouse)"
|
||||||
msgid "Library browser"
|
msgid "Library browser"
|
||||||
msgstr "Visualisateur des librairies"
|
msgstr "Visualisateur des librairies"
|
||||||
|
|
||||||
|
#: eeschema/component_class.cpp:57
|
||||||
|
#: eeschema/eelayer.h:171
|
||||||
|
msgid "Sheet"
|
||||||
|
msgstr "Feuille"
|
||||||
|
|
||||||
#: eeschema/component_class.cpp:58
|
#: eeschema/component_class.cpp:58
|
||||||
#: eeschema/component_class.cpp:59
|
#: eeschema/component_class.cpp:59
|
||||||
#: eeschema/component_class.cpp:60
|
#: eeschema/component_class.cpp:60
|
||||||
|
@ -7771,6 +7697,7 @@ msgid "Create &List"
|
||||||
msgstr "Créer &Liste"
|
msgstr "Créer &Liste"
|
||||||
|
|
||||||
#: eeschema/dialog_build_BOM.cpp:347
|
#: eeschema/dialog_build_BOM.cpp:347
|
||||||
|
#: cvpcb/dialog_display_options.cpp:199
|
||||||
msgid "&Apply"
|
msgid "&Apply"
|
||||||
msgstr "&Appliquer"
|
msgstr "&Appliquer"
|
||||||
|
|
||||||
|
@ -8110,41 +8037,40 @@ msgstr " Formats NetListe: EESchema"
|
||||||
msgid "Netlist error: %s"
|
msgid "Netlist error: %s"
|
||||||
msgstr "Erreur Netliste: %s"
|
msgstr "Erreur Netliste: %s"
|
||||||
|
|
||||||
#: cvpcb/dialog_display_options.cpp:146
|
#: cvpcb/dialog_display_options.cpp:151
|
||||||
#: cvpcb/dialog_display_options.cpp:155
|
#: cvpcb/dialog_display_options.cpp:159
|
||||||
msgid "&Filaire"
|
msgid "&Line"
|
||||||
msgstr "&Filaire"
|
msgstr "&Ligne"
|
||||||
|
|
||||||
#: cvpcb/dialog_display_options.cpp:147
|
#: cvpcb/dialog_display_options.cpp:152
|
||||||
#: cvpcb/dialog_display_options.cpp:156
|
#: cvpcb/dialog_display_options.cpp:160
|
||||||
msgid "&Filled"
|
msgid "&Filled"
|
||||||
msgstr "&Plein"
|
msgstr "&Plein"
|
||||||
|
|
||||||
#: cvpcb/dialog_display_options.cpp:148
|
#: cvpcb/dialog_display_options.cpp:153
|
||||||
#: cvpcb/dialog_display_options.cpp:157
|
#: cvpcb/dialog_display_options.cpp:161
|
||||||
msgid "&Sketch"
|
msgid "&Sketch"
|
||||||
msgstr "&Contour"
|
msgstr "&Contour"
|
||||||
|
|
||||||
#: cvpcb/dialog_display_options.cpp:150
|
#: cvpcb/dialog_display_options.cpp:154
|
||||||
msgid "Edges:"
|
msgid "Edges:"
|
||||||
msgstr "Contours:"
|
msgstr "Contours:"
|
||||||
|
|
||||||
#: cvpcb/dialog_display_options.cpp:159
|
#: cvpcb/dialog_display_options.cpp:162
|
||||||
msgid "Texts:"
|
msgid "Texts:"
|
||||||
msgstr "Textes:"
|
msgstr "Textes:"
|
||||||
|
|
||||||
#: cvpcb/dialog_display_options.cpp:170
|
#: cvpcb/dialog_display_options.cpp:169
|
||||||
msgid "Pad &Num"
|
msgid "&Pad Filled"
|
||||||
msgstr "Pad &Num"
|
|
||||||
|
|
||||||
#: cvpcb/dialog_display_options.cpp:175
|
|
||||||
msgid "&Pad Fill"
|
|
||||||
msgstr "&Pad plein"
|
msgstr "&Pad plein"
|
||||||
|
|
||||||
#: cvpcb/dialog_display_options.cpp:183
|
#: cvpcb/dialog_display_options.cpp:173
|
||||||
#: gerbview/reglage.cpp:110
|
msgid "Display Pad &Num"
|
||||||
msgid "Save Cfg..."
|
msgstr "Afficher Numero de Pad"
|
||||||
msgstr "Sauver config..."
|
|
||||||
|
#: cvpcb/dialog_display_options.cpp:176
|
||||||
|
msgid "Display pad number"
|
||||||
|
msgstr "Afficher numéro des pastilles"
|
||||||
|
|
||||||
#: cvpcb/tool_cvpcb.cpp:35
|
#: cvpcb/tool_cvpcb.cpp:35
|
||||||
msgid "Open Netlist"
|
msgid "Open Netlist"
|
||||||
|
@ -8760,6 +8686,10 @@ msgstr "Spots:"
|
||||||
msgid "Show D codes"
|
msgid "Show D codes"
|
||||||
msgstr "Monter DCodes"
|
msgstr "Monter DCodes"
|
||||||
|
|
||||||
|
#: gerbview/reglage.cpp:110
|
||||||
|
msgid "Save Cfg..."
|
||||||
|
msgstr "Sauver config..."
|
||||||
|
|
||||||
#: gerbview/reglage.cpp:128
|
#: gerbview/reglage.cpp:128
|
||||||
msgid "Drill File Ext:"
|
msgid "Drill File Ext:"
|
||||||
msgstr "Ext. Fichier de percage"
|
msgstr "Ext. Fichier de percage"
|
||||||
|
@ -9024,51 +8954,55 @@ msgstr "Y"
|
||||||
msgid "No default editor found, you must choose it"
|
msgid "No default editor found, you must choose it"
|
||||||
msgstr "Pas d'éditeur par défaut trouvé, vous devez en choisir un"
|
msgstr "Pas d'éditeur par défaut trouvé, vous devez en choisir un"
|
||||||
|
|
||||||
#: common/edaappl.cpp:457
|
#: common/edaappl.cpp:487
|
||||||
msgid "Default"
|
msgid "Default"
|
||||||
msgstr "Defaut"
|
msgstr "Defaut"
|
||||||
|
|
||||||
#: common/edaappl.cpp:467
|
#: common/edaappl.cpp:497
|
||||||
msgid "French"
|
msgid "French"
|
||||||
msgstr "French"
|
msgstr "French"
|
||||||
|
|
||||||
#: common/edaappl.cpp:472
|
#: common/edaappl.cpp:502
|
||||||
msgid "Spanish"
|
msgid "Spanish"
|
||||||
msgstr "Espagnol"
|
msgstr "Espagnol"
|
||||||
|
|
||||||
#: common/edaappl.cpp:477
|
#: common/edaappl.cpp:507
|
||||||
msgid "Portuguese"
|
msgid "Portuguese"
|
||||||
msgstr "Portugais"
|
msgstr "Portugais"
|
||||||
|
|
||||||
#: common/edaappl.cpp:483
|
#: common/edaappl.cpp:513
|
||||||
msgid "Italian"
|
msgid "Italian"
|
||||||
msgstr "Italien"
|
msgstr "Italien"
|
||||||
|
|
||||||
#: common/edaappl.cpp:488
|
#: common/edaappl.cpp:518
|
||||||
msgid "German"
|
msgid "German"
|
||||||
msgstr "Allemand"
|
msgstr "Allemand"
|
||||||
|
|
||||||
#: common/edaappl.cpp:493
|
#: common/edaappl.cpp:523
|
||||||
msgid "Slovenian"
|
msgid "Slovenian"
|
||||||
msgstr "Slovène"
|
msgstr "Slovène"
|
||||||
|
|
||||||
#: common/edaappl.cpp:498
|
#: common/edaappl.cpp:528
|
||||||
msgid "Hungarian"
|
msgid "Hungarian"
|
||||||
msgstr "Hongrois"
|
msgstr "Hongrois"
|
||||||
|
|
||||||
#: common/edaappl.cpp:503
|
#: common/edaappl.cpp:533
|
||||||
msgid "Polish"
|
msgid "Polish"
|
||||||
msgstr "Polonais"
|
msgstr "Polonais"
|
||||||
|
|
||||||
#: common/edaappl.cpp:508
|
#: common/edaappl.cpp:538
|
||||||
msgid "Russian"
|
msgid "Russian"
|
||||||
msgstr "Russe"
|
msgstr "Russe"
|
||||||
|
|
||||||
#: common/edaappl.cpp:513
|
#: common/edaappl.cpp:543
|
||||||
msgid "Korean"
|
msgid "Korean"
|
||||||
msgstr "Coréen"
|
msgstr "Coréen"
|
||||||
|
|
||||||
#: common/edaappl.cpp:579
|
#: common/edaappl.cpp:548
|
||||||
|
msgid "Catalan"
|
||||||
|
msgstr "Catalan"
|
||||||
|
|
||||||
|
#: common/edaappl.cpp:625
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Langage"
|
msgstr "Langage"
|
||||||
|
|
||||||
|
@ -9810,10 +9744,6 @@ msgstr "Propri
|
||||||
msgid "Netlist: "
|
msgid "Netlist: "
|
||||||
msgstr "Netliste: "
|
msgstr "Netliste: "
|
||||||
|
|
||||||
#: pcbnew/cleaningoptions_dialog.h:48
|
|
||||||
msgid "Cleaning options"
|
|
||||||
msgstr "Options de nettoyage"
|
|
||||||
|
|
||||||
#: pcbnew/dialog_general_options.h:44
|
#: pcbnew/dialog_general_options.h:44
|
||||||
#: eeschema/dialog_options.h:55
|
#: eeschema/dialog_options.h:55
|
||||||
msgid "General Options"
|
msgid "General Options"
|
||||||
|
@ -9823,14 +9753,14 @@ msgstr "Options g
|
||||||
msgid "TextMod properties"
|
msgid "TextMod properties"
|
||||||
msgstr "Propriétés du Texte sur Module"
|
msgstr "Propriétés du Texte sur Module"
|
||||||
|
|
||||||
|
#: pcbnew/cleaningoptions_dialog.h:48
|
||||||
|
msgid "Cleaning options"
|
||||||
|
msgstr "Options de nettoyage"
|
||||||
|
|
||||||
#: pcbnew/zones.h:54
|
#: pcbnew/zones.h:54
|
||||||
msgid "Fill Zones Options"
|
msgid "Fill Zones Options"
|
||||||
msgstr "Options de remplissage de Zone"
|
msgstr "Options de remplissage de Zone"
|
||||||
|
|
||||||
#: pcbnew/dialog_drc.h:56
|
|
||||||
msgid "DRC Control"
|
|
||||||
msgstr "Controle ERC"
|
|
||||||
|
|
||||||
#: pcbnew/dialog_initpcb.h:38
|
#: pcbnew/dialog_initpcb.h:38
|
||||||
msgid "Global Delete"
|
msgid "Global Delete"
|
||||||
msgstr "Effacements Généraux"
|
msgstr "Effacements Généraux"
|
||||||
|
@ -9883,6 +9813,10 @@ msgstr "Afficher Modules Cmp"
|
||||||
msgid "Show Modules Cu"
|
msgid "Show Modules Cu"
|
||||||
msgstr "Afficher Modules Cu"
|
msgstr "Afficher Modules Cu"
|
||||||
|
|
||||||
|
#: pcbnew/dialog_drc.h:56
|
||||||
|
msgid "DRC Control"
|
||||||
|
msgstr "Controle ERC"
|
||||||
|
|
||||||
#: pcbnew/dialog_track_options.h:42
|
#: pcbnew/dialog_track_options.h:42
|
||||||
msgid "Tracks and Vias Sizes"
|
msgid "Tracks and Vias Sizes"
|
||||||
msgstr "Dims pistes et vias"
|
msgstr "Dims pistes et vias"
|
||||||
|
@ -9903,6 +9837,86 @@ msgstr "Propri
|
||||||
msgid "EESchema Erc"
|
msgid "EESchema Erc"
|
||||||
msgstr "EESchema Erc"
|
msgstr "EESchema Erc"
|
||||||
|
|
||||||
|
#: eeschema/eelayer.h:34
|
||||||
|
msgid "EESchema Preferences"
|
||||||
|
msgstr "EESchema Préférences"
|
||||||
|
|
||||||
|
#: eeschema/eelayer.h:73
|
||||||
|
msgid "Wire"
|
||||||
|
msgstr "Fil"
|
||||||
|
|
||||||
|
#: eeschema/eelayer.h:79
|
||||||
|
msgid "Bus"
|
||||||
|
msgstr "Bus"
|
||||||
|
|
||||||
|
#: eeschema/eelayer.h:85
|
||||||
|
msgid "Junction"
|
||||||
|
msgstr "Jonction"
|
||||||
|
|
||||||
|
#: eeschema/eelayer.h:91
|
||||||
|
msgid "Label"
|
||||||
|
msgstr "Label"
|
||||||
|
|
||||||
|
#: eeschema/eelayer.h:97
|
||||||
|
msgid "GlobLabel"
|
||||||
|
msgstr "Lab Global"
|
||||||
|
|
||||||
|
#: eeschema/eelayer.h:109
|
||||||
|
msgid "Notes"
|
||||||
|
msgstr "Notes"
|
||||||
|
|
||||||
|
#: eeschema/eelayer.h:122
|
||||||
|
msgid "Body"
|
||||||
|
msgstr "Body"
|
||||||
|
|
||||||
|
#: eeschema/eelayer.h:128
|
||||||
|
msgid "Body Bg"
|
||||||
|
msgstr "Body Bg"
|
||||||
|
|
||||||
|
#: eeschema/eelayer.h:134
|
||||||
|
msgid "Pin"
|
||||||
|
msgstr "Pin"
|
||||||
|
|
||||||
|
#: eeschema/eelayer.h:146
|
||||||
|
msgid "PinNam"
|
||||||
|
msgstr "Nom Pin"
|
||||||
|
|
||||||
|
#: eeschema/eelayer.h:177
|
||||||
|
msgid "Sheetfile"
|
||||||
|
msgstr "Fichier feuille"
|
||||||
|
|
||||||
|
#: eeschema/eelayer.h:183
|
||||||
|
msgid "SheetName"
|
||||||
|
msgstr "Nom feuille"
|
||||||
|
|
||||||
|
#: eeschema/eelayer.h:189
|
||||||
|
msgid "SheetLabel"
|
||||||
|
msgstr "SheetLabel"
|
||||||
|
|
||||||
|
#: eeschema/eelayer.h:196
|
||||||
|
msgid "Erc Warning"
|
||||||
|
msgstr "ERC Warning"
|
||||||
|
|
||||||
|
#: eeschema/eelayer.h:202
|
||||||
|
msgid "Erc Error"
|
||||||
|
msgstr "ERC Erreur"
|
||||||
|
|
||||||
|
#: eeschema/eelayer.h:247
|
||||||
|
msgid "General"
|
||||||
|
msgstr " Général "
|
||||||
|
|
||||||
|
#: eeschema/eelayer.h:253
|
||||||
|
msgid "Device"
|
||||||
|
msgstr "Composant"
|
||||||
|
|
||||||
|
#: eeschema/eelayer.h:259
|
||||||
|
msgid "Sheets"
|
||||||
|
msgstr "Feuilles"
|
||||||
|
|
||||||
|
#: eeschema/eelayer.h:265
|
||||||
|
msgid "Erc Mark"
|
||||||
|
msgstr "Marqueur ERC"
|
||||||
|
|
||||||
#: eeschema/annotate_dialog.h:53
|
#: eeschema/annotate_dialog.h:53
|
||||||
msgid "EESchema Annotation"
|
msgid "EESchema Annotation"
|
||||||
msgstr "Numérotation des composants"
|
msgstr "Numérotation des composants"
|
||||||
|
|
Loading…
Reference in New Issue