--nextPart1364988.4WOuhZzqQM Content-Type: multipart/alternative; boundary="nextPart3567182.mJIzEXUOBA" Content-Transfer-Encoding: 7Bit --nextPart3567182.mJIzEXUOBA Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="iso-8859-1" Hi, I would like to kindly ask for approval for the attached patch for = Rocs,=20 as suggested by Burkhard L=FCck. This patch shortens strings for severa= l=20 alignment operations that are grouped in an alignment toolbar. It intro= duces 7=20 new strings. I attached the patch to this mail. Greetings, Andreas --nextPart3567182.mJIzEXUOBA Content-Transfer-Encoding: quoted-printable Content-Type: text/html; charset="iso-8859-1"

Hi,= I would like to kindly ask for approval for the attached patch for Roc= s, as suggested by Burkhard L=FCck. This patch shortens strings for sev= eral alignment operations that are grouped in an alignment toolbar. It = introduces 7 new strings.

 

I a= ttached the patch to this mail.

 

Gre= etings,

= Andreas

--nextPart3567182.mJIzEXUOBA-- --nextPart1364988.4WOuhZzqQM Content-Disposition: attachment; filename="0001-Use-shorter-names-for-action.patch" Content-Transfer-Encoding: 7Bit Content-Type: text/x-patch; charset="UTF-8"; name="0001-Use-shorter-names-for-action.patch" From b46f602669019366fb297cdd07e8d271d07159cf Mon Sep 17 00:00:00 2001 From: Andreas Cord-Landwehr Date: Fri, 2 Dec 2011 23:19:58 +0100 Subject: [PATCH] Use shorter names for action. --- src/Interface/MainWindow.cpp | 16 ++++++++-------- 1 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/Interface/MainWindow.cpp b/src/Interface/MainWindow.cpp index 5abd5df..a1a6413 100644 --- a/src/Interface/MainWindow.cpp +++ b/src/Interface/MainWindow.cpp @@ -312,14 +312,14 @@ void MainWindow::setupActions() actionCollection()->action ( "selectmove" )->toggle(); gc->setAction ( _selectMoveAction ); - _paletteActions->addAction ( "align-hbottom",new AlignAction ( i18n ( "Align on the base" ), AlignAction::Bottom, gc, _graphVisualEditor ) ); - _paletteActions->addAction ( "align-hcenter",new AlignAction ( i18n ( "Align on the center" ),AlignAction::HCenter,gc,_graphVisualEditor ) ); - _paletteActions->addAction ( "align-htop", new AlignAction ( i18n ( "Align on the top" ), AlignAction::Top, gc,_graphVisualEditor ) ); - _paletteActions->addAction ( "align-vleft", new AlignAction ( i18n ( "Align on the left" ), AlignAction::Left, gc,_graphVisualEditor ) ); - _paletteActions->addAction ( "align-vcenter",new AlignAction ( i18n ( "Align on the center" ),AlignAction::VCenter,gc,_graphVisualEditor ) ); - _paletteActions->addAction ( "align-vright", new AlignAction ( i18n ( "Align on the right" ), AlignAction::Right, gc,_graphVisualEditor ) ); - _paletteActions->addAction ( "align-circle", new AlignAction ( i18n ( "Align on a circle" ), AlignAction::Circle, gc,_graphVisualEditor ) ); - _paletteActions->addAction ( "align-tree", new AlignAction ( i18n ( "Minimize Crossing Edges" ), AlignAction::MinCutTree, gc, _graphVisualEditor ) ); + _paletteActions->addAction ( "align-hbottom",new AlignAction ( i18nc( "Alignment", "Base" ), AlignAction::Bottom, gc, _graphVisualEditor ) ); + _paletteActions->addAction ( "align-hcenter",new AlignAction ( i18nc( "Alignment", "Center" ),AlignAction::HCenter,gc,_graphVisualEditor ) ); + _paletteActions->addAction ( "align-htop", new AlignAction ( i18nc( "Alignment", "Top" ), AlignAction::Top, gc,_graphVisualEditor ) ); + _paletteActions->addAction ( "align-vleft", new AlignAction ( i18nc( "Alignment", "Left" ), AlignAction::Left, gc,_graphVisualEditor ) ); + _paletteActions->addAction ( "align-vcenter",new AlignAction ( i18nc( "Alignment", "Center" ),AlignAction::VCenter,gc,_graphVisualEditor ) ); + _paletteActions->addAction ( "align-vright", new AlignAction ( i18nc( "Alignment", "Right" ), AlignAction::Right, gc,_graphVisualEditor ) ); + _paletteActions->addAction ( "align-circle", new AlignAction ( i18nc( "Alignment", "Circle" ), AlignAction::Circle, gc,_graphVisualEditor ) ); + _paletteActions->addAction ( "align-tree", new AlignAction ( i18nc( "Alignment", "Minimize Crossing Edges" ), AlignAction::MinCutTree, gc, _graphVisualEditor ) ); // Menu actions createAction("document-new", i18n("New Graph"), "new-graph", SLOT(newGraph()), this); -- 1.7.7.3 --nextPart1364988.4WOuhZzqQM--