2003-11-29 Stefan Jahn <stefan@lkcc.org>

* configure.ac: Added a LANGUAGEDIR path for translations.
        Slightly changed the BITMAPDIR.

2003-11-29  Stefan Jahn  <stefan@lkcc.org>

        * bitmaps/Makefile.am (picdatadir): Adjusted installation path
        of bitmaps.

        * qucsdoc.cpp (QucsDoc): Made much more string representations
        translatable.

        * qucs.cpp (initActions): Remove "bitmaps/" from hardcoded
        bitmap locations.  BITMAPDIR now contains the full-qualified
        location.
        Made much more string representations translatable.

        * main.cpp (main): Using LANGUAGEDIR instead of ".".

        * Makefile.am (langdata_DATA): Added translation installation
        path.
This commit is contained in:
ela 2003-11-29 11:28:15 +00:00
parent 69706cf340
commit ac08d81fbe
9 changed files with 202 additions and 168 deletions

View File

@ -1,3 +1,8 @@
2003-11-29 Stefan Jahn <stefan@lkcc.org>
* configure.ac: Added a LANGUAGEDIR path for translations.
Slightly changed the BITMAPDIR.
2003-10-30 Stefan Jahn <jahn@mwt.ee.tu-berlin.de>
* configure.in: Made the BITMAPDIR definition available through

View File

@ -64,12 +64,15 @@ dnl PACKAGE set before
KDE_CREATE_SUBDIRSLIST
dnl Create path info.
BITMAP_PATH="$prefix/share/"
BITMAP_PATH="$prefix/share/qucs/bitmaps/"
AC_DEFINE_UNQUOTED([BITMAPDIR], ["$BITMAP_PATH"], [Where the data files go.])
unset BITMAP_PATH
BIN_PATH="$prefix/bin/"
AC_DEFINE_UNQUOTED([BINARYDIR], ["$BIN_PATH"], [Where the binary files go.])
unset BIN_PATH
LANG_PATH="$prefix/share/qucs/lang/"
AC_DEFINE_UNQUOTED([LANGUAGEDIR], ["$LANG_PATH"], [Where the language files go.])
unset LANG_PATH
dnl add here all your Makefiles. This are created by configure
AC_CONFIG_FILES([ Makefile ])

View File

@ -1,3 +1,21 @@
2003-11-29 Stefan Jahn <stefan@lkcc.org>
* bitmaps/Makefile.am (picdatadir): Adjusted installation path
of bitmaps.
* qucsdoc.cpp (QucsDoc): Made much more string representations
translatable.
* qucs.cpp (initActions): Remove "bitmaps/" from hardcoded
bitmap locations. BITMAPDIR now contains the full-qualified
location.
Made much more string representations translatable.
* main.cpp (main): Using LANGUAGEDIR instead of ".".
* Makefile.am (langdata_DATA): Added translation installation
path.
2003-10-30 Stefan Jahn <jahn@mwt.ee.tu-berlin.de>
* qucsdoc.cpp, qucs.cpp: Using BITMAPDIR definition from

View File

@ -28,5 +28,9 @@ qucs_LDFLAGS = $(all_libraries)
# them while "make clean", use CLEANFILES
DISTCLEANFILES = $(qucs_METASOURCES)
# installation of translations
langdatadir = ${prefix}/share/qucs/lang
langdata_DATA =
dist-hook:
rm -f $(distdir)/$(bin_PROGRAMS)

View File

@ -5,5 +5,5 @@ EXTRA_DIST = ac_voltage.xpm arrow.xpm capacitor.xpm dc_current.xpm dc_voltage.xp
####### kdevelop will overwrite this part!!! (end)############
picdatadir = ${prefix}/share/bitmaps
picdatadir = ${prefix}/share/qucs/bitmaps
picdata_DATA = ${EXTRA_DIST}

View File

@ -15,6 +15,10 @@
* *
***************************************************************************/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <qapplication.h>
#include <qfont.h>
#include <qstring.h>
@ -31,7 +35,7 @@ int main(int argc, char *argv[])
// set the location where your .qm files are in load() below as the last parameter instead of "."
// for development, use "/" to use the english original as
// .qm files are stored in the base project directory.
tor.load( QString("qucs.") + QTextCodec::locale(), "." );
tor.load( QString("qucs.") + QTextCodec::locale(), LANGUAGEDIR );
a.installTranslator( &tor );
/* uncomment the following line, if you want a Windows 95 look*/
// a.setStyle(WindowsStyle);

View File

