-rw-r--r-- | core/apps/embeddedkonsole/konsole.cpp | 50 |
1 files changed, 25 insertions, 25 deletions
diff --git a/core/apps/embeddedkonsole/konsole.cpp b/core/apps/embeddedkonsole/konsole.cpp index 16ff4df..f13d0c9 100644 --- a/core/apps/embeddedkonsole/konsole.cpp +++ b/core/apps/embeddedkonsole/konsole.cpp @@ -245,56 +245,56 @@ void Konsole::init(const char* _pgm, QStrList & _args) fontChanged(cfont); configMenu = new QPopupMenu( this); colorMenu = new QPopupMenu( this); scrollMenu = new QPopupMenu( this); editCommandListMenu = new QPopupMenu( this); configMenu->insertItem("Command List",editCommandListMenu); bool listHidden; cfg.setGroup("Menubar"); if( cfg.readEntry("Hidden","FALSE") == "TRUE") { - editCommandListMenu->insertItem("Show command list"); + editCommandListMenu->insertItem( tr( "Show command list" )); listHidden=TRUE; } else { - editCommandListMenu->insertItem("Hide command list"); + editCommandListMenu->insertItem( tr( "Hide command list" )); listHidden=FALSE; } cfg.setGroup("Tabs"); tmp=cfg.readEntry("Position","Bottom"); if(tmp=="Top") { tab->setTabPosition(QTabWidget::Top); - configMenu->insertItem("Tabs on Bottom"); + configMenu->insertItem( tr( "Tabs on Bottom" ) ); } else { tab->setTabPosition(QTabWidget::Bottom); configMenu->insertItem("Tabs on Top"); } configMenu->insertSeparator(2); - colorMenu->insertItem("Green on Black"); - colorMenu->insertItem("Black on White"); - colorMenu->insertItem("White on Black"); - colorMenu->insertItem("Black on Transparent"); - colorMenu->insertItem("Black on Red"); - colorMenu->insertItem("Red on Black"); - colorMenu->insertItem("Green on Yellow"); - colorMenu->insertItem("Blue on Magenta"); - colorMenu->insertItem("Magenta on Blue"); - colorMenu->insertItem("Cyan on White"); - colorMenu->insertItem("White on Cyan"); - colorMenu->insertItem("Blue on Black"); - colorMenu->insertItem("Amber on Black"); - configMenu->insertItem("Colors",colorMenu); + colorMenu->insertItem(tr( "Green on Black")); + colorMenu->insertItem(tr( "Black on White")); + colorMenu->insertItem(tr( "White on Black")); + colorMenu->insertItem(tr( "Black on Transparent")); + colorMenu->insertItem(tr( "Black on Red")); + colorMenu->insertItem(tr( "Red on Black")); + colorMenu->insertItem(tr( "Green on Yellow")); + colorMenu->insertItem(tr( "Blue on Magenta")); + colorMenu->insertItem(tr( "Magenta on Blue")); + colorMenu->insertItem(tr( "Cyan on White")); + colorMenu->insertItem(tr( "White on Cyan")); + colorMenu->insertItem(tr( "Blue on Black")); + colorMenu->insertItem(tr( "Amber on Black")); + configMenu->insertItem(tr( "Colors") ,colorMenu); connect( fontList, SIGNAL( activated(int) ), this, SLOT( fontChanged(int) )); connect( configMenu, SIGNAL( activated(int) ), this, SLOT( configMenuSelected(int) )); connect( colorMenu, SIGNAL( activated(int) ), this, SLOT( colorMenuSelected(int) )); connect( scrollMenu, SIGNAL(activated(int)),this,SLOT(scrollMenuSelected(int))); connect(editCommandListMenu,SIGNAL(activated(int)),this,SLOT(editCommandListMenuSelected(int))); menuBar->insertItem( tr("Font"), fontList ); menuBar->insertItem( tr("Options"), configMenu ); QPEToolBar *toolbar = new QPEToolBar( this ); QAction *a; @@ -318,48 +318,48 @@ void Konsole::init(const char* _pgm, QStrList & _args) a = new QAction( tr("Up"), Resource::loadPixmap( "up" ), QString::null, 0, this, 0 ); connect( a, SIGNAL( activated() ), this, SLOT( hitUp() ) ); a->addTo( toolbar ); a = new QAction( tr("Down"), Resource::loadPixmap( "down" ), QString::null, 0, this, 0 ); connect( a, SIGNAL( activated() ), this, SLOT( hitDown() ) ); a->addTo( toolbar ); */ secondToolBar = new QPEToolBar( this ); secondToolBar->setHorizontalStretchable( TRUE ); commonCombo = new QComboBox( secondToolBar ); commonCombo->setMaximumWidth(236); - editCommandListMenu->insertItem( "Quick Edit"); + editCommandListMenu->insertItem( tr( "Quick Edit" ) ); if( listHidden) { secondToolBar->hide(); editCommandListMenu->setItemEnabled(-22 ,FALSE); } - editCommandListMenu->insertItem( "Edit"); + editCommandListMenu->insertItem(tr( "Edit" ) ); cfg.setGroup("Commands"); commonCombo->setInsertionPolicy(QComboBox::AtCurrent); initCommandList(); // for (int i = 0; commonCmds[i] != NULL; i++) { // commonCombo->insertItem( commonCmds[i], i ); // tmp = cfg.readEntry( QString::number(i),""); // if(tmp != "") // commonCombo->changeItem( tmp,i ); // } connect( commonCombo, SIGNAL( activated(int) ), this, SLOT( enterCommand(int) )); - scrollMenu->insertItem("None"); - scrollMenu->insertItem("Left"); - scrollMenu->insertItem("Right"); - configMenu->insertItem("ScrollBar",scrollMenu); + scrollMenu->insertItem(tr( "None" )); + scrollMenu->insertItem(tr( "Left" )); + scrollMenu->insertItem(tr( "Right" )); + configMenu->insertItem(tr( "ScrollBar" ),scrollMenu); // create applications ///////////////////////////////////////////////////// setCentralWidget(tab); // load keymaps //////////////////////////////////////////////////////////// KeyTrans::loadAll(); for (int i = 0; i < KeyTrans::count(); i++) { KeyTrans* s = KeyTrans::find(i); assert( s ); } se_pgm = _pgm; @@ -793,30 +793,30 @@ void Konsole::scrollMenuSelected(int index) } void Konsole::editCommandListMenuSelected(int iD) { // QString temp; // qDebug( temp.sprintf("edit command list %d",iD)); TEWidget* te = getTe(); Config cfg("Konsole"); cfg.setGroup("Menubar"); if( iD == -3) { if(!secondToolBar->isHidden()) { secondToolBar->hide(); - configMenu->changeItem( iD,"Show Command List"); + configMenu->changeItem( iD,tr( "Show Command List" )); cfg.writeEntry("Hidden","TRUE"); configMenu->setItemEnabled(-22 ,FALSE); } else { secondToolBar->show(); - configMenu->changeItem( iD,"Hide Command List"); + configMenu->changeItem( iD,tr( "Hide Command List" )); cfg.writeEntry("Hidden","FALSE"); configMenu->setItemEnabled(-22 ,TRUE); if(cfg.readEntry("EditEnabled","FALSE")=="TRUE") { configMenu->setItemChecked(-22,TRUE); commonCombo->setEditable( TRUE ); } else { configMenu->setItemChecked(-22,FALSE); commonCombo->setEditable( FALSE ); } } } |