From 253f0523c6be2c8e16f74c640dfb40838a332477 Mon Sep 17 00:00:00 2001 From: Stephan Binner Date: Sun, 9 May 2010 11:06:38 +0000 Subject: [PATCH] SVN_SILENT i18n style guide fixes svn path=/trunk/KDE/kdebase/workspace/; revision=1124548 --- useractions.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/useractions.cpp b/useractions.cpp index 3a7adfa4bd..6c4585bac7 100644 --- a/useractions.cpp +++ b/useractions.cpp @@ -176,13 +176,13 @@ QMenu* Workspace::clientPopup() // Actions for window tabbing if( decorationSupportsClientGrouping() ) { - mRemoveTabGroup = popup->addAction( i18n("Remove &from group") ); + mRemoveTabGroup = popup->addAction( i18n("Remove &From Group") ); kaction = qobject_cast( keys->action("Remove TabGroup") ); if( kaction!=0 ) mRemoveTabGroup->setShortcut( kaction->globalShortcut().primary() ); mRemoveTabGroup->setData( Options::RemoveClientFromGroupOp ); - mCloseGroup = popup->addAction( i18n("Close entire &group") ); + mCloseGroup = popup->addAction( i18n("Close Entire &Group") ); mCloseGroup->setIcon( KIcon( "window-close" ) ); kaction = qobject_cast( keys->action("Close TabGroup") ); if( kaction!=0 ) @@ -337,7 +337,7 @@ void Workspace::initSwitchToTab() QAction* action = switch_to_tab_popup->menuAction(); popup->insertAction( mRemoveTabGroup, action ); - action->setText( i18n("Switch to window tab") ); + action->setText( i18n("Switch to Window Tab") ); } void Workspace::slotSwitchToTab( QAction* action ) @@ -378,9 +378,9 @@ void Workspace::switchToTabPopupAboutToShow() if( !switch_to_tab_popup ) return; switch_to_tab_popup->clear(); - QAction* action = switch_to_tab_popup->addAction( i18n( "To the left" )); + QAction* action = switch_to_tab_popup->addAction( i18n( "To the Left" )); action->setData( 0 ); - action = switch_to_tab_popup->addAction( i18n( "To the right" )); + action = switch_to_tab_popup->addAction( i18n( "To the Right" )); action->setData( 1 ); switch_to_tab_popup->addSeparator(); int index = 2; @@ -409,7 +409,7 @@ void Workspace::initAddToTabGroup() QAction* action = add_tabs_popup->menuAction(); popup->insertAction( mRemoveTabGroup, action ); - action->setText( i18n("Move window to group") ); + action->setText( i18n("Move Window to Group") ); } void Workspace::slotAddToTabGroup( QAction* action )