@ -63,7 +63,7 @@
QucsApp::QucsApp()
{
setCaption(tr("Qucs " VERSION));
setCaption("Qucs " VERSION);
resize(600,400);
///////////////////////////////////////////////////////////////////
@ -103,17 +103,17 @@ void QucsApp::initActions()
{
activeAction = 0; // no active action
fileNew = new QAction(tr("New"), QIconSet(QImage(BITMAPDIR "bitmaps/filenew.png")), tr("&New"), QAccel::stringToKey(tr("Ctrl+N")), this);
fileNew = new QAction(tr("New"), QIconSet(QImage(BITMAPDIR "filenew.png")), tr("&New"), QAccel::stringToKey(tr("Ctrl+N")), this);
fileNew->setStatusTip(tr("Creates a new document"));
fileNew->setWhatsThis(tr("New\n\nCreates a new schematic or data display document"));
connect(fileNew, SIGNAL(activated()), this, SLOT(slotFileNew()));
fileOpen = new QAction(tr("Open File"), QIconSet(QImage(BITMAPDIR "bitmaps/fileopen.png")), tr("&Open..."), 0, this);
fileOpen = new QAction(tr("Open File"), QIconSet(QImage(BITMAPDIR "fileopen.png")), tr("&Open..."), 0, this);
fileOpen->setStatusTip(tr("Opens an existing document"));
fileOpen->setWhatsThis(tr("Open File\n\nOpens an existing document"));
connect(fileOpen, SIGNAL(activated()), this, SLOT(slotFileOpen()));
fileSave = new QAction(tr("Save File"), QIconSet(QImage(BITMAPDIR "bitmaps/filesave.png")), tr("&Save"), QAccel::stringToKey(tr("Ctrl+S")), this);
fileSave = new QAction(tr("Save File"), QIconSet(QImage(BITMAPDIR "filesave.png")), tr("&Save"), QAccel::stringToKey(tr("Ctrl+S")), this);
fileSave->setStatusTip(tr("Saves the current document"));
fileSave->setWhatsThis(tr("Save File\n\nSaves the current document"));
connect(fileSave, SIGNAL(activated()), this, SLOT(slotFileSave()));
@ -123,12 +123,12 @@ void QucsApp::initActions()
fileSaveAs->setWhatsThis(tr("Save As\n\nSaves the current document under a new filename"));
connect(fileSaveAs, SIGNAL(activated()), this, SLOT(slotFileSaveAs()));
fileSaveAll = new QAction(tr("Save All Files"), QIconSet(QImage(BITMAPDIR "bitmaps/filesaveall.png")), tr("Save &All"), 0, this);
fileSaveAll = new QAction(tr("Save All Files"), QIconSet(QImage(BITMAPDIR "filesaveall.png")), tr("Save &All"), 0, this);
fileSaveAll->setStatusTip(tr("Saves all open documents"));
fileSaveAll->setWhatsThis(tr("Save All Files\n\nSaves all open documents"));
connect(fileSaveAll, SIGNAL(activated()), this, SLOT(slotFileSaveAll()));
fileClose = new QAction(tr("Close File"), QIconSet(QImage(BITMAPDIR "bitmaps/fileclose.png")), tr("&Close"), QAccel::stringToKey(tr("Ctrl+W")), this);
fileClose = new QAction(tr("Close File"), QIconSet(QImage(BITMAPDIR "fileclose.png")), tr("&Close"), QAccel::stringToKey(tr("Ctrl+W")), this);
fileClose->setStatusTip(tr("Closes the current document"));
fileClose->setWhatsThis(tr("Close File\n\nCloses the current document"));
connect(fileClose, SIGNAL(activated()), this, SLOT(slotFileClose()));
@ -138,7 +138,7 @@ void QucsApp::initActions()
fileSettings->setWhatsThis(tr("Settings\n\nSets properties of the file"));
connect(fileSettings, SIGNAL(activated()), this, SLOT(slotFileSettings()));
filePrint = new QAction(tr("Print File"), QIconSet(QImage(BITMAPDIR "bitmaps/fileprint.png")), tr("&Print..."), QAccel::stringToKey(tr("Ctrl+P")), this);
filePrint = new QAction(tr("Print File"), QIconSet(QImage(BITMAPDIR "fileprint.png")), tr("&Print..."), QAccel::stringToKey(tr("Ctrl+P")), this);
filePrint->setStatusTip(tr("Prints the current document"));
filePrint->setWhatsThis(tr("Print File\n\nPrints the current document"));
connect(filePrint, SIGNAL(activated()), this, SLOT(slotFilePrint()));
@ -148,35 +148,35 @@ void QucsApp::initActions()
fileQuit->setWhatsThis(tr("Exit\n\nQuits the application"));
connect(fileQuit, SIGNAL(activated()), this, SLOT(slotFileQuit()));
editCut = new QAction(tr("Cut"), QIconSet(QImage(BITMAPDIR "bitmaps/editcut.png")), tr("Cu&t"), QAccel::stringToKey(tr("Ctrl+X")), this);
editCut = new QAction(tr("Cut"), QIconSet(QImage(BITMAPDIR "editcut.png")), tr("Cu&t"), QAccel::stringToKey(tr("Ctrl+X")), this);
editCut->setStatusTip(tr("Cuts the selected section and puts it to the clipboard"));
editCut->setWhatsThis(tr("Cut\n\nCuts the selected section and puts it to the clipboard"));
connect(editCut, SIGNAL(activated()), this, SLOT(slotEditCut()));
editCopy = new QAction(tr("Copy"), QIconSet(QImage(BITMAPDIR "bitmaps/editcopy.png")), tr("&Copy"), QAccel::stringToKey(tr("Ctrl+C")), this);
editCopy = new QAction(tr("Copy"), QIconSet(QImage(BITMAPDIR "editcopy.png")), tr("&Copy"), QAccel::stringToKey(tr("Ctrl+C")), this);
editCopy->setStatusTip(tr("Copies the selected section to the clipboard"));
editCopy->setWhatsThis(tr("Copy\n\nCopies the selected section to the clipboard"));
connect(editCopy, SIGNAL(activated()), this, SLOT(slotEditCopy()));
editPaste = new QAction(tr("Paste"), QIconSet(QImage(BITMAPDIR "bitmaps/editpaste.png")), tr("&Paste"), QAccel::stringToKey(tr("Ctrl+V")), this);
editPaste = new QAction(tr("Paste"), QIconSet(QImage(BITMAPDIR "editpaste.png")), tr("&Paste"), QAccel::stringToKey(tr("Ctrl+V")), this);
editPaste->setStatusTip(tr("Pastes the clipboard contents to the cursor position"));
editPaste->setWhatsThis(tr("Paste\n\nPastes the clipboard contents to the cursor position"));
editPaste->setToggleAction(true);
connect(editPaste, SIGNAL(toggled(bool)), this, SLOT(slotEditPaste(bool)));
editDelete = new QAction(tr("Delete"), QIconSet(QImage(BITMAPDIR "bitmaps/editdelete.png")), tr("&Delete"), QAccel::stringToKey(tr("Del")), this);
editDelete = new QAction(tr("Delete"), QIconSet(QImage(BITMAPDIR "editdelete.png")), tr("&Delete"), QAccel::stringToKey(tr("Del")), this);
editDelete->setStatusTip(tr("Deletes the selected components"));
editDelete->setWhatsThis(tr("Delete\n\nDeletes the selected components"));
editDelete->setToggleAction(true);
connect(editDelete, SIGNAL(toggled(bool)), this, SLOT(slotEditDelete(bool)));
undo = new QAction(tr("Undo"), QIconSet(QImage(BITMAPDIR "bitmaps/undo.png")), tr("&Undo"), QAccel::stringToKey(tr("Ctrl+Z")), this);
undo = new QAction(tr("Undo"), QIconSet(QImage(BITMAPDIR "undo.png")), tr("&Undo"), QAccel::stringToKey(tr("Ctrl+Z")), this);
undo->setStatusTip(tr("Undoes the last command"));
undo->setWhatsThis(tr("Undo\n\nMakes the last action undone"));
// connect(undo, SIGNAL(activated()), this, SLOT(slot()));
undo->setEnabled(false);
redo = new QAction(tr("Redo"), QIconSet(QImage(BITMAPDIR "bitmaps/redo.png")), tr("&Redo"), QAccel::stringToKey(tr("Ctrl+Y")), this);
redo = new QAction(tr("Redo"), QIconSet(QImage(BITMAPDIR "redo.png")), tr("&Redo"), QAccel::stringToKey(tr("Ctrl+Y")), this);
redo->setStatusTip(tr("Redoes the last command"));
redo->setWhatsThis(tr("Redo\n\nRepeats the last action once more"));
// connect(redo, SIGNAL(activated()), this, SLOT(slot()));
@ -197,27 +197,27 @@ void QucsApp::initActions()
projDel->setWhatsThis(tr("Delete Project\n\nDeletes an existing project"));
connect(projDel, SIGNAL(activated()), this, SLOT(slotMenuDelProject()));
magAll = new QAction(tr("View All"), QIconSet(QImage(BITMAPDIR "bitmaps/viewmagfit.png")), tr("View All"), 0, this);
magAll = new QAction(tr("View All"), QIconSet(QImage(BITMAPDIR "viewmagfit.png")), tr("View All"), 0, this);
magAll->setStatusTip(tr("Views the whole page"));
magAll->setWhatsThis(tr("View All\n\nShows the whole page content"));
connect(magAll, SIGNAL(activated()), this, SLOT(slotShowAll()));
magOne = new QAction(tr("View 1:1"), QIconSet(QImage(BITMAPDIR "bitmaps/viewmag1.png")), tr("View 1:1"), 0, this);
magOne = new QAction(tr("View 1:1"), QIconSet(QImage(BITMAPDIR "viewmag1.png")), tr("View 1:1"), 0, this);
magOne->setStatusTip(tr("Views without magnification"));
magOne->setWhatsThis(tr("View 1:1\n\nShows the page content without magnification"));
connect(magOne, SIGNAL(activated()), this, SLOT(slotShowOne()));
magPlus = new QAction(tr("Zoom in"), QIconSet(QImage(BITMAPDIR "bitmaps/viewmag+.png")), tr("Zoom in"), QAccel::stringToKey(tr("Ctrl+P")), this);
magPlus = new QAction(tr("Zoom in"), QIconSet(QImage(BITMAPDIR "viewmag+.png")), tr("Zoom in"), QAccel::stringToKey(tr("Ctrl+P")), this);
magPlus->setStatusTip(tr("Zooms into the current view"));
magPlus->setWhatsThis(tr("Zoom in\n\nZooms the current view"));
connect(magPlus, SIGNAL(activated()), this, SLOT(slotZoomIn()));
magMinus = new QAction(tr("Zoom out"), QIconSet(QImage(BITMAPDIR "bitmaps/viewmag-.png")), tr("Zoom out"), QAccel::stringToKey(tr("Ctrl+M")), this);
magMinus = new QAction(tr("Zoom out"), QIconSet(QImage(BITMAPDIR "viewmag-.png")), tr("Zoom out"), QAccel::stringToKey(tr("Ctrl+M")), this);
magMinus->setStatusTip(tr("Zooms out the current view"));
magMinus->setWhatsThis(tr("Reduce\n\nZooms out the current view"));
connect(magMinus, SIGNAL(activated()), this, SLOT(slotZoomOut()));
select = new QAction(tr("Select"), QIconSet(QImage(BITMAPDIR "bitmaps/pointer.png")), tr("Select"), QAccel::stringToKey(tr("Esc")), this);
select = new QAction(tr("Select"), QIconSet(QImage(BITMAPDIR "pointer.png")), tr("Select"), QAccel::stringToKey(tr("Esc")), this);
select->setStatusTip(tr("Select mode"));
select->setWhatsThis(tr("Select\n\nSelect mode"));
select->setToggleAction(true);
@ -228,78 +228,78 @@ void QucsApp::initActions()
selectAll->setWhatsThis(tr("Select All\n\nSelects all elements of the document"));
connect(selectAll, SIGNAL(activated()), this, SLOT(slotSelectAll()));
editRotate = new QAction(tr("Rotate"), QIconSet(QImage(BITMAPDIR "bitmaps/rotate_ccw.png")), tr("Rotate"), 0, this);
editRotate = new QAction(tr("Rotate"), QIconSet(QImage(BITMAPDIR "rotate_ccw.png")), tr("Rotate"), 0, this);
editRotate->setStatusTip(tr("Rotates the selected component by 90°"));
editRotate->setWhatsThis(tr("Rotate\n\nRotates the selected component by 90° counter-clockwise"));
editRotate->setToggleAction(true);
connect(editRotate, SIGNAL(toggled(bool)), this, SLOT(slotEditRotate(bool)));
editMirror = new QAction(tr("Mirror about X Axis"), QIconSet(QImage(BITMAPDIR "bitmaps/mirror.png")), tr("Mirror about X Axis"), 0, this);
editMirror = new QAction(tr("Mirror about X Axis"), QIconSet(QImage(BITMAPDIR "mirror.png")), tr("Mirror about X Axis"), 0, this);
editMirror->setStatusTip(tr("Mirrors the selected item about X axis"));
editMirror->setWhatsThis(tr("Mirror about X Axis\n\nMirrors the selected item about X Axis"));
editMirror->setToggleAction(true);
connect(editMirror, SIGNAL(toggled(bool)), this, SLOT(slotEditMirrorX(bool)));
editMirrorY = new QAction(tr("Mirror about Y Axis"), QIconSet(QImage(BITMAPDIR "bitmaps/mirrory.png")), tr("Mirror about Y Axis"), 0, this);
editMirrorY = new QAction(tr("Mirror about Y Axis"), QIconSet(QImage(BITMAPDIR "mirrory.png")), tr("Mirror about Y Axis"), 0, this);
editMirrorY->setStatusTip(tr("Mirrors the selected item about Y axis"));
editMirrorY->setWhatsThis(tr("Mirror about Y Axis\n\nMirrors the selected item about Y Axis"));
editMirrorY->setToggleAction(true);
connect(editMirrorY, SIGNAL(toggled(bool)), this, SLOT(slotEditMirrorY(bool)));
intoH = new QAction(tr("Push into Hierarchy"), QIconSet(QImage(BITMAPDIR "bitmaps/bottom.png")), tr("Push into Hierarchy"), 0, this);
intoH = new QAction(tr("Push into Hierarchy"), QIconSet(QImage(BITMAPDIR "bottom.png")), tr("Push into Hierarchy"), 0, this);
intoH->setStatusTip(tr("Goes inside subcircuit"));
intoH->setWhatsThis(tr("Push into Hierarchy\n\nGoes inside the selected subcircuit"));
connect(intoH, SIGNAL(activated()), this, SLOT(slotIntoHierarchy()));
// intoH->setEnabled(false);
popH = new QAction(tr("Pop out"), QIconSet(QImage(BITMAPDIR "bitmaps/top.png")), tr("Pop out"), 0, this);
popH = new QAction(tr("Pop out"), QIconSet(QImage(BITMAPDIR "top.png")), tr("Pop out"), 0, this);
popH->setStatusTip(tr("Pop outside subcircuit"));
popH->setWhatsThis(tr("Pop out\n\nGoes up one hierarchy level, i.e. leaves subcircuit"));
connect(popH, SIGNAL(activated()), this, SLOT(slotPopHierarchy()));
popH->setEnabled(false); // only enabled if useful !!!!
editActivate = new QAction(tr("Deactivate/Activate"), QIconSet(QImage(BITMAPDIR "bitmaps/deactiv.png")), tr("Deactivate/Activate"), 0, this);
editActivate = new QAction(tr("Deactivate/Activate"), QIconSet(QImage(BITMAPDIR "deactiv.png")), tr("Deactivate/Activate"), 0, this);
editActivate->setStatusTip(tr("Deactivate/Activate the selected item"));
editActivate->setWhatsThis(tr("Deactivate/Activate\n\nDeactivate/Activate the selected item"));
editActivate->setToggleAction(true);
connect(editActivate, SIGNAL(toggled(bool)), this, SLOT(slotEditActivate(bool)));
insEquation = new QAction(tr("Insert Equation"), QIconSet(QImage(BITMAPDIR "bitmaps/equation.png")), tr("Insert Equation"), 0, this);
insEquation = new QAction(tr("Insert Equation"), QIconSet(QImage(BITMAPDIR "equation.png")), tr("Insert Equation"), 0, this);
insEquation->setStatusTip(tr("Inserts equation"));
insEquation->setWhatsThis(tr("Insert Equation\n\nInserts a user defined equation"));
insEquation->setToggleAction(true);
connect(insEquation, SIGNAL(toggled(bool)), this, SLOT(slotInsertEquation(bool)));
insGround = new QAction(tr("Insert Ground"), QIconSet(QImage(BITMAPDIR "bitmaps/ground.png")), tr("Insert Ground"), 0, this);
insGround = new QAction(tr("Insert Ground"), QIconSet(QImage(BITMAPDIR "ground.png")), tr("Insert Ground"), 0, this);
insGround->setStatusTip(tr("Inserts ground"));
insGround->setWhatsThis(tr("Insert Ground\n\nInserts a ground symbol"));
insGround->setToggleAction(true);
connect(insGround, SIGNAL(toggled(bool)), this, SLOT(slotInsertGround(bool)));
insPort = new QAction(tr("Insert Port"), QIconSet(QImage(BITMAPDIR "bitmaps/port.png")), tr("Insert Port"), 0, this);
insPort = new QAction(tr("Insert Port"), QIconSet(QImage(BITMAPDIR "port.png")), tr("Insert Port"), 0, this);
insPort->setStatusTip(tr("Inserts port"));
insPort->setWhatsThis(tr("Insert Port\n\nInserts a port symbol"));
insPort->setToggleAction(true);
connect(insPort, SIGNAL(toggled(bool)), this, SLOT(slotInsertPort(bool)));
insWire = new QAction(tr("Insert Wire"), QIconSet(QImage(BITMAPDIR "bitmaps/wire.png")), tr("Wire"), 0, this);
insWire = new QAction(tr("Insert Wire"), QIconSet(QImage(BITMAPDIR "wire.png")), tr("Wire"), 0, this);
insWire->setStatusTip(tr("Inserts a wire"));
insWire->setWhatsThis(tr("Wire\n\nInserts a wire"));
insWire->setToggleAction(true);
connect(insWire, SIGNAL(toggled(bool)), this, SLOT(slotSetWire(bool)));
insLabel = new QAction(tr("Insert Wire/Pin Label"), QIconSet(QImage(BITMAPDIR "bitmaps/nodename.png")), tr("Wire Label"), 0, this);
insLabel = new QAction(tr("Insert Wire/Pin Label"), QIconSet(QImage(BITMAPDIR "nodename.png")), tr("Wire Label"), 0, this);
insLabel->setStatusTip(tr("Inserts a wire or pin label"));
insLabel->setWhatsThis(tr("Wire Label\n\nInserts a wire or pin label"));
insLabel->setToggleAction(true);
connect(insLabel, SIGNAL(toggled(bool)), this, SLOT(slotInsertLabel(bool)));
simulate = new QAction(tr("Simulate"), QIconSet(QImage(BITMAPDIR "bitmaps/gear.png")), tr("Simulate"), 0, this);
simulate = new QAction(tr("Simulate"), QIconSet(QImage(BITMAPDIR "gear.png")), tr("Simulate"), 0, this);
simulate->setStatusTip(tr("Simulates the current schematic"));
simulate->setWhatsThis(tr("Simulate\n\nSimulates the current schematic"));
connect(simulate, SIGNAL(activated()), this, SLOT(slotSimulate()));
dpl_sch = new QAction(tr("View Data Display/Schematic"), QIconSet(QImage(BITMAPDIR "bitmaps/rebuild.png")), tr("View Data Display/Schematic"), 0, this);
dpl_sch = new QAction(tr("View Data Display/Schematic"), QIconSet(QImage(BITMAPDIR "rebuild.png")), tr("View Data Display/Schematic"), 0, this);
dpl_sch->setStatusTip(tr("Changes to data display or schematic page"));
dpl_sch->setWhatsThis(tr("View Data Display/Schematic\n\nChanges to data display or schematic page"));
connect(dpl_sch, SIGNAL(activated()), this, SLOT(slotChangePage()));
@ -518,10 +518,10 @@ void QucsApp::initView()
Content->setColumnWidthMode(0,QListView::Manual);
Content->setColumnWidth(0, 150);
ConDatasets = new QListViewItem(Content, "Datasets");
ConDisplays = new QListViewItem(Content, "Data Displays");
ConSchematics = new QListViewItem(Content, "Schematics");
TabView->addTab(Content,"Content");
ConDatasets = new QListViewItem(Content, tr("Datasets"));
ConDisplays = new QListViewItem(Content, tr("Data Displays"));
ConSchematics = new QListViewItem(Content, tr("Schematics"));
TabView->addTab(Content,tr("Content"));
TabView->setTabToolTip(TabView->page(1), "content of the open project");
// QT 3.2
@ -534,17 +534,17 @@ void QucsApp::initView()
QVBox *CompGroup = new QVBox(this);
CompChoose = new QComboBox(CompGroup);
CompComps = new QIconView(CompGroup);
TabView->addTab(CompGroup,"Components");
TabView->addTab(CompGroup,tr("Components"));
TabView->setTabToolTip(TabView->page(2), "components and diagrams");
CompChoose->insertItem("lumped components");
CompChoose->insertItem("sources");
CompChoose->insertItem("transmission lines");
CompChoose->insertItem("nonlinear components");
CompChoose->insertItem("file data");
CompChoose->insertItem("simulations");
CompChoose->insertItem("paintings");
CompChoose->insertItem("diagrams");
CompChoose->insertItem(tr("lumped components"));
CompChoose->insertItem(tr("sources"));
CompChoose->insertItem(tr("transmission lines"));
CompChoose->insertItem(tr("nonlinear components"));
CompChoose->insertItem(tr("file data"));
CompChoose->insertItem(tr("simulations"));
CompChoose->insertItem(tr("paintings"));
CompChoose->insertItem(tr("diagrams"));
slotSetCompView(0);
connect(CompChoose, SIGNAL(activated(int)), SLOT(slotSetCompView(int)));
@ -568,7 +568,7 @@ void QucsApp::readProjects()
QDir ProjDir;
if(!ProjDir.cd(QDir::homeDirPath()+"/.qucs")) // is work directory already existing ?
if(!ProjDir.mkdir(QDir::homeDirPath()+"/.qucs")) // no, then create it
QMessageBox::warning(this, "Warning", "Cannot create work directory !");
QMessageBox::warning(this, tr("Warning"), tr("Cannot create work directory !"));
ProjDir.setPath(QDir::homeDirPath()+"/.qucs");
QDir::setCurrent(QDir::homeDirPath()+"/.qucs");
@ -590,8 +590,8 @@ bool QucsApp::closeAllFiles()
{
int Result = 0;
bool notForAll = true;
MessageBox *m = new MessageBox("Closing Qucs document",
"This document contains unsaved changes!\nDo you want to save the changes before closing?",this);
MessageBox *m = new MessageBox(tr("Closing Qucs document"),
tr("This document contains unsaved changes!\nDo you want to save the changes before closing?"),this);
// close all files and ask to save changed ones
for(QucsDoc *ptr = view->Docs.first(); ptr != 0; ) {
@ -691,8 +691,8 @@ void QucsApp::slotFileOpen()
{
statusBar()->message(tr("Opening file..."));
QString s = QFileDialog::getOpenFileName(".", "Schematic (*.sch)", this,
"open file dialog", "Enter a Schematic Name");
QString s = QFileDialog::getOpenFileName(".", tr("Schematic (*.sch)"), this,
"open file dialog", tr("Enter a Schematic Name"));
if(!s.isEmpty()) gotoPage(s); //openDocument(s);
else statusBar()->message(tr("Opening aborted"), 2000);
@ -721,8 +721,8 @@ void QucsApp::updatePortNumber(int No)
bool QucsApp::saveCurrentFile()
{
if(view->Docs.current()->DocName.isEmpty()) {
QString s = QFileDialog::getSaveFileName(".", "Schematic (*.sch)", this,
"", "Enter Name to Save Document");
QString s = QFileDialog::getSaveFileName(".", tr("Schematic (*.sch)"), this,
"", tr("Enter Name to Save Document"));
if(s.isEmpty()) return false;
QFileInfo Info(s);
@ -762,8 +762,8 @@ void QucsApp::slotFileSaveAs()
statusBar()->message(tr("Saving file under new filename..."));
view->blockSignals(true); // no user interaction during the time
QString s = QFileDialog::getSaveFileName(".", "Schematic (*.sch)", this,
"save file dialog", "Enter a Schematic Name");
QString s = QFileDialog::getSaveFileName(".", tr("Schematic (*.sch)"), this,
"save file dialog", tr("Enter a Schematic Name"));
if(!s.isEmpty()) {
view->Docs.current()->setName(s);
@ -812,9 +812,9 @@ void QucsApp::slotFileClose()
statusBar()->message(tr("Closing file..."));
if(view->Docs.current()->DocChanged) {
switch(QMessageBox::warning(this,"Closing Qucs document",
"The document contains unsaved changes!\nDo you want to save the changes before closing?",
"&Save", "&Discard", "Cancel", 0, 2)) {
switch(QMessageBox::warning(this,tr("Closing Qucs document"),
tr("The document contains unsaved changes!\nDo you want to save the changes before closing?"),
tr("&Save"), tr("&Discard"), tr("Cancel"), 0, 2)) {
case 0 : slotFileSave();
break;
case 2 : return;
@ -977,8 +977,8 @@ void QucsApp::slotViewStatusBar(bool toggle)
void QucsApp::slotHelpAbout()
{
QMessageBox::about(this,tr("About..."),
tr("Qucs Version " VERSION "\nQt universal circuit simulator\n"
"(c) 2003 by Michael Margraf\nsimulator by Stefan Jahn\nspecial thanks to Jens Flucke") );
"Qucs Version " VERSION "\nQt universal circuit simulator\n"
"Copyright (C) 2003 by Michael Margraf\nSimulator by Stefan Jahn\nSpecial thanks to Jens Flucke");
}
// ###################################################################################
@ -1105,23 +1105,23 @@ void QucsApp::slotSimulate()
QDate d = QDate::currentDate(); // get date of today
QTime t = QTime::currentTime(); // get time
sim.ProgText->insert("Starting new simulation on "+d.toString("ddd dd. MMM yyyy"));
sim.ProgText->insert(" at "+t.toString("hh:mm:ss")+"\n\n");
sim.ProgText->insert(tr("Starting new simulation on ")+d.toString("ddd dd. MMM yyyy"));
sim.ProgText->insert(tr(" at ")+t.toString("hh:mm:ss")+"\n\n");
sim.ProgText->insert("creating netlist ....");
sim.ProgText->insert(tr("creating netlist ...."));
QFile NetlistFile("netlist.txt");
if(!view->Docs.current()->createNetlist(&NetlistFile)) {
sim.ErrText->insert("ERROR: Cannot create netlist file!\nAborted.");
sim.ErrText->insert(tr("ERROR: Cannot create netlist file!\nAborted."));
sim.slotSimEnded();
return;
}
sim.ProgText->insert("done.\n");
sim.ProgText->insert(tr("done.\n"));
QStringList com;
com << BINARYDIR "qucs_sp" << "-i" << "netlist.txt";
com << "-o" << view->Docs.current()->DataSet;
if(!sim.startProcess(com)) {
sim.ErrText->insert("ERROR: Cannot start simulator!");
sim.ErrText->insert(tr("ERROR: Cannot start simulator!"));
sim.slotSimEnded();
return;
}
@ -1135,9 +1135,9 @@ void QucsApp::slotAfterSimulation(int Status)
QTime t = QTime::currentTime(); // get time
if(Status == 0) { // errors ocurred ?
sim.ProgText->insert("\nSimulation ended on "+d.toString("ddd dd. MMM yyyy"));
sim.ProgText->insert(" at "+t.toString("hh:mm:ss")+"\n");
sim.ProgText->insert("Ready.\n");
sim.ProgText->insert(tr("\nSimulation ended on ")+d.toString("ddd dd. MMM yyyy"));
sim.ProgText->insert(tr(" at ")+t.toString("hh:mm:ss")+"\n");
sim.ProgText->insert(tr("Ready.\n"));
if(view->Docs.current()->SimOpenDpl) {
sim.slotClose(); // close simulation window
@ -1150,9 +1150,9 @@ void QucsApp::slotAfterSimulation(int Status)
}
}
else {
sim.ProgText->insert("\nErrors occured during simulation on "+d.toString("ddd dd. MMM yyyy"));
sim.ProgText->insert(" at "+t.toString("hh:mm:ss")+"\n");
sim.ProgText->insert("Aborted.\n");
sim.ProgText->insert(tr("\nErrors occured during simulation on ")+d.toString("ddd dd. MMM yyyy"));
sim.ProgText->insert(tr(" at ")+t.toString("hh:mm:ss")+"\n");
sim.ProgText->insert(tr("Aborted.\n"));
}
@ -1195,7 +1195,7 @@ void QucsApp::slotChangePage()
QucsDoc *Doc = view->Docs.current();
QString Name = Doc->DataDisplay;
if(Name.isEmpty()) {
QMessageBox::critical(this, "Error", "No page set !");
QMessageBox::critical(this, tr("Error"), tr("No page set !"));
return;
}
@ -1213,7 +1213,7 @@ void QucsApp::slotChangePage()
if(!file.open(IO_ReadOnly)) // load page
if(!file.open(IO_ReadWrite)) { // if it doesn't exist, create
view->Docs.findRef(Doc);
QMessageBox::critical(this, "Error", "Cannot create "+Info.dirPath(true)+"/"+Name);
QMessageBox::critical(this, tr("Error"), tr("Cannot create ")+Info.dirPath(true)+"/"+Name);
return;
}
file.close();
@ -1345,18 +1345,18 @@ void QucsApp::OpenProject(const QString& Path, const QString& Name)
if(!QDir::setCurrent(Path)) { // change to project directory
QMessageBox::critical(this, "Error", "Cannot access project directory: "+Path);
QMessageBox::critical(this, tr("Error"), tr("Cannot access project directory: ")+Path);
return;
}
QDir ProjDir(".");
Content->setColumnText(0,"Content of '"+Name+"'"); // column text of Content ListView
Content->setColumnText(0,tr("Content of '")+Name+tr("'")); // column text of Content ListView
// Content->setColumnWidth(0, Content->width()-5);
Content->clear(); // empty content view
ConDatasets = new QListViewItem(Content, "Datasets");
ConDisplays = new QListViewItem(Content, "Data Displays");
ConSchematics = new QListViewItem(Content, "Schematics");
ConDatasets = new QListViewItem(Content, tr("Datasets"));
ConDisplays = new QListViewItem(Content, tr("Data Displays"));
ConSchematics = new QListViewItem(Content, tr("Schematics"));
int n;
// put all schematic files into "Content"-ListView
@ -1384,7 +1384,7 @@ void QucsApp::OpenProject(const QString& Path, const QString& Name)
Content->firstChild()->setOpen(true); // show schematics
ProjName = Name; // remember the name of project
setCaption(tr("Qucs " VERSION " - Project: ")+Name); // show name in title of main window
setCaption("Qucs " VERSION + tr(" - Project: ")+Name); // show name in title of main window
}
// #########################################################################################
@ -1400,7 +1400,7 @@ void QucsApp::slotProjNewButt()
Projects->insertItem(d->ProjName->text(),0); // new project at first position
if(d->OpenProj->isChecked()) slotOpenProject(Projects->firstItem());
}
else QMessageBox::information(this, "Info", "Cannot create project directory !");
else QMessageBox::information(this, tr("Info"), tr("Cannot create project directory !"));
}
// #########################################################################################
@ -1411,73 +1411,73 @@ void QucsApp::slotSetCompView(int index)
CompComps->clear(); // clear the IconView
switch(index) {
case COMBO_passive:
new QIconViewItem(CompComps, "Resistor", QImage(BITMAPDIR "bitmaps/resistor.xpm"));
new QIconViewItem(CompComps, "Resistor US", QImage(BITMAPDIR "bitmaps/resistor_us.xpm"));
new QIconViewItem(CompComps, "Capacitor", QImage(BITMAPDIR "bitmaps/capacitor.xpm"));
new QIconViewItem(CompComps, "Inductor", QImage(BITMAPDIR "bitmaps/inductor.xpm"));
new QIconViewItem(CompComps, "Transformer", QImage(BITMAPDIR "bitmaps/transformer.xpm"));
new QIconViewItem(CompComps, "symmetric Transformer", QImage(BITMAPDIR "bitmaps/symtrans.xpm"));
new QIconViewItem(CompComps, "Ground", QImage(BITMAPDIR "bitmaps/ground.xpm"));
new QIconViewItem(CompComps, "Subcircuit Port", QImage(BITMAPDIR "bitmaps/port.xpm"));
new QIconViewItem(CompComps, "dc Block", QImage(BITMAPDIR "bitmaps/dcblock.xpm"));
new QIconViewItem(CompComps, "dc Feed", QImage(BITMAPDIR "bitmaps/dcfeed.xpm"));
new QIconViewItem(CompComps, "Bias T", QImage(BITMAPDIR "bitmaps/biast.xpm"));
new QIconViewItem(CompComps, "Attenuator", QImage(BITMAPDIR "bitmaps/attenuator.xpm"));
new QIconViewItem(CompComps, "Isolator", QImage(BITMAPDIR "bitmaps/isolator.xpm"));
new QIconViewItem(CompComps, "Circulator", QImage(BITMAPDIR "bitmaps/circulator.xpm"));
new QIconViewItem(CompComps, "Resistor", QImage(BITMAPDIR "resistor.xpm"));
new QIconViewItem(CompComps, "Resistor US", QImage(BITMAPDIR "resistor_us.xpm"));
new QIconViewItem(CompComps, "Capacitor", QImage(BITMAPDIR "capacitor.xpm"));
new QIconViewItem(CompComps, "Inductor", QImage(BITMAPDIR "inductor.xpm"));
new QIconViewItem(CompComps, "Transformer", QImage(BITMAPDIR "transformer.xpm"));
new QIconViewItem(CompComps, "symmetric Transformer", QImage(BITMAPDIR "symtrans.xpm"));
new QIconViewItem(CompComps, "Ground", QImage(BITMAPDIR "ground.xpm"));
new QIconViewItem(CompComps, "Subcircuit Port", QImage(BITMAPDIR "port.xpm"));
new QIconViewItem(CompComps, "dc Block", QImage(BITMAPDIR "dcblock.xpm"));
new QIconViewItem(CompComps, "dc Feed", QImage(BITMAPDIR "dcfeed.xpm"));
new QIconViewItem(CompComps, "Bias T", QImage(BITMAPDIR "biast.xpm"));
new QIconViewItem(CompComps, "Attenuator", QImage(BITMAPDIR "attenuator.xpm"));
new QIconViewItem(CompComps, "Isolator", QImage(BITMAPDIR "isolator.xpm"));
new QIconViewItem(CompComps, "Circulator", QImage(BITMAPDIR "circulator.xpm"));
break;
case COMBO_Sources:
new QIconViewItem(CompComps, "dc Voltage Source", QImage(BITMAPDIR "bitmaps/dc_voltage.xpm"));
new QIconViewItem(CompComps, "dc Current Source", QImage(BITMAPDIR "bitmaps/dc_current.xpm"));
new QIconViewItem(CompComps, "ac Voltage Source", QImage(BITMAPDIR "bitmaps/ac_voltage.xpm"));
new QIconViewItem(CompComps, "Power Source", QImage(BITMAPDIR "bitmaps/source.xpm"));
new QIconViewItem(CompComps, "Voltage Controlled Current Source", QImage(BITMAPDIR "bitmaps/vccs.xpm"));
new QIconViewItem(CompComps, "Current Controlled Current Source", QImage(BITMAPDIR "bitmaps/cccs.xpm"));
new QIconViewItem(CompComps, "Voltage Controlled Voltage Source", QImage(BITMAPDIR "bitmaps/vcvs.xpm"));
new QIconViewItem(CompComps, "Current Controlled Voltage Source", QImage(BITMAPDIR "bitmaps/ccvs.xpm"));
new QIconViewItem(CompComps, "dc Voltage Source", QImage(BITMAPDIR "dc_voltage.xpm"));
new QIconViewItem(CompComps, "dc Current Source", QImage(BITMAPDIR "dc_current.xpm"));
new QIconViewItem(CompComps, "ac Voltage Source", QImage(BITMAPDIR "ac_voltage.xpm"));
new QIconViewItem(CompComps, "Power Source", QImage(BITMAPDIR "source.xpm"));
new QIconViewItem(CompComps, "Voltage Controlled Current Source", QImage(BITMAPDIR "vccs.xpm"));
new QIconViewItem(CompComps, "Current Controlled Current Source", QImage(BITMAPDIR "cccs.xpm"));
new QIconViewItem(CompComps, "Voltage Controlled Voltage Source", QImage(BITMAPDIR "vcvs.xpm"));
new QIconViewItem(CompComps, "Current Controlled Voltage Source", QImage(BITMAPDIR "ccvs.xpm"));
break;
case COMBO_TLines:
new QIconViewItem(CompComps, "Transmission Line", QImage(BITMAPDIR "bitmaps/tline.xpm"));
new QIconViewItem(CompComps, "Substrate", QImage(BITMAPDIR "bitmaps/substrate.xpm"));
new QIconViewItem(CompComps, "Microstrip Line", QImage(BITMAPDIR "bitmaps/msline.xpm"));
new QIconViewItem(CompComps, "Coupled microstrip Line", QImage(BITMAPDIR "bitmaps/mscoupled.xpm"));
new QIconViewItem(CompComps, "Microstrip Step", QImage(BITMAPDIR "bitmaps/msstep.xpm"));
new QIconViewItem(CompComps, "Microstrip Corner", QImage(BITMAPDIR "bitmaps/mscorner.xpm"));
new QIconViewItem(CompComps, "Microstrip Tee", QImage(BITMAPDIR "bitmaps/mstee.xpm"));
new QIconViewItem(CompComps, "Microstrip Cross", QImage(BITMAPDIR "bitmaps/mscross.xpm"));
new QIconViewItem(CompComps, "Coplanar Line", QImage(BITMAPDIR "bitmaps/coplanar.xpm"));
new QIconViewItem(CompComps, "Transmission Line", QImage(BITMAPDIR "tline.xpm"));
new QIconViewItem(CompComps, "Substrate", QImage(BITMAPDIR "substrate.xpm"));
new QIconViewItem(CompComps, "Microstrip Line", QImage(BITMAPDIR "msline.xpm"));
new QIconViewItem(CompComps, "Coupled microstrip Line", QImage(BITMAPDIR "mscoupled.xpm"));
new QIconViewItem(CompComps, "Microstrip Step", QImage(BITMAPDIR "msstep.xpm"));
new QIconViewItem(CompComps, "Microstrip Corner", QImage(BITMAPDIR "mscorner.xpm"));
new QIconViewItem(CompComps, "Microstrip Tee", QImage(BITMAPDIR "mstee.xpm"));
new QIconViewItem(CompComps, "Microstrip Cross", QImage(BITMAPDIR "mscross.xpm"));
new QIconViewItem(CompComps, "Coplanar Line", QImage(BITMAPDIR "coplanar.xpm"));
break;
case COMBO_nonlinear:
new QIconViewItem(CompComps, "Diode", QImage(BITMAPDIR "bitmaps/diode.xpm"));
new QIconViewItem(CompComps, "Diode", QImage(BITMAPDIR "diode.xpm"));
break;
case COMBO_File:
new QIconViewItem(CompComps, "1-port S parameter file", QImage(BITMAPDIR "bitmaps/spfile1.xpm"));
new QIconViewItem(CompComps, "2-port S parameter file", QImage(BITMAPDIR "bitmaps/spfile2.xpm"));
new QIconViewItem(CompComps, "3-port S parameter file", QImage(BITMAPDIR "bitmaps/spfile3.xpm"));
new QIconViewItem(CompComps, "4-port S parameter file", QImage(BITMAPDIR "bitmaps/spfile4.xpm"));
new QIconViewItem(CompComps, "5-port S parameter file", QImage(BITMAPDIR "bitmaps/spfile5.xpm"));
new QIconViewItem(CompComps, "6-port S parameter file", QImage(BITMAPDIR "bitmaps/spfile6.xpm"));
new QIconViewItem(CompComps, "1-port S parameter file", QImage(BITMAPDIR "spfile1.xpm"));
new QIconViewItem(CompComps, "2-port S parameter file", QImage(BITMAPDIR "spfile2.xpm"));
new QIconViewItem(CompComps, "3-port S parameter file", QImage(BITMAPDIR "spfile3.xpm"));
new QIconViewItem(CompComps, "4-port S parameter file", QImage(BITMAPDIR "spfile4.xpm"));
new QIconViewItem(CompComps, "5-port S parameter file", QImage(BITMAPDIR "spfile5.xpm"));
new QIconViewItem(CompComps, "6-port S parameter file", QImage(BITMAPDIR "spfile6.xpm"));
break;
case COMBO_Sims:
new QIconViewItem(CompComps, "dc simulation", QImage(BITMAPDIR "bitmaps/dc.xpm"));
new QIconViewItem(CompComps, "Transienten simulation", QImage(BITMAPDIR "bitmaps/tran.xpm"));
new QIconViewItem(CompComps, "ac simulation", QImage(BITMAPDIR "bitmaps/ac.xpm"));
new QIconViewItem(CompComps, "S-parameter simulation", QImage(BITMAPDIR "bitmaps/sparameter.xpm"));
new QIconViewItem(CompComps, "Harmonic balance", QImage(BITMAPDIR "bitmaps/hb.xpm"));
new QIconViewItem(CompComps, "Parameter sweep", QImage(BITMAPDIR "bitmaps/sweep.xpm"));
new QIconViewItem(CompComps, "dc simulation", QImage(BITMAPDIR "dc.xpm"));
new QIconViewItem(CompComps, "Transienten simulation", QImage(BITMAPDIR "tran.xpm"));
new QIconViewItem(CompComps, "ac simulation", QImage(BITMAPDIR "ac.xpm"));
new QIconViewItem(CompComps, "S-parameter simulation", QImage(BITMAPDIR "sparameter.xpm"));
new QIconViewItem(CompComps, "Harmonic balance", QImage(BITMAPDIR "hb.xpm"));
new QIconViewItem(CompComps, "Parameter sweep", QImage(BITMAPDIR "sweep.xpm"));
break;
case COMBO_Paints:
new QIconViewItem(CompComps, "Line", QImage(BITMAPDIR "bitmaps/line.xpm"));
new QIconViewItem(CompComps, "Arrow", QImage(BITMAPDIR "bitmaps/arrow.xpm"));
new QIconViewItem(CompComps, "Text", QImage(BITMAPDIR "bitmaps/text.xpm"));
new QIconViewItem(CompComps, "Ellipse", QImage(BITMAPDIR "bitmaps/ellipse.xpm"));
new QIconViewItem(CompComps, "Rectangle", QImage(BITMAPDIR "bitmaps/rectangle.xpm"));
new QIconViewItem(CompComps, "Line", QImage(BITMAPDIR "line.xpm"));
new QIconViewItem(CompComps, "Arrow", QImage(BITMAPDIR "arrow.xpm"));
new QIconViewItem(CompComps, "Text", QImage(BITMAPDIR "text.xpm"));
new QIconViewItem(CompComps, "Ellipse", QImage(BITMAPDIR "ellipse.xpm"));
new QIconViewItem(CompComps, "Rectangle", QImage(BITMAPDIR "rectangle.xpm"));
break;
case COMBO_Diagrams:
new QIconViewItem(CompComps, "Cartesian", QImage(BITMAPDIR "bitmaps/rect.xpm"));
new QIconViewItem(CompComps, "Polar", QImage(BITMAPDIR "bitmaps/polar.xpm"));
new QIconViewItem(CompComps, "Tabular", QImage(BITMAPDIR "bitmaps/tabular.xpm"));
new QIconViewItem(CompComps, "Smith Chart", QImage(BITMAPDIR "bitmaps/smith.xpm"));
new QIconViewItem(CompComps, "Cartesian", QImage(BITMAPDIR "rect.xpm"));
new QIconViewItem(CompComps, "Polar", QImage(BITMAPDIR "polar.xpm"));
new QIconViewItem(CompComps, "Tabular", QImage(BITMAPDIR "tabular.xpm"));
new QIconViewItem(CompComps, "Smith Chart", QImage(BITMAPDIR "smith.xpm"));
break;
}
}
@ -1683,7 +1683,7 @@ void QucsApp::slotSelectSubcircuit(QListViewItem *item)
}
if(item->parent() == 0) return;
if(item->parent()->text(0) != "Schematics") return; // return, if not clicked on schematic
if(item->parent()->text(0) != tr("Schematics")) return; // return, if not clicked on schematic
int n = testFile(item->text(0));
if(n<=0) return; // return, if not a subcircuit
@ -2079,20 +2079,20 @@ void QucsApp::slotProjOpenButt()
{
QListBoxItem *item = Projects->selectedItem();
if(item) slotOpenProject(item);
else QMessageBox::information(this, "Info", "No project is selected !");
else QMessageBox::information(this, tr("Info"), tr("No project is selected !"));
}
// #########################################################################################
bool QucsApp::DeleteProject(const QString& Path, const QString& Name)
{
if(Name == ProjName) {
QMessageBox::information(this, "Info", "Cannot delete an open project !");
QMessageBox::information(this, tr("Info"), tr("Cannot delete an open project !"));
return false;
}
// first ask, if really delete project ?
if(QMessageBox::warning(this, "Warning",
"This will destroy all the project\nfiles permanently !\nGo on ?","&Yes","&No",0,1,1)) return false;
if(QMessageBox::warning(this, tr("Warning"),
tr("This will destroy all the project\nfiles permanently !\nGo on ?"),tr("&Yes"),tr("&No"),0,1,1)) return false;
QDir *projDir = new QDir();
projDir->setPath(Path);
@ -2102,14 +2102,14 @@ bool QucsApp::DeleteProject(const QString& Path, const QString& Name)
QStringList::iterator it;
for(it = ProjFiles.begin(); it != ProjFiles.end(); it++) {
if(!projDir->remove(*it)) {
QMessageBox::information(this, "Info", "Cannot remove project file: "+(*it));
QMessageBox::information(this, tr("Info"), tr("Cannot remove project file: ")+(*it));
return false;
}
}
projDir->cdUp(); // leave project directory for deleting
if(!projDir->rmdir(Name+"_prj")) {
QMessageBox::information(this, "Info", "Cannot remove project directory !");
QMessageBox::information(this, tr("Info"), tr("Cannot remove project directory !"));
return false;
}
@ -2121,7 +2121,7 @@ bool QucsApp::DeleteProject(const QString& Path, const QString& Name)
void QucsApp::slotMenuDelProject()
{
QFileDialog *d = new QFileDialog(QDir::homeDirPath());
d->setCaption("Choose Project Directory for Deleting");
d->setCaption(tr("Choose Project Directory for Deleting"));
d->setShowHiddenFiles(true);
d->setMode(QFileDialog::DirectoryOnly);
if(d->exec() != QDialog::Accepted) return;
@ -2143,7 +2143,7 @@ void QucsApp::slotProjDelButt()
{
QListBoxItem *item = Projects->selectedItem();
if(!item) {
QMessageBox::information(this, "Info", "No project is selected !");
QMessageBox::information(this, tr("Info"), tr("No project is selected !"));
return;
}

View File

@ -1776,7 +1776,7 @@ bool QucsDoc::paste(QTextStream *stream, QPtrList<Element> *pe)
QString s = VERSION;
Line = Line.mid(16, Line.length()-17);
if(Line != s) { // wrong version number ?
QMessageBox::critical(0, "Error", "Wrong document version: "+Line);
QMessageBox::critical(0, QObject::tr("Error"), QObject::tr("Wrong document version: ")+Line);
return false;
}
@ -1791,7 +1791,7 @@ bool QucsDoc::paste(QTextStream *stream, QPtrList<Element> *pe)
else
if(Line == "<Paintings>") { if(!loadPaintings(stream, false)) return false; }
else {
QMessageBox::critical(0, "Error", "Clipboard Format Error:\nUnknown field!");
QMessageBox::critical(0, QObject::tr("Error"), QObject::tr("Clipboard Format Error:\nUnknown field!"));
return false;
}
}
@ -1804,7 +1804,7 @@ int QucsDoc::save()
{
QFile file(DocName);
if(!file.open(IO_WriteOnly)) {
QMessageBox::critical(0, "Error", "Cannot save document!");
QMessageBox::critical(0, QObject::tr("Error"), QObject::tr("Cannot save document!"));
return -1;
}
@ -1860,11 +1860,11 @@ bool QucsDoc::loadProperties(QTextStream *stream)
Line = Line.stripWhiteSpace();
if(Line.at(0) != '<') {
QMessageBox::critical(0, "Error", "Format Error:\nWrong property field limiter!");
QMessageBox::critical(0, QObject::tr("Error"), QObject::tr("Format Error:\nWrong property field limiter!"));
return false;
}
if(Line.at(Line.length()-1) != '>') {
QMessageBox::critical(0, "Error", "Format Error:\nWrong property field limiter!");
QMessageBox::critical(0, QObject::tr("Error"), QObject::tr("Format Error:\nWrong property field limiter!"));
return false;
}
Line = Line.mid(1, Line.length()-2); // cut off start and end character
@ -1887,16 +1887,16 @@ bool QucsDoc::loadProperties(QTextStream *stream)
else if(cstr == "OpenDisplay") if(nstr.toInt(&ok) == 0) SimOpenDpl = false;
else SimOpenDpl = true;
else {
QMessageBox::critical(0, "Error", "Format Error:\nUnknown property: "+cstr);
QMessageBox::critical(0, QObject::tr("Error"), QObject::tr("Format Error:\nUnknown property: ")+cstr);
return false;
}
if(!ok) {
QMessageBox::critical(0, "Error", "Format Error:\nNumber expected in property field!");
QMessageBox::critical(0, QObject::tr("Error"), QObject::tr("Format Error:\nNumber expected in property field!"));
return false;
}
}
QMessageBox::critical(0, "Error", "Format Error:\n'Property' field is not closed!");
QMessageBox::critical(0, QObject::tr("Error"), QObject::tr("Format Error:\n'Property' field is not closed!"));
return false;
}
@ -1949,11 +1949,11 @@ bool QucsDoc::loadComponents(QTextStream *stream, bool insert)
else if(cstr == "<.HB") c = new HB_Sim();
else if(cstr == "<.SW") c = new Param_Sweep();
else {
QMessageBox::critical(0, "Error", "Format Error:\nUnknown component!");
QMessageBox::critical(0, QObject::tr("Error"), QObject::tr("Format Error:\nUnknown component!"));
return false;
}
if(!c->load(Line)) {
QMessageBox::critical(0, "Error", "Format Error:\nWrong 'component' line format!");
QMessageBox::critical(0, QObject::tr("Error"), QObject::tr("Format Error:\nWrong 'component' line format!"));
delete c;
return false;
}
@ -1968,7 +1968,7 @@ bool QucsDoc::loadComponents(QTextStream *stream, bool insert)
}
}
QMessageBox::critical(0, "Error", "Format Error:\n'Component' field is not closed!");
QMessageBox::critical(0, QObject::tr("Error"), QObject::tr("Format Error:\n'Component' field is not closed!"));
return false;
}
@ -1983,7 +1983,7 @@ bool QucsDoc::loadWires(QTextStream *stream, bool insert)
Line = Line.stripWhiteSpace();
w = new Wire();
if(!w->load(Line)) {
QMessageBox::critical(0, "Error", "Format Error:\nWrong 'wire' line format!");
QMessageBox::critical(0, QObject::tr("Error"), QObject::tr("Format Error:\nWrong 'wire' line format!"));
return false;
}
if(insert) insertWire(w);
@ -1994,7 +1994,7 @@ bool QucsDoc::loadWires(QTextStream *stream, bool insert)
}
}
QMessageBox::critical(0, "Error", "Format Error:\n'Wire' field is not closed!");
QMessageBox::critical(0, QObject::tr("Error"), QObject::tr("Format Error:\n'Wire' field is not closed!"));
return false;
}
@ -2013,12 +2013,12 @@ bool QucsDoc::loadDiagrams(QTextStream *stream, bool insert)
else if(cstr == "<Tab") d = new TabDiagram();
else if(cstr == "<Smith") d = new SmithDiagram();
else {
QMessageBox::critical(0, "Error", "Format Error:\nUnknown diagram!");
QMessageBox::critical(0, QObject::tr("Error"), QObject::tr("Format Error:\nUnknown diagram!"));
return false;
}
if(!d->load(Line, stream)) {
QMessageBox::critical(0, "Error", "Format Error:\nWrong 'diagram' line format!");
QMessageBox::critical(0, QObject::tr("Error"), QObject::tr("Format Error:\nWrong 'diagram' line format!"));
delete d;
return false;
}
@ -2026,7 +2026,7 @@ bool QucsDoc::loadDiagrams(QTextStream *stream, bool insert)
else Cache->append((Element*)d);
}
QMessageBox::critical(0, "Error", "Format Error:\n'Diagram' field is not closed!");
QMessageBox::critical(0, QObject::tr("Error"), QObject::tr("Format Error:\n'Diagram' field is not closed!"));
return false;
}
@ -2046,12 +2046,12 @@ bool QucsDoc::loadPaintings(QTextStream *stream, bool insert)
else if(cstr == "<Arrow") p = new Arrow();
else if(cstr == "<Ellipse") p = new Ellipse();
else {
QMessageBox::critical(0, "Error", "Format Error:\nUnknown painting!");
QMessageBox::critical(0, QObject::tr("Error"), QObject::tr("Format Error:\nUnknown painting!"));
return false;
}
if(!p->load(Line)) {
QMessageBox::critical(0, "Error", "Format Error:\nWrong 'painting' line format!");
QMessageBox::critical(0, QObject::tr("Error"), QObject::tr("Format Error:\nWrong 'painting' line format!"));
delete p;
return false;
}
@ -2059,7 +2059,7 @@ bool QucsDoc::loadPaintings(QTextStream *stream, bool insert)
else Cache->append((Element*)p);
}
QMessageBox::critical(0, "Error", "Format Error:\n'Painting' field is not closed!");
QMessageBox::critical(0, QObject::tr("Error"), QObject::tr("Format Error:\n'Painting' field is not closed!"));
return false;
}
@ -2068,7 +2068,7 @@ bool QucsDoc::load()
{
QFile file(DocName);
if(!file.open(IO_ReadOnly)) {
QMessageBox::critical(0, "Error", "Cannot load document: "+DocName);
QMessageBox::critical(0, QObject::tr("Error"), QObject::tr("Cannot load document: ")+DocName);
return false;
}
@ -2085,7 +2085,7 @@ bool QucsDoc::load()
Line = stream.readLine();
if(Line.left(16) != "<Qucs Schematic ") { // wrong file type ?
file.close();
QMessageBox::critical(0, "Error", "Wrong document type!");
QMessageBox::critical(0, QObject::tr("Error"), QObject::tr("Wrong document type!"));
return false;
}
@ -2093,7 +2093,7 @@ bool QucsDoc::load()
Line = Line.mid(16, Line.length()-17);
if(Line != s) { // wrong version number ?
file.close();
QMessageBox::critical(0, "Error", "Wrong document version: "+Line);
QMessageBox::critical(0, QObject::tr("Error"), QObject::tr("Wrong document version: ")+Line);
return false;
}
@ -2110,7 +2110,7 @@ bool QucsDoc::load()
else
if(Line == "<Paintings>") { if(!loadPaintings(&stream)) { file.close(); return false; } }
else {
QMessageBox::critical(0, "Error", "File Format Error:\nUnknown field!");
QMessageBox::critical(0, QObject::tr("Error"), QObject::tr("File Format Error:\nUnknown field!"));
file.close();
return false;
}

View File

@ -443,7 +443,7 @@ void QucsView::MPressLabel(QMouseEvent *Event)
if(pw2 != 0) Name = pw2->Name;
bool OK;
Name = QInputDialog::getText("Insert Nodename", "Enter the label:", QLineEdit::Normal,
Name = QInputDialog::getText(tr("Insert Nodename"), tr("Enter the label:"), QLineEdit::Normal,
Name, &OK, this);
if(OK && !Name.isEmpty()) {
if(Name.at(0) == '_') Name.remove(0,1); // label must not start with '_'