/*
Bacula® - The Network Backup Solution
- Copyright (C) 2007-2007 Free Software Foundation Europe e.V.
+ Copyright (C) 2007-2008 Free Software Foundation Europe e.V.
The main author of Bacula is Kern Sibbald, with contributions from
many others, a complete list can be found in the file AUTHORS.
/*
Bacula® - The Network Backup Solution
- Copyright (C) 2000-2007 Free Software Foundation Europe e.V.
+ Copyright (C) 2000-2008 Free Software Foundation Europe e.V.
The main author of Bacula is Kern Sibbald, with contributions from
many others, a complete list can be found in the file AUTHORS.
/*
Bacula® - The Network Backup Solution
- Copyright (C) 2007-2007 Free Software Foundation Europe e.V.
+ Copyright (C) 2007-2008 Free Software Foundation Europe e.V.
The main author of Bacula is Kern Sibbald, with contributions from
many others, a complete list can be found in the file AUTHORS.
QString title, director;
treeWidgetName(title);
m_console->getDirResName(director);
- title += " of Director ";
+ title += tr(" of Director ");
title += director;
setWindowTitle(title);
}
QTreeWidgetItem *item = mainWin->getFromHash(this);
QString docktext("");
if (isDocked()) {
- docktext += "UnDock ";
+ docktext += tr("UnDock ");
} else {
- docktext += "ReDock ";
+ docktext += tr("ReDock ");
}
- docktext += item->text(0) += " Window";
+ docktext += item->text(0) += tr(" Window");
mainWin->actionToggleDock->setText(docktext);
setTreeWidgetItemDockColor();
/*
Bacula® - The Network Backup Solution
- Copyright (C) 2007-2007 Free Software Foundation Europe e.V.
+ Copyright (C) 2007-2008 Free Software Foundation Europe e.V.
The main author of Bacula is Kern Sibbald, with contributions from
many others, a complete list can be found in the file AUTHORS.