Changeset 2445

Show
Ignore:
Timestamp:
01/22/12 22:53:06 (17 months ago)
Author:
mauser
Message:

applied changes which were proposed by Alexandre

Location:
trunk/src/gui/src
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/gui/src/HydrogenApp.cpp

    r2439 r2445  
    195195 
    196196        if( uiLayout == Preferences::UI_LAYOUT_TABBED) 
    197             pTab->addTab( m_pSongEditorPanel, "Song Editor" ); 
     197            pTab->addTab( m_pSongEditorPanel, trUtf8("Song Editor") ); 
    198198 
    199199        // this HBox will contain the InstrumentRack and the Pattern editor 
     
    210210            pTab->setMovable(true); 
    211211            pTab->setTabsClosable(true); 
    212             pTab->addTab( pSouthPanel, " Instrument + Pattern " ); 
     212            pTab->addTab( pSouthPanel, trUtf8( "Instrument + Pattern") ); 
    213213        } 
    214214 
     
    252252 
    253253        if( uiLayout == Preferences::UI_LAYOUT_TABBED){ 
    254                 pTab->addTab(m_pMixer,"Mixer"); 
     254                pTab->addTab(m_pMixer,trUtf8("Mixer")); 
    255255        } 
    256256 
  • trunk/src/gui/src/MainForm.cpp

    r2410 r2445  
    282282 
    283283        // Undo menu 
    284         QMenu *m_pUndoMenu = m_pMenubar->addMenu( trUtf8( "Undo" ) ); 
     284        QMenu *m_pUndoMenu = m_pMenubar->addMenu( trUtf8( "&Undo" ) ); 
    285285        m_pUndoMenu->addAction( trUtf8( "Undo" ), this, SLOT( action_undo() ), QKeySequence( "Ctrl+Z" ) ); 
    286286        m_pUndoMenu->addAction( trUtf8( "Redo" ), this, SLOT( action_redo() ), QKeySequence( "Shift+Ctrl+Z" ) );