Commit 9b58687c authored by CHARRAS's avatar CHARRAS

rename dialog_clean_pcb.pjd, other minor changes

parent 5d2817ff
...@@ -4,6 +4,18 @@ Started 2007-June-11 ...@@ -4,6 +4,18 @@ 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-21 UPDATE Jean-Pierre Charras <jean-pierre.charras@inpg.fr>
================================================================================
+ pcbnew:
rename dialog_clean_pcb.pjd to cleaningoptions_dialog.pjd,
accordind to the corresponding cpp filename.
enter the new tool tips in cleaningoptions_dialog.pjd.
+all:
USE_RESIZE_BORDER is now defined (default) in fctsys.h.
Therefore, under windows, dialogs are now resizable (like under unix)
2007-Oct-21 UPDATE Geoff Harland <gharlandau@yahoo.com.au> 2007-Oct-21 UPDATE Geoff Harland <gharlandau@yahoo.com.au>
================================================================================ ================================================================================
+ eeschema & pcbnew & gerbview + eeschema & pcbnew & gerbview
......
...@@ -158,7 +158,7 @@ bool ColorFound = false; ...@@ -158,7 +158,7 @@ bool ColorFound = false;
line = new wxStaticLine( this, -1, wxDefaultPosition, wxDefaultSize, wxLI_HORIZONTAL ); line = new wxStaticLine( this, -1, wxDefaultPosition, wxDefaultSize, wxLI_HORIZONTAL );
OuterBoxSizer->Add(line, 0, wxGROW|wxLEFT|wxRIGHT|wxTOP, 5); OuterBoxSizer->Add(line, 0, wxGROW|wxLEFT|wxRIGHT|wxTOP, 5);
#ifdef 0 #if 0
BottomBoxSizer = new wxBoxSizer(wxHORIZONTAL); BottomBoxSizer = new wxBoxSizer(wxHORIZONTAL);
OuterBoxSizer->Add(BottomBoxSizer, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5); OuterBoxSizer->Add(BottomBoxSizer, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);
......
...@@ -466,7 +466,7 @@ void WinEDA_PartPropertiesFrame::BuildPanelBasic() ...@@ -466,7 +466,7 @@ void WinEDA_PartPropertiesFrame::BuildPanelBasic()
/*********************************************************/ /*********************************************************/
void WinEDA_PartPropertiesFrame::BuildPanelEditField() void WinEDA_PartPropertiesFrame::BuildPanelEditField()
/**********************************************************/ /*********************************************************/
/* Create and build the panel managing the fields (REF, VALUE ...) /* Create and build the panel managing the fields (REF, VALUE ...)
* of the component * of the component
...@@ -515,7 +515,7 @@ void WinEDA_PartPropertiesFrame::BuildPanelEditField() ...@@ -515,7 +515,7 @@ void WinEDA_PartPropertiesFrame::BuildPanelEditField()
// Create the box for text editing (text, size) // Create the box for text editing (text, size)
m_FieldTextCtrl = new WinEDA_GraphicTextCtrl( m_PanelField, m_FieldTextCtrl = new WinEDA_GraphicTextCtrl( m_PanelField,
_( "Value:" ), _( "Value/Chip Name:" ),
m_FieldText[FieldId], m_FieldSize[FieldId], m_FieldText[FieldId], m_FieldSize[FieldId],
g_UnitMetric, LeftBoxSizer, 200 ); g_UnitMetric, LeftBoxSizer, 200 );
...@@ -548,6 +548,7 @@ void WinEDA_PartPropertiesFrame::BuildPanelEditField() ...@@ -548,6 +548,7 @@ void WinEDA_PartPropertiesFrame::BuildPanelEditField()
else else
fieldnamelist[ii] = m_FieldName[ii]; fieldnamelist[ii] = m_FieldName[ii];
} }
fieldnamelist[VALUE] << wxT("/") << _("Chip Name");
m_FieldSelection = new wxRadioBox( m_PanelField, ID_ON_SELECT_FIELD, m_FieldSelection = new wxRadioBox( m_PanelField, ID_ON_SELECT_FIELD,
_( "Field to edit" ), wxDefaultPosition, wxDefaultSize, _( "Field to edit" ), wxDefaultPosition, wxDefaultSize,
......
...@@ -173,7 +173,7 @@ static int SavePcbFormatAscii( WinEDA_GerberFrame* frame, FILE* File, ...@@ -173,7 +173,7 @@ static int SavePcbFormatAscii( WinEDA_GerberFrame* frame, FILE* File,
// replace spots with vias when possible // replace spots with vias when possible
if( (track->m_Shape == S_SPOT_CIRCLE) if( (track->m_Shape == S_SPOT_CIRCLE)
|| (track->m_Shape == S_SPOT_RECT) || (track->m_Shape == S_SPOT_RECT)
|| (track->m_Shape == S_SPOT_OVALE) ) || (track->m_Shape == S_SPOT_OVALE) )
{ {
newtrack = new SEGVIA( (const SEGVIA&) *track ); newtrack = new SEGVIA( (const SEGVIA&) *track );
...@@ -185,7 +185,7 @@ static int SavePcbFormatAscii( WinEDA_GerberFrame* frame, FILE* File, ...@@ -185,7 +185,7 @@ static int SavePcbFormatAscii( WinEDA_GerberFrame* frame, FILE* File,
newtrack->SetLayer( 0x0F ); // Layers are 0 to 15 (Cu/Cmp) newtrack->SetLayer( 0x0F ); // Layers are 0 to 15 (Cu/Cmp)
newtrack->m_Drill = -1; newtrack->m_Drill = -1;
// Compute the via position from track position ( Via position is the // Compute the via position from track position ( Via position is the
// position of the middle of the track segment ) // position of the middle of the track segment )
newtrack->m_Start.x = (newtrack->m_Start.x + newtrack->m_End.x) / 2; newtrack->m_Start.x = (newtrack->m_Start.x + newtrack->m_End.x) / 2;
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
COMMON_GLOBL wxString g_BuildVersion COMMON_GLOBL wxString g_BuildVersion
#ifdef EDA_BASE #ifdef EDA_BASE
(wxT("(2007-10-08)")) (wxT("(2007-10-21)"))
#endif #endif
; ;
......
...@@ -74,7 +74,7 @@ ...@@ -74,7 +74,7 @@
#define FALSE ((bool)0) #define FALSE ((bool)0)
#endif #endif
#define USE_RESIZE_BORDER
#if defined(__UNIX__) || defined(USE_RESIZE_BORDER) #if defined(__UNIX__) || defined(USE_RESIZE_BORDER)
#define MAYBE_RESIZE_BORDER wxRESIZE_BORDER // linux users like resizeable borders #define MAYBE_RESIZE_BORDER wxRESIZE_BORDER // linux users like resizeable borders
#else #else
......
No preview for this file type
...@@ -2,7 +2,7 @@ msgid "" ...@@ -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-19 08:14+0100\n" "PO-Revision-Date: 2007-10-21 19:16+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"
...@@ -183,9 +183,9 @@ msgid "Add Pad" ...@@ -183,9 +183,9 @@ msgid "Add Pad"
msgstr "Ajouter Pastilles" msgstr "Ajouter Pastilles"
#: pcbnew/modedit.cpp:316 #: pcbnew/modedit.cpp:316
#: pcbnew/menubarpcb.cpp:209
#: pcbnew/tool_modedit.cpp:133 #: pcbnew/tool_modedit.cpp:133
#: pcbnew/menubarmodedit.cpp:45 #: pcbnew/menubarmodedit.cpp:45
#: pcbnew/menubarpcb.cpp:209
msgid "Pad Settings" msgid "Pad Settings"
msgstr "Caract pads" msgstr "Caract pads"
...@@ -733,9 +733,9 @@ msgstr "Outils" ...@@ -733,9 +733,9 @@ msgstr "Outils"
#: pcbnew/gendrill.cpp:411 #: pcbnew/gendrill.cpp:411
#: pcbnew/gendrill.cpp:1098 #: pcbnew/gendrill.cpp:1098
#: pcbnew/gendrill.cpp:1674 #: pcbnew/gendrill.cpp:1674
#: pcbnew/class_track.cpp:811
#: pcbnew/class_track.cpp:816
#: pcbnew/class_pad.cpp:995 #: pcbnew/class_pad.cpp:995
#: pcbnew/class_track.cpp:836
#: pcbnew/class_track.cpp:841
msgid "Drill" msgid "Drill"
msgstr "Perage" msgstr "Perage"
...@@ -776,6 +776,22 @@ msgstr "Liste ...@@ -776,6 +776,22 @@ msgstr "Liste
msgid "Tracks" msgid "Tracks"
msgstr "Pistes" msgstr "Pistes"
#: pcbnew/router.cpp:60
msgid "Unable to create temporary file "
msgstr "Impossible de crer le fichier temporaire "
#: pcbnew/router.cpp:65
msgid "Create temporary file "
msgstr "Creation fichier temporaire "
#: pcbnew/router.cpp:566
msgid "Unable to find data file "
msgstr "Impossible de trouver le fichier de donnes "
#: pcbnew/router.cpp:572
msgid "Reading autorouter data file "
msgstr "Lecture fichier donnes de l'autorouteur"
#: pcbnew/affiche.cpp:34 #: pcbnew/affiche.cpp:34
msgid "Net Name" msgid "Net Name"
msgstr "Equipot" msgstr "Equipot"
...@@ -821,8 +837,8 @@ msgstr "Inclure couche Edge" ...@@ -821,8 +837,8 @@ msgstr "Inclure couche Edge"
#: pcbnew/modedit_onclick.cpp:201 #: pcbnew/modedit_onclick.cpp:201
#: pcbnew/modedit_onclick.cpp:233 #: pcbnew/modedit_onclick.cpp:233
#: pcbnew/set_color.cpp:280 #: pcbnew/set_color.cpp:280
#: pcbnew/swap_layers.cpp:103
#: pcbnew/dialog_edit_module.cpp:121 #: pcbnew/dialog_edit_module.cpp:121
#: pcbnew/swap_layers.cpp:103
#: pcbnew/onrightclick.cpp:146 #: pcbnew/onrightclick.cpp:146
#: pcbnew/onrightclick.cpp:160 #: pcbnew/onrightclick.cpp:160
#: pcbnew/globaleditpad.cpp:108 #: pcbnew/globaleditpad.cpp:108
...@@ -841,8 +857,9 @@ msgstr "Inclure couche Edge" ...@@ -841,8 +857,9 @@ msgstr "Inclure couche Edge"
#: gerbview/onrightclick.cpp:40 #: gerbview/onrightclick.cpp:40
#: gerbview/onrightclick.cpp:59 #: gerbview/onrightclick.cpp:59
#: gerbview/select_layers_to_pcb.cpp:171 #: gerbview/select_layers_to_pcb.cpp:171
#: common/selcolor.cpp:147
#: common/displlst.cpp:103 #: common/displlst.cpp:103
#: common/selcolor.cpp:169
#: common/selcolor.cpp:186
#: common/get_component_dialog.cpp:121 #: common/get_component_dialog.cpp:121
msgid "Cancel" msgid "Cancel"
msgstr "Annuler" msgstr "Annuler"
...@@ -853,8 +870,8 @@ msgstr "Annuler" ...@@ -853,8 +870,8 @@ msgstr "Annuler"
#: pcbnew/muonde.cpp:348 #: pcbnew/muonde.cpp:348
#: pcbnew/pcbtexte.cpp:111 #: pcbnew/pcbtexte.cpp:111
#: pcbnew/set_color.cpp:275 #: pcbnew/set_color.cpp:275
#: pcbnew/swap_layers.cpp:98
#: pcbnew/dialog_edit_module.cpp:117 #: pcbnew/dialog_edit_module.cpp:117
#: pcbnew/swap_layers.cpp:98
#: 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
...@@ -865,6 +882,7 @@ msgstr "Annuler" ...@@ -865,6 +882,7 @@ msgstr "Annuler"
#: gerbview/reglage.cpp:116 #: gerbview/reglage.cpp:116
#: gerbview/select_layers_to_pcb.cpp:167 #: gerbview/select_layers_to_pcb.cpp:167
#: common/displlst.cpp:99 #: common/displlst.cpp:99
#: common/selcolor.cpp:165
#: common/get_component_dialog.cpp:112 #: common/get_component_dialog.cpp:112
msgid "OK" msgid "OK"
msgstr "OK" msgstr "OK"
...@@ -983,9 +1001,9 @@ msgstr "Texte Pcb" ...@@ -983,9 +1001,9 @@ msgstr "Texte Pcb"
#: pcbnew/classpcb.cpp:197 #: pcbnew/classpcb.cpp:197
#: pcbnew/class_text_mod.cpp:347 #: pcbnew/class_text_mod.cpp:347
#: pcbnew/class_text_mod.cpp:351 #: pcbnew/class_text_mod.cpp:351
#: pcbnew/class_track.cpp:795
#: pcbnew/class_pad.cpp:972 #: pcbnew/class_pad.cpp:972
#: pcbnew/dialog_edit_module.cpp:234 #: pcbnew/dialog_edit_module.cpp:234
#: pcbnew/class_track.cpp:820
#: pcbnew/sel_layer.cpp:145 #: pcbnew/sel_layer.cpp:145
#: pcbnew/class_module.cpp:1116 #: pcbnew/class_module.cpp:1116
#: gerbview/affiche.cpp:109 #: gerbview/affiche.cpp:109
...@@ -1035,8 +1053,8 @@ msgstr "Orient" ...@@ -1035,8 +1053,8 @@ msgstr "Orient"
#: pcbnew/classpcb.cpp:202 #: pcbnew/classpcb.cpp:202
#: pcbnew/class_text_mod.cpp:364 #: pcbnew/class_text_mod.cpp:364
#: pcbnew/pcbtexte.cpp:130 #: pcbnew/pcbtexte.cpp:130
#: pcbnew/class_track.cpp:819
#: pcbnew/class_edge_mod.cpp:297 #: pcbnew/class_edge_mod.cpp:297
#: pcbnew/class_track.cpp:844
#: eeschema/affiche.cpp:188 #: eeschema/affiche.cpp:188
#: eeschema/dialog_cmp_graphic_properties.cpp:188 #: eeschema/dialog_cmp_graphic_properties.cpp:188
#: gerbview/affiche.cpp:52 #: gerbview/affiche.cpp:52
...@@ -1097,12 +1115,12 @@ msgstr "Offset Y" ...@@ -1097,12 +1115,12 @@ msgstr "Offset Y"
#: pcbnew/dialog_edit_mod_text.cpp:213 #: pcbnew/dialog_edit_mod_text.cpp:213
#: pcbnew/dialog_initpcb.cpp:161 #: pcbnew/dialog_initpcb.cpp:161
#: pcbnew/dialog_track_options.cpp:181
#: pcbnew/dialog_display_options.cpp:280 #: pcbnew/dialog_display_options.cpp:280
#: pcbnew/set_grid.cpp:171 #: pcbnew/set_grid.cpp:171
#: pcbnew/dialog_pad_edit.cpp:217 #: pcbnew/dialog_pad_edit.cpp:217
#: pcbnew/dialog_general_options.cpp:368 #: pcbnew/dialog_general_options.cpp:368
#: pcbnew/dialog_graphic_items_options.cpp:261 #: pcbnew/dialog_graphic_items_options.cpp:261
#: pcbnew/dialog_track_options.cpp:181
#: eeschema/symbtext.cpp:174 #: eeschema/symbtext.cpp:174
#: eeschema/sheet.cpp:221 #: eeschema/sheet.cpp:221
#: eeschema/dialog_options.cpp:274 #: eeschema/dialog_options.cpp:274
...@@ -1120,13 +1138,13 @@ msgstr "&OK" ...@@ -1120,13 +1138,13 @@ msgstr "&OK"
#: pcbnew/dialog_edit_mod_text.cpp:217 #: pcbnew/dialog_edit_mod_text.cpp:217
#: pcbnew/dialog_initpcb.cpp:164 #: pcbnew/dialog_initpcb.cpp:164
#: pcbnew/dialog_track_options.cpp:185
#: pcbnew/dialog_display_options.cpp:284 #: pcbnew/dialog_display_options.cpp:284
#: pcbnew/zones.cpp:216 #: pcbnew/zones.cpp:216
#: pcbnew/set_grid.cpp:176 #: pcbnew/set_grid.cpp:176
#: pcbnew/dialog_pad_edit.cpp:221 #: pcbnew/dialog_pad_edit.cpp:221
#: pcbnew/dialog_general_options.cpp:372 #: pcbnew/dialog_general_options.cpp:372
#: pcbnew/dialog_graphic_items_options.cpp:265 #: pcbnew/dialog_graphic_items_options.cpp:265
#: pcbnew/dialog_track_options.cpp:185
#: eeschema/symbtext.cpp:178 #: eeschema/symbtext.cpp:178
#: eeschema/plothpgl.cpp:274 #: eeschema/plothpgl.cpp:274
#: eeschema/sheet.cpp:216 #: eeschema/sheet.cpp:216
...@@ -1173,7 +1191,6 @@ msgid "Display" ...@@ -1173,7 +1191,6 @@ msgid "Display"
msgstr "Affichage" msgstr "Affichage"
#: pcbnew/dialog_edit_mod_text.cpp:313 #: pcbnew/dialog_edit_mod_text.cpp:313
#: eeschema/edit_component_in_lib.cpp:518
#: eeschema/edit_component_in_schematic.cpp:211 #: eeschema/edit_component_in_schematic.cpp:211
msgid "Value:" msgid "Value:"
msgstr "Valeur:" msgstr "Valeur:"
...@@ -1558,7 +1575,7 @@ msgstr "Mode d'affichage Haut Contraste" ...@@ -1558,7 +1575,7 @@ msgstr "Mode d'affichage Haut Contraste"
#: pcbnew/pcbframe.cpp:442 #: pcbnew/pcbframe.cpp:442
#: pcbnew/class_board_item.cpp:140 #: pcbnew/class_board_item.cpp:140
#: pcbnew/class_track.cpp:753 #: pcbnew/class_track.cpp:728
msgid "Track" msgid "Track"
msgstr "Piste" msgstr "Piste"
...@@ -1920,57 +1937,146 @@ msgstr "Inclure pistes autorout ...@@ -1920,57 +1937,146 @@ msgstr "Inclure pistes autorout
msgid "Include Locked Tracks" msgid "Include Locked Tracks"
msgstr "Inclure pistes verrouilles" msgstr "Inclure pistes verrouilles"
#: pcbnew/dialog_track_options.cpp:125 #: pcbnew/class_board_item.cpp:36
msgid "Via Size" #: pcbnew/class_pad.cpp:889
msgstr "Diametre Via" msgid "Net"
msgstr "Net"
#: pcbnew/dialog_track_options.cpp:131 #: pcbnew/class_board_item.cpp:41
msgid "Default Via Drill" #: eeschema/component_class.cpp:56
msgstr "Perage vias par dfaut" msgid "Footprint"
msgstr "Module"
#: pcbnew/dialog_track_options.cpp:137 #: pcbnew/class_board_item.cpp:47
msgid "Alternate Via Drill" msgid "Pad"
msgstr "Perage vias alternatif" msgstr "Pad"
#: pcbnew/dialog_track_options.cpp:146 #: pcbnew/class_board_item.cpp:50
#: pcbnew/pcbnew.h:285 msgid "all copper layers"
msgid "Blind Via" msgstr "Toutes Couches Cuivre"
msgstr "Via borgne"
#: pcbnew/dialog_track_options.cpp:147 #: pcbnew/class_board_item.cpp:52
#: pcbnew/pcbnew.h:286 msgid "copper layer"
msgid "Buried Via" msgstr "Couche Cuivre"
msgstr "Via enterre"
#: pcbnew/dialog_track_options.cpp:148 #: pcbnew/class_board_item.cpp:54
#: pcbnew/pcbnew.h:287 msgid "cmp layer"
msgid "Standard Via" msgstr "Couche Cmp"
msgstr "Via Standard"
#: pcbnew/dialog_track_options.cpp:150 #: pcbnew/class_board_item.cpp:55
msgid "Via Type" msgid "???"
msgstr "Type de Via" msgstr "???"
#: pcbnew/dialog_track_options.cpp:158 #: pcbnew/class_board_item.cpp:56
msgid "Track Width" msgid ") of "
msgstr "Epais. Piste" msgstr ") de "
#: pcbnew/dialog_track_options.cpp:164 #: pcbnew/class_board_item.cpp:60
#: pcbnew/dialog_drc.cpp:145 msgid "Pcb Graphic"
msgid "Clearance" msgstr "Pcb Graphic"
msgstr "Isolation"
#: pcbnew/dialog_track_options.cpp:170 #: pcbnew/class_board_item.cpp:60
msgid "Mask clearance" #: pcbnew/class_board_item.cpp:69
msgstr "Retrait Masque" #: pcbnew/class_board_item.cpp:146
#: pcbnew/class_board_item.cpp:164
#: pcbnew/class_board_item.cpp:191
#: pcbnew/class_board_item.cpp:213
msgid " on "
msgstr " sur "
#: pcbnew/dialog_track_options.cpp:257 #: pcbnew/class_board_item.cpp:64
msgid "" msgid "Pcb Text"
"You have selected VIA Blind or VIA Buried\n" msgstr "Texte Pcb"
"WARNING: this feature is EXPERIMENTAL!!! Accept ?"
msgstr "" #: pcbnew/class_board_item.cpp:80
"Vous avez slectionn VIA borgne ou VIA enterre\n" #: pcbnew/class_text_mod.cpp:323
"ATTENTION: Cette possibilit est EXPERIMENTALE!!! Accepter ?" #: pcbnew/class_edge_mod.cpp:286
#: eeschema/eelayer.cpp:105
#: eeschema/component_class.cpp:55
#: eeschema/onrightclick.cpp:316
#: eeschema/edit_component_in_schematic.cpp:784
msgid "Value"
msgstr "Valeur"
#: pcbnew/class_board_item.cpp:80
#: pcbnew/class_board_item.cpp:86
#: pcbnew/class_board_item.cpp:130
msgid " of "
msgstr " de "
#: pcbnew/class_board_item.cpp:85
#: pcbnew/class_text_mod.cpp:323
#: pcbnew/class_text_mod.cpp:331
msgid "Text"
msgstr "Texte"
#: pcbnew/class_board_item.cpp:93
msgid "Graphic"
msgstr "Graphique"
#: pcbnew/class_board_item.cpp:99
#: pcbnew/dialog_display_options.cpp:223
#: pcbnew/dialog_display_options.cpp:231
#: pcbnew/dialog_display_options.cpp:264
#: pcbnew/pcbplot.cpp:330
#: gerbview/options.cpp:316
msgid "Line"
msgstr "Ligne"
#: pcbnew/class_board_item.cpp:102
#: pcbnew/dialog_pad_edit.cpp:198
msgid "Rect"
msgstr "Rect"
#: pcbnew/class_board_item.cpp:105
msgid "Arc"
msgstr "Arc"
#: pcbnew/class_board_item.cpp:108
#: pcbnew/dialog_pad_edit.cpp:176
#: pcbnew/dialog_pad_edit.cpp:196
#: pcbnew/classpcb.cpp:186
#: pcbnew/class_track.cpp:765
msgid "Circle"
msgstr "Cercle"
#: pcbnew/class_board_item.cpp:147
msgid "Net:"
msgstr "Net:"
#: pcbnew/class_board_item.cpp:148
msgid "Length:"
msgstr "Long.:"
#: pcbnew/class_board_item.cpp:153
#: pcbnew/class_track.cpp:732
msgid "Zone"
msgstr "Zone"
#: pcbnew/class_board_item.cpp:174
msgid "Blind"
msgstr "Enterre"
#: pcbnew/class_board_item.cpp:176
msgid "Buried"
msgstr "Borgne"
#: pcbnew/class_board_item.cpp:198
#: pcbnew/classpcb.cpp:313
msgid "Marker"
msgstr "Marqueur"
#: pcbnew/class_board_item.cpp:202
msgid "Dimension"
msgstr "Dimension"
#: pcbnew/class_board_item.cpp:206
msgid "Target"
msgstr "Mire"
#: pcbnew/class_board_item.cpp:213
msgid "Edge Zone"
msgstr "Contour Zone"
#: pcbnew/dialog_display_options.cpp:188 #: pcbnew/dialog_display_options.cpp:188
msgid "Tracks and vias" msgid "Tracks and vias"
...@@ -2036,15 +2142,6 @@ msgstr "Montrer trous pour vias" ...@@ -2036,15 +2142,6 @@ msgstr "Montrer trous pour vias"
msgid "Modules" msgid "Modules"
msgstr "Modules" msgstr "Modules"
#: pcbnew/dialog_display_options.cpp:223
#: pcbnew/dialog_display_options.cpp:231
#: pcbnew/dialog_display_options.cpp:264
#: pcbnew/pcbplot.cpp:330
#: pcbnew/class_board_item.cpp:99
#: gerbview/options.cpp:316
msgid "Line"
msgstr "Ligne"
#: pcbnew/dialog_display_options.cpp:227 #: pcbnew/dialog_display_options.cpp:227
msgid "Module Texts" msgid "Module Texts"
msgstr "Texte module" msgstr "Texte module"
...@@ -2092,22 +2189,6 @@ msgstr "Impossible de cr ...@@ -2092,22 +2189,6 @@ msgstr "Impossible de cr
msgid "unable to reopen file <%s>" msgid "unable to reopen file <%s>"
msgstr "Ne peut pas rouvrir fichier <%s>" msgstr "Ne peut pas rouvrir fichier <%s>"
#: pcbnew/router.cpp:60
msgid "Unable to create temporary file "
msgstr "Impossible de crer le fichier temporaire "
#: pcbnew/router.cpp:65
msgid "Create temporary file "
msgstr "Creation fichier temporaire "
#: pcbnew/router.cpp:566
msgid "Unable to find data file "
msgstr "Impossible de trouver le fichier de donnes "
#: pcbnew/router.cpp:572
msgid "Reading autorouter data file "
msgstr "Lecture fichier donnes de l'autorouteur"
#: pcbnew/zones.cpp:152 #: pcbnew/zones.cpp:152
#: pcbnew/zones.cpp:153 #: pcbnew/zones.cpp:153
#: pcbnew/zones.cpp:154 #: pcbnew/zones.cpp:154
...@@ -2185,7 +2266,7 @@ msgid "No Net" ...@@ -2185,7 +2266,7 @@ msgid "No Net"
msgstr "No Net" msgstr "No Net"
#: pcbnew/zones.cpp:916 #: pcbnew/zones.cpp:916
#: pcbnew/class_track.cpp:779 #: pcbnew/class_track.cpp:754
msgid "NetName" msgid "NetName"
msgstr "NetName" msgstr "NetName"
...@@ -2445,14 +2526,6 @@ msgstr "Num Pad :" ...@@ -2445,14 +2526,6 @@ msgstr "Num Pad :"
msgid "Pad Net Name :" msgid "Pad Net Name :"
msgstr "NetName Pad:" msgstr "NetName Pad:"
#: pcbnew/dialog_pad_edit.cpp:176
#: pcbnew/dialog_pad_edit.cpp:196
#: pcbnew/classpcb.cpp:186
#: pcbnew/class_board_item.cpp:108
#: pcbnew/class_track.cpp:790
msgid "Circle"
msgstr "Cercle"
#: pcbnew/dialog_pad_edit.cpp:177 #: pcbnew/dialog_pad_edit.cpp:177
#: pcbnew/dialog_pad_edit.cpp:197 #: pcbnew/dialog_pad_edit.cpp:197
msgid "Oval" msgid "Oval"
...@@ -2463,7 +2536,7 @@ msgid "Drill Shape:" ...@@ -2463,7 +2536,7 @@ msgid "Drill Shape:"
msgstr "Forme du perage:" msgstr "Forme du perage:"
#: pcbnew/dialog_pad_edit.cpp:186 #: pcbnew/dialog_pad_edit.cpp:186
#: pcbnew/clean.cpp:446 #: pcbnew/clean.cpp:456
#: eeschema/dialog_erc.cpp:192 #: eeschema/dialog_erc.cpp:192
#: eeschema/dialog_erc.cpp:196 #: eeschema/dialog_erc.cpp:196
#: eeschema/dialog_edit_component_in_schematic.cpp:172 #: eeschema/dialog_edit_component_in_schematic.cpp:172
...@@ -2493,11 +2566,6 @@ msgstr "User" ...@@ -2493,11 +2566,6 @@ msgstr "User"
msgid "Pad Orient:" msgid "Pad Orient:"
msgstr "Orient pad:" msgstr "Orient pad:"
#: pcbnew/dialog_pad_edit.cpp:198
#: pcbnew/class_board_item.cpp:102
msgid "Rect"
msgstr "Rect"
#: pcbnew/dialog_pad_edit.cpp:199 #: pcbnew/dialog_pad_edit.cpp:199
msgid "Trapezoidal" msgid "Trapezoidal"
msgstr "Trapezoidal" msgstr "Trapezoidal"
...@@ -2507,7 +2575,7 @@ msgid "Pad Shape:" ...@@ -2507,7 +2575,7 @@ msgid "Pad Shape:"
msgstr "Forme Pad:" msgstr "Forme Pad:"
#: pcbnew/dialog_pad_edit.cpp:205 #: pcbnew/dialog_pad_edit.cpp:205
#: pcbnew/class_track.cpp:792 #: pcbnew/class_track.cpp:767
msgid "Standard" msgid "Standard"
msgstr "Standard" msgstr "Standard"
...@@ -2662,87 +2730,70 @@ msgstr "Librairie: " ...@@ -2662,87 +2730,70 @@ msgstr "Librairie: "
msgid "Modules (%d items)" msgid "Modules (%d items)"
msgstr "Modules (%d lments)" msgstr "Modules (%d lments)"
#: pcbnew/clean.cpp:169 #: pcbnew/classpcb.cpp:181
msgid "Delete unconnected tracks:" #: pcbnew/classpcb.cpp:313
msgstr "Suppression Pistes non connectes" #: pcbnew/class_text_mod.cpp:337
#: pcbnew/class_track.cpp:739
#: pcbnew/clean.cpp:188 #: gerbview/affiche.cpp:93
msgid "ViaDef" msgid "Type"
msgstr "ViaDef" msgstr "Type"
#: pcbnew/clean.cpp:348 #: pcbnew/classpcb.cpp:183
msgid "Clean Null Segments" msgid "Shape"
msgstr "Nettoyage segments nulls" msgstr "Forme"
#: pcbnew/clean.cpp:444 #: pcbnew/classpcb.cpp:190
msgid "Merging Segments:" msgid " Arc "
msgstr "Associe Segment" msgstr " Arc "
#: pcbnew/clean.cpp:446 #: pcbnew/classpcb.cpp:195
msgid "Merge" #: pcbnew/class_track.cpp:763
msgstr "Merge" msgid "Segment"
msgstr "Segment"
#: pcbnew/clean.cpp:460
msgid "Merge: "
msgstr "Merge: "
#: pcbnew/clean.cpp:680
msgid "DRC Control:"
msgstr "Controle DRC:"
#: pcbnew/clean.cpp:685
msgid "NetCtr"
msgstr "NetCtr"
#: pcbnew/clean.cpp:963 #: pcbnew/classpcb.cpp:316
msgid "Centre" msgid "Marker Error Text"
msgstr "Centre" msgstr "Texte du Marqueur d'erreurs"
#: pcbnew/clean.cpp:963 #: pcbnew/cleaningoptions_dialog.cpp:146
msgid "0 " msgid "Static"
msgstr "0" msgstr "Static"
#: pcbnew/clean.cpp:976 #: pcbnew/cleaningoptions_dialog.cpp:150
msgid "Pads: " msgid "Delete redundant vias"
msgstr "Pastilles: " msgstr "Supprimer vias redondantes"
#: pcbnew/clean.cpp:980 #: pcbnew/cleaningoptions_dialog.cpp:153
msgid "Max" msgid "remove vias on pads with a through hole"
msgstr "Max" msgstr "Supprimer vias sur pads traversants"
#: pcbnew/clean.cpp:983 #: pcbnew/cleaningoptions_dialog.cpp:156
msgid "Segm" msgid "Merge segments"
msgstr "Segm" msgstr "Compacter Segments"
#: pcbnew/classpcb.cpp:181 #: pcbnew/cleaningoptions_dialog.cpp:159
#: pcbnew/classpcb.cpp:313 msgid "merge aligned track segments, and remove null segments"
#: pcbnew/class_text_mod.cpp:337 msgstr "Fondre segments aligns, et supprimer segments nulls"
#: pcbnew/class_track.cpp:764
#: gerbview/affiche.cpp:93
msgid "Type"
msgstr "Type"
#: pcbnew/classpcb.cpp:183 #: pcbnew/cleaningoptions_dialog.cpp:162
msgid "Shape" msgid "Delete unconnected tracks"
msgstr "Forme" msgstr "Suppression Pistes non connectes"
#: pcbnew/classpcb.cpp:190 #: pcbnew/cleaningoptions_dialog.cpp:165
msgid " Arc " msgid "delete track segment having a dangling end"
msgstr " Arc " msgstr "supprimer segments de piste avec une extrmit en l'air"
#: pcbnew/classpcb.cpp:195 #: pcbnew/cleaningoptions_dialog.cpp:168
#: pcbnew/class_track.cpp:788 msgid "Connect to Pads"
msgid "Segment" msgstr "Connection aux pads"
msgstr "Segment"
#: pcbnew/classpcb.cpp:313 #: pcbnew/cleaningoptions_dialog.cpp:171
#: pcbnew/class_board_item.cpp:198 msgid "Extend dangling tracks which partially cover a pad or via, all the way to pad or via center"
msgid "Marker" msgstr "connecte une extrmit de piste en l'air, lorsque elle couvre un pad ou une via, au centre du pad ou de la via"
msgstr "Marqueur"
#: pcbnew/classpcb.cpp:316 #: pcbnew/cleaningoptions_dialog.cpp:177
msgid "Marker Error Text" msgid "Clean pcb"
msgstr "Texte du Marqueur d'erreurs" msgstr "Nettoyage PCB"
#: pcbnew/files.cpp:57 #: pcbnew/files.cpp:57
msgid "Recovery file " msgid "Recovery file "
...@@ -3000,22 +3051,6 @@ msgstr "Origine des trac ...@@ -3000,22 +3051,6 @@ msgstr "Origine des trac
msgid "Ref." msgid "Ref."
msgstr "Ref." msgstr "Ref."
#: pcbnew/class_text_mod.cpp:323
#: pcbnew/class_board_item.cpp:80
#: pcbnew/class_edge_mod.cpp:286
#: eeschema/eelayer.cpp:105
#: eeschema/component_class.cpp:55
#: eeschema/onrightclick.cpp:316
#: eeschema/edit_component_in_schematic.cpp:784
msgid "Value"
msgstr "Valeur"
#: pcbnew/class_text_mod.cpp:323
#: pcbnew/class_text_mod.cpp:331
#: pcbnew/class_board_item.cpp:85
msgid "Text"
msgstr "Texte"
#: pcbnew/class_text_mod.cpp:328 #: pcbnew/class_text_mod.cpp:328
#: pcbnew/class_pad.cpp:883 #: pcbnew/class_pad.cpp:883
#: pcbnew/class_edge_mod.cpp:285 #: pcbnew/class_edge_mod.cpp:285
...@@ -3024,6 +3059,58 @@ msgstr "Texte" ...@@ -3024,6 +3059,58 @@ msgstr "Texte"
msgid "Module" msgid "Module"
msgstr "Module" msgstr "Module"
#: pcbnew/clean.cpp:172
msgid "Delete unconnected tracks:"
msgstr "Suppression Pistes non connectes"
#: pcbnew/clean.cpp:191
msgid "ViaDef"
msgstr "ViaDef"
#: pcbnew/clean.cpp:362
msgid "Clean Null Segments"
msgstr "Nettoyage segments nulls"
#: pcbnew/clean.cpp:454
msgid "Merging Segments:"
msgstr "Associe Segment"
#: pcbnew/clean.cpp:456
msgid "Merge"
msgstr "Merge"
#: pcbnew/clean.cpp:473
msgid "Merge: "
msgstr "Merge: "
#: pcbnew/clean.cpp:698
msgid "DRC Control:"
msgstr "Controle DRC:"
#: pcbnew/clean.cpp:703
msgid "NetCtr"
msgstr "NetCtr"
#: pcbnew/clean.cpp:1052
msgid "Centre"
msgstr "Centre"
#: pcbnew/clean.cpp:1052
msgid "0 "
msgstr "0"
#: pcbnew/clean.cpp:1063
msgid "Pads: "
msgstr "Pastilles: "
#: pcbnew/clean.cpp:1067
msgid "Max"
msgstr "Max"
#: pcbnew/clean.cpp:1070
msgid "Segm"
msgstr "Segm"
#: pcbnew/pcbtexte.cpp:88 #: pcbnew/pcbtexte.cpp:88
msgid "TextPCB properties" msgid "TextPCB properties"
msgstr "Proprits des textes PCB" msgstr "Proprits des textes PCB"
...@@ -3136,1584 +3223,1538 @@ msgstr "Le texte est la REFERENCE!" ...@@ -3136,1584 +3223,1538 @@ msgstr "Le texte est la REFERENCE!"
msgid "Text is VALUE!" msgid "Text is VALUE!"
msgstr "Le texte est la VALEUR!" msgstr "Le texte est la VALEUR!"
#: pcbnew/menubarpcb.cpp:42 #: pcbnew/editrack-part2.cpp:32
msgid "Load Board Ctrl-O" #, c-format
msgstr "Charger Circuit Imprim (Ctrl O)" msgid "Track Width: %s Vias Size : %s"
msgstr "Larg. piste: %s Diam Vias : %s"
#: pcbnew/menubarpcb.cpp:43 #: pcbnew/editrack-part2.cpp:135
msgid "Delete old Board and Load new Board" msgid "Drc error, cancelled"
msgstr "Effacer ancien C.I. et charger un nouveau" msgstr "Erreur DRC, annulation"
#: pcbnew/menubarpcb.cpp:48 #: pcbnew/class_track.cpp:759
msgid "Append Board" msgid "NetCode"
msgstr "Ajouter Circuit Imprim" msgstr "NetCode"
#: pcbnew/menubarpcb.cpp:49 #: pcbnew/class_track.cpp:779
msgid "Add Board to old Board" #: pcbnew/class_module.cpp:1135
msgstr "Ajouter un C.I. au C.I. actuel" msgid "Stat"
msgstr "Stat"
#: pcbnew/menubarpcb.cpp:54 #: pcbnew/class_track.cpp:803
msgid "&New board" msgid "Diam"
msgstr "&Nouveau Circuit Imprim" msgstr "Diam"
#: pcbnew/menubarpcb.cpp:55 #: pcbnew/automove.cpp:212
msgid "Clear old PCB and init a new one" msgid "Move Modules ?"
msgstr "Effacer C.I. ancien et crer un nouveau" msgstr "Dplacer Modules ?"
#: pcbnew/menubarpcb.cpp:60 #: pcbnew/automove.cpp:221
msgid "&Rescue" msgid "Autoplace modules: No boad edges detected, unable to place modules"
msgstr "&Secours" msgstr "Autoplace modules: pas de contours sur pcb, impossible de placer les modules"
#: pcbnew/menubarpcb.cpp:61 #: pcbnew/automove.cpp:344
msgid "Clear old board and get last rescue file" #, c-format
msgstr "Effacer C.I. actuel et reprendre dernier fichier secours" msgid "Ok to set module orientation to %d degrees ?"
msgstr "Ok pour orientation module %d degrs ?"
#: pcbnew/menubarpcb.cpp:66 #: pcbnew/class_pad.cpp:797
msgid "&Previous version" msgid "Unknown Pad shape"
msgstr "&Prcdente version" msgstr "Forme pad inconnue"
#: pcbnew/menubarpcb.cpp:67 #: pcbnew/class_pad.cpp:886
msgid "Clear old board and get old version of board" msgid "RefP"
msgstr "Effacer C.I. actuel et reprendre ancienne version" msgstr "RefP"
#: pcbnew/menubarpcb.cpp:74 #: pcbnew/class_pad.cpp:1003
msgid "&Save board Ctrl-S" msgid "Drill X / Y"
msgstr "Sauver Circuit Imprim (Ctrl S)" msgstr "Perage X/Y"
#: pcbnew/menubarpcb.cpp:75 #: pcbnew/class_pad.cpp:1018
msgid "Save current board" msgid "X Pos"
msgstr "Sauver le C.I. actuel" msgstr "X Pos"
#: pcbnew/menubarpcb.cpp:80 #: pcbnew/class_pad.cpp:1022
msgid "Save Board as.." msgid "Y pos"
msgstr "Sauver C.I. sous.." msgstr "Y pos"
#: pcbnew/menubarpcb.cpp:81 #: pcbnew/basepcbframe.cpp:119
msgid "Save current board as.." msgid "3D Frame already opened"
msgstr "Sauver le Circuit Imprim courant sous.." msgstr "Fenetre 3D dj ouverte"
#: pcbnew/menubarpcb.cpp:88 #: pcbnew/basepcbframe.cpp:122
#: eeschema/menubar.cpp:72 msgid "3D Viewer"
#: gerbview/tool_gerber.cpp:89 msgstr "Visu 3D"
msgid "P&rint"
msgstr "Imp&rimer"
#: pcbnew/menubarpcb.cpp:88 #: pcbnew/modedit_onclick.cpp:205
#: eeschema/menubar.cpp:72 #: pcbnew/onrightclick.cpp:151
#: gerbview/tool_gerber.cpp:89 #: eeschema/libedit_onrightclick.cpp:73
msgid "Print on current printer" #: eeschema/onrightclick.cpp:125
msgstr "Imprimer sur l'imprimante par dfaut" #: gerbview/onrightclick.cpp:42
msgid "End Tool"
msgstr "Fin Outil"
#: pcbnew/menubarpcb.cpp:93 #: pcbnew/modedit_onclick.cpp:215
#: eeschema/menubar.cpp:102 #: pcbnew/onrightclick.cpp:494
msgid "&Plot" #: eeschema/libedit_onrightclick.cpp:252
msgstr "&Tracer" #: eeschema/onrightclick.cpp:581
#: gerbview/onrightclick.cpp:51
msgid "Cancel Block"
msgstr "Annuler Bloc"
#: pcbnew/menubarpcb.cpp:94 #: pcbnew/modedit_onclick.cpp:217
msgid "Plot (HPGL, PostScript, or Gerber format)" #: pcbnew/onrightclick.cpp:496
msgstr "Tracer ( format HPGL, POSTSCRIPT ou GERBER)" #: gerbview/onrightclick.cpp:52
msgid "Zoom Block (Midd butt drag)"
msgstr "Zoom Bloc (drag+bouton milieu)"
#: pcbnew/menubarpcb.cpp:102 #: pcbnew/modedit_onclick.cpp:220
msgid "&GenCAD" #: pcbnew/onrightclick.cpp:499
msgstr "&GenCAD" #: eeschema/libedit_onrightclick.cpp:260
#: eeschema/onrightclick.cpp:589
#: gerbview/onrightclick.cpp:54
msgid "Place Block"
msgstr "Place Bloc"
#: pcbnew/menubarpcb.cpp:102 #: pcbnew/modedit_onclick.cpp:222
msgid "Export GenCAD Format" #: pcbnew/onrightclick.cpp:501
msgstr "Exporter en Format GenCAD" #: eeschema/libedit_onrightclick.cpp:266
#: eeschema/onrightclick.cpp:598
#: pcbnew/menubarpcb.cpp:106 msgid "Copy Block (shift + drag mouse)"
msgid "&Module report" msgstr "Copie Bloc (shift + drag mouse)"
msgstr "Rapport &Modules"
#: pcbnew/menubarpcb.cpp:106 #: pcbnew/modedit_onclick.cpp:224
msgid "Create a pcb report (footprint report)" msgid "Mirror Block (alt + drag mouse)"
msgstr "Crer un fichier rapport (rapport sur modules)" msgstr "Bloc Miroir (alt + drag mouse)"
#: pcbnew/menubarpcb.cpp:110 #: pcbnew/modedit_onclick.cpp:226
msgid "E&xport" #: pcbnew/onrightclick.cpp:505
msgstr "E&xporter" msgid "Rotate Block (ctrl + drag mouse)"
msgstr "Rotation Bloc (ctrl + drag mouse)"
#: pcbnew/menubarpcb.cpp:110 #: pcbnew/modedit_onclick.cpp:228
msgid "Export board" #: pcbnew/onrightclick.cpp:507
msgstr "Exporter le C.I." msgid "Delete Block (shift+ctrl + drag mouse)"
msgstr "Effacement Bloc (shift+ctrl + drag mouse)"
#: pcbnew/menubarpcb.cpp:116 #: pcbnew/modedit_onclick.cpp:250
msgid "Add new footprints" #: pcbnew/onrightclick.cpp:713
msgstr "Archiver nouveaux modules" #: pcbnew/onrightclick.cpp:810
msgid "Rotate"
msgstr "Rotation"
#: pcbnew/menubarpcb.cpp:117 #: pcbnew/modedit_onclick.cpp:254
msgid "Archive new footprints only in a library (keep other footprints in this lib)" msgid "Scale"
msgstr "Archiver nouveaux modules seuls dans une librairie (garder les autres modules de cette librairie)" msgstr "Echelle"
#: pcbnew/menubarpcb.cpp:121 #: pcbnew/modedit_onclick.cpp:255
msgid "Create footprint archive" msgid "Scale X"
msgstr "Crer Archive des modules" msgstr "Echelle X"
#: pcbnew/menubarpcb.cpp:122 #: pcbnew/modedit_onclick.cpp:256
msgid "Archive all footprints in a library(old lib will be deleted)" msgid "Scale Y"
msgstr "Archiver tous les modules dans une librairie (ancienne librairie supprime)" msgstr "Echelle Y"
#: pcbnew/menubarpcb.cpp:127 #: pcbnew/modedit_onclick.cpp:259
msgid "Archive footprints" #: pcbnew/dialog_edit_module.cpp:185
msgstr "Archiver modules" msgid "Edit Module"
msgstr "Edit Module"
#: pcbnew/menubarpcb.cpp:128 #: pcbnew/modedit_onclick.cpp:262
msgid "Archive or Add footprints in a library file" msgid "Transform Module"
msgstr "Archiver ou ajouter les modules dans un fichier librairie" msgstr "Transforme Module"
#: pcbnew/menubarpcb.cpp:132 #: pcbnew/modedit_onclick.cpp:270
#: eeschema/menubar.cpp:105 msgid "Move Pad"
#: cvpcb/tool_cvpcb.cpp:125 msgstr "Dplace Pad"
#: kicad/buildmnu.cpp:130
#: gerbview/tool_gerber.cpp:94
msgid "E&xit"
msgstr "&Quitter"
#: pcbnew/menubarpcb.cpp:132 #: pcbnew/modedit_onclick.cpp:272
msgid "Quit pcbnew" #: pcbnew/onrightclick.cpp:752
msgstr "Quitter Pcbnew" msgid "Edit Pad"
msgstr "Edit Pad"
#: pcbnew/menubarpcb.cpp:150 #: pcbnew/modedit_onclick.cpp:274
#: eeschema/menubar.cpp:139 #: pcbnew/onrightclick.cpp:756
msgid "&Libs and Dir" msgid "New Pad Settings"
msgstr "&Libs et Rep" msgstr "Nouvelles Caract. Pads"
#: pcbnew/menubarpcb.cpp:151 #: pcbnew/modedit_onclick.cpp:276
#: eeschema/menubar.cpp:140 #: pcbnew/onrightclick.cpp:758
#: cvpcb/tool_cvpcb.cpp:140 msgid "Export Pad Settings"
msgid "Setting Libraries, Directories and others..." msgstr "Exporte Caract. Pads"
msgstr "Slectionner les librairies et rpertoires"
#: pcbnew/menubarpcb.cpp:155 #: pcbnew/modedit_onclick.cpp:278
#: eeschema/menubar.cpp:145 msgid "delete Pad"
#: gerbview/tool_gerber.cpp:109 msgstr "Supprimer Pad"
msgid "&Colors"
msgstr "&Couleurs"
#: pcbnew/menubarpcb.cpp:156 #: pcbnew/modedit_onclick.cpp:283
msgid "Select Colors and Display for PCB items" #: pcbnew/onrightclick.cpp:763
msgstr "Selection couleurs et affichage des lments du C.I." msgid "Global Pad Settings"
msgstr "Edition Globale des pads"
#: pcbnew/menubarpcb.cpp:160 #: pcbnew/modedit_onclick.cpp:291
msgid "&General Options" msgid "Move Text Mod."
msgstr "Options &gnrales" msgstr "Move Texte Mod."
#: pcbnew/menubarpcb.cpp:161 #: pcbnew/modedit_onclick.cpp:294
msgid "Select general options for pcbnew" msgid "Rotate Text Mod."
msgstr " Slection options gnrales pour pcbnew" msgstr "Rot. Texte Mod."
#: pcbnew/menubarpcb.cpp:165 #: pcbnew/modedit_onclick.cpp:296
msgid "&Display Options" msgid "Edit Text Mod."
msgstr "Options &d'affichage" msgstr "Edit Texte Mod."
#: pcbnew/menubarpcb.cpp:166 #: pcbnew/modedit_onclick.cpp:299
msgid "Select what items are displayed" msgid "Delete Text Mod."
msgstr "Slectionner les lments a afficher" msgstr "Supprimer Texte Mod."
#: pcbnew/menubarpcb.cpp:176 #: pcbnew/modedit_onclick.cpp:306
#: eeschema/menubar.cpp:163 msgid "End edge"
msgid "&Save preferences" msgstr "Fin contour"
msgstr "&Sauver Prfrences"
#: pcbnew/menubarpcb.cpp:177 #: pcbnew/modedit_onclick.cpp:309
#: eeschema/menubar.cpp:164 msgid "Move edge"
#: gerbview/tool_gerber.cpp:124 msgstr "Dplace contour"
msgid "Save application preferences"
msgstr "Sauver prfrences"
#: pcbnew/menubarpcb.cpp:181 #: pcbnew/modedit_onclick.cpp:312
#: eeschema/menubar.cpp:167 msgid "Place edge"
msgid "&Read preferences" msgstr "Place contour"
msgstr "&Lire Prfrences"
#: pcbnew/menubarpcb.cpp:182 #: pcbnew/modedit_onclick.cpp:315
#: eeschema/menubar.cpp:168 #: pcbnew/onrightclick.cpp:681
msgid "Read application preferences" #: pcbnew/onrightclick.cpp:715
msgstr "Lire prfrences de l'application" #: pcbnew/onrightclick.cpp:812
#: eeschema/onrightclick.cpp:312
msgid "Edit"
msgstr "Editer"
#: pcbnew/menubarpcb.cpp:194 #: pcbnew/modedit_onclick.cpp:317
msgid "Tracks and Vias" msgid "Edit Width (Current)"
msgstr "Pistes et vias" msgstr "Edit Epaisseur (Courant)"
#: pcbnew/menubarpcb.cpp:195 #: pcbnew/modedit_onclick.cpp:319
msgid "Adjust size and width for tracks, vias" msgid "Edit Width (All)"
msgstr "Ajuster dims et taille des pistes et vias" msgstr "Edit Epaisseur (Tous)"
#: pcbnew/menubarpcb.cpp:199 #: pcbnew/modedit_onclick.cpp:321
#: pcbnew/menubarmodedit.cpp:50 msgid "Edit Layer (Current)"
#: pcbnew/set_grid.h:39 msgstr "Edit Couche (Courant)"
msgid "User Grid Size"
msgstr "Dim Grille utilisteur"
#: pcbnew/menubarpcb.cpp:200 #: pcbnew/modedit_onclick.cpp:323
#: pcbnew/menubarmodedit.cpp:51 msgid "Edit Layer (All)"
msgid "Adjust User Grid" msgstr "Edit Couche (Tous)"
msgstr "Ajuster Grille utilisateur"
#: pcbnew/menubarpcb.cpp:204 #: pcbnew/modedit_onclick.cpp:325
#: pcbnew/dialog_graphic_items_options.h:38 msgid "Delete edge"
msgid "Texts and Drawings" msgstr "Effacement contour"
msgstr "Textes et Tracs"
#: pcbnew/menubarpcb.cpp:205 #: pcbnew/modedit_onclick.cpp:366
#: pcbnew/menubarmodedit.cpp:41 msgid "Set Width"
msgid "Adjust width for texts and drawings" msgstr "Ajuste Epaiss"
msgstr "Ajuster dims pour textes et graphiques"
#: pcbnew/menubarpcb.cpp:210 #: pcbnew/set_color.cpp:149
#: pcbnew/menubarmodedit.cpp:46 msgid "Colors:"
msgid "Adjust size,shape,layers... for Pads" msgstr "Couleurs:"
msgstr "Ajuster taille, forme, couches... pour pads"
#: pcbnew/menubarpcb.cpp:215 #: pcbnew/set_color.cpp:264
#: gerbview/tool_gerber.cpp:123 #: gerbview/set_color.cpp:236
msgid "&Save Setup" msgid "Show All"
msgstr "&Sauver Options" msgstr "Tout Afficher"
#: pcbnew/menubarpcb.cpp:216 #: pcbnew/set_color.cpp:270
msgid "Save options in current directory" #: gerbview/set_color.cpp:241
msgstr "Sauver les options en rpertoire de travail" msgid "Show None"
msgstr "Rien Afficher"
#: pcbnew/menubarpcb.cpp:225 #: pcbnew/set_color.cpp:285
msgid "Create &Modules Pos" #: cvpcb/dialog_display_options.cpp:199
msgstr "Crer &Modules Pos" #: gerbview/set_color.cpp:257
msgid "Apply"
msgstr "Appliquer"
#: pcbnew/menubarpcb.cpp:226 #: pcbnew/dialog_setup_libs.cpp:191
msgid "Gen Position modules file" #: eeschema/eestatus.cpp:139
msgstr "Gen fichier Position des Modules" #: eeschema/dialog_eeschema_config.cpp:211
#: cvpcb/menucfg.cpp:231
#: cvpcb/dialog_cvpcb_config.cpp:181
msgid "Libraries"
msgstr "Librairies"
#: pcbnew/menubarpcb.cpp:230 #: pcbnew/tool_modedit.cpp:53
msgid "Create &Drill file" #: eeschema/tool_lib.cpp:123
msgstr "Crer &Fichier de percage" msgid "Select working library"
msgstr "Slection de la librairie de travail"
#: pcbnew/menubarpcb.cpp:231
msgid "Gen Drill (EXCELLON] file and/or Drill sheet"
msgstr "Gen fichier de percage (EXCELLON] et/ou plan de percage"
#: pcbnew/menubarpcb.cpp:235
msgid "Create &Cmp file"
msgstr "Crer &Fichier Cmp"
#: pcbnew/menubarpcb.cpp:236
msgid "Recreate .cmp file for CvPcb"
msgstr "Recrer le fichier .cmp pour CvPcb"
#: pcbnew/menubarpcb.cpp:244
msgid "Global &Deletions"
msgstr "Effacements &Gnraux"
#: pcbnew/menubarpcb.cpp:245
msgid "Delete Tracks, Modules, Texts... on Board"
msgstr "Effacer Pistes, Modules, Textes... sur le C.I."
#: pcbnew/menubarpcb.cpp:249
msgid "&List nets"
msgstr "&Liste quipots"
#: pcbnew/menubarpcb.cpp:250
msgid "List nets (names and id)"
msgstr "Lister quipotentielles (noms et numros d'identification)"
#: pcbnew/menubarpcb.cpp:254
msgid "&Clean tracks"
msgstr "&Nettoyage pistes"
#: pcbnew/menubarpcb.cpp:255
msgid "Clean stubs, vias, delete break points"
msgstr "Nettoyer bouts de pistes, vias, points inutiles..."
#: pcbnew/menubarpcb.cpp:259
msgid "&Swap layers"
msgstr "&Permutte couches"
#: pcbnew/menubarpcb.cpp:260
msgid "Swap tracks on copper layers or drawings on others layers"
msgstr "Permutation de couches"
#: pcbnew/menubarpcb.cpp:268
#: pcbnew/menubarmodedit.cpp:60
#: eeschema/menubar.cpp:178
#: cvpcb/tool_cvpcb.cpp:158
#: kicad/buildmnu.cpp:198
#: gerbview/tool_gerber.cpp:150
msgid "&Contents"
msgstr "&Contenu"
#: pcbnew/menubarpcb.cpp:268
#: pcbnew/menubarmodedit.cpp:60
msgid "Open the pcbnew manual"
msgstr "Ouvrir la documentation de pcbnew"
#: pcbnew/menubarpcb.cpp:272
#: pcbnew/menubarmodedit.cpp:64
#: eeschema/menubar.cpp:183
#: cvpcb/tool_cvpcb.cpp:162
#: kicad/buildmnu.cpp:203
#: gerbview/tool_gerber.cpp:152
msgid "&About"
msgstr "&Infos logiciel"
#: pcbnew/menubarpcb.cpp:272 #: pcbnew/tool_modedit.cpp:56
#: pcbnew/menubarmodedit.cpp:64 msgid "Save Module in working library"
#: eeschema/menubar.cpp:183 msgstr "Sauver Module en librairie de travail"
#: cvpcb/tool_cvpcb.cpp:163
#: kicad/buildmnu.cpp:203
#: gerbview/tool_gerber.cpp:153
msgid "About this application"
msgstr "Au sujet de cette application"
#: pcbnew/menubarpcb.cpp:280 #: pcbnew/tool_modedit.cpp:60
#: pcbnew/menubarmodedit.cpp:72 msgid "Create new library and save current module"
msgid "3D Display" msgstr "Crer une nouvelle librairie et y sauver le composant"
msgstr "3D Visu"
#: pcbnew/menubarpcb.cpp:280 #: pcbnew/tool_modedit.cpp:65
#: pcbnew/menubarmodedit.cpp:72 #: eeschema/tool_lib.cpp:126
msgid "Show Board in 3D Mode" msgid "Delete part in current library"
msgstr "Visualisation en 3D" msgstr "Supprimer composant en librairie de travail"
#: pcbnew/menubarpcb.cpp:284 #: pcbnew/tool_modedit.cpp:74
#: eeschema/menubar.cpp:188 msgid "Load module from lib"
#: cvpcb/tool_cvpcb.cpp:167 msgstr "Charger un module a partir d'une librairie"
#: gerbview/tool_gerber.cpp:155
#: 3d-viewer/3d_toolbar.cpp:111
msgid "&File"
msgstr "&Fichiers"
#: pcbnew/menubarpcb.cpp:285 #: pcbnew/tool_modedit.cpp:79
#: eeschema/menubar.cpp:190 msgid "Load module from current board"
#: cvpcb/tool_cvpcb.cpp:168 msgstr "Charger module a partir du C.I."
#: kicad/buildmnu.cpp:210
#: gerbview/tool_gerber.cpp:156
#: 3d-viewer/3d_toolbar.cpp:119
msgid "&Preferences"
msgstr "&Prfrences"
#: pcbnew/menubarpcb.cpp:286 #: pcbnew/tool_modedit.cpp:83
#: pcbnew/menubarmodedit.cpp:76 msgid "Update module in current board"
msgid "&Dimensions" msgstr "Remplacer module dans le C.I."
msgstr "&Dimensions"
#: pcbnew/menubarpcb.cpp:287 #: pcbnew/tool_modedit.cpp:87
#: gerbview/tool_gerber.cpp:157 msgid "Insert module into current board"
msgid "&Miscellaneous" msgstr "Placer module dans le C.I."
msgstr "&Divers"
#: pcbnew/menubarpcb.cpp:288 #: pcbnew/tool_modedit.cpp:92
msgid "P&ostprocess" msgid "import module"
msgstr "P&ostprocesseurs" msgstr "Importer Module"
#: pcbnew/menubarpcb.cpp:289 #: pcbnew/tool_modedit.cpp:96
#: pcbnew/menubarmodedit.cpp:77 msgid "export module"
msgid "&3D Display" msgstr "Exporter Module"
msgstr "&3D Visu"
#: pcbnew/menubarpcb.cpp:290 #: pcbnew/tool_modedit.cpp:101
#: pcbnew/menubarmodedit.cpp:78 #: eeschema/menubar.cpp:125
#: eeschema/menubar.cpp:191 #: eeschema/tool_lib.cpp:150
#: cvpcb/tool_cvpcb.cpp:169 #: eeschema/tool_sch.cpp:90
#: kicad/buildmnu.cpp:211 msgid "Undo last edition"
#: gerbview/tool_gerber.cpp:160 msgstr "Defait dernire dition"
msgid "&Help"
msgstr "&Aide"
#: pcbnew/class_board_item.cpp:36 #: pcbnew/tool_modedit.cpp:103
#: pcbnew/class_pad.cpp:889 #: eeschema/menubar.cpp:132
msgid "Net" #: eeschema/tool_lib.cpp:152
msgstr "Net" #: eeschema/tool_sch.cpp:93
msgid "Redo the last undo command"
msgstr "Refait la dernire commande defaite"
#: pcbnew/class_board_item.cpp:41 #: pcbnew/tool_modedit.cpp:108
#: eeschema/component_class.cpp:56 msgid "Module Properties"
msgid "Footprint" msgstr "Proprits du Module"
msgstr "Module"
#: pcbnew/class_board_item.cpp:47 #: pcbnew/tool_modedit.cpp:112
msgid "Pad" msgid "Print Module"
msgstr "Pad" msgstr "Imprimer Module"
#: pcbnew/class_board_item.cpp:50 #: pcbnew/tool_modedit.cpp:137
msgid "all copper layers" msgid "Module Check"
msgstr "Toutes Couches Cuivre" msgstr "Test module"
#: pcbnew/class_board_item.cpp:52 #: pcbnew/tool_modedit.cpp:163
msgid "copper layer" msgid "Add Pads"
msgstr "Couche Cuivre" msgstr "Addition de \"pins\""
#: pcbnew/class_board_item.cpp:54 #: pcbnew/tool_modedit.cpp:245
msgid "cmp layer" msgid "Show Texts Sketch"
msgstr "Couche Cmp" msgstr "Afficher textes en contour"
#: pcbnew/class_board_item.cpp:55 #: pcbnew/tool_modedit.cpp:252
msgid "???" msgid "Show Edges Sketch"
msgstr "???" msgstr "Afficher Modules en contour"
#: pcbnew/class_board_item.cpp:56 #: pcbnew/tool_modedit.cpp:289
msgid ") of " #, c-format
msgstr ") de " msgid "Zoom %d"
msgstr "Zoom %d"
#: pcbnew/class_board_item.cpp:60 #: pcbnew/tool_modedit.cpp:308
msgid "Pcb Graphic" #, c-format
msgstr "Pcb Graphic" msgid "Grid %.1f"
msgstr "Grille %.1f"
#: pcbnew/class_board_item.cpp:60 #: pcbnew/tool_modedit.cpp:310
#: pcbnew/class_board_item.cpp:69 #, c-format
#: pcbnew/class_board_item.cpp:146 msgid "Grid %.3f"
#: pcbnew/class_board_item.cpp:164 msgstr "Grille %.3f"
#: pcbnew/class_board_item.cpp:191
#: pcbnew/class_board_item.cpp:213
msgid " on "
msgstr " sur "
#: pcbnew/class_board_item.cpp:64 #: pcbnew/dialog_graphic_items_options.cpp:192
msgid "Pcb Text" msgid "Graphics:"
msgstr "Texte Pcb" msgstr "Elments graphiques;"
#: pcbnew/class_board_item.cpp:80 #: pcbnew/dialog_graphic_items_options.cpp:196
#: pcbnew/class_board_item.cpp:86 msgid "Graphic segm Width"
#: pcbnew/class_board_item.cpp:130 msgstr "Epaiss. segm graphique"
msgid " of "
msgstr " de "
#: pcbnew/class_board_item.cpp:93 #: pcbnew/dialog_graphic_items_options.cpp:202
msgid "Graphic" msgid "Board Edges Width"
msgstr "Graphique" msgstr "Epaiss. contour pcb"
#: pcbnew/class_board_item.cpp:105 #: pcbnew/dialog_graphic_items_options.cpp:208
msgid "Arc" msgid "Copper Text Width"
msgstr "Arc" msgstr "Epaisseur Texte sur cuivre"
#: pcbnew/class_board_item.cpp:147 #: pcbnew/dialog_graphic_items_options.cpp:214
msgid "Net:" msgid "Text Size V"
msgstr "Net:" msgstr "Hauteur texte"
#: pcbnew/class_board_item.cpp:148 #: pcbnew/dialog_graphic_items_options.cpp:220
msgid "Length:" msgid "Text Size H"
msgstr "Long.:" msgstr "Largeur texte"
#: pcbnew/class_board_item.cpp:153 #: pcbnew/dialog_graphic_items_options.cpp:228
#: pcbnew/class_track.cpp:757 msgid "Modules:"
msgid "Zone" msgstr "Modules: "
msgstr "Zone"
#: pcbnew/class_board_item.cpp:174 #: pcbnew/dialog_graphic_items_options.cpp:232
msgid "Blind" msgid "Edges Module Width"
msgstr "Enterre" msgstr "Epaiss. contor module"
#: pcbnew/class_board_item.cpp:176 #: pcbnew/dialog_graphic_items_options.cpp:238
msgid "Buried" msgid "Text Module Width"
msgstr "Borgne" msgstr "Epaisseur Texte Module"
#: pcbnew/class_board_item.cpp:202 #: pcbnew/dialog_graphic_items_options.cpp:244
msgid "Dimension" msgid "Text Module Size V"
msgstr "Dimension" msgstr "Hauteur Texte Module"
#: pcbnew/class_board_item.cpp:206 #: pcbnew/dialog_graphic_items_options.cpp:250
msgid "Target" msgid "Text Module Size H"
msgstr "Mire" msgstr "Largeur Texte Module"
#: pcbnew/class_board_item.cpp:213 #: pcbnew/dialog_edit_module.cpp:39
msgid "Edge Zone" msgid "Module properties"
msgstr "Contour Zone" msgstr "Proprits du Module"
#: pcbnew/automove.cpp:212 #: pcbnew/dialog_edit_module.cpp:94
msgid "Move Modules ?" msgid "Properties"
msgstr "Dplacer Modules ?" msgstr "Proprits"
#: pcbnew/automove.cpp:221 #: pcbnew/dialog_edit_module.cpp:98
msgid "Autoplace modules: No boad edges detected, unable to place modules" #: pcbnew/dialog_edit_module.cpp:107
msgstr "Autoplace modules: pas de contours sur pcb, impossible de placer les modules" #: pcbnew/dialog_edit_module.cpp:136
msgid "3D settings"
msgstr "3D Caract"
#: pcbnew/automove.cpp:344 #: pcbnew/dialog_edit_module.cpp:181
#, c-format msgid "Change module(s)"
msgid "Ok to set module orientation to %d degrees ?" msgstr "Change module(s)"
msgstr "Ok pour orientation module %d degrs ?"
#: pcbnew/class_pad.cpp:797 #: pcbnew/dialog_edit_module.cpp:192
msgid "Unknown Pad shape" #: eeschema/dialog_edit_component_in_lib.cpp:203
msgstr "Forme pad inconnue" #: eeschema/onrightclick.cpp:348
msgid "Doc"
msgstr "Doc"
#: pcbnew/class_pad.cpp:886 #: pcbnew/dialog_edit_module.cpp:199
msgid "RefP" msgid "Keywords"
msgstr "RefP" msgstr "Mots Cles"
#: pcbnew/class_pad.cpp:1003 #: pcbnew/dialog_edit_module.cpp:206
msgid "Drill X / Y" msgid "Fields:"
msgstr "Perage X/Y" msgstr "Champs:"
#: pcbnew/class_pad.cpp:1018 #: pcbnew/dialog_edit_module.cpp:216
msgid "X Pos" msgid "Add Field"
msgstr "X Pos" msgstr "Ajouter Champ"
#: pcbnew/class_pad.cpp:1022 #: pcbnew/dialog_edit_module.cpp:221
msgid "Y pos" #: eeschema/onrightclick.cpp:268
msgstr "Y pos" msgid "Edit Field"
msgstr "Editer Champ"
#: pcbnew/basepcbframe.cpp:119 #: pcbnew/dialog_edit_module.cpp:226
msgid "3D Frame already opened" msgid "Delete Field"
msgstr "Fenetre 3D dj ouverte" msgstr "Supprimer Champ"
#: pcbnew/basepcbframe.cpp:122 #: pcbnew/dialog_edit_module.cpp:233
msgid "3D Viewer" #: common/common.cpp:280
msgstr "Visu 3D" msgid "Component"
msgstr "Composant"
#: pcbnew/modedit_onclick.cpp:205 #: pcbnew/dialog_edit_module.cpp:233
#: pcbnew/onrightclick.cpp:151 msgid "Copper"
#: eeschema/libedit_onrightclick.cpp:73 msgstr "Cuivre"
#: eeschema/onrightclick.cpp:125
#: gerbview/onrightclick.cpp:42
msgid "End Tool"
msgstr "Fin Outil"
#: pcbnew/modedit_onclick.cpp:215 #: pcbnew/dialog_edit_module.cpp:278
#: pcbnew/onrightclick.cpp:494 msgid "Orient (0.1 deg)"
#: eeschema/libedit_onrightclick.cpp:252 msgstr "Orient (0.1 deg)"
#: eeschema/onrightclick.cpp:581
#: gerbview/onrightclick.cpp:51
msgid "Cancel Block"
msgstr "Annuler Bloc"
#: pcbnew/modedit_onclick.cpp:217 #: pcbnew/dialog_edit_module.cpp:288
#: pcbnew/onrightclick.cpp:496 msgid "Normal+Insert"
#: gerbview/onrightclick.cpp:52 msgstr "Normal+Insert"
msgid "Zoom Block (Midd butt drag)"
msgstr "Zoom Bloc (drag+bouton milieu)"
#: pcbnew/modedit_onclick.cpp:220 #: pcbnew/dialog_edit_module.cpp:288
#: pcbnew/onrightclick.cpp:499 msgid "Virtual"
#: eeschema/libedit_onrightclick.cpp:260 msgstr "Virtuel"
#: eeschema/onrightclick.cpp:589
#: gerbview/onrightclick.cpp:54
msgid "Place Block"
msgstr "Place Bloc"
#: pcbnew/modedit_onclick.cpp:222 #: pcbnew/dialog_edit_module.cpp:289
#: pcbnew/onrightclick.cpp:501 msgid "Attributes"
#: eeschema/libedit_onrightclick.cpp:266 msgstr "Attributs"
#: eeschema/onrightclick.cpp:598
msgid "Copy Block (shift + drag mouse)"
msgstr "Copie Bloc (shift + drag mouse)"
#: pcbnew/modedit_onclick.cpp:224 #: pcbnew/dialog_edit_module.cpp:292
msgid "Mirror Block (alt + drag mouse)" msgid "Use this attribute for most non smd components"
msgstr "Bloc Miroir (alt + drag mouse)" msgstr "Utiliser cet attribut pour la plupart des composants"
#: pcbnew/modedit_onclick.cpp:226 #: pcbnew/dialog_edit_module.cpp:294
#: pcbnew/onrightclick.cpp:505 msgid ""
msgid "Rotate Block (ctrl + drag mouse)" "Use this attribute for smd components.\n"
msgstr "Rotation Bloc (ctrl + drag mouse)" "Only components with this option are put in the footprint position list file"
msgstr ""
"Uiliser cet attribut pour les composants CMS.\n"
"Seuls les composants avec cette option sont mis dans le fichier de position des composants"
#: pcbnew/modedit_onclick.cpp:228 #: pcbnew/dialog_edit_module.cpp:296
#: pcbnew/onrightclick.cpp:507 msgid "Use this attribute for \"virtual\" components drawn on board (like a old ISA PC bus connector)"
msgid "Delete Block (shift+ctrl + drag mouse)" msgstr "Uiliser cet attribut pour les composants \"virtuels\" directement dessins sur le PCB (tel que les vieux connecteurs ISA de PC)"
msgstr "Effacement Bloc (shift+ctrl + drag mouse)"
#: pcbnew/modedit_onclick.cpp:250 #: pcbnew/dialog_edit_module.cpp:320
#: pcbnew/onrightclick.cpp:713 msgid "Free"
#: pcbnew/onrightclick.cpp:810 msgstr "Libre"
msgid "Rotate"
msgstr "Rotation"
#: pcbnew/modedit_onclick.cpp:254 #: pcbnew/dialog_edit_module.cpp:320
msgid "Scale" msgid "Locked"
msgstr "Echelle" msgstr "Verrouill"
#: pcbnew/modedit_onclick.cpp:255 #: pcbnew/dialog_edit_module.cpp:322
msgid "Scale X" msgid "Move and Auto Place"
msgstr "Echelle X" msgstr "Move et Placement Automatique"
#: pcbnew/modedit_onclick.cpp:256 #: pcbnew/dialog_edit_module.cpp:327
msgid "Scale Y" msgid "Enable hotkey move commands and Auto Placement"
msgstr "Echelle Y" msgstr "Autoriser les commandes clavier de dplacement et l'auto placement"
#: pcbnew/modedit_onclick.cpp:259 #: pcbnew/dialog_edit_module.cpp:328
#: pcbnew/dialog_edit_module.cpp:185 msgid "Disable hotkey move commands and Auto Placement"
msgid "Edit Module" msgstr "Interdire les commandes clavier de dplacement et l'auto placement"
msgstr "Edit Module"
#: pcbnew/modedit_onclick.cpp:262 #: pcbnew/dialog_edit_module.cpp:332
msgid "Transform Module" msgid "Rot 90"
msgstr "Transforme Module" msgstr "Rot 90"
#: pcbnew/modedit_onclick.cpp:270 #: pcbnew/dialog_edit_module.cpp:340
msgid "Move Pad" msgid "Rot 180"
msgstr "Dplace Pad" msgstr "Rot 180"
#: pcbnew/modedit_onclick.cpp:272 #: pcbnew/dialog_edit_module.cpp:377
#: pcbnew/onrightclick.cpp:752 msgid "3D Shape Name"
msgid "Edit Pad" msgstr "3D forme"
msgstr "Edit Pad"
#: pcbnew/modedit_onclick.cpp:274 #: pcbnew/dialog_edit_module.cpp:394
#: pcbnew/onrightclick.cpp:756 #: pcbnew/dialog_drc.cpp:208
msgid "New Pad Settings" #: eeschema/dialog_eeschema_config.cpp:227
msgstr "Nouvelles Caract. Pads" msgid "Browse"
msgstr "Examiner"
#: pcbnew/modedit_onclick.cpp:276 #: pcbnew/dialog_edit_module.cpp:398
#: pcbnew/onrightclick.cpp:758 msgid "Add 3D Shape"
msgid "Export Pad Settings" msgstr "Ajout Forme 3D"
msgstr "Exporte Caract. Pads"
#: pcbnew/modedit_onclick.cpp:278 #: pcbnew/dialog_edit_module.cpp:404
msgid "delete Pad" msgid "Remove 3D Shape"
msgstr "Supprimer Pad" msgstr "Suppr. Forme 3D:"
#: pcbnew/modedit_onclick.cpp:283 #: pcbnew/dialog_edit_module.cpp:410
#: pcbnew/onrightclick.cpp:763 msgid "Shape Scale:"
msgid "Global Pad Settings" msgstr "Echelle de la forme:"
msgstr "Edition Globale des pads"
#: pcbnew/modedit_onclick.cpp:291 #: pcbnew/dialog_edit_module.cpp:417
msgid "Move Text Mod." msgid "Shape Offset:"
msgstr "Move Texte Mod." msgstr "Offset forme:"
#: pcbnew/modedit_onclick.cpp:294 #: pcbnew/dialog_edit_module.cpp:426
msgid "Rotate Text Mod." msgid "Shape Rotation:"
msgstr "Rot. Texte Mod." msgstr "Rot de la forme"
#: pcbnew/modedit_onclick.cpp:296 #: pcbnew/dialog_edit_module.cpp:466
msgid "Edit Text Mod." msgid "3D Shape:"
msgstr "Edit Texte Mod." msgstr "Forme 3D:"
#: pcbnew/modedit_onclick.cpp:299 #: pcbnew/dialog_edit_module.cpp:771
msgid "Delete Text Mod." msgid "Reference or Value cannot be deleted"
msgstr "Supprimer Texte Mod." msgstr "Rfrence ou Valeur ne peut etre efface"
#: pcbnew/modedit_onclick.cpp:306 #: pcbnew/dialog_edit_module.cpp:775
msgid "End edge" #, c-format
msgstr "Fin contour" msgid "Delete [%s]"
msgstr "Supprimer [%s]"
#: pcbnew/modedit_onclick.cpp:309 #: pcbnew/class_edge_mod.cpp:283
msgid "Move edge" msgid "Seg"
msgstr "Dplace contour" msgstr "Seg"
#: pcbnew/modedit_onclick.cpp:312 #: pcbnew/class_edge_mod.cpp:289
msgid "Place edge" #: pcbnew/class_module.cpp:1112
msgstr "Place contour" msgid "TimeStamp"
msgstr "TimeStamp"
#: pcbnew/modedit_onclick.cpp:315 #: pcbnew/class_edge_mod.cpp:291
#: pcbnew/onrightclick.cpp:681 msgid "Mod Layer"
#: pcbnew/onrightclick.cpp:715 msgstr "Couche Mod."
#: pcbnew/onrightclick.cpp:812
#: eeschema/onrightclick.cpp:312
msgid "Edit"
msgstr "Editer"
#: pcbnew/modedit_onclick.cpp:317 #: pcbnew/class_edge_mod.cpp:293
msgid "Edit Width (Current)" msgid "Seg Layer"
msgstr "Edit Epaisseur (Courant)" msgstr "Couche Seg."
#: pcbnew/modedit_onclick.cpp:319 #: pcbnew/swap_layers.cpp:59
msgid "Edit Width (All)" msgid "Swap Layers:"
msgstr "Edit Epaisseur (Tous)" msgstr "Permutte couches"
#: pcbnew/modedit_onclick.cpp:321 #: pcbnew/swap_layers.cpp:75
msgid "Edit Layer (Current)" #: pcbnew/swap_layers.cpp:129
msgstr "Edit Couche (Courant)" #: pcbnew/swap_layers.cpp:162
msgid "No Change"
msgstr "Garder"
#: pcbnew/modedit_onclick.cpp:323 #: pcbnew/swap_layers.cpp:80
msgid "Edit Layer (All)" #: gerbview/select_layers_to_pcb.cpp:134
msgstr "Edit Couche (Tous)" msgid "Layers"
msgstr "Couches"
#: pcbnew/modedit_onclick.cpp:325 #: pcbnew/swap_layers.cpp:88
msgid "Delete edge" #: gerbview/select_layers_to_pcb.cpp:152
msgstr "Effacement contour" msgid "Select..."
msgstr "Slection..."
#: pcbnew/modedit_onclick.cpp:366 #: pcbnew/swap_layers.cpp:93
msgid "Set Width" #: gerbview/select_layers_to_pcb.cpp:156
msgstr "Ajuste Epaiss" msgid "Deselect"
msgstr "Deselection"
#: pcbnew/set_color.cpp:149 #: pcbnew/swap_layers.cpp:150
msgid "Colors:" msgid "Deselect this layer to restore its No Change state"
msgstr "Couleurs:" msgstr "Deselectionner cette couche pour restorer l'option Pas de Changement"
#: pcbnew/set_color.cpp:264 #: pcbnew/moduleframe.cpp:177
#: gerbview/set_color.cpp:236 msgid "Module Editor: module modified!, Continue ?"
msgid "Show All" msgstr "Editeur de Module: module modifi! Continuer ?"
msgstr "Tout Afficher"
#: pcbnew/set_color.cpp:270 #: pcbnew/cross-probing.cpp:51
#: gerbview/set_color.cpp:241 #, c-format
msgid "Show None" msgid "Locate module %s %s"
msgstr "Rien Afficher" msgstr "Module localis %s %s"
#: pcbnew/set_color.cpp:285 #: pcbnew/cross-probing.cpp:104
#: cvpcb/dialog_display_options.cpp:199 #, c-format
#: gerbview/set_color.cpp:257 msgid "module %s not found"
msgid "Apply" msgstr "module %s non trouv"
msgstr "Appliquer"
#: pcbnew/dialog_setup_libs.cpp:191 #: pcbnew/cross-probing.cpp:106
#: eeschema/eestatus.cpp:139 #, c-format
#: eeschema/dialog_eeschema_config.cpp:211 msgid "Pin %s (module %s) not found"
#: cvpcb/menucfg.cpp:231 msgstr "Pin %s (module %s) non trouve"
#: cvpcb/dialog_cvpcb_config.cpp:181
msgid "Libraries"
msgstr "Librairies"
#: pcbnew/tool_modedit.cpp:53 #: pcbnew/cross-probing.cpp:108
#: eeschema/tool_lib.cpp:123 #, c-format
msgid "Select working library" msgid "Locate Pin %s (module %s)"
msgstr "Slection de la librairie de travail" msgstr "Pin localise %s (module %s)"
#: pcbnew/tool_modedit.cpp:56 #: pcbnew/gen_modules_placefile.cpp:76
msgid "Save Module in working library" msgid "No Modules for Automated Placement"
msgstr "Sauver Module en librairie de travail" msgstr "Pas de Module pour placement Automatis"
#: pcbnew/tool_modedit.cpp:60 #: pcbnew/gen_modules_placefile.cpp:110
msgid "Create new library and save current module" msgid "Component side place file:"
msgstr "Crer une nouvelle librairie et y sauver le composant" msgstr "Fichier placement cot composant:"
#: pcbnew/tool_modedit.cpp:65 #: pcbnew/gen_modules_placefile.cpp:113
#: eeschema/tool_lib.cpp:126 msgid "Copper side place file:"
msgid "Delete part in current library" msgstr "Fichier placement cot cuivre:"
msgstr "Supprimer composant en librairie de travail"
#: pcbnew/tool_modedit.cpp:74 #: pcbnew/gen_modules_placefile.cpp:116
msgid "Load module from lib" msgid "Module count"
msgstr "Charger un module a partir d'une librairie" msgstr "Nb Modules"
#: pcbnew/tool_modedit.cpp:79 #: pcbnew/onrightclick.cpp:83
msgid "Load module from current board" #, c-format
msgstr "Charger module a partir du C.I." msgid "Track %.1f"
msgstr "Piste %.1f"
#: pcbnew/tool_modedit.cpp:83 #: pcbnew/onrightclick.cpp:85
msgid "Update module in current board" #, c-format
msgstr "Remplacer module dans le C.I." msgid "Track %.3f"
msgstr "Piste %.3f"
#: pcbnew/tool_modedit.cpp:87 #: pcbnew/onrightclick.cpp:101
msgid "Insert module into current board" #, c-format
msgstr "Placer module dans le C.I." msgid "Via %.1f"
msgstr "Via %.1f"
#: pcbnew/tool_modedit.cpp:92 #: pcbnew/onrightclick.cpp:103
msgid "import module" #, c-format
msgstr "Importer Module" msgid "Via %.3f"
msgstr "Via %.3f"
#: pcbnew/tool_modedit.cpp:96 #: pcbnew/onrightclick.cpp:234
msgid "export module" msgid "Lock Module"
msgstr "Exporter Module" msgstr "Verrouiller Modules"
#: pcbnew/tool_modedit.cpp:101 #: pcbnew/onrightclick.cpp:242
#: eeschema/menubar.cpp:125 msgid "Unlock Module"
#: eeschema/tool_lib.cpp:150 msgstr "Dverrouiller Modules"
#: eeschema/tool_sch.cpp:90
msgid "Undo last edition"
msgstr "Defait dernire dition"
#: pcbnew/tool_modedit.cpp:103 #: pcbnew/onrightclick.cpp:250
#: eeschema/menubar.cpp:132 msgid "Auto place Module"
#: eeschema/tool_lib.cpp:152 msgstr "Auto place Module"
#: eeschema/tool_sch.cpp:93
msgid "Redo the last undo command"
msgstr "Refait la dernire commande defaite"
#: pcbnew/tool_modedit.cpp:108 #: pcbnew/onrightclick.cpp:256
msgid "Module Properties" msgid "Autoroute"
msgstr "Proprits du Module" msgstr "Autoroute"
#: pcbnew/tool_modedit.cpp:112 #: pcbnew/onrightclick.cpp:272
msgid "Print Module" msgid "Move Drawing"
msgstr "Imprimer Module" msgstr "Dplace Trac"
#: pcbnew/tool_modedit.cpp:137 #: pcbnew/onrightclick.cpp:277
msgid "Module Check" msgid "End Drawing"
msgstr "Test module" msgstr "Fin trac"
#: pcbnew/tool_modedit.cpp:163 #: pcbnew/onrightclick.cpp:279
msgid "Add Pads" msgid "Edit Drawing"
msgstr "Addition de \"pins\"" msgstr "Edit Trac"
#: pcbnew/tool_modedit.cpp:245 #: pcbnew/onrightclick.cpp:280
msgid "Show Texts Sketch" msgid "Delete Drawing"
msgstr "Afficher textes en contour" msgstr "Supprimer Trac"
#: pcbnew/tool_modedit.cpp:252 #: pcbnew/onrightclick.cpp:287
msgid "Show Edges Sketch" msgid "End edge zone"
msgstr "Afficher Modules en contour" msgstr "Fin contour Zone"
#: pcbnew/tool_modedit.cpp:289 #: pcbnew/onrightclick.cpp:290
#, c-format msgid "Delete edge zone"
msgid "Zoom %d" msgstr "Supprimer Contour Zone"
msgstr "Zoom %d"
#: pcbnew/tool_modedit.cpp:308 #: pcbnew/onrightclick.cpp:305
#, c-format msgid "Edit Zone"
msgid "Grid %.1f" msgstr "Editer Zone"
msgstr "Grille %.1f"
#: pcbnew/tool_modedit.cpp:310 #: pcbnew/onrightclick.cpp:307
#, c-format msgid "Delete Zone"
msgid "Grid %.3f" msgstr "Supprimer Zone"
msgstr "Grille %.3f"
#: pcbnew/onrightclick.cpp:312
msgid "Delete Marker"
msgstr "Effacer Marqueur"
#: pcbnew/dialog_graphic_items_options.cpp:192 #: pcbnew/onrightclick.cpp:319
msgid "Graphics:" msgid "Edit Dimension"
msgstr "Elments graphiques;" msgstr "Edit Cote"
#: pcbnew/dialog_graphic_items_options.cpp:196 #: pcbnew/onrightclick.cpp:322
msgid "Graphic segm Width" msgid "Delete Dimension"
msgstr "Epaiss. segm graphique" msgstr "Suppression Cote"
#: pcbnew/dialog_graphic_items_options.cpp:202 #: pcbnew/onrightclick.cpp:329
msgid "Board Edges Width" msgid "Move Target"
msgstr "Epaiss. contour pcb" msgstr "Dplacer Mire"
#: pcbnew/dialog_graphic_items_options.cpp:208 #: pcbnew/onrightclick.cpp:332
msgid "Copper Text Width" msgid "Edit Target"
msgstr "Epaisseur Texte sur cuivre" msgstr "Editer Mire"
#: pcbnew/dialog_graphic_items_options.cpp:214 #: pcbnew/onrightclick.cpp:334
msgid "Text Size V" msgid "Delete Target"
msgstr "Hauteur texte" msgstr "Supprimer Mire"
#: pcbnew/dialog_graphic_items_options.cpp:220 #: pcbnew/onrightclick.cpp:361
msgid "Text Size H" msgid "Get and Move Footprint"
msgstr "Largeur texte" msgstr "Sel et Dpl.t module"
#: pcbnew/dialog_graphic_items_options.cpp:228 #: pcbnew/onrightclick.cpp:373
msgid "Modules:" msgid "Fill zone"
msgstr "Modules: " msgstr "Remplir zone"
#: pcbnew/dialog_graphic_items_options.cpp:232 #: pcbnew/onrightclick.cpp:381
msgid "Edges Module Width" msgid "Select Net"
msgstr "Epaiss. contor module" msgstr "Slection Net"
#: pcbnew/dialog_graphic_items_options.cpp:238 #: pcbnew/onrightclick.cpp:386
msgid "Text Module Width" msgid "Delete Zone Limit"
msgstr "Epaisseur Texte Module" msgstr "Supprimer Limite de Zone"
#: pcbnew/dialog_graphic_items_options.cpp:244 #: pcbnew/onrightclick.cpp:391
msgid "Text Module Size V" #: pcbnew/onrightclick.cpp:402
msgstr "Hauteur Texte Module" #: pcbnew/onrightclick.cpp:415
#: pcbnew/onrightclick.cpp:476
msgid "Select Working Layer"
msgstr "Slection de la couche de travail"
#: pcbnew/dialog_graphic_items_options.cpp:250 #: pcbnew/onrightclick.cpp:400
msgid "Text Module Size H" #: pcbnew/onrightclick.cpp:473
msgstr "Largeur Texte Module" msgid "Select Track Width"
msgstr "Slection Epais. Piste"
#: pcbnew/swap_layers.cpp:59 #: pcbnew/onrightclick.cpp:404
msgid "Swap Layers:" msgid "Select layer pair for vias"
msgstr "Permutte couches" msgstr "Selection couple de couches pour Vias"
#: pcbnew/swap_layers.cpp:75 #: pcbnew/onrightclick.cpp:421
#: pcbnew/swap_layers.cpp:129 msgid "Footprint documentation"
#: pcbnew/swap_layers.cpp:162 msgstr "Documentation des modules"
msgid "No Change"
msgstr "Garder"
#: pcbnew/swap_layers.cpp:80 #: pcbnew/onrightclick.cpp:431
#: gerbview/select_layers_to_pcb.cpp:134 msgid "Glob Move and Place"
msgid "Layers" msgstr "Move et Place Globaux"
msgstr "Couches"
#: pcbnew/swap_layers.cpp:88 #: pcbnew/onrightclick.cpp:433
#: gerbview/select_layers_to_pcb.cpp:152 msgid "Unlock All Modules"
msgid "Select..." msgstr "Dverrouiller tous les Modules"
msgstr "Slection..."
#: pcbnew/swap_layers.cpp:93 #: pcbnew/onrightclick.cpp:435
#: gerbview/select_layers_to_pcb.cpp:156 msgid "Lock All Modules"
msgid "Deselect" msgstr "Verrouiller tous les Modules"
msgstr "Deselection"
#: pcbnew/swap_layers.cpp:150 #: pcbnew/onrightclick.cpp:438
msgid "Deselect this layer to restore its No Change state" msgid "Move All Modules"
msgstr "Deselectionner cette couche pour restorer l'option Pas de Changement" msgstr "Dplace tous les Modules"
#: pcbnew/dialog_edit_module.cpp:39 #: pcbnew/onrightclick.cpp:439
msgid "Module properties" msgid "Move New Modules"
msgstr "Proprits du Module" msgstr "Dplace nouveaux Modules"
#: pcbnew/dialog_edit_module.cpp:94 #: pcbnew/onrightclick.cpp:441
msgid "Properties" msgid "Autoplace All Modules"
msgstr "Proprits" msgstr "Autoplace Tous Modules"
#: pcbnew/dialog_edit_module.cpp:98 #: pcbnew/onrightclick.cpp:442
#: pcbnew/dialog_edit_module.cpp:107 msgid "Autoplace New Modules"
#: pcbnew/dialog_edit_module.cpp:136 msgstr "AutoPlace nouveaux Modules"
msgid "3D settings"
msgstr "3D Caract"
#: pcbnew/dialog_edit_module.cpp:181 #: pcbnew/onrightclick.cpp:443
msgid "Change module(s)" msgid "Autoplace Next Module"
msgstr "Change module(s)" msgstr "Autoplace Module suivant"
#: pcbnew/dialog_edit_module.cpp:192 #: pcbnew/onrightclick.cpp:446
#: eeschema/dialog_edit_component_in_lib.cpp:203 msgid "Orient All Modules"
#: eeschema/onrightclick.cpp:348 msgstr "Oriente Tous Modules"
msgid "Doc"
msgstr "Doc"
#: pcbnew/dialog_edit_module.cpp:199 #: pcbnew/onrightclick.cpp:453
msgid "Keywords" msgid "Global Autoroute"
msgstr "Mots Cles" msgstr "Autoroutage global"
#: pcbnew/dialog_edit_module.cpp:206 #: pcbnew/onrightclick.cpp:455
msgid "Fields:" msgid "Select layer pair"
msgstr "Champs:" msgstr "Selection couple de couches"
#: pcbnew/dialog_edit_module.cpp:216 #: pcbnew/onrightclick.cpp:457
msgid "Add Field" msgid "Autoroute All Modules"
msgstr "Ajouter Champ" msgstr "Autoroute Tous Modules"
#: pcbnew/dialog_edit_module.cpp:221 #: pcbnew/onrightclick.cpp:459
#: eeschema/onrightclick.cpp:268 msgid "Reset Unrouted"
msgid "Edit Field" msgstr "Rinit Non routs"
msgstr "Editer Champ"
#: pcbnew/dialog_edit_module.cpp:226 #: pcbnew/onrightclick.cpp:464
msgid "Delete Field" msgid "Global AutoRouter"
msgstr "Supprimer Champ" msgstr "Autorouteur Global"
#: pcbnew/dialog_edit_module.cpp:233 #: pcbnew/onrightclick.cpp:466
#: common/common.cpp:280 msgid "Read Global AutoRouter Data"
msgid "Component" msgstr "Lire Donnes de L'autorouteur global"
msgstr "Composant"
#: pcbnew/dialog_edit_module.cpp:233 #: pcbnew/onrightclick.cpp:503
msgid "Copper" msgid "Flip Block (alt + drag mouse)"
msgstr "Cuivre" msgstr "Inversion Bloc (alt + drag mouse)"
#: pcbnew/dialog_edit_module.cpp:278 #: pcbnew/onrightclick.cpp:526
msgid "Orient (0.1 deg)" msgid "Drag Via"
msgstr "Orient (0.1 deg)" msgstr "Drag Via"
#: pcbnew/dialog_edit_module.cpp:288 #: pcbnew/onrightclick.cpp:530
msgid "Normal+Insert" msgid "Edit Via"
msgstr "Normal+Insert" msgstr "Edit Via"
#: pcbnew/dialog_edit_module.cpp:288 #: pcbnew/onrightclick.cpp:532
msgid "Virtual" msgid "Set via hole to Default"
msgstr "Virtuel" msgstr "Ajuste perage via dfaut"
#: pcbnew/dialog_edit_module.cpp:289 #: pcbnew/onrightclick.cpp:534
msgid "Attributes" msgid "Set via hole to alt value"
msgstr "Attributs" msgstr "Ajuste perage via valeur alternative"
#: pcbnew/dialog_edit_module.cpp:292 #: pcbnew/onrightclick.cpp:536
msgid "Use this attribute for most non smd components" msgid "Set the via hole alt value"
msgstr "Utiliser cet attribut pour la plupart des composants" msgstr "Ajuste la valeur alt. perage via"
#: pcbnew/dialog_edit_module.cpp:294 #: pcbnew/onrightclick.cpp:538
msgid "" msgid "Export Via hole to alt value"
"Use this attribute for smd components.\n" msgstr "Exporte perage via valeur alt."
"Only components with this option are put in the footprint position list file"
msgstr ""
"Uiliser cet attribut pour les composants CMS.\n"
"Seuls les composants avec cette option sont mis dans le fichier de position des composants"
#: pcbnew/dialog_edit_module.cpp:296 #: pcbnew/onrightclick.cpp:540
msgid "Use this attribute for \"virtual\" components drawn on board (like a old ISA PC bus connector)" msgid "Export via hole to others id vias"
msgstr "Uiliser cet attribut pour les composants \"virtuels\" directement dessins sur le PCB (tel que les vieux connecteurs ISA de PC)" msgstr "Exporte perage via aux autres semblables."
#: pcbnew/dialog_edit_module.cpp:320 #: pcbnew/onrightclick.cpp:542
msgid "Free" msgid "Set ALL via holes to default"
msgstr "Libre" msgstr "Ajuste perage TOUTES vias au dfaut"
#: pcbnew/dialog_edit_module.cpp:320 #: pcbnew/onrightclick.cpp:555
msgid "Locked" msgid "Move Node"
msgstr "Verrouill" msgstr "Dplace Noeud"
#: pcbnew/dialog_edit_module.cpp:322 #: pcbnew/onrightclick.cpp:560
msgid "Move and Auto Place" msgid "Drag Segments, keep slope"
msgstr "Move et Placement Automatique" msgstr "Drag Segments, garder direction"
#: pcbnew/dialog_edit_module.cpp:327 #: pcbnew/onrightclick.cpp:562
msgid "Enable hotkey move commands and Auto Placement" msgid "Drag Segment"
msgstr "Autoriser les commandes clavier de dplacement et l'auto placement" msgstr "Drag Segment"
#: pcbnew/dialog_edit_module.cpp:328 #: pcbnew/onrightclick.cpp:565
msgid "Disable hotkey move commands and Auto Placement" msgid "Move Segment"
msgstr "Interdire les commandes clavier de dplacement et l'auto placement" msgstr "Dplace Segment"
#: pcbnew/dialog_edit_module.cpp:332 #: pcbnew/onrightclick.cpp:568
msgid "Rot 90" msgid "Break Track"
msgstr "Rot 90" msgstr "Briser piste"
#: pcbnew/dialog_edit_module.cpp:340 #: pcbnew/onrightclick.cpp:575
msgid "Rot 180" msgid "Place Node"
msgstr "Rot 180" msgstr "Place noeud"
#: pcbnew/dialog_edit_module.cpp:377 #: pcbnew/onrightclick.cpp:582
msgid "3D Shape Name" msgid "End Track"
msgstr "3D forme" msgstr "Terminer Piste"
#: pcbnew/dialog_edit_module.cpp:394 #: pcbnew/onrightclick.cpp:585
#: pcbnew/dialog_drc.cpp:208 msgid "Place Via"
#: eeschema/dialog_eeschema_config.cpp:227 msgstr "Place Via"
msgid "Browse"
msgstr "Examiner"
#: pcbnew/dialog_edit_module.cpp:398 #: pcbnew/onrightclick.cpp:592
msgid "Add 3D Shape" msgid "Change Width"
msgstr "Ajout Forme 3D" msgstr "Change Largeur"
#: pcbnew/dialog_edit_module.cpp:404 #: pcbnew/onrightclick.cpp:594
msgid "Remove 3D Shape" msgid "Edit Segment"
msgstr "Suppr. Forme 3D:" msgstr "Edit Segment"
#: pcbnew/dialog_edit_module.cpp:410 #: pcbnew/onrightclick.cpp:598
msgid "Shape Scale:" msgid "Edit Track"
msgstr "Echelle de la forme:" msgstr "Editer Piste"
#: pcbnew/dialog_edit_module.cpp:417 #: pcbnew/onrightclick.cpp:600
msgid "Shape Offset:" msgid "Edit Net"
msgstr "Offset forme:" msgstr "Edit Net"
#: pcbnew/dialog_edit_module.cpp:426 #: pcbnew/onrightclick.cpp:602
msgid "Shape Rotation:" msgid "Edit ALL Tracks and Vias"
msgstr "Rot de la forme" msgstr "Editer TOUTES Pistes et Vias"
#: pcbnew/dialog_edit_module.cpp:466 #: pcbnew/onrightclick.cpp:604
msgid "3D Shape:" msgid "Edit ALL Vias (no track)"
msgstr "Forme 3D:" msgstr "Editer TOUTES Vias (pas les pistes)"
#: pcbnew/dialog_edit_module.cpp:771 #: pcbnew/onrightclick.cpp:606
msgid "Reference or Value cannot be deleted" msgid "Edit ALL Tracks (no via)"
msgstr "Rfrence ou Valeur ne peut etre efface" msgstr "Editer TOUTES Pistes (pas les vias)"
#: pcbnew/dialog_edit_module.cpp:775 #: pcbnew/onrightclick.cpp:613
#, c-format msgid "Delete Segment"
msgid "Delete [%s]" msgstr "SupprimerSegment"
msgstr "Supprimer [%s]"
#: pcbnew/class_edge_mod.cpp:283 #: pcbnew/onrightclick.cpp:618
msgid "Seg" msgid "Delete Track"
msgstr "Seg" msgstr "Effacer Piste"
#: pcbnew/class_edge_mod.cpp:289 #: pcbnew/onrightclick.cpp:622
#: pcbnew/class_module.cpp:1112 msgid "Delete Net"
msgid "TimeStamp" msgstr "Supprimer Net"
msgstr "TimeStamp"
#: pcbnew/class_edge_mod.cpp:291 #: pcbnew/onrightclick.cpp:627
msgid "Mod Layer" msgid "Set Flags"
msgstr "Couche Mod." msgstr "Ajust. Flags"
#: pcbnew/class_edge_mod.cpp:293 #: pcbnew/onrightclick.cpp:628
msgid "Seg Layer" msgid "Locked: Yes"
msgstr "Couche Seg." msgstr "Verrou: Oui"
#: pcbnew/class_track.cpp:784 #: pcbnew/onrightclick.cpp:629
msgid "NetCode" msgid "Locked: No"
msgstr "NetCode" msgstr "Verrou: Non"
#: pcbnew/class_track.cpp:804 #: pcbnew/onrightclick.cpp:639
#: pcbnew/class_module.cpp:1135 msgid "Track Locked: Yes"
msgid "Stat" msgstr "Piste verrouille: Oui"
msgstr "Stat"
#: pcbnew/class_track.cpp:828 #: pcbnew/onrightclick.cpp:640
msgid "Diam" msgid "Track Locked: No"
msgstr "Diam" msgstr "Piste verrouille: Non"
#: pcbnew/moduleframe.cpp:177 #: pcbnew/onrightclick.cpp:642
msgid "Module Editor: module modified!, Continue ?" msgid "Net Locked: Yes"
msgstr "Editeur de Module: module modifi! Continuer ?" msgstr "Net verrouill: Oui"
#: pcbnew/cross-probing.cpp:51 #: pcbnew/onrightclick.cpp:643
#, c-format msgid "Net Locked: No"
msgid "Locate module %s %s" msgstr "Net verrouill: Non"
msgstr "Module localis %s %s"
#: pcbnew/cross-probing.cpp:104 #: pcbnew/onrightclick.cpp:665
#, c-format #: pcbnew/onrightclick.cpp:710
msgid "module %s not found" #: pcbnew/onrightclick.cpp:748
msgstr "module %s non trouv" #: pcbnew/onrightclick.cpp:807
msgid "Move"
msgstr "Move"
#: pcbnew/cross-probing.cpp:106 #: pcbnew/onrightclick.cpp:668
#, c-format #: pcbnew/onrightclick.cpp:750
msgid "Pin %s (module %s) not found" msgid "Drag"
msgstr "Pin %s (module %s) non trouve" msgstr "Drag"
#: pcbnew/cross-probing.cpp:108 #: pcbnew/onrightclick.cpp:672
#, c-format msgid "Rotate +"
msgid "Locate Pin %s (module %s)" msgstr "Rotation +"
msgstr "Pin localise %s (module %s)"
#: pcbnew/gen_modules_placefile.cpp:76 #: pcbnew/onrightclick.cpp:676
msgid "No Modules for Automated Placement" #: eeschema/onrightclick.cpp:300
msgstr "Pas de Module pour placement Automatis" msgid "Rotate -"
msgstr "Rotation -"
#: pcbnew/gen_modules_placefile.cpp:110 #: pcbnew/onrightclick.cpp:677
msgid "Component side place file:" msgid "Flip"
msgstr "Fichier placement cot composant:" msgstr "Change ct"
#: pcbnew/gen_modules_placefile.cpp:113 #: pcbnew/onrightclick.cpp:767
msgid "Copper side place file:" msgid "delete"
msgstr "Fichier placement cot cuivre:" msgstr "Effacer"
#: pcbnew/gen_modules_placefile.cpp:116 #: pcbnew/onrightclick.cpp:774
msgid "Module count" msgid "Autoroute Pad"
msgstr "Nb Modules" msgstr "Autoroute Pad"
#: pcbnew/onrightclick.cpp:83 #: pcbnew/onrightclick.cpp:775
#, c-format msgid "Autoroute Net"
msgid "Track %.1f" msgstr "Autoroute Net"
msgstr "Piste %.1f"
#: pcbnew/onrightclick.cpp:85 #: pcbnew/onleftclick.cpp:168
#, c-format msgid "Graphic not autorized on Copper layers"
msgid "Track %.3f" msgstr "Graphique non autoris sur couches cuivre"
msgstr "Piste %.3f"
#: pcbnew/onrightclick.cpp:101 #: pcbnew/onleftclick.cpp:191
#, c-format msgid "Tracks on Copper layers only "
msgid "Via %.1f" msgstr "Pistes sur couches cuivre seulement"
msgstr "Via %.1f"
#: pcbnew/onrightclick.cpp:103 #: pcbnew/onleftclick.cpp:267
#, c-format msgid "Cotation not autorized on Copper layers"
msgid "Via %.3f" msgstr "Cotation non autorise sur couches cuivre"
msgstr "Via %.3f"
#: pcbnew/onrightclick.cpp:234 #: pcbnew/menubarmodedit.cpp:40
msgid "Lock Module" msgid "Sizes and Widths"
msgstr "Verrouiller Modules" msgstr "Dims. et Epaiss."
#: pcbnew/onrightclick.cpp:242 #: pcbnew/menubarmodedit.cpp:41
msgid "Unlock Module" #: pcbnew/menubarpcb.cpp:205
msgstr "Dverrouiller Modules" msgid "Adjust width for texts and drawings"
msgstr "Ajuster dims pour textes et graphiques"
#: pcbnew/onrightclick.cpp:250 #: pcbnew/menubarmodedit.cpp:46
msgid "Auto place Module" #: pcbnew/menubarpcb.cpp:210
msgstr "Auto place Module" msgid "Adjust size,shape,layers... for Pads"
msgstr "Ajuster taille, forme, couches... pour pads"
#: pcbnew/onrightclick.cpp:256 #: pcbnew/menubarmodedit.cpp:50
msgid "Autoroute" #: pcbnew/menubarpcb.cpp:199
msgstr "Autoroute" #: pcbnew/set_grid.h:39
msgid "User Grid Size"
msgstr "Dim Grille utilisteur"
#: pcbnew/onrightclick.cpp:272 #: pcbnew/menubarmodedit.cpp:51
msgid "Move Drawing" #: pcbnew/menubarpcb.cpp:200
msgstr "Dplace Trac" msgid "Adjust User Grid"
msgstr "Ajuster Grille utilisateur"
#: pcbnew/menubarmodedit.cpp:60
#: pcbnew/menubarpcb.cpp:268
#: eeschema/menubar.cpp:178
#: cvpcb/tool_cvpcb.cpp:158
#: kicad/buildmnu.cpp:198
#: gerbview/tool_gerber.cpp:150
msgid "&Contents"
msgstr "&Contenu"
#: pcbnew/onrightclick.cpp:277 #: pcbnew/menubarmodedit.cpp:60
msgid "End Drawing" #: pcbnew/menubarpcb.cpp:268
msgstr "Fin trac" msgid "Open the pcbnew manual"
msgstr "Ouvrir la documentation de pcbnew"
#: pcbnew/onrightclick.cpp:279 #: pcbnew/menubarmodedit.cpp:64
msgid "Edit Drawing" #: pcbnew/menubarpcb.cpp:272
msgstr "Edit Trac" #: eeschema/menubar.cpp:183
#: cvpcb/tool_cvpcb.cpp:162
#: kicad/buildmnu.cpp:203
#: gerbview/tool_gerber.cpp:152
msgid "&About"
msgstr "&Infos logiciel"
#: pcbnew/onrightclick.cpp:280 #: pcbnew/menubarmodedit.cpp:64
msgid "Delete Drawing" #: pcbnew/menubarpcb.cpp:272
msgstr "Supprimer Trac" #: eeschema/menubar.cpp:183
#: cvpcb/tool_cvpcb.cpp:163
#: kicad/buildmnu.cpp:203
#: gerbview/tool_gerber.cpp:153
msgid "About this application"
msgstr "Au sujet de cette application"
#: pcbnew/onrightclick.cpp:287 #: pcbnew/menubarmodedit.cpp:72
msgid "End edge zone" #: pcbnew/menubarpcb.cpp:280
msgstr "Fin contour Zone" msgid "3D Display"
msgstr "3D Visu"
#: pcbnew/onrightclick.cpp:290 #: pcbnew/menubarmodedit.cpp:72
msgid "Delete edge zone" #: pcbnew/menubarpcb.cpp:280
msgstr "Supprimer Contour Zone" msgid "Show Board in 3D Mode"
msgstr "Visualisation en 3D"
#: pcbnew/onrightclick.cpp:305 #: pcbnew/menubarmodedit.cpp:76
msgid "Edit Zone" #: pcbnew/menubarpcb.cpp:286
msgstr "Editer Zone" msgid "&Dimensions"
msgstr "&Dimensions"
#: pcbnew/onrightclick.cpp:307 #: pcbnew/menubarmodedit.cpp:77
msgid "Delete Zone" #: pcbnew/menubarpcb.cpp:289
msgstr "Supprimer Zone" msgid "&3D Display"
msgstr "&3D Visu"
#: pcbnew/onrightclick.cpp:312 #: pcbnew/menubarmodedit.cpp:78
msgid "Delete Marker" #: pcbnew/menubarpcb.cpp:290
msgstr "Effacer Marqueur" #: eeschema/menubar.cpp:191
#: cvpcb/tool_cvpcb.cpp:169
#: kicad/buildmnu.cpp:211
#: gerbview/tool_gerber.cpp:160
msgid "&Help"
msgstr "&Aide"
#: pcbnew/onrightclick.cpp:319 #: pcbnew/globaleditpad.cpp:76
msgid "Edit Dimension" msgid "Pads Global Edit"
msgstr "Edit Cote" msgstr "Pads: Edition globale"
#: pcbnew/onrightclick.cpp:322 #: pcbnew/globaleditpad.cpp:94
msgid "Delete Dimension" msgid "Pad Settings..."
msgstr "Suppression Cote" msgstr "Caract pad ..."
#: pcbnew/onrightclick.cpp:329 #: pcbnew/globaleditpad.cpp:99
msgid "Move Target" msgid "Change Module"
msgstr "Dplacer Mire" msgstr "Change module"
#: pcbnew/onrightclick.cpp:332 #: pcbnew/globaleditpad.cpp:104
msgid "Edit Target" msgid "Change Id Modules"
msgstr "Editer Mire" msgstr "Change Modules ident."
#: pcbnew/onrightclick.cpp:334 #: pcbnew/globaleditpad.cpp:114
msgid "Delete Target" msgid "Pad Filter :"
msgstr "Supprimer Mire" msgstr "Filtre Pad :"
#: pcbnew/onrightclick.cpp:361 #: pcbnew/globaleditpad.cpp:118
msgid "Get and Move Footprint" msgid "Shape Filter"
msgstr "Sel et Dpl.t module" msgstr "Filtre sur forme"
#: pcbnew/onrightclick.cpp:373 #: pcbnew/globaleditpad.cpp:122
msgid "Fill zone" msgid "Layer Filter"
msgstr "Remplir zone" msgstr "Filtre sur couche"
#: pcbnew/onrightclick.cpp:381 #: pcbnew/globaleditpad.cpp:126
msgid "Select Net" msgid "Orient Filter"
msgstr "Slection Net" msgstr "Filtre Orientation"
#: pcbnew/onrightclick.cpp:386 #: pcbnew/globaleditpad.cpp:132
msgid "Delete Zone Limit" msgid "Change Items :"
msgstr "Supprimer Limite de Zone" msgstr "Elments changer:"
#: pcbnew/onrightclick.cpp:391 #: pcbnew/globaleditpad.cpp:136
#: pcbnew/onrightclick.cpp:402 msgid "Change Size"
#: pcbnew/onrightclick.cpp:415 msgstr "Change Taille"
#: pcbnew/onrightclick.cpp:476
msgid "Select Working Layer"
msgstr "Slection de la couche de travail"
#: pcbnew/onrightclick.cpp:400 #: pcbnew/globaleditpad.cpp:140
#: pcbnew/onrightclick.cpp:473 msgid "Change Shape"
msgid "Select Track Width" msgstr "Change Forme"
msgstr "Slection Epais. Piste"
#: pcbnew/onrightclick.cpp:404 #: pcbnew/globaleditpad.cpp:144
msgid "Select layer pair for vias" msgid "Change Drill"
msgstr "Selection couple de couches pour Vias" msgstr "Change Perage"
#: pcbnew/onrightclick.cpp:421 #: pcbnew/globaleditpad.cpp:148
msgid "Footprint documentation" msgid "Change Orient"
msgstr "Documentation des modules" msgstr "Change Orientation"
#: pcbnew/onrightclick.cpp:431 #: pcbnew/sel_layer.cpp:92
msgid "Glob Move and Place" msgid "Select Layer:"
msgstr "Move et Place Globaux" msgstr "Selection couche:"
#: pcbnew/onrightclick.cpp:433 #: pcbnew/sel_layer.cpp:137
msgid "Unlock All Modules" msgid "(Deselect)"
msgstr "Dverrouiller tous les Modules" msgstr "(Deselection)"
#: pcbnew/onrightclick.cpp:435 #: pcbnew/sel_layer.cpp:238
msgid "Lock All Modules" msgid "Less than two copper layers are being used."
msgstr "Verrouiller tous les Modules" msgstr "Il y a moins de 2 couches cuivre utilises."
#: pcbnew/onrightclick.cpp:438 #: pcbnew/sel_layer.cpp:239
msgid "Move All Modules" msgid "Hence Layer Pairs cannot be specified."
msgstr "Dplace tous les Modules" msgstr "Donc les paires de couche ne peuvent pas tre spcifies"
#: pcbnew/onrightclick.cpp:439 #: pcbnew/sel_layer.cpp:263
msgid "Move New Modules" msgid "Select Layer Pair:"
msgstr "Dplace nouveaux Modules" msgstr "Selection paire de couches"
#: pcbnew/onrightclick.cpp:441 #: pcbnew/sel_layer.cpp:294
msgid "Autoplace All Modules" msgid "Top Layer"
msgstr "Autoplace Tous Modules" msgstr "Couche Sup."
#: pcbnew/onrightclick.cpp:442 #: pcbnew/sel_layer.cpp:299
msgid "Autoplace New Modules" msgid "Bottom Layer"
msgstr "AutoPlace nouveaux Modules" msgstr "Couche Inf."
#: pcbnew/onrightclick.cpp:443 #: pcbnew/sel_layer.cpp:358
msgid "Autoplace Next Module" msgid "The Top Layer and Bottom Layer must differ"
msgstr "Autoplace Module suivant" msgstr "Les couches dessus et dessous doivent diffrer"
#: pcbnew/onrightclick.cpp:446 #: pcbnew/dialog_track_options.cpp:125
msgid "Orient All Modules" msgid "Via Size"
msgstr "Oriente Tous Modules" msgstr "Diametre Via"
#: pcbnew/onrightclick.cpp:453 #: pcbnew/dialog_track_options.cpp:131
msgid "Global Autoroute" msgid "Default Via Drill"
msgstr "Autoroutage global" msgstr "Perage vias par dfaut"
#: pcbnew/onrightclick.cpp:455 #: pcbnew/dialog_track_options.cpp:137
msgid "Select layer pair" msgid "Alternate Via Drill"
msgstr "Selection couple de couches" msgstr "Perage vias alternatif"
#: pcbnew/onrightclick.cpp:457 #: pcbnew/dialog_track_options.cpp:146
msgid "Autoroute All Modules" #: pcbnew/pcbnew.h:285
msgstr "Autoroute Tous Modules" msgid "Blind Via"
msgstr "Via borgne"
#: pcbnew/onrightclick.cpp:459 #: pcbnew/dialog_track_options.cpp:147
msgid "Reset Unrouted" #: pcbnew/pcbnew.h:286
msgstr "Rinit Non routs" msgid "Buried Via"
msgstr "Via enterre"
#: pcbnew/onrightclick.cpp:464 #: pcbnew/dialog_track_options.cpp:148
msgid "Global AutoRouter" #: pcbnew/pcbnew.h:287
msgstr "Autorouteur Global" msgid "Standard Via"
msgstr "Via Standard"
#: pcbnew/onrightclick.cpp:466 #: pcbnew/dialog_track_options.cpp:150
msgid "Read Global AutoRouter Data" msgid "Via Type"
msgstr "Lire Donnes de L'autorouteur global" msgstr "Type de Via"
#: pcbnew/onrightclick.cpp:503 #: pcbnew/dialog_track_options.cpp:158
msgid "Flip Block (alt + drag mouse)" msgid "Track Width"
msgstr "Inversion Bloc (alt + drag mouse)" msgstr "Epais. Piste"
#: pcbnew/onrightclick.cpp:526 #: pcbnew/dialog_track_options.cpp:164
msgid "Drag Via" #: pcbnew/dialog_drc.cpp:145
msgstr "Drag Via" msgid "Clearance"
msgstr "Isolation"
#: pcbnew/onrightclick.cpp:530 #: pcbnew/dialog_track_options.cpp:170
msgid "Edit Via" msgid "Mask clearance"
msgstr "Edit Via" msgstr "Retrait Masque"
#: pcbnew/onrightclick.cpp:532 #: pcbnew/dialog_track_options.cpp:257
msgid "Set via hole to Default" msgid ""
msgstr "Ajuste perage via dfaut" "You have selected VIA Blind or VIA Buried\n"
"WARNING: this feature is EXPERIMENTAL!!! Accept ?"
msgstr ""
"Vous avez slectionn VIA borgne ou VIA enterre\n"
"ATTENTION: Cette possibilit est EXPERIMENTALE!!! Accepter ?"
#: pcbnew/onrightclick.cpp:534 #: pcbnew/menubarpcb.cpp:42
msgid "Set via hole to alt value" msgid "Load Board Ctrl-O"
msgstr "Ajuste perage via valeur alternative" msgstr "Charger Circuit Imprim (Ctrl O)"
#: pcbnew/onrightclick.cpp:536 #: pcbnew/menubarpcb.cpp:43
msgid "Set the via hole alt value" msgid "Delete old Board and Load new Board"
msgstr "Ajuste la valeur alt. perage via" msgstr "Effacer ancien C.I. et charger un nouveau"
#: pcbnew/onrightclick.cpp:538 #: pcbnew/menubarpcb.cpp:48
msgid "Export Via hole to alt value" msgid "Append Board"
msgstr "Exporte perage via valeur alt." msgstr "Ajouter Circuit Imprim"
#: pcbnew/onrightclick.cpp:540 #: pcbnew/menubarpcb.cpp:49
msgid "Export via hole to others id vias" msgid "Add Board to old Board"
msgstr "Exporte perage via aux autres semblables." msgstr "Ajouter un C.I. au C.I. actuel"
#: pcbnew/onrightclick.cpp:542 #: pcbnew/menubarpcb.cpp:54
msgid "Set ALL via holes to default" msgid "&New board"
msgstr "Ajuste perage TOUTES vias au dfaut" msgstr "&Nouveau Circuit Imprim"
#: pcbnew/onrightclick.cpp:555 #: pcbnew/menubarpcb.cpp:55
msgid "Move Node" msgid "Clear old PCB and init a new one"
msgstr "Dplace Noeud" msgstr "Effacer C.I. ancien et crer un nouveau"
#: pcbnew/onrightclick.cpp:560 #: pcbnew/menubarpcb.cpp:60
msgid "Drag Segments, keep slope" msgid "&Rescue"
msgstr "Drag Segments, garder direction" msgstr "&Secours"
#: pcbnew/onrightclick.cpp:562 #: pcbnew/menubarpcb.cpp:61
msgid "Drag Segment" msgid "Clear old board and get last rescue file"
msgstr "Drag Segment" msgstr "Effacer C.I. actuel et reprendre dernier fichier secours"
#: pcbnew/onrightclick.cpp:565 #: pcbnew/menubarpcb.cpp:66
msgid "Move Segment" msgid "&Previous version"
msgstr "Dplace Segment" msgstr "&Prcdente version"
#: pcbnew/onrightclick.cpp:568 #: pcbnew/menubarpcb.cpp:67
msgid "Break Track" msgid "Clear old board and get old version of board"
msgstr "Briser piste" msgstr "Effacer C.I. actuel et reprendre ancienne version"
#: pcbnew/onrightclick.cpp:575 #: pcbnew/menubarpcb.cpp:74
msgid "Place Node" msgid "&Save board Ctrl-S"
msgstr "Place noeud" msgstr "Sauver Circuit Imprim (Ctrl S)"
#: pcbnew/onrightclick.cpp:582 #: pcbnew/menubarpcb.cpp:75
msgid "End Track" msgid "Save current board"
msgstr "Terminer Piste" msgstr "Sauver le C.I. actuel"
#: pcbnew/onrightclick.cpp:585 #: pcbnew/menubarpcb.cpp:80
msgid "Place Via" msgid "Save Board as.."
msgstr "Place Via" msgstr "Sauver C.I. sous.."
#: pcbnew/onrightclick.cpp:592 #: pcbnew/menubarpcb.cpp:81
msgid "Change Width" msgid "Save current board as.."
msgstr "Change Largeur" msgstr "Sauver le Circuit Imprim courant sous.."
#: pcbnew/onrightclick.cpp:594 #: pcbnew/menubarpcb.cpp:88
msgid "Edit Segment" #: eeschema/menubar.cpp:72
msgstr "Edit Segment" #: gerbview/tool_gerber.cpp:89
msgid "P&rint"
msgstr "Imp&rimer"
#: pcbnew/onrightclick.cpp:598 #: pcbnew/menubarpcb.cpp:88
msgid "Edit Track" #: eeschema/menubar.cpp:72
msgstr "Editer Piste" #: gerbview/tool_gerber.cpp:89
msgid "Print on current printer"
msgstr "Imprimer sur l'imprimante par dfaut"
#: pcbnew/onrightclick.cpp:600 #: pcbnew/menubarpcb.cpp:93
msgid "Edit Net" #: eeschema/menubar.cpp:102
msgstr "Edit Net" msgid "&Plot"
msgstr "&Tracer"
#: pcbnew/onrightclick.cpp:602 #: pcbnew/menubarpcb.cpp:94
msgid "Edit ALL Tracks and Vias" msgid "Plot (HPGL, PostScript, or Gerber format)"
msgstr "Editer TOUTES Pistes et Vias" msgstr "Tracer ( format HPGL, POSTSCRIPT ou GERBER)"
#: pcbnew/onrightclick.cpp:604 #: pcbnew/menubarpcb.cpp:102
msgid "Edit ALL Vias (no track)" msgid "&GenCAD"
msgstr "Editer TOUTES Vias (pas les pistes)" msgstr "&GenCAD"
#: pcbnew/onrightclick.cpp:606 #: pcbnew/menubarpcb.cpp:102
msgid "Edit ALL Tracks (no via)" msgid "Export GenCAD Format"
msgstr "Editer TOUTES Pistes (pas les vias)" msgstr "Exporter en Format GenCAD"
#: pcbnew/onrightclick.cpp:613 #: pcbnew/menubarpcb.cpp:106
msgid "Delete Segment" msgid "&Module report"
msgstr "SupprimerSegment" msgstr "Rapport &Modules"
#: pcbnew/onrightclick.cpp:618 #: pcbnew/menubarpcb.cpp:106
msgid "Delete Track" msgid "Create a pcb report (footprint report)"
msgstr "Effacer Piste" msgstr "Crer un fichier rapport (rapport sur modules)"
#: pcbnew/onrightclick.cpp:622 #: pcbnew/menubarpcb.cpp:110
msgid "Delete Net" msgid "E&xport"
msgstr "Supprimer Net" msgstr "E&xporter"
#: pcbnew/onrightclick.cpp:627 #: pcbnew/menubarpcb.cpp:110
msgid "Set Flags" msgid "Export board"
msgstr "Ajust. Flags" msgstr "Exporter le C.I."
#: pcbnew/onrightclick.cpp:628 #: pcbnew/menubarpcb.cpp:116
msgid "Locked: Yes" msgid "Add new footprints"
msgstr "Verrou: Oui" msgstr "Archiver nouveaux modules"
#: pcbnew/onrightclick.cpp:629 #: pcbnew/menubarpcb.cpp:117
msgid "Locked: No" msgid "Archive new footprints only in a library (keep other footprints in this lib)"
msgstr "Verrou: Non" msgstr "Archiver nouveaux modules seuls dans une librairie (garder les autres modules de cette librairie)"
#: pcbnew/onrightclick.cpp:639 #: pcbnew/menubarpcb.cpp:121
msgid "Track Locked: Yes" msgid "Create footprint archive"
msgstr "Piste verrouille: Oui" msgstr "Crer Archive des modules"
#: pcbnew/onrightclick.cpp:640 #: pcbnew/menubarpcb.cpp:122
msgid "Track Locked: No" msgid "Archive all footprints in a library(old lib will be deleted)"
msgstr "Piste verrouille: Non" msgstr "Archiver tous les modules dans une librairie (ancienne librairie supprime)"
#: pcbnew/onrightclick.cpp:642 #: pcbnew/menubarpcb.cpp:127
msgid "Net Locked: Yes" msgid "Archive footprints"
msgstr "Net verrouill: Oui" msgstr "Archiver modules"
#: pcbnew/onrightclick.cpp:643 #: pcbnew/menubarpcb.cpp:128
msgid "Net Locked: No" msgid "Archive or Add footprints in a library file"
msgstr "Net verrouill: Non" msgstr "Archiver ou ajouter les modules dans un fichier librairie"
#: pcbnew/onrightclick.cpp:665 #: pcbnew/menubarpcb.cpp:132
#: pcbnew/onrightclick.cpp:710 #: eeschema/menubar.cpp:105
#: pcbnew/onrightclick.cpp:748 #: cvpcb/tool_cvpcb.cpp:125
#: pcbnew/onrightclick.cpp:807 #: kicad/buildmnu.cpp:130
msgid "Move" #: gerbview/tool_gerber.cpp:94
msgstr "Move" msgid "E&xit"
msgstr "&Quitter"
#: pcbnew/onrightclick.cpp:668 #: pcbnew/menubarpcb.cpp:132
#: pcbnew/onrightclick.cpp:750 msgid "Quit pcbnew"
msgid "Drag" msgstr "Quitter Pcbnew"
msgstr "Drag"
#: pcbnew/onrightclick.cpp:672 #: pcbnew/menubarpcb.cpp:150
msgid "Rotate +" #: eeschema/menubar.cpp:139
msgstr "Rotation +" msgid "&Libs and Dir"
msgstr "&Libs et Rep"
#: pcbnew/onrightclick.cpp:676 #: pcbnew/menubarpcb.cpp:151
#: eeschema/onrightclick.cpp:300 #: eeschema/menubar.cpp:140
msgid "Rotate -" #: cvpcb/tool_cvpcb.cpp:140
msgstr "Rotation -" msgid "Setting Libraries, Directories and others..."
msgstr "Slectionner les librairies et rpertoires"
#: pcbnew/onrightclick.cpp:677 #: pcbnew/menubarpcb.cpp:155
msgid "Flip" #: eeschema/menubar.cpp:145
msgstr "Change ct" #: gerbview/tool_gerber.cpp:109
msgid "&Colors"
msgstr "&Couleurs"
#: pcbnew/menubarpcb.cpp:156
msgid "Select Colors and Display for PCB items"
msgstr "Selection couleurs et affichage des lments du C.I."
#: pcbnew/onrightclick.cpp:767 #: pcbnew/menubarpcb.cpp:160
msgid "delete" msgid "&General Options"
msgstr "Effacer" msgstr "Options &gnrales"
#: pcbnew/onrightclick.cpp:774 #: pcbnew/menubarpcb.cpp:161
msgid "Autoroute Pad" msgid "Select general options for pcbnew"
msgstr "Autoroute Pad" msgstr " Slection options gnrales pour pcbnew"
#: pcbnew/onrightclick.cpp:775 #: pcbnew/menubarpcb.cpp:165
msgid "Autoroute Net" msgid "&Display Options"
msgstr "Autoroute Net" msgstr "Options &d'affichage"
#: pcbnew/onleftclick.cpp:168 #: pcbnew/menubarpcb.cpp:166
msgid "Graphic not autorized on Copper layers" msgid "Select what items are displayed"
msgstr "Graphique non autoris sur couches cuivre" msgstr "Slectionner les lments a afficher"
#: pcbnew/onleftclick.cpp:191 #: pcbnew/menubarpcb.cpp:176
msgid "Tracks on Copper layers only " #: eeschema/menubar.cpp:163
msgstr "Pistes sur couches cuivre seulement" msgid "&Save preferences"
msgstr "&Sauver Prfrences"
#: pcbnew/onleftclick.cpp:267 #: pcbnew/menubarpcb.cpp:177
msgid "Cotation not autorized on Copper layers" #: eeschema/menubar.cpp:164
msgstr "Cotation non autorise sur couches cuivre" #: gerbview/tool_gerber.cpp:124
msgid "Save application preferences"
msgstr "Sauver prfrences"
#: pcbnew/menubarmodedit.cpp:40 #: pcbnew/menubarpcb.cpp:181
msgid "Sizes and Widths" #: eeschema/menubar.cpp:167
msgstr "Dims. et Epaiss." msgid "&Read preferences"
msgstr "&Lire Prfrences"
#: pcbnew/globaleditpad.cpp:76 #: pcbnew/menubarpcb.cpp:182
msgid "Pads Global Edit" #: eeschema/menubar.cpp:168
msgstr "Pads: Edition globale" msgid "Read application preferences"
msgstr "Lire prfrences de l'application"
#: pcbnew/globaleditpad.cpp:94 #: pcbnew/menubarpcb.cpp:194
msgid "Pad Settings..." msgid "Tracks and Vias"
msgstr "Caract pad ..." msgstr "Pistes et vias"
#: pcbnew/globaleditpad.cpp:99 #: pcbnew/menubarpcb.cpp:195
msgid "Change Module" msgid "Adjust size and width for tracks, vias"
msgstr "Change module" msgstr "Ajuster dims et taille des pistes et vias"
#: pcbnew/globaleditpad.cpp:104 #: pcbnew/menubarpcb.cpp:204
msgid "Change Id Modules" #: pcbnew/dialog_graphic_items_options.h:38
msgstr "Change Modules ident." msgid "Texts and Drawings"
msgstr "Textes et Tracs"
#: pcbnew/globaleditpad.cpp:114 #: pcbnew/menubarpcb.cpp:215
msgid "Pad Filter :" #: gerbview/tool_gerber.cpp:123
msgstr "Filtre Pad :" msgid "&Save Setup"
msgstr "&Sauver Options"
#: pcbnew/globaleditpad.cpp:118 #: pcbnew/menubarpcb.cpp:216
msgid "Shape Filter" msgid "Save options in current directory"
msgstr "Filtre sur forme" msgstr "Sauver les options en rpertoire de travail"
#: pcbnew/globaleditpad.cpp:122 #: pcbnew/menubarpcb.cpp:225
msgid "Layer Filter" msgid "Create &Modules Pos"
msgstr "Filtre sur couche" msgstr "Crer &Modules Pos"
#: pcbnew/globaleditpad.cpp:126 #: pcbnew/menubarpcb.cpp:226
msgid "Orient Filter" msgid "Gen Position modules file"
msgstr "Filtre Orientation" msgstr "Gen fichier Position des Modules"
#: pcbnew/globaleditpad.cpp:132 #: pcbnew/menubarpcb.cpp:230
msgid "Change Items :" msgid "Create &Drill file"
msgstr "Elments changer:" msgstr "Crer &Fichier de percage"
#: pcbnew/globaleditpad.cpp:136 #: pcbnew/menubarpcb.cpp:231
msgid "Change Size" msgid "Gen Drill (EXCELLON] file and/or Drill sheet"
msgstr "Change Taille" msgstr "Gen fichier de percage (EXCELLON] et/ou plan de percage"
#: pcbnew/globaleditpad.cpp:140 #: pcbnew/menubarpcb.cpp:235
msgid "Change Shape" msgid "Create &Cmp file"
msgstr "Change Forme" msgstr "Crer &Fichier Cmp"
#: pcbnew/globaleditpad.cpp:144 #: pcbnew/menubarpcb.cpp:236
msgid "Change Drill" msgid "Recreate .cmp file for CvPcb"
msgstr "Change Perage" msgstr "Recrer le fichier .cmp pour CvPcb"
#: pcbnew/globaleditpad.cpp:148 #: pcbnew/menubarpcb.cpp:244
msgid "Change Orient" msgid "Global &Deletions"
msgstr "Change Orientation" msgstr "Effacements &Gnraux"
#: pcbnew/sel_layer.cpp:92 #: pcbnew/menubarpcb.cpp:245
msgid "Select Layer:" msgid "Delete Tracks, Modules, Texts... on Board"
msgstr "Selection couche:" msgstr "Effacer Pistes, Modules, Textes... sur le C.I."
#: pcbnew/sel_layer.cpp:137 #: pcbnew/menubarpcb.cpp:249
msgid "(Deselect)" msgid "&List nets"
msgstr "(Deselection)" msgstr "&Liste quipots"
#: pcbnew/sel_layer.cpp:238 #: pcbnew/menubarpcb.cpp:250
msgid "Less than two copper layers are being used." msgid "List nets (names and id)"
msgstr "Il y a moins de 2 couches cuivre utilises." msgstr "Lister quipotentielles (noms et numros d'identification)"
#: pcbnew/sel_layer.cpp:239 #: pcbnew/menubarpcb.cpp:254
msgid "Hence Layer Pairs cannot be specified." msgid "&Track operations"
msgstr "Donc les paires de couche ne peuvent pas tre spcifies" msgstr "Opra&tions sur pistes"
#: pcbnew/sel_layer.cpp:263 #: pcbnew/menubarpcb.cpp:255
msgid "Select Layer Pair:" msgid "Clean stubs, vias, delete break points, or connect dangling tracks to pads and vias"
msgstr "Selection paire de couches" msgstr "Nettoyer bouts de pistes, vias, points inutiles, or connecter extrmits de pistes mal connectes au centre de pads ou vias"
#: pcbnew/sel_layer.cpp:294 #: pcbnew/menubarpcb.cpp:259
msgid "Top Layer" msgid "&Swap layers"
msgstr "Couche Sup." msgstr "&Permutte couches"
#: pcbnew/sel_layer.cpp:299 #: pcbnew/menubarpcb.cpp:260
msgid "Bottom Layer" msgid "Swap tracks on copper layers or drawings on others layers"
msgstr "Couche Inf." msgstr "Permutation de couches"
#: pcbnew/sel_layer.cpp:358 #: pcbnew/menubarpcb.cpp:284
msgid "The Top Layer and Bottom Layer must differ" #: eeschema/menubar.cpp:188
msgstr "Les couches dessus et dessous doivent diffrer" #: cvpcb/tool_cvpcb.cpp:167
#: gerbview/tool_gerber.cpp:155
#: 3d-viewer/3d_toolbar.cpp:111
msgid "&File"
msgstr "&Fichiers"
#: pcbnew/editrack-part2.cpp:32 #: pcbnew/menubarpcb.cpp:285
#, c-format #: eeschema/menubar.cpp:190
msgid "Track Width: %s Vias Size : %s" #: cvpcb/tool_cvpcb.cpp:168
msgstr "Larg. piste: %s Diam Vias : %s" #: kicad/buildmnu.cpp:210
#: gerbview/tool_gerber.cpp:156
#: 3d-viewer/3d_toolbar.cpp:119
msgid "&Preferences"
msgstr "&Prfrences"
#: pcbnew/editrack-part2.cpp:135 #: pcbnew/menubarpcb.cpp:287
msgid "Drc error, cancelled" #: gerbview/tool_gerber.cpp:157
msgstr "Erreur DRC, annulation" msgid "&Miscellaneous"
msgstr "&Divers"
#: pcbnew/menubarpcb.cpp:288
msgid "P&ostprocess"
msgstr "P&ostprocesseurs"
#: pcbnew/edit_track_width.cpp:85 #: pcbnew/edit_track_width.cpp:85
msgid "Change track width (entire NET) ?" msgid "Change track width (entire NET) ?"
...@@ -4807,30 +4848,6 @@ msgstr "Messages:" ...@@ -4807,30 +4848,6 @@ msgstr "Messages:"
msgid "DRC Report file" msgid "DRC Report file"
msgstr "Fichier rapport de contrle DRC:" msgstr "Fichier rapport de contrle DRC:"
#: pcbnew/cleaningoptions_dialog.cpp:146
msgid "Static"
msgstr "Static"
#: pcbnew/cleaningoptions_dialog.cpp:150
msgid "Delete redundant vias"
msgstr "Supprimer vias redondantes"
#: pcbnew/cleaningoptions_dialog.cpp:154
msgid "Merge segments"
msgstr "Compacter Segments"
#: pcbnew/cleaningoptions_dialog.cpp:158
msgid "Delete unconnected tracks"
msgstr "Suppression Pistes non connectes"
#: pcbnew/cleaningoptions_dialog.cpp:162
msgid "Connect to Pads"
msgstr "Connection aux pads"
#: pcbnew/cleaningoptions_dialog.cpp:171
msgid "Clean pcb"
msgstr "Nettoyage PCB"
#: eeschema/annotate.cpp:181 #: eeschema/annotate.cpp:181
msgid "Previous Annotation will be deleted. Continue ?" msgid "Previous Annotation will be deleted. Continue ?"
msgstr "La numrotation existante va tre dtruite, continuer?" msgstr "La numrotation existante va tre dtruite, continuer?"
...@@ -7539,6 +7556,10 @@ msgstr "Justifi ...@@ -7539,6 +7556,10 @@ msgstr "Justifi
msgid "Field Name:" msgid "Field Name:"
msgstr "Nom Champ" msgstr "Nom Champ"
#: eeschema/edit_component_in_lib.cpp:518
msgid "Value/Chip Name:"
msgstr "Valeur/Nom en librairie"
#: eeschema/edit_component_in_lib.cpp:524 #: eeschema/edit_component_in_lib.cpp:524
#: eeschema/edit_component_in_schematic.cpp:219 #: eeschema/edit_component_in_schematic.cpp:219
msgid "Pos" msgid "Pos"
...@@ -7552,58 +7573,62 @@ msgstr "Justifi ...@@ -7552,58 +7573,62 @@ msgstr "Justifi
msgid "Vert Justify" msgid "Vert Justify"
msgstr "Justifi Vert." msgstr "Justifi Vert."
#: eeschema/edit_component_in_lib.cpp:553 #: eeschema/edit_component_in_lib.cpp:551
msgid "Chip Name"
msgstr "Nom en librairie"
#: eeschema/edit_component_in_lib.cpp:554
#: eeschema/edit_component_in_schematic.cpp:195 #: eeschema/edit_component_in_schematic.cpp:195
msgid "Field to edit" msgid "Field to edit"
msgstr "Champ diter" msgstr "Champ diter"
#: eeschema/edit_component_in_lib.cpp:889 #: eeschema/edit_component_in_lib.cpp:890
msgid "Ok to Delete Alias LIST" msgid "Ok to Delete Alias LIST"
msgstr "Ok pour effacer la LISTE des Alias" msgstr "Ok pour effacer la LISTE des Alias"
#: eeschema/edit_component_in_lib.cpp:914 #: eeschema/edit_component_in_lib.cpp:915
msgid "New alias:" msgid "New alias:"
msgstr "Noveau alias" msgstr "Noveau alias"
#: eeschema/edit_component_in_lib.cpp:922 #: eeschema/edit_component_in_lib.cpp:923
msgid "This is the Root Part" msgid "This is the Root Part"
msgstr "Ceci est le composant racine" msgstr "Ceci est le composant racine"
#: eeschema/edit_component_in_lib.cpp:931 #: eeschema/edit_component_in_lib.cpp:932
#: eeschema/edit_component_in_lib.cpp:1199 #: eeschema/edit_component_in_lib.cpp:1200
msgid "Already in use" msgid "Already in use"
msgstr "Dja en usage" msgstr "Dja en usage"
#: eeschema/edit_component_in_lib.cpp:956 #: eeschema/edit_component_in_lib.cpp:957
msgid " is Current Selected Alias!" msgid " is Current Selected Alias!"
msgstr " est l' Alias actuellement slectionn!" msgstr " est l' Alias actuellement slectionn!"
#: eeschema/edit_component_in_lib.cpp:1009 #: eeschema/edit_component_in_lib.cpp:1010
msgid "Delete units" msgid "Delete units"
msgstr "Supprimer unit" msgstr "Supprimer unit"
#: eeschema/edit_component_in_lib.cpp:1079 #: eeschema/edit_component_in_lib.cpp:1080
msgid "Create pins for Convert items" msgid "Create pins for Convert items"
msgstr "Crr les pins des unites converties" msgstr "Crr les pins des unites converties"
#: eeschema/edit_component_in_lib.cpp:1083 #: eeschema/edit_component_in_lib.cpp:1084
msgid "Part as \"De Morgan\" anymore" msgid "Part as \"De Morgan\" anymore"
msgstr "Le composant a une reprsentation convertie" msgstr "Le composant a une reprsentation convertie"
#: eeschema/edit_component_in_lib.cpp:1108 #: eeschema/edit_component_in_lib.cpp:1109
msgid "Delete Convert items" msgid "Delete Convert items"
msgstr "Suppression des lments convertis" msgstr "Suppression des lments convertis"
#: eeschema/edit_component_in_lib.cpp:1143 #: eeschema/edit_component_in_lib.cpp:1144
#: common/eda_doc.cpp:129 #: common/eda_doc.cpp:129
msgid "Doc Files" msgid "Doc Files"
msgstr "Fichiers de Doc" msgstr "Fichiers de Doc"
#: eeschema/edit_component_in_lib.cpp:1166 #: eeschema/edit_component_in_lib.cpp:1167
msgid "Ok to Delete FootprintFilter LIST" msgid "Ok to Delete FootprintFilter LIST"
msgstr "Ok pour effacer la LISTE des filtres de modules" msgstr "Ok pour effacer la LISTE des filtres de modules"
#: eeschema/edit_component_in_lib.cpp:1188 #: eeschema/edit_component_in_lib.cpp:1189
msgid "New FootprintFilter:" msgid "New FootprintFilter:"
msgstr "Nouveau \"Filtre de Modules" msgstr "Nouveau \"Filtre de Modules"
...@@ -9113,15 +9138,15 @@ msgstr "MIME type inconnu pour fichier Doc [%s] (%s)" ...@@ -9113,15 +9138,15 @@ msgstr "MIME type inconnu pour fichier Doc [%s] (%s)"
msgid "Cannot find Pdf viewer %s" msgid "Cannot find Pdf viewer %s"
msgstr "Ne peut trouver le visualisateur Pdf %s" msgstr "Ne peut trouver le visualisateur Pdf %s"
#: common/selcolor.cpp:72
#: share/selcolor.cpp:99
msgid "Colors"
msgstr "Couleurs"
#: common/confirm.cpp:97 #: common/confirm.cpp:97
msgid "Infos:" msgid "Infos:"
msgstr "Infos:" msgstr "Infos:"
#: common/selcolor.cpp:75
#: share/selcolor.cpp:99
msgid "Colors"
msgstr "Couleurs"
#: common/common.cpp:48 #: common/common.cpp:48
msgid " (\"):" msgid " (\"):"
msgstr " (\"):" msgstr " (\"):"
...@@ -9798,6 +9823,18 @@ msgstr "Options g ...@@ -9798,6 +9823,18 @@ msgstr "Options g
msgid "TextMod properties" msgid "TextMod properties"
msgstr "Proprits du Texte sur Module" msgstr "Proprits du Texte sur Module"
#: pcbnew/zones.h:54
msgid "Fill Zones Options"
msgstr "Options de remplissage de Zone"
#: pcbnew/dialog_drc.h:56
msgid "DRC Control"
msgstr "Controle ERC"
#: pcbnew/dialog_initpcb.h:38
msgid "Global Delete"
msgstr "Effacements Gnraux"
#: pcbnew/set_color.h:5 #: pcbnew/set_color.h:5
msgid "Copper Layers" msgid "Copper Layers"
msgstr "Couches Cuivre." msgstr "Couches Cuivre."
...@@ -9846,18 +9883,6 @@ msgstr "Afficher Modules Cmp" ...@@ -9846,18 +9883,6 @@ msgstr "Afficher Modules Cmp"
msgid "Show Modules Cu" msgid "Show Modules Cu"
msgstr "Afficher Modules Cu" msgstr "Afficher Modules Cu"
#: pcbnew/zones.h:54
msgid "Fill Zones Options"
msgstr "Options de remplissage de Zone"
#: pcbnew/dialog_drc.h:56
msgid "DRC Control"
msgstr "Controle ERC"
#: pcbnew/dialog_initpcb.h:38
msgid "Global Delete"
msgstr "Effacements Gnraux"
#: 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"
......
...@@ -13,7 +13,6 @@ ...@@ -13,7 +13,6 @@
#define VIA_BURIED 2 /* this via can be on internal layers */ #define VIA_BURIED 2 /* this via can be on internal layers */
#define VIA_BLIND 1 /* this via which connect from internal layers to an external layer */ #define VIA_BLIND 1 /* this via which connect from internal layers to an external layer */
#define VIA_NOT_DEFINED 0 /* reserved (unused) */ #define VIA_NOT_DEFINED 0 /* reserved (unused) */
#define VIA_SQUARE_SHAPE 0x80000000 /* Flag pour forme carree */
/***/ /***/
......
...@@ -133,7 +133,7 @@ void WinEDA_CleaningOptionsFrame::Init() ...@@ -133,7 +133,7 @@ void WinEDA_CleaningOptionsFrame::Init()
void WinEDA_CleaningOptionsFrame::CreateControls() void WinEDA_CleaningOptionsFrame::CreateControls()
{ {
////@begin WinEDA_CleaningOptionsFrame content construction ////@begin WinEDA_CleaningOptionsFrame content construction
// Generated by DialogBlocks, 21/06/2007 19:58:26 (unregistered) // Generated by DialogBlocks, 21/10/2007 19:42:47 (unregistered)
WinEDA_CleaningOptionsFrame* itemDialog1 = this; WinEDA_CleaningOptionsFrame* itemDialog1 = this;
...@@ -149,29 +149,34 @@ void WinEDA_CleaningOptionsFrame::CreateControls() ...@@ -149,29 +149,34 @@ void WinEDA_CleaningOptionsFrame::CreateControls()
m_CleanViasOpt = new wxCheckBox( itemDialog1, ID_CHECKBOX_CLEAN_VIAS, _("Delete redundant vias"), wxDefaultPosition, wxDefaultSize, 0 ); m_CleanViasOpt = new wxCheckBox( itemDialog1, ID_CHECKBOX_CLEAN_VIAS, _("Delete redundant vias"), wxDefaultPosition, wxDefaultSize, 0 );
m_CleanViasOpt->SetValue(false); m_CleanViasOpt->SetValue(false);
if (ShowToolTips())
m_CleanViasOpt->SetToolTip(_("remove vias on pads with a through hole"));
itemStaticBoxSizer4->Add(m_CleanViasOpt, 0, wxALIGN_LEFT|wxALL, 5); itemStaticBoxSizer4->Add(m_CleanViasOpt, 0, wxALIGN_LEFT|wxALL, 5);
m_MergetSegmOpt = new wxCheckBox( itemDialog1, ID_CHECKBOX_MERGE_SEGMENTS, _("Merge segments"), wxDefaultPosition, wxDefaultSize, 0 ); m_MergetSegmOpt = new wxCheckBox( itemDialog1, ID_CHECKBOX_MERGE_SEGMENTS, _("Merge segments"), wxDefaultPosition, wxDefaultSize, 0 );
m_MergetSegmOpt->SetValue(false); m_MergetSegmOpt->SetValue(false);
if (ShowToolTips())
m_MergetSegmOpt->SetToolTip(_("merge aligned track segments, and remove null segments"));
itemStaticBoxSizer4->Add(m_MergetSegmOpt, 0, wxALIGN_LEFT|wxALL, 5); itemStaticBoxSizer4->Add(m_MergetSegmOpt, 0, wxALIGN_LEFT|wxALL, 5);
m_DeleteunconnectedOpt = new wxCheckBox( itemDialog1, ID_CHECKBOX1, _("Delete unconnected tracks"), wxDefaultPosition, wxDefaultSize, 0 ); m_DeleteunconnectedOpt = new wxCheckBox( itemDialog1, ID_CHECKBOX1, _("Delete unconnected tracks"), wxDefaultPosition, wxDefaultSize, 0 );
m_DeleteunconnectedOpt->SetValue(false); m_DeleteunconnectedOpt->SetValue(false);
if (ShowToolTips())
m_DeleteunconnectedOpt->SetToolTip(_("delete track segment having a dangling end"));
itemStaticBoxSizer4->Add(m_DeleteunconnectedOpt, 0, wxALIGN_LEFT|wxALL, 5); itemStaticBoxSizer4->Add(m_DeleteunconnectedOpt, 0, wxALIGN_LEFT|wxALL, 5);
m_ConnectToPadsOpt = new wxCheckBox( itemDialog1, ID_CHECKBOX, _("Connect to Pads"), wxDefaultPosition, wxDefaultSize, 0 ); m_ConnectToPadsOpt = new wxCheckBox( itemDialog1, ID_CHECKBOX, _("Connect to Pads"), wxDefaultPosition, wxDefaultSize, 0 );
m_ConnectToPadsOpt->SetToolTip( _("Extend dangling tracks which partially cover a pad or via, all the way to pad or via center") );
m_ConnectToPadsOpt->SetValue(false); m_ConnectToPadsOpt->SetValue(false);
if (ShowToolTips())
m_ConnectToPadsOpt->SetToolTip(_("Extend dangling tracks which partially cover a pad or via, all the way to pad or via center"));
itemStaticBoxSizer4->Add(m_ConnectToPadsOpt, 0, wxALIGN_LEFT|wxALL, 5); itemStaticBoxSizer4->Add(m_ConnectToPadsOpt, 0, wxALIGN_LEFT|wxALL, 5);
itemStaticBoxSizer4->Add(5, 5, 0, wxGROW|wxALL, 5); wxBoxSizer* itemBoxSizer9 = new wxBoxSizer(wxVERTICAL);
itemBoxSizer3->Add(itemBoxSizer9, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5);
wxBoxSizer* itemBoxSizer10 = new wxBoxSizer(wxVERTICAL); wxButton* itemButton10 = new wxButton( itemDialog1, ID_BUTTON_EXECUTE, _("Clean pcb"), wxDefaultPosition, wxDefaultSize, 0 );
itemBoxSizer3->Add(itemBoxSizer10, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5); itemButton10->SetDefault();
itemBoxSizer9->Add(itemButton10, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);
wxButton* itemButton11 = new wxButton( itemDialog1, ID_BUTTON_EXECUTE, _("Clean pcb"), wxDefaultPosition, wxDefaultSize, 0 );
itemButton11->SetDefault();
itemBoxSizer10->Add(itemButton11, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);
// Set validators // Set validators
m_CleanViasOpt->SetValidator( wxGenericValidator(& s_CleanVias) ); m_CleanViasOpt->SetValidator( wxGenericValidator(& s_CleanVias) );
...@@ -234,14 +239,6 @@ void WinEDA_CleaningOptionsFrame::OnButtonExecuteClick( wxCommandEvent& event ) ...@@ -234,14 +239,6 @@ void WinEDA_CleaningOptionsFrame::OnButtonExecuteClick( wxCommandEvent& event )
} }
/*! /*!
* wxEVT_CLOSE_WINDOW event handler for ID_WIN_EDA_CLEANINGOPTIONSFRAME * wxEVT_CLOSE_WINDOW event handler for ID_WIN_EDA_CLEANINGOPTIONSFRAME
*/ */
......
...@@ -44,7 +44,7 @@ ...@@ -44,7 +44,7 @@
#define ID_CHECKBOX1 10005 #define ID_CHECKBOX1 10005
#define ID_CHECKBOX 10004 #define ID_CHECKBOX 10004
#define ID_BUTTON_EXECUTE 10006 #define ID_BUTTON_EXECUTE 10006
#define SYMBOL_WINEDA_CLEANINGOPTIONSFRAME_STYLE wxCAPTION|wxSYSTEM_MENU|wxCLOSE_BOX|MAYBE_RESIZE_BORDER #define SYMBOL_WINEDA_CLEANINGOPTIONSFRAME_STYLE wxCAPTION|wxSYSTEM_MENU|wxCLOSE_BOX
#define SYMBOL_WINEDA_CLEANINGOPTIONSFRAME_TITLE _("Cleaning options") #define SYMBOL_WINEDA_CLEANINGOPTIONSFRAME_TITLE _("Cleaning options")
#define SYMBOL_WINEDA_CLEANINGOPTIONSFRAME_IDNAME ID_WIN_EDA_CLEANINGOPTIONSFRAME #define SYMBOL_WINEDA_CLEANINGOPTIONSFRAME_IDNAME ID_WIN_EDA_CLEANINGOPTIONSFRAME
#define SYMBOL_WINEDA_CLEANINGOPTIONSFRAME_SIZE wxSize(400, 300) #define SYMBOL_WINEDA_CLEANINGOPTIONSFRAME_SIZE wxSize(400, 300)
......
...@@ -366,7 +366,7 @@ ...@@ -366,7 +366,7 @@
<string name="proxy-Label">"Delete redundant vias"</string> <string name="proxy-Label">"Delete redundant vias"</string>
<bool name="proxy-Initial value">0</bool> <bool name="proxy-Initial value">0</bool>
<string name="proxy-Help text">""</string> <string name="proxy-Help text">""</string>
<string name="proxy-Tooltip text">""</string> <string name="proxy-Tooltip text">"remove vias on pads with a through hole"</string>
<string name="proxy-Data variable">"s_CleanVias"</string> <string name="proxy-Data variable">"s_CleanVias"</string>
<string name="proxy-Data validator">"wxGenericValidator(&amp; %VARIABLE%)"</string> <string name="proxy-Data validator">"wxGenericValidator(&amp; %VARIABLE%)"</string>
<string name="proxy-Background colour">""</string> <string name="proxy-Background colour">""</string>
...@@ -424,7 +424,7 @@ ...@@ -424,7 +424,7 @@
<string name="proxy-Label">"Merge segments"</string> <string name="proxy-Label">"Merge segments"</string>
<bool name="proxy-Initial value">0</bool> <bool name="proxy-Initial value">0</bool>
<string name="proxy-Help text">""</string> <string name="proxy-Help text">""</string>
<string name="proxy-Tooltip text">""</string> <string name="proxy-Tooltip text">"merge aligned track segments, and remove null segments"</string>
<string name="proxy-Data variable">"s_MergeSegments"</string> <string name="proxy-Data variable">"s_MergeSegments"</string>
<string name="proxy-Data validator">"wxGenericValidator(&amp; %VARIABLE%)"</string> <string name="proxy-Data validator">"wxGenericValidator(&amp; %VARIABLE%)"</string>
<string name="proxy-Background colour">""</string> <string name="proxy-Background colour">""</string>
...@@ -482,7 +482,7 @@ ...@@ -482,7 +482,7 @@
<string name="proxy-Label">"Delete unconnected tracks"</string> <string name="proxy-Label">"Delete unconnected tracks"</string>
<bool name="proxy-Initial value">0</bool> <bool name="proxy-Initial value">0</bool>
<string name="proxy-Help text">""</string> <string name="proxy-Help text">""</string>
<string name="proxy-Tooltip text">""</string> <string name="proxy-Tooltip text">"delete track segment having a dangling end"</string>
<string name="proxy-Data variable">"s_DeleteUnconnectedSegm"</string> <string name="proxy-Data variable">"s_DeleteUnconnectedSegm"</string>
<string name="proxy-Data validator">"wxGenericValidator(&amp; %VARIABLE%)"</string> <string name="proxy-Data validator">"wxGenericValidator(&amp; %VARIABLE%)"</string>
<string name="proxy-Background colour">""</string> <string name="proxy-Background colour">""</string>
...@@ -540,7 +540,7 @@ ...@@ -540,7 +540,7 @@
<string name="proxy-Label">"Connect to Pads"</string> <string name="proxy-Label">"Connect to Pads"</string>
<bool name="proxy-Initial value">0</bool> <bool name="proxy-Initial value">0</bool>
<string name="proxy-Help text">""</string> <string name="proxy-Help text">""</string>
<string name="proxy-Tooltip text">""</string> <string name="proxy-Tooltip text">"Extend dangling tracks which partially cover a pad or via, all the way to pad or via center"</string>
<string name="proxy-Data variable">""</string> <string name="proxy-Data variable">""</string>
<string name="proxy-Data validator">""</string> <string name="proxy-Data validator">""</string>
<string name="proxy-Background colour">""</string> <string name="proxy-Background colour">""</string>
...@@ -675,9 +675,9 @@ ...@@ -675,9 +675,9 @@
<long name="title-mode">0</long> <long name="title-mode">0</long>
<long name="locked">1</long> <long name="locked">1</long>
<document> <document>
<string name="title">"dialog_clean_pcb.rc"</string> <string name="title">"cleaningoptions_dialog.rc"</string>
<string name="type">"source-editor-document"</string> <string name="type">"source-editor-document"</string>
<string name="filename">"dialog_clean_pcb.rc"</string> <string name="filename">"cleaningoptions_dialog.rc"</string>
<string name="icon-name">"source-editor"</string> <string name="icon-name">"source-editor"</string>
<long name="is-transient">0</long> <long name="is-transient">0</long>
<long name="owns-file">0</long> <long name="owns-file">0</long>
......
...@@ -265,7 +265,7 @@ static ColorButton Via_Aveugle_Butt = ...@@ -265,7 +265,7 @@ static ColorButton Via_Aveugle_Butt =
TRUE // Toggle ITEM_NOT_SHOW bit of the color variable TRUE // Toggle ITEM_NOT_SHOW bit of the color variable
}; };
static ColorButton Via_Borgne_Butt = static ColorButton BLIND_VIA_Butt =
{ {
wxT( "*" ), wxT( "*" ),
VIA_BURIED, // Layer VIA_BURIED, // Layer
...@@ -416,7 +416,7 @@ static ColorButton* laytool_list[] = { ...@@ -416,7 +416,7 @@ static ColorButton* laytool_list[] = {
&Msg_Others_Items, &Msg_Others_Items,
&VIA_THROUGH_Butt, &VIA_THROUGH_Butt,
&Via_Aveugle_Butt, &Via_Aveugle_Butt,
&Via_Borgne_Butt, &BLIND_VIA_Butt,
&Ratsnest_Butt, &Ratsnest_Butt,
&Pad_Cu_Butt, &Pad_Cu_Butt,
&Pad_Cmp_Butt, &Pad_Cmp_Butt,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment