Changeset 2445
- Timestamp:
- 01/22/12 22:53:06 (17 months ago)
- Location:
- trunk/src/gui/src
- Files:
-
- 2 modified
-
HydrogenApp.cpp (modified) (3 diffs)
-
MainForm.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gui/src/HydrogenApp.cpp
r2439 r2445 195 195 196 196 if( uiLayout == Preferences::UI_LAYOUT_TABBED) 197 pTab->addTab( m_pSongEditorPanel, "Song Editor");197 pTab->addTab( m_pSongEditorPanel, trUtf8("Song Editor") ); 198 198 199 199 // this HBox will contain the InstrumentRack and the Pattern editor … … 210 210 pTab->setMovable(true); 211 211 pTab->setTabsClosable(true); 212 pTab->addTab( pSouthPanel, " Instrument + Pattern ");212 pTab->addTab( pSouthPanel, trUtf8( "Instrument + Pattern") ); 213 213 } 214 214 … … 252 252 253 253 if( uiLayout == Preferences::UI_LAYOUT_TABBED){ 254 pTab->addTab(m_pMixer, "Mixer");254 pTab->addTab(m_pMixer,trUtf8("Mixer")); 255 255 } 256 256 -
trunk/src/gui/src/MainForm.cpp
r2410 r2445 282 282 283 283 // Undo menu 284 QMenu *m_pUndoMenu = m_pMenubar->addMenu( trUtf8( " Undo" ) );284 QMenu *m_pUndoMenu = m_pMenubar->addMenu( trUtf8( "&Undo" ) ); 285 285 m_pUndoMenu->addAction( trUtf8( "Undo" ), this, SLOT( action_undo() ), QKeySequence( "Ctrl+Z" ) ); 286 286 m_pUndoMenu->addAction( trUtf8( "Redo" ), this, SLOT( action_redo() ), QKeySequence( "Shift+Ctrl+Z" ) );