mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
2006-02-16 Stefan Jahn <stefan@lkcc.org>
* qucs-transcalc/main.cpp, qucs-lib/main.cpp, qucs-help/main.cpp, qucs-filter/main.cpp, qucs-edit/main.cpp (loadSettings): Try loading items from main qucsrc even if application specific resource file does not exist.
This commit is contained in:
parent
57a6e1a2ff
commit
1d17a84fcd
@ -1,3 +1,10 @@
|
||||
2006-02-16 Stefan Jahn <stefan@lkcc.org>
|
||||
|
||||
* qucs-transcalc/main.cpp, qucs-lib/main.cpp,
|
||||
qucs-help/main.cpp, qucs-filter/main.cpp, qucs-edit/main.cpp
|
||||
(loadSettings): Try loading items from main qucsrc even if
|
||||
application specific resource file does not exist.
|
||||
|
||||
2006-02-10 Stefan Jahn <stefan@lkcc.org>
|
||||
|
||||
* configure.ac (paths): Added $QTDIR/lib64 to the library path
|
||||
|
@ -39,40 +39,46 @@ tQucsSettings QucsSettings;
|
||||
// Loads the settings file and stores the settings.
|
||||
bool loadSettings()
|
||||
{
|
||||
bool result = true;
|
||||
|
||||
QFile file(QDir::homeDirPath()+QDir::convertSeparators ("/.qucs/editrc"));
|
||||
if(!file.open(IO_ReadOnly)) return false; // settings file doesn't exist
|
||||
|
||||
QTextStream stream(&file);
|
||||
QString Line, Setting;
|
||||
|
||||
while(!stream.atEnd()) {
|
||||
Line = stream.readLine();
|
||||
Setting = Line.section('=',0,0);
|
||||
Line = Line.section('=',1,1);
|
||||
if(Setting == "EditWindow") {
|
||||
if(!file.open(IO_ReadOnly))
|
||||
result = false; // settings file doesn't exist
|
||||
else {
|
||||
QTextStream stream(&file);
|
||||
QString Line, Setting;
|
||||
while(!stream.atEnd()) {
|
||||
Line = stream.readLine();
|
||||
Setting = Line.section('=',0,0);
|
||||
Line = Line.section('=',1,1);
|
||||
if(Setting == "EditWindow") {
|
||||
QucsSettings.x = Line.section(",",0,0).toInt();
|
||||
QucsSettings.y = Line.section(",",1,1).toInt();
|
||||
QucsSettings.dx = Line.section(",",2,2).toInt();
|
||||
QucsSettings.dy = Line.section(",",3,3).toInt();
|
||||
break; }
|
||||
}
|
||||
file.close();
|
||||
}
|
||||
file.close();
|
||||
|
||||
file.setName(QDir::homeDirPath()+QDir::convertSeparators ("/.qucs/qucsrc"));
|
||||
if(!file.open(IO_ReadOnly)) return true; // qucs settings not necessary
|
||||
|
||||
while(!stream.atEnd()) {
|
||||
Line = stream.readLine();
|
||||
Setting = Line.section('=',0,0);
|
||||
Line = Line.section('=',1,1).stripWhiteSpace();
|
||||
if(Setting == "Font")
|
||||
QucsSettings.font.fromString(Line);
|
||||
else if(Setting == "Language")
|
||||
QucsSettings.Language = Line;
|
||||
if(!file.open(IO_ReadOnly))
|
||||
result = true; // qucs settings not necessary
|
||||
else {
|
||||
QTextStream stream(&file);
|
||||
QString Line, Setting;
|
||||
while(!stream.atEnd()) {
|
||||
Line = stream.readLine();
|
||||
Setting = Line.section('=',0,0);
|
||||
Line = Line.section('=',1,1).stripWhiteSpace();
|
||||
if(Setting == "Font")
|
||||
QucsSettings.font.fromString(Line);
|
||||
else if(Setting == "Language")
|
||||
QucsSettings.Language = Line;
|
||||
}
|
||||
file.close();
|
||||
}
|
||||
file.close();
|
||||
|
||||
return true;
|
||||
return result;
|
||||
}
|
||||
|
||||
// #########################################################################
|
||||
|
@ -38,7 +38,7 @@ QucsEdit::QucsEdit(const QString& FileName_, bool readOnly)
|
||||
{
|
||||
// set application icon
|
||||
setIcon (QPixmap(QucsSettings.BitmapDir + "big.qucs.xpm"));
|
||||
setCaption("QucsEdit " PACKAGE_VERSION " - " + tr("File: "));
|
||||
setCaption("Qucs Editor " PACKAGE_VERSION " - " + tr("File: "));
|
||||
|
||||
QVBoxLayout *v = new QVBoxLayout(this);
|
||||
|
||||
@ -93,7 +93,7 @@ void QucsEdit::slotPrintCursorPosition(int Para, int Pos)
|
||||
void QucsEdit::slotAbout()
|
||||
{
|
||||
QMessageBox::about(this, tr("About..."),
|
||||
tr("Qucs Editor Version ")+PACKAGE_VERSION+
|
||||
"QucsEdit Version " PACKAGE_VERSION+
|
||||
tr("\nVery simple text editor for Qucs\n")+
|
||||
tr("Copyright (C) 2004, 2005 by Michael Margraf\n")+
|
||||
"\nThis is free software; see the source for copying conditions."
|
||||
@ -176,7 +176,7 @@ bool QucsEdit::loadFile(const QString& Name)
|
||||
FileName = Name;
|
||||
// QFileInfo info(Name);
|
||||
// FileName = info.fileName();
|
||||
setCaption("QucsEdit " PACKAGE_VERSION " - " + tr("File: ")+FileName);
|
||||
setCaption("Qucs Editor " PACKAGE_VERSION " - " + tr("File: ")+FileName);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -30,7 +30,7 @@
|
||||
HelpDialog::HelpDialog(QWidget *parent)
|
||||
: QDialog(parent, 0, false, Qt::WDestructiveClose)
|
||||
{
|
||||
setCaption("QucsFilter Help");
|
||||
setCaption("Qucs Filter Help");
|
||||
|
||||
|
||||
// -------- set help text into dialog ------------
|
||||
|
@ -39,38 +39,45 @@ struct tQucsSettings QucsSettings;
|
||||
// Loads the settings file and stores the settings.
|
||||
bool loadSettings()
|
||||
{
|
||||
bool result = true;
|
||||
|
||||
QFile file(QDir::homeDirPath()+QDir::convertSeparators ("/.qucs/filterrc"));
|
||||
if(!file.open(IO_ReadOnly)) return false; // settings file doesn't exist
|
||||
|
||||
QTextStream stream(&file);
|
||||
QString Line, Setting;
|
||||
|
||||
while(!stream.atEnd()) {
|
||||
Line = stream.readLine();
|
||||
Setting = Line.section('=',0,0);
|
||||
Line = Line.section('=',1,1);
|
||||
if(Setting == "FilterWindow") {
|
||||
QucsSettings.x = Line.section(",",0,0).toInt();
|
||||
QucsSettings.y = Line.section(",",1,1).toInt();
|
||||
break; }
|
||||
if(!file.open(IO_ReadOnly))
|
||||
result = false; // settings file doesn't exist
|
||||
else {
|
||||
QTextStream stream(&file);
|
||||
QString Line, Setting;
|
||||
while(!stream.atEnd()) {
|
||||
Line = stream.readLine();
|
||||
Setting = Line.section('=',0,0);
|
||||
Line = Line.section('=',1,1);
|
||||
if(Setting == "FilterWindow") {
|
||||
QucsSettings.x = Line.section(",",0,0).toInt();
|
||||
QucsSettings.y = Line.section(",",1,1).toInt();
|
||||
break;
|
||||
}
|
||||
}
|
||||
file.close();
|
||||
}
|
||||
file.close();
|
||||
|
||||
file.setName(QDir::homeDirPath()+QDir::convertSeparators ("/.qucs/qucsrc"));
|
||||
if(!file.open(IO_ReadOnly)) return true; // qucs settings not necessary
|
||||
|
||||
while(!stream.atEnd()) {
|
||||
Line = stream.readLine();
|
||||
Setting = Line.section('=',0,0);
|
||||
Line = Line.section('=',1,1).stripWhiteSpace();
|
||||
if(Setting == "Font")
|
||||
if(!file.open(IO_ReadOnly))
|
||||
result = true; // qucs settings not necessary
|
||||
else {
|
||||
QTextStream stream(&file);
|
||||
QString Line, Setting;
|
||||
while(!stream.atEnd()) {
|
||||
Line = stream.readLine();
|
||||
Setting = Line.section('=',0,0);
|
||||
Line = Line.section('=',1,1).stripWhiteSpace();
|
||||
if(Setting == "Font")
|
||||
QucsSettings.font.fromString(Line);
|
||||
else if(Setting == "Language")
|
||||
else if(Setting == "Language")
|
||||
QucsSettings.Language = Line;
|
||||
}
|
||||
file.close();
|
||||
}
|
||||
file.close();
|
||||
|
||||
return true;
|
||||
return result;
|
||||
}
|
||||
|
||||
// #########################################################################
|
||||
|
@ -47,7 +47,7 @@ QucsFilter::QucsFilter()
|
||||
{
|
||||
// set application icon
|
||||
setIcon (QPixmap(QucsSettings.BitmapDir + "big.qucs.xpm"));
|
||||
setCaption("QucsFilter " PACKAGE_VERSION);
|
||||
setCaption("Qucs Filter " PACKAGE_VERSION);
|
||||
|
||||
|
||||
// -------- create menubar -------------------
|
||||
@ -63,6 +63,7 @@ QucsFilter::QucsFilter()
|
||||
|
||||
QMenuBar *bar = new QMenuBar(this);
|
||||
bar->insertItem(tr("&File"), fileMenu);
|
||||
bar->insertSeparator ();
|
||||
bar->insertItem(tr("&Help"), helpMenu);
|
||||
|
||||
|
||||
@ -206,10 +207,10 @@ void QucsFilter::slotQuit()
|
||||
void QucsFilter::slotHelpAbout()
|
||||
{
|
||||
QMessageBox::about(this, tr("About..."),
|
||||
tr("QucsFilter Version ")+PACKAGE_VERSION+
|
||||
"QucsFilter Version " PACKAGE_VERSION+
|
||||
tr("\nFilter synthesis program\n")+
|
||||
tr("Copyright (C) 2005 by")+
|
||||
"\n Toyoyuki Ishikawa, Vincent Habchi, Michael Margraf\n"
|
||||
tr("Copyright (C) 2005, 2006 by")+
|
||||
"\nToyoyuki Ishikawa, Vincent Habchi, Michael Margraf\n"
|
||||
"\nThis is free software; see the source for copying conditions."
|
||||
"\nThere is NO warranty; not even for MERCHANTABILITY or "
|
||||
"\nFITNESS FOR A PARTICULAR PURPOSE.\n\n");
|
||||
|
@ -41,40 +41,46 @@ tQucsSettings QucsSettings; // application settings
|
||||
// Loads the settings file and stores the settings.
|
||||
bool loadSettings()
|
||||
{
|
||||
bool result = true;
|
||||
|
||||
QFile file(QDir::homeDirPath()+QDir::convertSeparators ("/.qucs/helprc"));
|
||||
if(!file.open(IO_ReadOnly)) return false; // settings file doesn't exist
|
||||
|
||||
QTextStream stream(&file);
|
||||
QString Line, Setting;
|
||||
|
||||
while(!stream.atEnd()) {
|
||||
Line = stream.readLine();
|
||||
Setting = Line.section('=',0,0);
|
||||
Line = Line.section('=',1,1);
|
||||
if(Setting == "HelpWindow") {
|
||||
if(!file.open(IO_ReadOnly))
|
||||
result = false; // settings file doesn't exist
|
||||
else {
|
||||
QTextStream stream(&file);
|
||||
QString Line, Setting;
|
||||
while(!stream.atEnd()) {
|
||||
Line = stream.readLine();
|
||||
Setting = Line.section('=',0,0);
|
||||
Line = Line.section('=',1,1);
|
||||
if(Setting == "HelpWindow") {
|
||||
QucsSettings.x = Line.section(",",0,0).toInt();
|
||||
QucsSettings.y = Line.section(",",1,1).toInt();
|
||||
QucsSettings.dx = Line.section(",",2,2).toInt();
|
||||
QucsSettings.dy = Line.section(",",3,3).toInt();
|
||||
break; }
|
||||
}
|
||||
file.close();
|
||||
}
|
||||
file.close();
|
||||
|
||||
file.setName(QDir::homeDirPath()+QDir::convertSeparators ("/.qucs/qucsrc"));
|
||||
if(!file.open(IO_ReadOnly)) return true; // qucs settings not necessary
|
||||
|
||||
while(!stream.atEnd()) {
|
||||
Line = stream.readLine();
|
||||
Setting = Line.section('=',0,0);
|
||||
Line = Line.section('=',1,1).stripWhiteSpace();
|
||||
if(Setting == "Font")
|
||||
if(!file.open(IO_ReadOnly))
|
||||
result = true; // qucs settings not necessary
|
||||
else {
|
||||
QTextStream stream(&file);
|
||||
QString Line, Setting;
|
||||
while(!stream.atEnd()) {
|
||||
Line = stream.readLine();
|
||||
Setting = Line.section('=',0,0);
|
||||
Line = Line.section('=',1,1).stripWhiteSpace();
|
||||
if(Setting == "Font")
|
||||
QucsSettings.font.fromString(Line);
|
||||
else if(Setting == "Language")
|
||||
else if(Setting == "Language")
|
||||
QucsSettings.Language = Line;
|
||||
}
|
||||
file.close();
|
||||
}
|
||||
file.close();
|
||||
|
||||
return true;
|
||||
return result;
|
||||
}
|
||||
|
||||
// #########################################################################
|
||||
|
@ -39,40 +39,46 @@ QDir QucsWorkDir;
|
||||
// Loads the settings file and stores the settings.
|
||||
bool loadSettings()
|
||||
{
|
||||
bool result = true;
|
||||
|
||||
QFile file(QDir::homeDirPath()+QDir::convertSeparators ("/.qucs/librc"));
|
||||
if(!file.open(IO_ReadOnly)) return false; // settings file doesn't exist
|
||||
|
||||
QTextStream stream(&file);
|
||||
QString Line, Setting;
|
||||
|
||||
while(!stream.atEnd()) {
|
||||
Line = stream.readLine();
|
||||
Setting = Line.section('=',0,0);
|
||||
Line = Line.section('=',1,1);
|
||||
if(Setting == "Position") {
|
||||
if(!file.open(IO_ReadOnly))
|
||||
result = false; // settings file doesn't exist
|
||||
else {
|
||||
QTextStream stream(&file);
|
||||
QString Line, Setting;
|
||||
while(!stream.atEnd()) {
|
||||
Line = stream.readLine();
|
||||
Setting = Line.section('=',0,0);
|
||||
Line = Line.section('=',1,1);
|
||||
if(Setting == "Position") {
|
||||
QucsSettings.x = Line.section(",",0,0).toInt();
|
||||
QucsSettings.y = Line.section(",",1,1).toInt(); }
|
||||
else if(Setting == "Size") {
|
||||
else if(Setting == "Size") {
|
||||
QucsSettings.dx = Line.section(",",0,0).toInt();
|
||||
QucsSettings.dy = Line.section(",",1,1).toInt(); }
|
||||
}
|
||||
file.close();
|
||||
}
|
||||
file.close();
|
||||
|
||||
file.setName(QDir::homeDirPath()+QDir::convertSeparators ("/.qucs/qucsrc"));
|
||||
if(!file.open(IO_ReadOnly)) return true; // qucs settings not necessary
|
||||
|
||||
while(!stream.atEnd()) {
|
||||
Line = stream.readLine();
|
||||
Setting = Line.section('=',0,0);
|
||||
Line = Line.section('=',1,1).stripWhiteSpace();
|
||||
if(Setting == "Font")
|
||||
if(!file.open(IO_ReadOnly))
|
||||
result = true; // qucs settings not necessary
|
||||
else {
|
||||
QTextStream stream(&file);
|
||||
QString Line, Setting;
|
||||
while(!stream.atEnd()) {
|
||||
Line = stream.readLine();
|
||||
Setting = Line.section('=',0,0);
|
||||
Line = Line.section('=',1,1).stripWhiteSpace();
|
||||
if(Setting == "Font")
|
||||
QucsSettings.font.fromString(Line);
|
||||
else if(Setting == "Language")
|
||||
else if(Setting == "Language")
|
||||
QucsSettings.Language = Line;
|
||||
}
|
||||
file.close();
|
||||
}
|
||||
file.close();
|
||||
|
||||
return true;
|
||||
return result;
|
||||
}
|
||||
|
||||
// Saves the settings in the settings file.
|
||||
|
@ -138,7 +138,7 @@ QucsLib::~QucsLib()
|
||||
void QucsLib::slotAbout()
|
||||
{
|
||||
QMessageBox::about(this, tr("About..."),
|
||||
"QucsLib " PACKAGE_VERSION "\n"+
|
||||
"QucsLib Version " PACKAGE_VERSION "\n"+
|
||||
tr("Library Manager for Qucs\n")+
|
||||
tr("Copyright (C) 2005 by Michael Margraf\n")+
|
||||
"\nThis is free software; see the source for copying conditions."
|
||||
|
@ -38,60 +38,68 @@ extern QDir QucsWorkDir;
|
||||
extern struct TransUnit TransUnits[];
|
||||
|
||||
// Loads the settings file and stores the settings.
|
||||
bool loadSettings() {
|
||||
bool loadSettings()
|
||||
{
|
||||
bool result = true;
|
||||
|
||||
QFile file(QDir::homeDirPath()+QDir::convertSeparators ("/.qucs/transrc"));
|
||||
if(!file.open(IO_ReadOnly)) return false; // settings file doesn't exist
|
||||
|
||||
QTextStream stream(&file);
|
||||
QString Line, Setting;
|
||||
|
||||
while(!stream.atEnd()) {
|
||||
Line = stream.readLine();
|
||||
Setting = Line.section('=',0,0);
|
||||
Line = Line.section('=',1,1);
|
||||
if(Setting == "Mode") {
|
||||
if(!file.open(IO_ReadOnly))
|
||||
result = false; // settings file doesn't exist
|
||||
else {
|
||||
QTextStream stream(&file);
|
||||
QString Line, Setting;
|
||||
while(!stream.atEnd()) {
|
||||
Line = stream.readLine();
|
||||
Setting = Line.section('=',0,0);
|
||||
Line = Line.section('=',1,1);
|
||||
if(Setting == "Mode") {
|
||||
QucsSettings.Mode = Line.simplifyWhiteSpace();
|
||||
}
|
||||
else if(Setting == "Frequency") {
|
||||
}
|
||||
else if(Setting == "Frequency") {
|
||||
Line = Line.simplifyWhiteSpace();
|
||||
QucsSettings.freq_unit = QucsTranscalc::translateUnit(Line,0);
|
||||
}
|
||||
else if(Setting == "Length") {
|
||||
}
|
||||
else if(Setting == "Length") {
|
||||
Line = Line.simplifyWhiteSpace();
|
||||
QucsSettings.length_unit = QucsTranscalc::translateUnit(Line,1);
|
||||
}
|
||||
else if(Setting == "Resistance") {
|
||||
}
|
||||
else if(Setting == "Resistance") {
|
||||
Line = Line.simplifyWhiteSpace();
|
||||
QucsSettings.res_unit = QucsTranscalc::translateUnit(Line,2);
|
||||
}
|
||||
else if(Setting == "Angle") {
|
||||
}
|
||||
else if(Setting == "Angle") {
|
||||
Line = Line.simplifyWhiteSpace();
|
||||
QucsSettings.ang_unit = QucsTranscalc::translateUnit(Line,3);
|
||||
}
|
||||
else if(Setting == "TransWindow") {
|
||||
}
|
||||
else if(Setting == "TransWindow") {
|
||||
QucsSettings.x = Line.section(",",0,0).toInt();
|
||||
QucsSettings.y = Line.section(",",1,1).toInt();
|
||||
QucsSettings.dx = Line.section(",",2,2).toInt();
|
||||
QucsSettings.dy = Line.section(",",3,3).toInt();
|
||||
break;}
|
||||
break;
|
||||
}
|
||||
}
|
||||
file.close();
|
||||
}
|
||||
file.close();
|
||||
|
||||
file.setName(QDir::homeDirPath()+QDir::convertSeparators ("/.qucs/qucsrc"));
|
||||
if(!file.open(IO_ReadOnly)) return true; // qucs settings not necessary
|
||||
|
||||
while(!stream.atEnd()) {
|
||||
Line = stream.readLine();
|
||||
Setting = Line.section('=',0,0);
|
||||
Line = Line.section('=',1,1).stripWhiteSpace();
|
||||
if(Setting == "Font")
|
||||
if(!file.open(IO_ReadOnly))
|
||||
result = true; // qucs settings not necessary
|
||||
else {
|
||||
QTextStream stream(&file);
|
||||
QString Line, Setting;
|
||||
while(!stream.atEnd()) {
|
||||
Line = stream.readLine();
|
||||
Setting = Line.section('=',0,0);
|
||||
Line = Line.section('=',1,1).stripWhiteSpace();
|
||||
if(Setting == "Font")
|
||||
QucsSettings.font.fromString(Line);
|
||||
else if(Setting == "Language")
|
||||
else if(Setting == "Language")
|
||||
QucsSettings.Language = Line;
|
||||
}
|
||||
file.close();
|
||||
}
|
||||
file.close();
|
||||
|
||||
return true;
|
||||
return result;
|
||||
}
|
||||
|
||||
// Saves the settings in the settings file.
|
||||
|
@ -199,7 +199,7 @@ struct TransUnit TransUnits[] = {
|
||||
QucsTranscalc::QucsTranscalc() {
|
||||
// set application icon
|
||||
setIcon (QPixmap(QucsSettings.BitmapDir + "big.qucs.xpm"));
|
||||
setCaption("QucsTranscalc " PACKAGE_VERSION);
|
||||
setCaption("Qucs Transcalc " PACKAGE_VERSION);
|
||||
|
||||
QMenuBar * menuBar = new QMenuBar (this);
|
||||
|
||||
@ -816,7 +816,7 @@ bool QucsTranscalc::isSelected (QString prop) {
|
||||
void QucsTranscalc::slotAbout()
|
||||
{
|
||||
QMessageBox::about(this, tr("About..."),
|
||||
"QucsTranscalc " PACKAGE_VERSION "\n"+
|
||||
"QucsTranscalc Version " PACKAGE_VERSION "\n"+
|
||||
tr("Transmission Line Calculator for Qucs\n")+
|
||||
tr("Copyright (C) 2001 by Gopal Narayanan\n")+
|
||||
tr("Copyright (C) 2002 by Claudio Girardi\n")+
|
||||
|
@ -6026,7 +6026,7 @@ Bearbeitet den Schaltplan</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Qucs Editor Version </source>
|
||||
<translation>Qucs Editor Version </translation>
|
||||
<translation type="obsolete">Qucs Editor Version </translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>
|
||||
@ -6165,10 +6165,6 @@ Einfacher Texteditor für Qucs
|
||||
<source>About...</source>
|
||||
<translation>Über...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>QucsFilter Version </source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>
|
||||
Filter synthesis program
|
||||
@ -6209,7 +6205,7 @@ Filtersynthese-Programm
|
||||
</message>
|
||||
<message>
|
||||
<source>Copyright (C) 2005 by</source>
|
||||
<translation>Copyright (C) 2005 von</translation>
|
||||
<translation type="obsolete">Copyright (C) 2005 von</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error</source>
|
||||
@ -6247,6 +6243,10 @@ Filtersynthese-Programm
|
||||
<source>Pass band attenuation:</source>
|
||||
<translation>Durchlassbanddämpfung:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copyright (C) 2005, 2006 by</source>
|
||||
<translation type="unfinished">Copyright (C) 2005, 2006 von</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QucsHelp</name>
|
||||
|
@ -3985,7 +3985,7 @@ Edita el esquema</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Qucs Editor Version </source>
|
||||
<translation>Versión del Editor Qucs </translation>
|
||||
<translation type="obsolete">Versión del Editor Qucs </translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>
|
||||
@ -4142,7 +4142,7 @@ Editor de texto muy simple para Qucs
|
||||
</message>
|
||||
<message>
|
||||
<source>QucsFilter Version </source>
|
||||
<translation>Versión de QucsFilter</translation>
|
||||
<translation type="obsolete">Versión de QucsFilter</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>
|
||||
@ -4181,10 +4181,6 @@ Programa de síntexis de filtros</translation>
|
||||
<source>Band stop</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copyright (C) 2005 by</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error</source>
|
||||
<translation type="unfinished">Error</translation>
|
||||
@ -4221,6 +4217,10 @@ Programa de síntexis de filtros</translation>
|
||||
<source>Pass band attenuation:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copyright (C) 2005, 2006 by</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QucsHelp</name>
|
||||
|
@ -3968,7 +3968,7 @@ Modifie ce schéma</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Qucs Editor Version </source>
|
||||
<translation>Editeur Qucs, version</translation>
|
||||
<translation type="obsolete">Editeur Qucs, version</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copyright (C) 2004 by Michael Margraf
|
||||
@ -4117,7 +4117,7 @@ Un petit éditeur sans prétention pour Qucs
|
||||
</message>
|
||||
<message>
|
||||
<source>QucsFilter Version </source>
|
||||
<translation>QucsFilter, version </translation>
|
||||
<translation type="obsolete">QucsFilter, version </translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>
|
||||
@ -4153,7 +4153,7 @@ Application de synthèse de filtres
|
||||
</message>
|
||||
<message>
|
||||
<source>Copyright (C) 2005 by</source>
|
||||
<translation>Copyright © 2005 </translation>
|
||||
<translation type="obsolete">Copyright © 2005 </translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error</source>
|
||||
@ -4191,6 +4191,10 @@ Application de synthèse de filtres
|
||||
<source>Pass band attenuation:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copyright (C) 2005, 2006 by</source>
|
||||
<translation type="unfinished">Copyright © 2005, 2006 </translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QucsHelp</name>
|
||||
|
@ -3878,7 +3878,7 @@ Edits the schematic</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>Qucs Editor Version </source>
|
||||
<translation>גרסת עורך QUCS</translation>
|
||||
<translation type="obsolete">גרסת עורך QUCS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>
|
||||
@ -4016,10 +4016,6 @@ Very simple text editor for Qucs
|
||||
<source>About...</source>
|
||||
<translation type="unfinished">אודות...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>QucsFilter Version </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>
|
||||
Filter synthesis program
|
||||
@ -4050,10 +4046,6 @@ Filter synthesis program
|
||||
<source>Band stop</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copyright (C) 2005 by</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error</source>
|
||||
<translation type="unfinished">שגיאה</translation>
|
||||
@ -4090,6 +4082,10 @@ Filter synthesis program
|
||||
<source>Pass band attenuation:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copyright (C) 2005, 2006 by</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QucsHelp</name>
|
||||
|
@ -3990,7 +3990,7 @@ Nem indítható a tápvonal tervező program!
|
||||
</message>
|
||||
<message>
|
||||
<source>Qucs Editor Version </source>
|
||||
<translation>Qucs verzió</translation>
|
||||
<translation type="obsolete">Qucs verzió</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>
|
||||
@ -4167,7 +4167,7 @@ Egyszerü szövegszerkesztő a Qucs-hoz
|
||||
</message>
|
||||
<message>
|
||||
<source>QucsFilter Version </source>
|
||||
<translation>QucsFilter verzió</translation>
|
||||
<translation type="obsolete">QucsFilter verzió</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>
|
||||
@ -4213,7 +4213,7 @@ Szűrő méretező program
|
||||
</message>
|
||||
<message>
|
||||
<source>Copyright (C) 2005 by</source>
|
||||
<translation>Copyright (C) 2005 by</translation>
|
||||
<translation type="obsolete">Copyright (C) 2005 by</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error</source>
|
||||
@ -4251,6 +4251,10 @@ Szűrő méretező program
|
||||
<source>Pass band attenuation:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copyright (C) 2005, 2006 by</source>
|
||||
<translation type="unfinished">Copyright (C) 2005, 2006 by</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QucsHelp</name>
|
||||
|
@ -4994,7 +4994,7 @@ Modifica lo schema</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Qucs Editor Version </source>
|
||||
<translation>Versione Editor Qucs</translation>
|
||||
<translation type="obsolete">Versione Editor Qucs</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copyright (C) 2004 by Michael Margraf
|
||||
@ -5143,7 +5143,7 @@ Editor di testo minimale per Qucs
|
||||
</message>
|
||||
<message>
|
||||
<source>QucsFilter Version </source>
|
||||
<translation>Versione QucsFilter</translation>
|
||||
<translation type="obsolete">Versione QucsFilter</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>
|
||||
@ -5183,10 +5183,6 @@ Programma di sintesi dei filtri
|
||||
<source>Band stop</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copyright (C) 2005 by</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error</source>
|
||||
<translation type="unfinished">Errore</translation>
|
||||
@ -5223,6 +5219,10 @@ Programma di sintesi dei filtri
|
||||
<source>Pass band attenuation:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copyright (C) 2005, 2006 by</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QucsHelp</name>
|
||||
|
@ -3903,10 +3903,6 @@ Edits the schematic</source>
|
||||
<source>About...</source>
|
||||
<translation>このソフトウェアについて...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Qucs Editor Version </source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>
|
||||
Very simple text editor for Qucs
|
||||
@ -4044,7 +4040,7 @@ Very simple text editor for Qucs
|
||||
</message>
|
||||
<message>
|
||||
<source>QucsFilter Version </source>
|
||||
<translation>QucsFilter バージョン</translation>
|
||||
<translation type="obsolete">QucsFilter バージョン</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>
|
||||
@ -4076,10 +4072,6 @@ Filter synthesis program
|
||||
<source>Band stop</source>
|
||||
<translation>バンドストップ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copyright (C) 2005 by</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error</source>
|
||||
<translation>エラー</translation>
|
||||
@ -4116,6 +4108,10 @@ Filter synthesis program
|
||||
<source>Pass band attenuation:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copyright (C) 2005, 2006 by</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QucsHelp</name>
|
||||
|
@ -4028,7 +4028,7 @@ Edytuj schemat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Qucs Editor Version </source>
|
||||
<translation>Wersja edytora programu Qucs</translation>
|
||||
<translation type="obsolete">Wersja edytora programu Qucs</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copyright (C) 2004 by Michael Margraf
|
||||
@ -4179,7 +4179,7 @@ Bardzo prosty edytor tekstowy programu Qucs
|
||||
</message>
|
||||
<message>
|
||||
<source>QucsFilter Version </source>
|
||||
<translation>Wersja QucsFilter </translation>
|
||||
<translation type="obsolete">Wersja QucsFilter </translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>
|
||||
@ -4221,7 +4221,7 @@ Program syntezy filtrów
|
||||
</message>
|
||||
<message>
|
||||
<source>Copyright (C) 2005 by</source>
|
||||
<translation>Copyright (C) 2005 by</translation>
|
||||
<translation type="obsolete">Copyright (C) 2005 by</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error</source>
|
||||
@ -4259,6 +4259,10 @@ Program syntezy filtrów
|
||||
<source>Pass band attenuation:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copyright (C) 2005, 2006 by</source>
|
||||
<translation type="unfinished">Copyright (C) 2005, 2006 by</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QucsHelp</name>
|
||||
|
@ -3880,10 +3880,6 @@ Edits the schematic</source>
|
||||
<source>About...</source>
|
||||
<translation type="unfinished">Sobre...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Qucs Editor Version </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>
|
||||
Very simple text editor for Qucs
|
||||
@ -4026,10 +4022,6 @@ Very simple text editor for Qucs
|
||||
<source>About...</source>
|
||||
<translation type="unfinished">Sobre...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>QucsFilter Version </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>
|
||||
Filter synthesis program
|
||||
@ -4060,10 +4052,6 @@ Filter synthesis program
|
||||
<source>Band stop</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copyright (C) 2005 by</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error</source>
|
||||
<translation type="unfinished">Erro</translation>
|
||||
@ -4100,6 +4088,10 @@ Filter synthesis program
|
||||
<source>Pass band attenuation:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copyright (C) 2005, 2006 by</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QucsHelp</name>
|
||||
|
@ -3973,7 +3973,7 @@ Editează această schemă</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Qucs Editor Version </source>
|
||||
<translation>Versiunea Editorului Qucs</translation>
|
||||
<translation type="obsolete">Versiunea Editorului Qucs</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copyright (C) 2004 by Michael Margraf
|
||||
@ -4121,10 +4121,6 @@ Editor de text foarte simplu pentur Qucs
|
||||
<source>About...</source>
|
||||
<translation type="unfinished">Despre...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>QucsFilter Version </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>
|
||||
Filter synthesis program
|
||||
@ -4155,10 +4151,6 @@ Filter synthesis program
|
||||
<source>Band stop</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copyright (C) 2005 by</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error</source>
|
||||
<translation type="unfinished">Eroare</translation>
|
||||
@ -4195,6 +4187,10 @@ Filter synthesis program
|
||||
<source>Pass band attenuation:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copyright (C) 2005, 2006 by</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QucsHelp</name>
|
||||
|
@ -3661,7 +3661,7 @@ Redigerar schemat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Qucs Editor Version </source>
|
||||
<translation>Quocs redigerarversion</translation>
|
||||
<translation type="obsolete">Quocs redigerarversion</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>
|
||||
@ -3800,7 +3800,7 @@ Very simple text editor for Qucs
|
||||
</message>
|
||||
<message>
|
||||
<source>QucsFilter Version </source>
|
||||
<translation>QucsFilter Version </translation>
|
||||
<translation type="obsolete">QucsFilter Version </translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>
|
||||
@ -3842,7 +3842,7 @@ Filtersyntesprogram
|
||||
</message>
|
||||
<message>
|
||||
<source>Copyright (C) 2005 by</source>
|
||||
<translation>Copyright (C) 2005 by</translation>
|
||||
<translation type="obsolete">Copyright (C) 2005 by</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error</source>
|
||||
@ -3880,6 +3880,10 @@ Filtersyntesprogram
|
||||
<source>Pass band attenuation:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copyright (C) 2005, 2006 by</source>
|
||||
<translation type="unfinished">Copyright (C) 2005, 2006 by</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QucsHelp</name>
|
||||
|
@ -3657,7 +3657,7 @@ Edits the schematic</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>Qucs Editor Version </source>
|
||||
<translation>Qucs Metin Düzenleyici Sürümü</translation>
|
||||
<translation type="obsolete">Qucs Metin Düzenleyici Sürümü</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>
|
||||
@ -3800,7 +3800,7 @@ Qucs için çok basit bit metin düzenleyici
|
||||
</message>
|
||||
<message>
|
||||
<source>QucsFilter Version </source>
|
||||
<translation>QucsFilter Sürüm</translation>
|
||||
<translation type="obsolete">QucsFilter Sürüm</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>
|
||||
@ -3812,7 +3812,7 @@ Filitre tasarım yazılımı
|
||||
</message>
|
||||
<message>
|
||||
<source>Copyright (C) 2005 by</source>
|
||||
<translation>Kopyahakkı/Telif (K) 2005 by</translation>
|
||||
<translation type="obsolete">Kopyahakkı/Telif (K) 2005 by</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>About Qt</source>
|
||||
@ -3866,6 +3866,10 @@ Filitre tasarım yazılımı
|
||||
<source>Pass band attenuation:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copyright (C) 2005, 2006 by</source>
|
||||
<translation type="unfinished">Kopyahakkı/Telif (K) 2005, 2006 by</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QucsHelp</name>
|
||||
|
@ -3607,10 +3607,6 @@ Edits the schematic</source>
|
||||
<source>About...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Qucs Editor Version </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>
|
||||
Very simple text editor for Qucs
|
||||
@ -3754,20 +3750,12 @@ Very simple text editor for Qucs
|
||||
<source>About...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>QucsFilter Version </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>
|
||||
Filter synthesis program
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copyright (C) 2005 by</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>About Qt</source>
|
||||
<translation type="unfinished"></translation>
|
||||
@ -3812,6 +3800,10 @@ Filter synthesis program
|
||||
<source>Pass band attenuation:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copyright (C) 2005, 2006 by</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QucsHelp</name>
|
||||
|
Loading…
x
Reference in New Issue
Block a user