author | cniehaus <cniehaus> | 2002-04-06 22:13:29 (UTC) |
---|---|---|
committer | cniehaus <cniehaus> | 2002-04-06 22:13:29 (UTC) |
commit | 87f575fe82855705c5efe7999b8c717a67705a6c (patch) (side-by-side diff) | |
tree | d11016d0dba92cd339b896de6c0befc8fce4d9c1 | |
parent | ff738f21389de58913ce9bf2210e53f1f053aeac (diff) | |
download | opie-87f575fe82855705c5efe7999b8c717a67705a6c.zip opie-87f575fe82855705c5efe7999b8c717a67705a6c.tar.gz opie-87f575fe82855705c5efe7999b8c717a67705a6c.tar.bz2 |
this fixes i18n-stuff
-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 @@ -241,64 +241,64 @@ void Konsole::init(const char* _pgm, QStrList & _args) for(uint i = 0; i < fonts.count(); i++) { VTFont *fnt = fonts.at(i); fontList->insertItem(fnt->getName(), i); } 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; // Button Commands a = new QAction( tr("New"), Resource::loadPixmap( "konsole" ), QString::null, 0, this, 0 ); connect( a, SIGNAL( activated() ), this, SLOT( newSession() ) ); a->addTo( toolbar ); @@ -314,56 +314,56 @@ void Konsole::init(const char* _pgm, QStrList & _args) connect( a, SIGNAL( activated() ), this, SLOT( hitDown() ) ); a->addTo( toolbar ); a = new QAction( tr("Paste"), Resource::loadPixmap( "paste" ), QString::null, 0, this, 0 ); connect( a, SIGNAL( activated() ), this, SLOT( hitPaste() ) ); a->addTo( toolbar ); /* 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; se_args = _args; parseCommandLine(); // read and apply default values /////////////////////////////////////////// @@ -789,38 +789,38 @@ void Konsole::scrollMenuSelected(int index) cfg.writeEntry("Position",2); break; }; } 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 ); } } } if( iD == -22) { cfg.setGroup("Commands"); // qDebug("enableCommandEdit"); if( !configMenu->isItemChecked(iD) ) { |