-rw-r--r-- | noncore/settings/tabmanager/tabmanager.cpp | 27 |
1 files changed, 17 insertions, 10 deletions
diff --git a/noncore/settings/tabmanager/tabmanager.cpp b/noncore/settings/tabmanager/tabmanager.cpp index db65d26..af76251 100644 --- a/noncore/settings/tabmanager/tabmanager.cpp +++ b/noncore/settings/tabmanager/tabmanager.cpp @@ -61,5 +61,7 @@ TabManager::TabManager( QWidget* parent, const char* name):TabManagerBase(parent // Connect the signals and slots - connect(tabList, SIGNAL(doubleClicked(QListViewItem *)), this, SLOT(editItem(QListViewItem*))); + connect(tabList, SIGNAL(doubleClicked(QListViewItem *)), + this, SLOT(editItem(QListViewItem*))); (tabList->header())->hide(); - connect(tabList, SIGNAL(moveItem(QListViewItem *, QListViewItem *)), this, SLOT(moveApplication(QListViewItem *, QListViewItem *))); + connect(tabList, SIGNAL(moveItem(QListViewItem *, QListViewItem *)), + this, SLOT(moveApplication(QListViewItem *, QListViewItem *))); } @@ -72,3 +74,3 @@ TabManager::~TabManager(){ if(changed){ - //QMessageBox::critical(this, "Message", "Please restart Qtopia to see all new changes.",QString("Ok") ); + //QMessageBox::critical(this, tr("Message"), tr("Please restart Qtopia to see all new changes."),tr("Ok") ); //filename = fn; @@ -205,3 +207,4 @@ void TabManager::removeItem(){ if(item->childCount() > 0){ - QMessageBox::critical(this, "Message", "Can't remove with applications\nstill in the group.",QString("Ok") ); + QMessageBox::critical(this, tr("Message"), tr("Can't remove with applications\nstill in the group."), + tr("Ok") ); return; @@ -210,3 +213,4 @@ void TabManager::removeItem(){ // Prompt. - int answer = QMessageBox::warning(this, "Message", "Are you sure you want to delete?","Yes", "Cancel", 0, 1 ); + int answer = QMessageBox::warning(this, tr("Message"), tr("Are you sure you want to delete?"), + tr("Yes"), tr("Cancel"), 0, 1 ); if (answer) @@ -232,3 +236,4 @@ void TabManager::removeItem(){ qDebug((QString("removeItem: ") + location).latin1()); - QMessageBox::critical(this, "Message", "Can't remove.",QString("Ok") ); + QMessageBox::critical(this, tr("Message"), tr("Can't remove."), + tr("Ok") ); return; @@ -272,3 +277,3 @@ void TabManager::editItem( QListViewItem * item){ - AppEdit application(this, "Application edit", true); + AppEdit application(this, tr("Application edit"), true); application.nameLineEdit->setText(app.name()); @@ -281,3 +286,3 @@ void TabManager::editItem( QListViewItem * item){ application.TextLabel3->setEnabled(false); - application.setCaption("Tab"); + application.setCaption(tr("Tab")); } @@ -302,3 +307,4 @@ void TabManager::editItem( QListViewItem * item){ if(!app.writeLink()){ - QMessageBox::critical(this, "Message", "Can't save.",QString("Ok") ); + QMessageBox::critical(this, tr("Message"), tr("Can't save."), + tr("Ok") ); return; @@ -366,3 +372,4 @@ void TabManager::moveApplication(QListViewItem *item, QListViewItem *newGroup){ if(!r.rename(itemList[item], newFolder)){ - QMessageBox::critical(this, "Message", "Can't move application.",QString("Ok") ); + QMessageBox::critical(this, tr("Message"), tr("Can't move application."), + tr("Ok") ); return; |