author | harlekin <harlekin> | 2002-08-25 14:46:55 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-08-25 14:46:55 (UTC) |
commit | 7a1c29bbf057967b1616265f384db5d12a94149f (patch) (side-by-side diff) | |
tree | 49098b2cfbb63f5123f5df4338fc4e846bab5bca | |
parent | a7e92f1571bb593fbd2ffafbb6ca9d3499448e2e (diff) | |
download | opie-7a1c29bbf057967b1616265f384db5d12a94149f.zip opie-7a1c29bbf057967b1616265f384db5d12a94149f.tar.gz opie-7a1c29bbf057967b1616265f384db5d12a94149f.tar.bz2 |
tr change by carsten
-rw-r--r-- | core/apps/embeddedkonsole/konsole.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/apps/embeddedkonsole/konsole.cpp b/core/apps/embeddedkonsole/konsole.cpp index f3792e4..a8ddc99 100644 --- a/core/apps/embeddedkonsole/konsole.cpp +++ b/core/apps/embeddedkonsole/konsole.cpp @@ -255,9 +255,9 @@ void Konsole::init(const char* _pgm, QStrList & _args) colorMenu = new QPopupMenu( this); scrollMenu = new QPopupMenu( this); editCommandListMenu = new QPopupMenu( this); - configMenu->insertItem("Command List",editCommandListMenu); + configMenu->insertItem(tr("Command List"), editCommandListMenu); bool listHidden; cfg.setGroup("Menubar"); if( cfg.readEntry("Hidden","FALSE") == "TRUE") { @@ -620,9 +620,9 @@ void Konsole::switchSession(QWidget* w) { } void Konsole::colorMenuIsSelected(int iD) { fromMenu = TRUE; - colorMenuSelected(iD); + colorMenuSelected(iD); } /// ------------------------------- some new stuff by L.J. Potter void Konsole::colorMenuSelected(int iD) @@ -752,9 +752,9 @@ void Konsole::colorMenuSelected(int iD) } lastSelectedMenu = iD; te->setColorTable(m_table); update(); - + } void Konsole::configMenuSelected(int iD) { @@ -928,9 +928,9 @@ qDebug("do other dialog"); ColorPopupMenu* penColorPopupMenu2 = new ColorPopupMenu(Qt::black, this,"background color"); connect(penColorPopupMenu2, SIGNAL(colorSelected(const QColor&)), this, SLOT(changeBackgroundColor(const QColor&))); penColorPopupMenu2->exec(); - + } void Konsole::changeBackgroundColor(const QColor &color) { |