Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kicad-source-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
kicad-source-mirror
Commits
6bd8fa1d
Commit
6bd8fa1d
authored
Apr 19, 2015
by
unknown
Committed by
jean-pierre charras
Apr 19, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix I18n issues
parent
c2f8898c
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
10 deletions
+10
-10
hotkeys.cpp
eeschema/hotkeys.cpp
+5
-5
menubar.cpp
eeschema/menubar.cpp
+3
-3
hotkeys.cpp
pagelayout_editor/hotkeys.cpp
+1
-1
pl_editor_frame.cpp
pagelayout_editor/pl_editor_frame.cpp
+1
-1
No files found.
eeschema/hotkeys.cpp
View file @
6bd8fa1d
...
...
@@ -323,15 +323,15 @@ struct EDA_HOTKEY_CONFIG g_Eeschema_Hokeys_Descr[] =
{
{
&
g_CommonSectionTag
,
common_Hotkey_List
,
&
commonSectionTitle
},
{
&
schematicSectionTag
,
schematic_Hotkey_List
,
&
schematicSectionTitle
},
{
&
libEditSectionTag
,
libEdit_Hotkey_List
,
&
schematic
SectionTitle
},
{
NULL
,
NULL
,
NULL
}
{
&
libEditSectionTag
,
libEdit_Hotkey_List
,
&
libEdit
SectionTitle
},
{
NULL
,
NULL
,
NULL
}
};
// list of sections and corresponding hotkey list for the schematic editor
// (used to list current hotkeys)
struct
EDA_HOTKEY_CONFIG
g_Schematic_Hokeys_Descr
[]
=
{
{
&
g_CommonSectionTag
,
common_Hotkey_List
,
&
commonSectionTitle
},
{
&
g_CommonSectionTag
,
common_Hotkey_List
,
&
commonSectionTitle
},
{
&
schematicSectionTitle
,
schematic_Hotkey_List
,
&
schematicSectionTitle
},
{
NULL
,
NULL
,
NULL
}
};
...
...
@@ -340,8 +340,8 @@ struct EDA_HOTKEY_CONFIG g_Schematic_Hokeys_Descr[] =
// (used to list current hotkeys)
struct
EDA_HOTKEY_CONFIG
g_Libedit_Hokeys_Descr
[]
=
{
{
&
g_CommonSectionTag
,
common_Hotkey_List
,
&
commonSectionTitle
},
{
&
libEditSectionTag
,
libEdit_Hotkey_List
,
&
schematic
SectionTitle
},
{
&
g_CommonSectionTag
,
common_Hotkey_List
,
&
commonSectionTitle
},
{
&
libEditSectionTag
,
libEdit_Hotkey_List
,
&
libEdit
SectionTitle
},
{
NULL
,
NULL
,
NULL
}
};
...
...
eeschema/menubar.cpp
View file @
6bd8fa1d
...
...
@@ -335,7 +335,7 @@ void SCH_EDIT_FRAME::ReCreateMenuBar()
KiBitmap
(
add_hierarchical_label_xpm
)
);
text
=
AddHotkeyName
(
_
(
"H
&
ierarchical &Sheet"
),
g_Schematic_Hokeys_Descr
,
text
=
AddHotkeyName
(
_
(
"Hierarchical &Sheet"
),
g_Schematic_Hokeys_Descr
,
HK_ADD_HIER_SHEET
,
IS_ACCELERATOR
);
// add an accelerator, not a shortcut
AddMenuItem
(
placeMenu
,
ID_SHEET_SYMBOL_BUTT
,
text
,
HELP_PLACE_SHEET
,
...
...
@@ -355,13 +355,13 @@ void SCH_EDIT_FRAME::ReCreateMenuBar()
placeMenu
->
AppendSeparator
();
text
=
AddHotkeyName
(
_
(
"Graphic Polyline"
),
g_Schematic_Hokeys_Descr
,
text
=
AddHotkeyName
(
_
(
"Graphic Pol
&
yline"
),
g_Schematic_Hokeys_Descr
,
HK_ADD_GRAPHIC_POLYLINE
,
IS_ACCELERATOR
);
// add an accelerator, not a shortcut
AddMenuItem
(
placeMenu
,
ID_LINE_COMMENT_BUTT
,
text
,
HELP_PLACE_GRAPHICLINES
,
KiBitmap
(
add_dashed_line_xpm
)
);
text
=
AddHotkeyName
(
_
(
"Graphic Text"
),
g_Schematic_Hokeys_Descr
,
text
=
AddHotkeyName
(
_
(
"Graphic
&
Text"
),
g_Schematic_Hokeys_Descr
,
HK_ADD_GRAPHIC_TEXT
,
IS_ACCELERATOR
);
// add an accelerator, not a shortcut
AddMenuItem
(
placeMenu
,
ID_TEXT_COMMENT_BUTT
,
text
,
HELP_PLACE_GRAPHICTEXTS
,
...
...
pagelayout_editor/hotkeys.cpp
View file @
6bd8fa1d
...
...
@@ -116,7 +116,7 @@ static wxString commonSectionTitle( _HKI( "Common" ) );
// list of sections and corresponding hotkey list for Pl_Editor
// (used to create an hotkey config file)
static
wxString
s_PlEditorSectionTag
(
wxT
(
"[pl_editor]"
)
);
static
wxString
s_PlEditorSectionTitle
(
wxT
(
"Part
Layout Editor"
)
);
static
wxString
s_PlEditorSectionTitle
(
_HKI
(
"Page
Layout Editor"
)
);
struct
EDA_HOTKEY_CONFIG
s_PlEditor_Hokeys_Descr
[]
=
{
...
...
pagelayout_editor/pl_editor_frame.cpp
View file @
6bd8fa1d
...
...
@@ -454,7 +454,7 @@ void PL_EDITOR_FRAME::UpdateStatusBar()
double
dXpos
=
To_User_Unit
(
g_UserUnit
,
coord
.
x
*
Xsign
);
double
dYpos
=
To_User_Unit
(
g_UserUnit
,
coord
.
y
*
Ysign
);
wxString
pagesizeformatter
=
wxT
(
"Page size: width %.4g height %.4g"
);
wxString
pagesizeformatter
=
_
(
"Page size: width %.4g height %.4g"
);
wxString
absformatter
=
wxT
(
"X %.4g Y %.4g"
);
wxString
locformatter
=
wxT
(
"dx %.4g dy %.4g"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment