Commit c759be6f authored by CHARRAS's avatar CHARRAS

eeschema: problems found. some (not all) solved (see changelog)

parent 36554e68
...@@ -5,6 +5,21 @@ Started 2007-June-11 ...@@ -5,6 +5,21 @@ 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.
2008-Feb-21 UPDATE Jean-Pierre Charras <jean-pierre.charras@inpg.fr>
================================================================================
+eeschema
added : full text conversion between text, label, global label and hierarchical label
some problems fixed:
- annotation incorrectly cleared.
- reference not copied in component copy.
- incorrect redo when changing the chip name in component edition
bugs not fixed
- undo/redo problems when changing a text type between text, label, global label and hierarchical label
- incorrect annotation in complex hierarchy with multi parts per package (duplicates created).
2008-Feb-20 UPDATE Jean-Pierre Charras <jean-pierre.charras@inpg.fr> 2008-Feb-20 UPDATE Jean-Pierre Charras <jean-pierre.charras@inpg.fr>
================================================================================ ================================================================================
+eeschema +eeschema
......
This diff is collapsed.
...@@ -117,7 +117,7 @@ void WinEDA_SchematicFrame::EditSchematicText( DrawTextStruct* TextStruct, ...@@ -117,7 +117,7 @@ void WinEDA_SchematicFrame::EditSchematicText( DrawTextStruct* TextStruct,
wxDC* DC ) wxDC* DC )
/*************************************************************************/ /*************************************************************************/
/* Edit the properties of the text (Label, Gloab label, graphic text).. ) /* Edit the properties of the text (Label, Global label, graphic text).. )
* pointed by "TextStruct" * pointed by "TextStruct"
*/ */
{ {
...@@ -330,7 +330,7 @@ void WinEDA_SchematicFrame::ConvertTextType( DrawTextStruct* Text, ...@@ -330,7 +330,7 @@ void WinEDA_SchematicFrame::ConvertTextType( DrawTextStruct* Text,
/*****************************************************************************/ /*****************************************************************************/
/* Routine to change a text type to an other one (GraphicText, label or Glabel). /* Routine to change a text type to an other one (GraphicText, label or Glabel).
* A new test, label or global label is created from the old text. * A new test, label or hierarchical or global label is created from the old text.
* the old text is deleted * the old text is deleted
*/ */
{ {
...@@ -389,10 +389,10 @@ void WinEDA_SchematicFrame::ConvertTextType( DrawTextStruct* Text, ...@@ -389,10 +389,10 @@ void WinEDA_SchematicFrame::ConvertTextType( DrawTextStruct* Text,
{ {
DrawPanel->ForceCloseManageCurseur( DrawPanel, DC ); DrawPanel->ForceCloseManageCurseur( DrawPanel, DC );
} }
if( (flags & IS_NEW) == 0 ) // Delete old text and save it in undo list if( (flags & IS_NEW) == 0 ) // Remove old text from current list and save it in undo list
{ {
Text->m_Flags = 0; Text->m_Flags = 0;
DeleteStruct( DrawPanel, DC, Text ); DeleteStruct( DrawPanel, DC, Text ); // old text is really saved in undo list
GetScreen()->SetCurItem( NULL ); GetScreen()->SetCurItem( NULL );
g_ItemToRepeat = NULL; g_ItemToRepeat = NULL;
} }
......
...@@ -380,6 +380,8 @@ void AddMenusForGLabel( wxMenu* PopMenu, DrawGlobalLabelStruct* GLabel ) ...@@ -380,6 +380,8 @@ void AddMenusForGLabel( wxMenu* PopMenu, DrawGlobalLabelStruct* GLabel )
_( "Change to Label" ), glabel2label_xpm ); _( "Change to Label" ), glabel2label_xpm );
ADD_MENUITEM( menu_change_type, ID_POPUP_SCH_CHANGE_TYPE_TEXT_TO_COMMENT, ADD_MENUITEM( menu_change_type, ID_POPUP_SCH_CHANGE_TYPE_TEXT_TO_COMMENT,
_( "Change to Text" ), glabel2text_xpm ); _( "Change to Text" ), glabel2text_xpm );
ADD_MENUITEM( menu_change_type, ID_POPUP_SCH_CHANGE_TYPE_TEXT_TO_HLABEL,
_( "Change to Hierarchical Label" ), label2glabel_xpm );
ADD_MENUITEM_WITH_SUBMENU( PopMenu, menu_change_type, ADD_MENUITEM_WITH_SUBMENU( PopMenu, menu_change_type,
ID_POPUP_SCH_CHANGE_TYPE_TEXT, _( "Change Type" ), gl_change_xpm ); ID_POPUP_SCH_CHANGE_TYPE_TEXT, _( "Change Type" ), gl_change_xpm );
} }
...@@ -402,6 +404,8 @@ void AddMenusForHLabel( wxMenu* PopMenu, DrawHierLabelStruct* HLabel ) ...@@ -402,6 +404,8 @@ void AddMenusForHLabel( wxMenu* PopMenu, DrawHierLabelStruct* HLabel )
_( "Change to Label" ), glabel2label_xpm ); _( "Change to Label" ), glabel2label_xpm );
ADD_MENUITEM( menu_change_type, ID_POPUP_SCH_CHANGE_TYPE_TEXT_TO_COMMENT, ADD_MENUITEM( menu_change_type, ID_POPUP_SCH_CHANGE_TYPE_TEXT_TO_COMMENT,
_( "Change to Text" ), glabel2text_xpm ); _( "Change to Text" ), glabel2text_xpm );
ADD_MENUITEM( menu_change_type, ID_POPUP_SCH_CHANGE_TYPE_TEXT_TO_GLABEL,
_( "Change to Global label" ), label2glabel_xpm );
ADD_MENUITEM_WITH_SUBMENU( PopMenu, menu_change_type, ADD_MENUITEM_WITH_SUBMENU( PopMenu, menu_change_type,
ID_POPUP_SCH_CHANGE_TYPE_TEXT, _( "Change Type" ), gl_change_xpm ); ID_POPUP_SCH_CHANGE_TYPE_TEXT, _( "Change Type" ), gl_change_xpm );
} }
...@@ -424,9 +428,11 @@ void AddMenusForLabel( wxMenu* PopMenu, DrawLabelStruct* Label ) ...@@ -424,9 +428,11 @@ void AddMenusForLabel( wxMenu* PopMenu, DrawLabelStruct* Label )
// add menu change type text (to label, glabel, text): // add menu change type text (to label, glabel, text):
ADD_MENUITEM( menu_change_type, ID_POPUP_SCH_CHANGE_TYPE_TEXT_TO_GLABEL, ADD_MENUITEM( menu_change_type, ID_POPUP_SCH_CHANGE_TYPE_TEXT_TO_GLABEL,
_( "Change to Glabel" ), label2glabel_xpm ); _( "Change to Global label" ), label2glabel_xpm );
ADD_MENUITEM( menu_change_type, ID_POPUP_SCH_CHANGE_TYPE_TEXT_TO_COMMENT, ADD_MENUITEM( menu_change_type, ID_POPUP_SCH_CHANGE_TYPE_TEXT_TO_COMMENT,
_( "Change to Text" ), label2text_xpm ); _( "Change to Text" ), label2text_xpm );
ADD_MENUITEM( menu_change_type, ID_POPUP_SCH_CHANGE_TYPE_TEXT_TO_HLABEL,
_( "Change to Hierarchical Label" ), label2glabel_xpm );
ADD_MENUITEM_WITH_SUBMENU( PopMenu, menu_change_type, ADD_MENUITEM_WITH_SUBMENU( PopMenu, menu_change_type,
ID_POPUP_SCH_CHANGE_TYPE_TEXT, _( "Change Type" ), gl_change_xpm ); ID_POPUP_SCH_CHANGE_TYPE_TEXT, _( "Change Type" ), gl_change_xpm );
} }
...@@ -450,6 +456,8 @@ void AddMenusForText( wxMenu* PopMenu, DrawTextStruct* Text ) ...@@ -450,6 +456,8 @@ void AddMenusForText( wxMenu* PopMenu, DrawTextStruct* Text )
// add menu change type text (to label, glabel, text): // add menu change type text (to label, glabel, text):
ADD_MENUITEM( menu_change_type, ID_POPUP_SCH_CHANGE_TYPE_TEXT_TO_LABEL, ADD_MENUITEM( menu_change_type, ID_POPUP_SCH_CHANGE_TYPE_TEXT_TO_LABEL,
_( "Change to Label" ), label2text_xpm ); _( "Change to Label" ), label2text_xpm );
ADD_MENUITEM( menu_change_type, ID_POPUP_SCH_CHANGE_TYPE_TEXT_TO_HLABEL,
_( "Change to Hierarchical Label" ), label2glabel_xpm );
ADD_MENUITEM( menu_change_type, ID_POPUP_SCH_CHANGE_TYPE_TEXT_TO_GLABEL, ADD_MENUITEM( menu_change_type, ID_POPUP_SCH_CHANGE_TYPE_TEXT_TO_GLABEL,
_( "Change to Glabel" ), label2glabel_xpm ); _( "Change to Glabel" ), label2glabel_xpm );
ADD_MENUITEM_WITH_SUBMENU( PopMenu, menu_change_type, ADD_MENUITEM_WITH_SUBMENU( PopMenu, menu_change_type,
......
...@@ -42,6 +42,7 @@ void WinEDA_SchematicFrame::Process_Special_Functions( wxCommandEvent& event ) ...@@ -42,6 +42,7 @@ void WinEDA_SchematicFrame::Process_Special_Functions( wxCommandEvent& event )
case ID_POPUP_SCH_EDIT_TEXT: case ID_POPUP_SCH_EDIT_TEXT:
case ID_POPUP_SCH_CHANGE_TYPE_TEXT_TO_LABEL: case ID_POPUP_SCH_CHANGE_TYPE_TEXT_TO_LABEL:
case ID_POPUP_SCH_CHANGE_TYPE_TEXT_TO_GLABEL: case ID_POPUP_SCH_CHANGE_TYPE_TEXT_TO_GLABEL:
case ID_POPUP_SCH_CHANGE_TYPE_TEXT_TO_HLABEL:
case ID_POPUP_SCH_CHANGE_TYPE_TEXT_TO_COMMENT: case ID_POPUP_SCH_CHANGE_TYPE_TEXT_TO_COMMENT:
case ID_POPUP_SCH_SET_SHAPE_TEXT: case ID_POPUP_SCH_SET_SHAPE_TEXT:
case ID_POPUP_SCH_ROTATE_TEXT: case ID_POPUP_SCH_ROTATE_TEXT:
...@@ -395,6 +396,12 @@ void WinEDA_SchematicFrame::Process_Special_Functions( wxCommandEvent& event ) ...@@ -395,6 +396,12 @@ void WinEDA_SchematicFrame::Process_Special_Functions( wxCommandEvent& event )
&dc, DRAW_GLOBAL_LABEL_STRUCT_TYPE ); &dc, DRAW_GLOBAL_LABEL_STRUCT_TYPE );
break; break;
case ID_POPUP_SCH_CHANGE_TYPE_TEXT_TO_HLABEL:
DrawPanel->MouseToCursorSchema();
ConvertTextType( (DrawTextStruct*) GetScreen()->GetCurItem(),
&dc, DRAW_HIER_LABEL_STRUCT_TYPE );
break;
case ID_POPUP_SCH_CHANGE_TYPE_TEXT_TO_COMMENT: case ID_POPUP_SCH_CHANGE_TYPE_TEXT_TO_COMMENT:
DrawPanel->MouseToCursorSchema(); DrawPanel->MouseToCursorSchema();
ConvertTextType( (DrawTextStruct*) GetScreen()->GetCurItem(), ConvertTextType( (DrawTextStruct*) GetScreen()->GetCurItem(),
...@@ -403,7 +410,7 @@ void WinEDA_SchematicFrame::Process_Special_Functions( wxCommandEvent& event ) ...@@ -403,7 +410,7 @@ void WinEDA_SchematicFrame::Process_Special_Functions( wxCommandEvent& event )
case ID_POPUP_SCH_SET_SHAPE_TEXT: case ID_POPUP_SCH_SET_SHAPE_TEXT:
// Non utilis� // Not used
break; break;
case ID_POPUP_SCH_ROTATE_FIELD: case ID_POPUP_SCH_ROTATE_FIELD:
......
...@@ -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("(2008-02-13)")) (wxT("(2008-02-20)"))
#endif #endif
; ;
......
...@@ -355,7 +355,7 @@ enum main_id { ...@@ -355,7 +355,7 @@ enum main_id {
ID_POPUP_SCH_ADD_JUNCTION, ID_POPUP_SCH_ADD_JUNCTION,
ID_POPUP_SCH_ADD_LABEL, ID_POPUP_SCH_ADD_LABEL,
ID_POPUP_SCH_ADD_GLABEL, ID_POPUP_SCH_ADD_GLABEL,
ID_POPUP_SCH_UNUSED0, ID_POPUP_SCH_CHANGE_TYPE_TEXT_TO_HLABEL,
ID_POPUP_SCH_UNUSED1, ID_POPUP_SCH_UNUSED1,
ID_POPUP_SCH_UNUSED2, ID_POPUP_SCH_UNUSED2,
ID_POPUP_SCH_UNUSED3, ID_POPUP_SCH_UNUSED3,
......
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: 2008-02-20 20:29+0100\n" "PO-Revision-Date: 2008-02-21 07:51+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"
...@@ -3633,9 +3633,8 @@ msgid "Apply" ...@@ -3633,9 +3633,8 @@ msgid "Apply"
msgstr "Appliquer" msgstr "Appliquer"
#: pcbnew/specctra_import.cpp:74 #: pcbnew/specctra_import.cpp:74
#, fuzzy
msgid "Merge Specctra Session file:" msgid "Merge Specctra Session file:"
msgstr "Fichier Specctra DSN" msgstr "Fichier Specctra Session Fusionner:"
#: pcbnew/specctra_import.cpp:100 #: pcbnew/specctra_import.cpp:100
msgid "BOARD may be corrupted, do not save it." msgid "BOARD may be corrupted, do not save it."
...@@ -3643,17 +3642,17 @@ msgstr "Le PCB peut ...@@ -3643,17 +3642,17 @@ msgstr "Le PCB peut
#: pcbnew/specctra_import.cpp:102 #: pcbnew/specctra_import.cpp:102
msgid "Fix problem and try again." msgid "Fix problem and try again."
msgstr "" msgstr "Fixer le problme et recommencer."
#: pcbnew/specctra_import.cpp:116 #: pcbnew/specctra_import.cpp:116
msgid "Session file imported and merged OK." msgid "Session file imported and merged OK."
msgstr "" msgstr "Fichier Session import et fusionn correctement."
#: pcbnew/specctra_import.cpp:182 #: pcbnew/specctra_import.cpp:182
#: pcbnew/specctra_import.cpp:290 #: pcbnew/specctra_import.cpp:290
#, c-format #, c-format
msgid "Session file uses invalid layer id \"%s\"" msgid "Session file uses invalid layer id \"%s\""
msgstr "" msgstr "Le Fichier Session utilise une couche invalide n \"%s\""
#: pcbnew/specctra_import.cpp:232 #: pcbnew/specctra_import.cpp:232
msgid "Session via padstack has no shapes" msgid "Session via padstack has no shapes"
...@@ -4434,9 +4433,8 @@ msgid "Last Change" ...@@ -4434,9 +4433,8 @@ msgid "Last Change"
msgstr "Last Change" msgstr "Last Change"
#: pcbnew/class_module.cpp:1076 #: pcbnew/class_module.cpp:1076
#, fuzzy
msgid "Netlist path" msgid "Netlist path"
msgstr "Netliste: " msgstr "Chemin Netliste "
#: pcbnew/class_module.cpp:1110 #: pcbnew/class_module.cpp:1110
msgid "3D-Shape" msgid "3D-Shape"
...@@ -4575,14 +4573,14 @@ msgid "%s not found" ...@@ -4575,14 +4573,14 @@ msgid "%s not found"
msgstr "%s non trouv" msgstr "%s non trouv"
#: pcbnew/cross-probing.cpp:111 #: pcbnew/cross-probing.cpp:111
#, fuzzy, c-format #, c-format
msgid "%s pin %s not found" msgid "%s pin %s not found"
msgstr " fichier %s non trouv" msgstr "%s pin %s non trouve"
#: pcbnew/cross-probing.cpp:113 #: pcbnew/cross-probing.cpp:113
#, fuzzy, c-format #, c-format
msgid "%s pin %s found" msgid "%s pin %s found"
msgstr " non trouv" msgstr "%s pin %s trouve"
#: pcbnew/specctra_export.cpp:64 #: pcbnew/specctra_export.cpp:64
msgid "Specctra DSN file:" msgid "Specctra DSN file:"
...@@ -4604,7 +4602,7 @@ msgstr "Le composant avec valeur \"%s\" a une r ...@@ -4604,7 +4602,7 @@ msgstr "Le composant avec valeur \"%s\" a une r
#: pcbnew/specctra_export.cpp:728 #: pcbnew/specctra_export.cpp:728
#, c-format #, c-format
msgid "Multiple components have identical reference IDs of \"%s\"." msgid "Multiple components have identical reference IDs of \"%s\"."
msgstr "" msgstr "Multiple composants ont une reference identique \"%s\"."
#: pcbnew/class_drawsegment.cpp:161 #: pcbnew/class_drawsegment.cpp:161
msgid "Shape" msgid "Shape"
...@@ -5607,9 +5605,9 @@ msgid "Warning HLabel %s not connected to SheetLabel" ...@@ -5607,9 +5605,9 @@ msgid "Warning HLabel %s not connected to SheetLabel"
msgstr "Attention HLabel %s non connect a SheetLabel" msgstr "Attention HLabel %s non connect a SheetLabel"
#: eeschema/erc.cpp:562 #: eeschema/erc.cpp:562
#, fuzzy, c-format #, c-format
msgid "Warning SheetLabel %s not connected to HLabel" msgid "Warning SheetLabel %s not connected to HLabel"
msgstr "Warning SheetLabel %s non connect a GLabel" msgstr "Warning SheetLabel %s non connect a HLabel"
#: eeschema/erc.cpp:576 #: eeschema/erc.cpp:576
#, c-format #, c-format
...@@ -5645,22 +5643,21 @@ msgid "ERC control" ...@@ -5645,22 +5643,21 @@ msgid "ERC control"
msgstr "Controle ERC" msgstr "Controle ERC"
#: eeschema/erc.cpp:742 #: eeschema/erc.cpp:742
#, fuzzy
msgid "" msgid ""
"\n" "\n"
"***** Sheet Root\n" "***** Sheet Root\n"
msgstr "" msgstr ""
"\n" "\n"
"***** feuille %d (%s)\n" "***** Feuillet Racine\n"
#: eeschema/erc.cpp:745 #: eeschema/erc.cpp:745
#, fuzzy, c-format #, c-format
msgid "" msgid ""
"\n" "\n"
"***** Sheet %s\n" "***** Sheet %s\n"
msgstr "" msgstr ""
"\n" "\n"
"***** feuille %d (%s)\n" "***** Feuille %s\n"
#: eeschema/erc.cpp:762 #: eeschema/erc.cpp:762
#, c-format #, c-format
...@@ -6119,14 +6116,14 @@ msgstr "" ...@@ -6119,14 +6116,14 @@ msgstr ""
"#Cmp ( ordre = Valeur )" "#Cmp ( ordre = Valeur )"
#: eeschema/dialog_build_BOM.cpp:1315 #: eeschema/dialog_build_BOM.cpp:1315
#, fuzzy, c-format #, c-format
msgid "> %-28.28s %s (Sheet %s) pos: %3.3f, %3.3f\n" msgid "> %-28.28s %s (Sheet %s) pos: %3.3f, %3.3f\n"
msgstr "> %-28.28s Global (feuille %.2d) pos: %3.3f, %3.3f\n" msgstr "> %-28.28s %s (Feuille %s) pos: %3.3f, %3.3f\n"
#: eeschema/dialog_build_BOM.cpp:1335 #: eeschema/dialog_build_BOM.cpp:1335
#, fuzzy, c-format #, c-format
msgid "> %-28.28s Sheet %-7.7s (Sheet %s) pos: %3.3f, %3.3f\n" msgid "> %-28.28s Sheet %-7.7s (Sheet %s) pos: %3.3f, %3.3f\n"
msgstr "> %-28.28s Sheet %-7.7s (feuille %.2d) pos: %3.3f, %3.3f\n" msgstr "> %-28.28s Sheet %-7.7s (Feuillet %s) pos: %3.3f, %3.3f\n"
#: eeschema/dialog_build_BOM.cpp:1349 #: eeschema/dialog_build_BOM.cpp:1349
msgid "#End labels\n" msgid "#End labels\n"
...@@ -6834,7 +6831,7 @@ msgstr "Visualisateur des librairies" ...@@ -6834,7 +6831,7 @@ msgstr "Visualisateur des librairies"
#: eeschema/sheet.cpp:162 #: eeschema/sheet.cpp:162
msgid "Filename (will be created upon save if it does not already exist):" msgid "Filename (will be created upon save if it does not already exist):"
msgstr "" msgstr "Nom Fichier (sera cre la sauvegarde si il n'existe pas dj):"
#: eeschema/sheet.cpp:174 #: eeschema/sheet.cpp:174
msgid "Sheetname:" msgid "Sheetname:"
...@@ -7099,26 +7096,22 @@ msgid "Place the bus to bus entry" ...@@ -7099,26 +7096,22 @@ msgid "Place the bus to bus entry"
msgstr "Addition d'entres de bus (type bus vers bus)" msgstr "Addition d'entres de bus (type bus vers bus)"
#: eeschema/menubar.cpp:254 #: eeschema/menubar.cpp:254
#, fuzzy
msgid "No connect flag" msgid "No connect flag"
msgstr "Addition de symboles de non connexion" msgstr "Symbole de Non Connexion"
#: eeschema/menubar.cpp:255 #: eeschema/menubar.cpp:255
#: eeschema/tool_sch.cpp:189 #: eeschema/tool_sch.cpp:189
#, fuzzy
msgid "Place the no connect flag" msgid "Place the no connect flag"
msgstr "Addition de symboles de non connexion" msgstr "Placer le symbole de non connexion"
#: eeschema/menubar.cpp:264 #: eeschema/menubar.cpp:264
#, fuzzy
msgid "Net name" msgid "Net name"
msgstr "NetName" msgstr "Net Name"
#: eeschema/menubar.cpp:265 #: eeschema/menubar.cpp:265
#: eeschema/tool_sch.cpp:193 #: eeschema/tool_sch.cpp:193
#, fuzzy
msgid "Place the net name" msgid "Place the net name"
msgstr "Place Feuille" msgstr "Placer le nom de net"
#: eeschema/menubar.cpp:272 #: eeschema/menubar.cpp:272
msgid "Global label" msgid "Global label"
...@@ -7126,7 +7119,7 @@ msgstr "Label Global" ...@@ -7126,7 +7119,7 @@ msgstr "Label Global"
#: eeschema/menubar.cpp:273 #: eeschema/menubar.cpp:273
msgid "Place the global label. Warning: all global labels with the same name are connected in whole hierarchy" msgid "Place the global label. Warning: all global labels with the same name are connected in whole hierarchy"
msgstr "" msgstr "Placerun label global. Attention: tous les labels globaux avec le mme nom sont connects dans toute la hierarchie"
#: eeschema/menubar.cpp:282 #: eeschema/menubar.cpp:282
#: eeschema/eelayer.h:85 #: eeschema/eelayer.h:85
...@@ -7215,9 +7208,8 @@ msgid "&Edit" ...@@ -7215,9 +7208,8 @@ msgid "&Edit"
msgstr "&Editer" msgstr "&Editer"
#: eeschema/menubar.cpp:407 #: eeschema/menubar.cpp:407
#, fuzzy
msgid "&View" msgid "&View"
msgstr "&ViewLogic" msgstr "&Voir"
#: eeschema/menubar.cpp:408 #: eeschema/menubar.cpp:408
msgid "&Place" msgid "&Place"
...@@ -10562,7 +10554,6 @@ msgid "SheetLabel (Pin Sheet)" ...@@ -10562,7 +10554,6 @@ msgid "SheetLabel (Pin Sheet)"
msgstr "Supprimer Connecteur de hirarchie" msgstr "Supprimer Connecteur de hirarchie"
#: eeschema/eelayer.h:195 #: eeschema/eelayer.h:195
#, fuzzy
msgid "Hierarchical Label" msgid "Hierarchical Label"
msgstr "Label Hirarchique" msgstr "Label Hirarchique"
......
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