filemanager/src/filemanager/src/fmdriverview.cpp
changeset 16 ada7962b4308
parent 14 1957042d8c7e
child 18 edd66bde63a4
child 25 b7bfdea70ca2
child 37 15bc28c9dd51
--- a/filemanager/src/filemanager/src/fmdriverview.cpp	Fri Apr 16 14:53:38 2010 +0300
+++ b/filemanager/src/filemanager/src/fmdriverview.cpp	Mon May 03 12:24:39 2010 +0300
@@ -35,6 +35,7 @@
     initMenu(); 
     initToolBar();
     initDiskListWidget();
+
     QMetaObject::connectSlotsByName( this );
 }
 
@@ -50,28 +51,28 @@
 #ifdef FM_CHANGE_ORIENT_ENABLE
     action = new HbAction( this );
     action->setObjectName( "rotateAction" );
-    action->setText( tr( "Change orientation" ) );
+    action->setText( hbTrId( "Change orientation" ) );
     menu()->addAction( action );
 #endif
 
     action = new HbAction( this );
     action->setObjectName( "findAction" );
-    action->setText( tr( "Find" ) );
+    action->setText( hbTrId( "txt_fmgr_opt_find" ) );
     menu()->addAction( action );
 
     action = new HbAction( this );
     action->setObjectName( "backupAction" );
-    action->setText( tr( "Backup" ) );
+    action->setText( hbTrId( "txt_fmgr_opt_backup" ) );
     menu()->addAction( action );
 
     action = new HbAction( this );
     action->setObjectName( "restoreAction" );
-    action->setText( tr( "Restore" ) );
+    action->setText( hbTrId( "txt_fmgr_opt_restore" )  );
     menu()->addAction( action );
    
     action = new HbAction( this );
     action->setObjectName( "exitAction" );
-    action->setText( tr( "Exit" ) );
+    action->setText( hbTrId( "Exit" ) );
     menu()->addAction( action );
 
 }