Title case for menus.
This commit is contained in:
parent
37e8a008ab
commit
51f6d38d08
|
@ -44,8 +44,8 @@ TOOL_ACTION EDA_3D_ACTIONS::pivotCenter( TOOL_ACTION_ARGS()
|
|||
.Name( "3DViewer.Control.pivotCenter" )
|
||||
.Scope( AS_ACTIVE )
|
||||
.DefaultHotkey( ' ' )
|
||||
.MenuText( _( "Center pivot rotation" ) )
|
||||
.Tooltip( _( "Center pivot rotation (middle mouse click)" ) )
|
||||
.MenuText( _( "Set Pivot" ) )
|
||||
.Tooltip( _( "Place point around which the board will be rotated (middle mouse click)" ) )
|
||||
.Flags( AF_NONE )
|
||||
.Parameter( VIEW3D_TYPE::VIEW3D_PIVOT_CENTER ) );
|
||||
|
||||
|
@ -107,7 +107,7 @@ TOOL_ACTION EDA_3D_ACTIONS::moveLeft( TOOL_ACTION_ARGS()
|
|||
.Name( "3DViewer.Control.moveLeft" )
|
||||
.Scope( AS_ACTIVE )
|
||||
.DefaultHotkey( WXK_LEFT )
|
||||
.MenuText( _( "Move board Left" ) )
|
||||
.MenuText( _( "Move Board Left" ) )
|
||||
.Tooltip( _( "Move board Left" ) )
|
||||
.Icon( BITMAPS::left )
|
||||
.Flags( AF_NONE )
|
||||
|
@ -117,7 +117,7 @@ TOOL_ACTION EDA_3D_ACTIONS::moveRight( TOOL_ACTION_ARGS()
|
|||
.Name( "3DViewer.Control.moveRight" )
|
||||
.Scope( AS_ACTIVE )
|
||||
.DefaultHotkey( WXK_RIGHT )
|
||||
.MenuText( _( "Move board Right" ) )
|
||||
.MenuText( _( "Move Board Right" ) )
|
||||
.Tooltip( _( "Move board Right" ) )
|
||||
.Icon( BITMAPS::right )
|
||||
.Flags( AF_NONE )
|
||||
|
@ -127,7 +127,7 @@ TOOL_ACTION EDA_3D_ACTIONS::moveUp( TOOL_ACTION_ARGS()
|
|||
.Name( "3DViewer.Control.moveUp" )
|
||||
.Scope( AS_ACTIVE )
|
||||
.DefaultHotkey( WXK_UP )
|
||||
.MenuText( _( "Move board Up" ) )
|
||||
.MenuText( _( "Move Board Up" ) )
|
||||
.Tooltip( _( "Move board Up" ) )
|
||||
.Icon( BITMAPS::up )
|
||||
.Flags( AF_NONE )
|
||||
|
@ -137,7 +137,7 @@ TOOL_ACTION EDA_3D_ACTIONS::moveDown( TOOL_ACTION_ARGS()
|
|||
.Name( "3DViewer.Control.moveDown" )
|
||||
.Scope( AS_ACTIVE )
|
||||
.DefaultHotkey( WXK_DOWN )
|
||||
.MenuText( _( "Move board Down" ) )
|
||||
.MenuText( _( "Move Board Down" ) )
|
||||
.Tooltip( _( "Move board Down" ) )
|
||||
.Icon( BITMAPS::down )
|
||||
.Flags( AF_NONE )
|
||||
|
@ -147,7 +147,7 @@ TOOL_ACTION EDA_3D_ACTIONS::homeView( TOOL_ACTION_ARGS()
|
|||
.Name( "3DViewer.Control.homeView" )
|
||||
.Scope( AS_ACTIVE )
|
||||
.DefaultHotkey( WXK_HOME )
|
||||
.MenuText ( _( "Home view" ) )
|
||||
.MenuText ( _( "Home View" ) )
|
||||
.Tooltip( _( "Home view" ) )
|
||||
.Flags( AF_NONE )
|
||||
.Parameter( VIEW3D_TYPE::VIEW3D_FIT_SCREEN ) );
|
||||
|
@ -156,7 +156,7 @@ TOOL_ACTION EDA_3D_ACTIONS::resetView( TOOL_ACTION_ARGS()
|
|||
.Name( "3DViewer.Control.resetView" )
|
||||
.Scope( AS_ACTIVE )
|
||||
.DefaultHotkey( 'R' )
|
||||
.MenuText( _( "Reset view" ) )
|
||||
.MenuText( _( "Reset View" ) )
|
||||
.Tooltip( _( "Reset view" ) )
|
||||
.Flags( AF_NONE )
|
||||
.Parameter( VIEW3D_TYPE::VIEW3D_RESET ) );
|
||||
|
@ -174,7 +174,7 @@ TOOL_ACTION EDA_3D_ACTIONS::flipView( TOOL_ACTION_ARGS()
|
|||
TOOL_ACTION EDA_3D_ACTIONS::toggleOrtho( TOOL_ACTION_ARGS()
|
||||
.Name( "3DViewer.Control.toggleOrtho" )
|
||||
.Scope( AS_GLOBAL )
|
||||
.MenuText( _( "Toggle orthographic projection" ) )
|
||||
.MenuText( _( "Toggle Orthographic Projection" ) )
|
||||
.Tooltip( _( "Enable/disable orthographic projection" ) )
|
||||
.Icon( BITMAPS::ortho ) );
|
||||
|
||||
|
|
Loading…
Reference in New Issue