mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
*** empty log message ***
This commit is contained in:
parent
ea6a79b9b5
commit
4e0640e7bf
2
THANKS
2
THANKS
@ -51,3 +51,5 @@ Toyoyuki Ishikawa <ishikawa@conceptkeeper.net> for the Japanese
|
||||
translations.
|
||||
|
||||
Jozsef Bus <busj@mailbox.hu> for the Hungarian translations.
|
||||
|
||||
Dotan Nahum <dotanx@gmail.com> for the Hebrew translations.
|
||||
|
@ -37,7 +37,7 @@ struct tQucsSettings {
|
||||
QFont font;
|
||||
};
|
||||
|
||||
tQucsSettings QucsSettings
|
||||
struct tQucsSettings QucsSettings
|
||||
= {200, 100, 400, 400, // position and size
|
||||
QFont("Helvetica", 12)};
|
||||
|
||||
|
@ -39,7 +39,7 @@ struct tQucsSettings {
|
||||
QFont font;
|
||||
};
|
||||
|
||||
tQucsSettings QucsSettings
|
||||
struct tQucsSettings QucsSettings
|
||||
= {60, 30, 640, 400, // position and size
|
||||
QFont("Helvetica", 12)};
|
||||
|
||||
|
@ -72,7 +72,7 @@ int PolarDiagram::calcDiagram()
|
||||
}
|
||||
|
||||
// ------------------------------------------------------------
|
||||
PolarDiagram* PolarDiagram::newOne()
|
||||
Diagram* PolarDiagram::newOne()
|
||||
{
|
||||
return new PolarDiagram();
|
||||
}
|
||||
|
@ -31,7 +31,7 @@ public:
|
||||
~PolarDiagram();
|
||||
|
||||
|
||||
PolarDiagram* newOne();
|
||||
Diagram* newOne();
|
||||
int calcDiagram();
|
||||
void calcLimits();
|
||||
void calcCoordinate(double* &, double* &, int*, int*, Axis*);
|
||||
|
@ -99,7 +99,7 @@ int PSDiagram::calcDiagram()
|
||||
}
|
||||
|
||||
// ------------------------------------------------------------
|
||||
PSDiagram* PSDiagram::newOne()
|
||||
Diagram* PSDiagram::newOne()
|
||||
{
|
||||
return new PSDiagram();
|
||||
}
|
||||
|
@ -32,7 +32,7 @@ public:
|
||||
~PSDiagram();
|
||||
|
||||
|
||||
PSDiagram* newOne();
|
||||
Diagram* newOne();
|
||||
int calcDiagram();
|
||||
void calcLimits();
|
||||
void calcCoordinate(double* &, double* &, int*, int*, Axis*);
|
||||
|
@ -493,7 +493,7 @@ Frame:
|
||||
}
|
||||
|
||||
// ------------------------------------------------------------
|
||||
RectDiagram* RectDiagram::newOne()
|
||||
Diagram* RectDiagram::newOne()
|
||||
{
|
||||
return new RectDiagram();
|
||||
}
|
||||
|
@ -30,7 +30,7 @@ public:
|
||||
~RectDiagram();
|
||||
|
||||
|
||||
RectDiagram* newOne();
|
||||
Diagram* newOne();
|
||||
int calcDiagram();
|
||||
bool calcAxisScale(Axis*, double&, double&, double&, double&, double);
|
||||
bool calcAxisLogScale(Axis*, int&, double&, double&, double&, int);
|
||||
|
@ -82,7 +82,7 @@ int SmithDiagram::calcDiagram()
|
||||
}
|
||||
|
||||
// ------------------------------------------------------------
|
||||
SmithDiagram* SmithDiagram::newOne()
|
||||
Diagram* SmithDiagram::newOne()
|
||||
{
|
||||
return new SmithDiagram();
|
||||
}
|
||||
|
@ -31,7 +31,7 @@ public:
|
||||
~SmithDiagram();
|
||||
|
||||
|
||||
SmithDiagram* newOne();
|
||||
Diagram* newOne();
|
||||
int calcDiagram();
|
||||
void calcLimits();
|
||||
void calcCoordinate(double* &, double* &, int*, int*, Axis*);
|
||||
|
@ -254,7 +254,7 @@ bool TabDiagram::scroll(int clickPos)
|
||||
}
|
||||
|
||||
// ------------------------------------------------------------
|
||||
TabDiagram* TabDiagram::newOne()
|
||||
Diagram* TabDiagram::newOne()
|
||||
{
|
||||
return new TabDiagram();
|
||||
}
|
||||
|
@ -29,7 +29,7 @@ public:
|
||||
TabDiagram(int _cx=0, int _cy=0);
|
||||
~TabDiagram();
|
||||
|
||||
TabDiagram* newOne();
|
||||
Diagram* newOne();
|
||||
int calcDiagram();
|
||||
bool scroll(int);
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
||||
#include <qlabel.h>
|
||||
|
||||
|
||||
MessageBox::MessageBox(const QString& Caption, const QString& Text,
|
||||
CloseMessageBox::CloseMessageBox(const QString& Caption, const QString& Text,
|
||||
QWidget *parent, const char *name)
|
||||
: QDialog(parent, name)
|
||||
// must not be "WDestructiveClose" !!!!!
|
||||
@ -52,32 +52,32 @@ MessageBox::MessageBox(const QString& Caption, const QString& Text,
|
||||
connect(Cancel, SIGNAL(clicked()), SLOT(slotCancel()));
|
||||
}
|
||||
|
||||
MessageBox::~MessageBox()
|
||||
CloseMessageBox::~CloseMessageBox()
|
||||
{
|
||||
delete all;
|
||||
}
|
||||
|
||||
void MessageBox::slotSave()
|
||||
void CloseMessageBox::slotSave()
|
||||
{
|
||||
done(1);
|
||||
}
|
||||
|
||||
void MessageBox::slotSaveAll()
|
||||
void CloseMessageBox::slotSaveAll()
|
||||
{
|
||||
done(2);
|
||||
}
|
||||
|
||||
void MessageBox::slotDiscard()
|
||||
void CloseMessageBox::slotDiscard()
|
||||
{
|
||||
done(3);
|
||||
}
|
||||
|
||||
void MessageBox::slotDiscardAll()
|
||||
void CloseMessageBox::slotDiscardAll()
|
||||
{
|
||||
done(4);
|
||||
}
|
||||
|
||||
void MessageBox::slotCancel()
|
||||
void CloseMessageBox::slotCancel()
|
||||
{
|
||||
done(5);
|
||||
}
|
||||
|
@ -26,11 +26,11 @@ class QVBoxLayout;
|
||||
*@author Michael Margraf
|
||||
*/
|
||||
|
||||
class MessageBox : public QDialog {
|
||||
class CloseMessageBox : public QDialog {
|
||||
Q_OBJECT
|
||||
public:
|
||||
MessageBox(const QString& Caption, const QString& Text, QWidget *parent=0, const char *name=0);
|
||||
~MessageBox();
|
||||
CloseMessageBox(const QString& Caption, const QString& Text, QWidget *parent=0, const char *name=0);
|
||||
~CloseMessageBox();
|
||||
|
||||
private slots:
|
||||
void slotSave();
|
||||
|
@ -34,10 +34,10 @@
|
||||
#include <qregexp.h>
|
||||
|
||||
#include <math.h>
|
||||
#include <float.h>
|
||||
|
||||
|
||||
|
||||
tQucsSettings QucsSettings
|
||||
struct tQucsSettings QucsSettings
|
||||
= {0, 0, 600, 400, // position and size
|
||||
QFont("Helvetica", 12), 16.0,
|
||||
QColor(255, 250, 225), 20,
|
||||
|
@ -91,7 +91,7 @@ void Arrow::setCenter(int x, int y, bool relative)
|
||||
}
|
||||
|
||||
// --------------------------------------------------------------------------
|
||||
Arrow* Arrow::newOne()
|
||||
Painting* Arrow::newOne()
|
||||
{
|
||||
return new Arrow();
|
||||
}
|
||||
|
@ -37,7 +37,7 @@ public:
|
||||
void getCenter(int&, int&);
|
||||
void setCenter(int, int, bool relative=false);
|
||||
|
||||
Arrow* newOne();
|
||||
Painting* newOne();
|
||||
bool load(const QString&);
|
||||
QString save();
|
||||
void MouseMoving(QPainter*, int, int, int, int, QPainter*, int, int, bool);
|
||||
|
@ -86,7 +86,7 @@ void Ellipse::setCenter(int x, int y, bool relative)
|
||||
}
|
||||
|
||||
// --------------------------------------------------------------------------
|
||||
Ellipse* Ellipse::newOne()
|
||||
Painting* Ellipse::newOne()
|
||||
{
|
||||
return new Ellipse();
|
||||
}
|
||||
|
@ -36,7 +36,7 @@ public:
|
||||
void getCenter(int&, int&);
|
||||
void setCenter(int, int, bool relative=false);
|
||||
|
||||
Ellipse* newOne();
|
||||
Painting* newOne();
|
||||
bool load(const QString&);
|
||||
QString save();
|
||||
void paint(ViewPainter*);
|
||||
|
@ -79,7 +79,7 @@ void EllipseArc::setCenter(int x, int y, bool relative)
|
||||
}
|
||||
|
||||
// --------------------------------------------------------------------------
|
||||
EllipseArc* EllipseArc::newOne()
|
||||
Painting* EllipseArc::newOne()
|
||||
{
|
||||
return new EllipseArc();
|
||||
}
|
||||
|
@ -36,7 +36,7 @@ public:
|
||||
void getCenter(int&, int&);
|
||||
void setCenter(int, int, bool relative=false);
|
||||
|
||||
EllipseArc* newOne();
|
||||
Painting* newOne();
|
||||
bool load(const QString&);
|
||||
QString save();
|
||||
void paint(ViewPainter*);
|
||||
|
@ -81,7 +81,7 @@ void GraphicLine::setCenter(int x, int y, bool relative)
|
||||
}
|
||||
|
||||
// --------------------------------------------------------------------------
|
||||
GraphicLine* GraphicLine::newOne()
|
||||
Painting* GraphicLine::newOne()
|
||||
{
|
||||
return new GraphicLine();
|
||||
}
|
||||
|
@ -35,7 +35,7 @@ public:
|
||||
void getCenter(int&, int&);
|
||||
void setCenter(int, int, bool relative=false);
|
||||
|
||||
GraphicLine* newOne();
|
||||
Painting* newOne();
|
||||
bool load(const QString&);
|
||||
QString save();
|
||||
void paint(ViewPainter*);
|
||||
|
@ -108,7 +108,7 @@ void GraphicText::setCenter(int x, int y, bool relative)
|
||||
}
|
||||
|
||||
// -----------------------------------------------------------------------
|
||||
GraphicText* GraphicText::newOne()
|
||||
Painting* GraphicText::newOne()
|
||||
{
|
||||
return new GraphicText();
|
||||
}
|
||||
|
@ -34,7 +34,7 @@ public:
|
||||
void getCenter(int&, int&);
|
||||
void setCenter(int, int, bool relative=false);
|
||||
|
||||
GraphicText* newOne();
|
||||
Painting* newOne();
|
||||
bool load(const QString&);
|
||||
QString save();
|
||||
void paint(ViewPainter*);
|
||||
|
@ -85,7 +85,7 @@ void Rectangle::setCenter(int x, int y, bool relative)
|
||||
}
|
||||
|
||||
// --------------------------------------------------------------------------
|
||||
Rectangle* Rectangle::newOne()
|
||||
Painting* Rectangle::newOne()
|
||||
{
|
||||
return new Rectangle();
|
||||
}
|
||||
|
@ -36,7 +36,7 @@ public:
|
||||
void getCenter(int&, int&);
|
||||
void setCenter(int, int, bool relative=false);
|
||||
|
||||
Rectangle* newOne();
|
||||
Painting* newOne();
|
||||
bool load(const QString&);
|
||||
QString save();
|
||||
void paint(ViewPainter*);
|
||||
|
@ -457,7 +457,7 @@ bool QucsApp::closeAllFiles()
|
||||
{
|
||||
int Result = 0;
|
||||
bool notForAll = true;
|
||||
MessageBox *m = new MessageBox(tr("Closing Qucs document"),
|
||||
CloseMessageBox *m = new CloseMessageBox(tr("Closing Qucs document"),
|
||||
tr("This document contains unsaved changes!\n"
|
||||
"Do you want to save the changes before closing?"),this);
|
||||
|
||||
|
@ -54,6 +54,29 @@
|
||||
<translation>Abbrechen</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>CloseMessageBox</name>
|
||||
<message>
|
||||
<source>Save</source>
|
||||
<translation>Speichern</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save all</source>
|
||||
<translation>Alle speichern</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Discard</source>
|
||||
<translation>Verwerfen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Discard all</source>
|
||||
<translation>Alle verwerfen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Cancel</source>
|
||||
<translation>Abbrechen</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ComponentDialog</name>
|
||||
<message>
|
||||
@ -788,15 +811,15 @@
|
||||
<name>MessageBox</name>
|
||||
<message>
|
||||
<source>Save</source>
|
||||
<translation>Speichern</translation>
|
||||
<translation type="obsolete">Speichern</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save all</source>
|
||||
<translation>Alle speichern</translation>
|
||||
<translation type="obsolete">Alle speichern</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Discard</source>
|
||||
<translation>Verwerfen</translation>
|
||||
<translation type="obsolete">Verwerfen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>DiscardAll</source>
|
||||
@ -804,11 +827,11 @@
|
||||
</message>
|
||||
<message>
|
||||
<source>Cancel</source>
|
||||
<translation>Abbrechen</translation>
|
||||
<translation type="obsolete">Abbrechen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Discard all</source>
|
||||
<translation>Alle verwerfen</translation>
|
||||
<translation type="obsolete">Alle verwerfen</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -5741,6 +5764,12 @@ Verschiebt den Eigenschaftentext von Komponenten</translation>
|
||||
<source>Japanese by Toyoyuki Ishikawa
|
||||
</source>
|
||||
<translation>Japanisch von Toyoyuki Ishikawa
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Hebrew by Dotan Nahum
|
||||
</source>
|
||||
<translation>Hebräisch von Dotan Nahum
|
||||
</translation>
|
||||
</message>
|
||||
</context>
|
||||
|
@ -54,6 +54,29 @@
|
||||
<translation>línea raya-punto-punto</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>CloseMessageBox</name>
|
||||
<message>
|
||||
<source>Save</source>
|
||||
<translation type="unfinished">Guardar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save all</source>
|
||||
<translation type="unfinished">Guardar todo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Discard</source>
|
||||
<translation type="unfinished">Descartar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Discard all</source>
|
||||
<translation type="unfinished">Descartar todo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished">Cancelar</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ComponentDialog</name>
|
||||
<message>
|
||||
@ -683,23 +706,23 @@
|
||||
<name>MessageBox</name>
|
||||
<message>
|
||||
<source>Save</source>
|
||||
<translation>Guardar</translation>
|
||||
<translation type="obsolete">Guardar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save all</source>
|
||||
<translation>Guardar todo</translation>
|
||||
<translation type="obsolete">Guardar todo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Discard</source>
|
||||
<translation>Descartar</translation>
|
||||
<translation type="obsolete">Descartar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Discard all</source>
|
||||
<translation>Descartar todo</translation>
|
||||
<translation type="obsolete">Descartar todo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Cancel</source>
|
||||
<translation>Cancelar</translation>
|
||||
<translation type="obsolete">Cancelar</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -4302,6 +4325,11 @@ Mueve la propiedad texto de los componentes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Japanese by Toyoyuki Ishikawa
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Hebrew by Dotan Nahum
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -54,6 +54,29 @@
|
||||
<translation>Annuler</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>CloseMessageBox</name>
|
||||
<message>
|
||||
<source>Save</source>
|
||||
<translation type="unfinished">Enregistrer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save all</source>
|
||||
<translation type="unfinished">Tout enregistrer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Discard</source>
|
||||
<translation type="unfinished">Jeter</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Discard all</source>
|
||||
<translation type="unfinished">Tout jeter</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ComponentDialog</name>
|
||||
<message>
|
||||
@ -684,23 +707,23 @@
|
||||
<name>MessageBox</name>
|
||||
<message>
|
||||
<source>Save</source>
|
||||
<translation>Enregistrer</translation>
|
||||
<translation type="obsolete">Enregistrer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save all</source>
|
||||
<translation>Tout enregistrer</translation>
|
||||
<translation type="obsolete">Tout enregistrer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Discard</source>
|
||||
<translation>Jeter</translation>
|
||||
<translation type="obsolete">Jeter</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Cancel</source>
|
||||
<translation>Annuler</translation>
|
||||
<translation type="obsolete">Annuler</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Discard all</source>
|
||||
<translation>Tout jeter</translation>
|
||||
<translation type="obsolete">Tout jeter</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -4278,6 +4301,11 @@ Déplace la légende du composant</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Japanese by Toyoyuki Ishikawa
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Hebrew by Dotan Nahum
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -54,6 +54,29 @@
|
||||
<translation>קו מקף-נקודה-נקודה</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>CloseMessageBox</name>
|
||||
<message>
|
||||
<source>Save</source>
|
||||
<translation type="unfinished">שמור</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save all</source>
|
||||
<translation type="unfinished">שמור הכל</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Discard</source>
|
||||
<translation type="unfinished">התעלם</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Discard all</source>
|
||||
<translation type="unfinished">התעלם מהכל</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished">בטל</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ComponentDialog</name>
|
||||
<message>
|
||||
@ -660,23 +683,23 @@
|
||||
<name>MessageBox</name>
|
||||
<message>
|
||||
<source>Save</source>
|
||||
<translation>שמור</translation>
|
||||
<translation type="obsolete">שמור</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save all</source>
|
||||
<translation>שמור הכל</translation>
|
||||
<translation type="obsolete">שמור הכל</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Discard</source>
|
||||
<translation>התעלם</translation>
|
||||
<translation type="obsolete">התעלם</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Discard all</source>
|
||||
<translation>התעלם מהכל</translation>
|
||||
<translation type="obsolete">התעלם מהכל</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Cancel</source>
|
||||
<translation>בטל</translation>
|
||||
<translation type="obsolete">בטל</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -4146,6 +4169,11 @@ Qt universal circuit simulator
|
||||
</message>
|
||||
<message>
|
||||
<source>Japanese by Toyoyuki Ishikawa
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Hebrew by Dotan Nahum
|
||||
</source>
|
||||
<translation>Japanese by Toyoyuki Ishikawa
|
||||
</translation>
|
||||
|
@ -54,6 +54,29 @@
|
||||
<translation>pontvonal dupla ponttal</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>CloseMessageBox</name>
|
||||
<message>
|
||||
<source>Save</source>
|
||||
<translation type="unfinished">Mentés</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save all</source>
|
||||
<translation type="unfinished">Mindent ment</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Discard</source>
|
||||
<translation type="unfinished">Eldobás</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Discard all</source>
|
||||
<translation type="unfinished">Mindent eldob</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished">Mégsem</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ComponentDialog</name>
|
||||
<message>
|
||||
@ -683,23 +706,23 @@
|
||||
<name>MessageBox</name>
|
||||
<message>
|
||||
<source>Save</source>
|
||||
<translation>Mentés</translation>
|
||||
<translation type="obsolete">Mentés</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save all</source>
|
||||
<translation>Mindent ment</translation>
|
||||
<translation type="obsolete">Mindent ment</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Discard</source>
|
||||
<translation>Eldobás</translation>
|
||||
<translation type="obsolete">Eldobás</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Discard all</source>
|
||||
<translation>Mindent eldob</translation>
|
||||
<translation type="obsolete">Mindent eldob</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Cancel</source>
|
||||
<translation>Mégsem</translation>
|
||||
<translation type="obsolete">Mégsem</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -4262,6 +4285,11 @@ Qt univerzális áramkör szimuláció
|
||||
</message>
|
||||
<message>
|
||||
<source>Japanese by Toyoyuki Ishikawa
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Hebrew by Dotan Nahum
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -54,6 +54,29 @@
|
||||
<translation>linea tratteggio punto punto</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>CloseMessageBox</name>
|
||||
<message>
|
||||
<source>Save</source>
|
||||
<translation type="unfinished">Salva</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save all</source>
|
||||
<translation type="unfinished">Salva tutto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Discard</source>
|
||||
<translation type="unfinished">Abbandona</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Discard all</source>
|
||||
<translation type="unfinished">Abbandona tutto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ComponentDialog</name>
|
||||
<message>
|
||||
@ -796,15 +819,15 @@
|
||||
<name>MessageBox</name>
|
||||
<message>
|
||||
<source>Save</source>
|
||||
<translation>Salva</translation>
|
||||
<translation type="obsolete">Salva</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save all</source>
|
||||
<translation>Salva tutto</translation>
|
||||
<translation type="obsolete">Salva tutto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Discard</source>
|
||||
<translation>Abbandona</translation>
|
||||
<translation type="obsolete">Abbandona</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>DiscardAll</source>
|
||||
@ -812,11 +835,11 @@
|
||||
</message>
|
||||
<message>
|
||||
<source>Cancel</source>
|
||||
<translation>Annulla</translation>
|
||||
<translation type="obsolete">Annulla</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Discard all</source>
|
||||
<translation>Abbandona tutto</translation>
|
||||
<translation type="obsolete">Abbandona tutto</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -5291,6 +5314,11 @@ Muove il testo del componente</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Japanese by Toyoyuki Ishikawa
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Hebrew by Dotan Nahum
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -54,6 +54,29 @@
|
||||
<translation>ダッシュドットドット</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>CloseMessageBox</name>
|
||||
<message>
|
||||
<source>Save</source>
|
||||
<translation type="unfinished">保存</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save all</source>
|
||||
<translation type="unfinished">全て保存</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Discard</source>
|
||||
<translation type="unfinished">破棄</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Discard all</source>
|
||||
<translation type="unfinished">全て破棄</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished">キャンセル</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ComponentDialog</name>
|
||||
<message>
|
||||
@ -683,23 +706,23 @@
|
||||
<name>MessageBox</name>
|
||||
<message>
|
||||
<source>Save</source>
|
||||
<translation>保存</translation>
|
||||
<translation type="obsolete">保存</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save all</source>
|
||||
<translation>全て保存</translation>
|
||||
<translation type="obsolete">全て保存</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Discard</source>
|
||||
<translation>破棄</translation>
|
||||
<translation type="obsolete">破棄</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Discard all</source>
|
||||
<translation>全て破棄</translation>
|
||||
<translation type="obsolete">全て破棄</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Cancel</source>
|
||||
<translation>キャンセル</translation>
|
||||
<translation type="obsolete">キャンセル</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -4196,6 +4219,11 @@ Qt universal circuit simulator
|
||||
</message>
|
||||
<message>
|
||||
<source>Japanese by Toyoyuki Ishikawa
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Hebrew by Dotan Nahum
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -54,6 +54,29 @@
|
||||
<translation>Porzuć</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>CloseMessageBox</name>
|
||||
<message>
|
||||
<source>Save</source>
|
||||
<translation type="unfinished">Zapisz</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save all</source>
|
||||
<translation type="unfinished">Zapisz wszystko</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Discard</source>
|
||||
<translation type="unfinished">Zrezygnuj</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Discard all</source>
|
||||
<translation type="unfinished">Zrezygnuj ze wszystkich</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished">Porzuć</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ComponentDialog</name>
|
||||
<message>
|
||||
@ -703,15 +726,15 @@
|
||||
<name>MessageBox</name>
|
||||
<message>
|
||||
<source>Save</source>
|
||||
<translation>Zapisz</translation>
|
||||
<translation type="obsolete">Zapisz</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save all</source>
|
||||
<translation>Zapisz wszystko</translation>
|
||||
<translation type="obsolete">Zapisz wszystko</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Discard</source>
|
||||
<translation>Zrezygnuj</translation>
|
||||
<translation type="obsolete">Zrezygnuj</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>DiscardAll</source>
|
||||
@ -719,11 +742,11 @@
|
||||
</message>
|
||||
<message>
|
||||
<source>Cancel</source>
|
||||
<translation>Porzuć</translation>
|
||||
<translation type="obsolete">Porzuć</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Discard all</source>
|
||||
<translation>Zrezygnuj ze wszystkich</translation>
|
||||
<translation type="obsolete">Zrezygnuj ze wszystkich</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -4382,6 +4405,11 @@ Przesuwa tekst właściwości elementu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Japanese by Toyoyuki Ishikawa
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Hebrew by Dotan Nahum
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -54,6 +54,29 @@
|
||||
<translation>linha traço ponto ponto</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>CloseMessageBox</name>
|
||||
<message>
|
||||
<source>Save</source>
|
||||
<translation type="unfinished">Salvar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save all</source>
|
||||
<translation type="unfinished">Salvar Todos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Discard</source>
|
||||
<translation type="unfinished">Descartar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Discard all</source>
|
||||
<translation type="unfinished">Descartar Todos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished">Cancelar</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ComponentDialog</name>
|
||||
<message>
|
||||
@ -675,23 +698,23 @@
|
||||
<name>MessageBox</name>
|
||||
<message>
|
||||
<source>Save</source>
|
||||
<translation>Salvar</translation>
|
||||
<translation type="obsolete">Salvar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save all</source>
|
||||
<translation>Salvar Todos</translation>
|
||||
<translation type="obsolete">Salvar Todos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Discard</source>
|
||||
<translation>Descartar</translation>
|
||||
<translation type="obsolete">Descartar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Discard all</source>
|
||||
<translation>Descartar Todos</translation>
|
||||
<translation type="obsolete">Descartar Todos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Cancel</source>
|
||||
<translation>Cancelar</translation>
|
||||
<translation type="obsolete">Cancelar</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -4233,6 +4256,11 @@ Moves the property text of components</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>Japanese by Toyoyuki Ishikawa
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Hebrew by Dotan Nahum
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -54,6 +54,29 @@
|
||||
<translation>linie intrerupta dublu punctată</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>CloseMessageBox</name>
|
||||
<message>
|
||||
<source>Save</source>
|
||||
<translation type="unfinished">Salvează</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save all</source>
|
||||
<translation type="unfinished">Salvează tot</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Discard</source>
|
||||
<translation type="unfinished">Renunţare</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Discard all</source>
|
||||
<translation type="unfinished">Renunţare totală</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished">Revocare</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ComponentDialog</name>
|
||||
<message>
|
||||
@ -679,15 +702,15 @@
|
||||
<name>MessageBox</name>
|
||||
<message>
|
||||
<source>Save</source>
|
||||
<translation>Salvează</translation>
|
||||
<translation type="obsolete">Salvează</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save all</source>
|
||||
<translation>Salvează tot</translation>
|
||||
<translation type="obsolete">Salvează tot</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Discard</source>
|
||||
<translation>Renunţare</translation>
|
||||
<translation type="obsolete">Renunţare</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>DiscardAll</source>
|
||||
@ -695,11 +718,11 @@
|
||||
</message>
|
||||
<message>
|
||||
<source>Cancel</source>
|
||||
<translation>Revocare</translation>
|
||||
<translation type="obsolete">Revocare</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Discard all</source>
|
||||
<translation>Renunţare totală</translation>
|
||||
<translation type="obsolete">Renunţare totală</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -4327,6 +4350,11 @@ Mută proprietatea text al componentelor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Japanese by Toyoyuki Ishikawa
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Hebrew by Dotan Nahum
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -1696,13 +1696,13 @@ void QucsDoc::copySelectedElements(QPtrList<Element> *p)
|
||||
}
|
||||
|
||||
// test all paintings **********************************
|
||||
for(Painting *pp = Paints->first(); pp != 0; )
|
||||
if(pp->isSelected) {
|
||||
p->append(pp);
|
||||
for(Painting *ppa = Paints->first(); ppa != 0; )
|
||||
if(ppa->isSelected) {
|
||||
p->append(ppa);
|
||||
Paints->take();
|
||||
pp = Paints->current();
|
||||
ppa = Paints->current();
|
||||
}
|
||||
else pp = Paints->next();
|
||||
else ppa = Paints->next();
|
||||
|
||||
// ..............................................
|
||||
// Inserts wires, if a connection to a not moving element is found.
|
||||
@ -1758,7 +1758,7 @@ void QucsDoc::copySelectedElements(QPtrList<Element> *p)
|
||||
|
||||
// test all node labels
|
||||
// do this last to avoid double copying
|
||||
for(Node *pn = Nodes->first(); pn != 0; pn = Nodes->next())
|
||||
for(pn = Nodes->first(); pn != 0; pn = Nodes->next())
|
||||
if(pn->Label) if(pn->Label->isSelected)
|
||||
p->append(pn->Label);
|
||||
|
||||
|
@ -753,6 +753,7 @@ void QucsInit::slotHelpAbout()
|
||||
tr("Spanish by Jose L. Redrejo Rodriguez\n")+
|
||||
tr("Japanese by Toyoyuki Ishikawa\n")+
|
||||
tr("Italian by Giorgio Luparia\n")+
|
||||
tr("Hebrew by Dotan Nahum\n")+
|
||||
tr("Hungarian by Jozsef Bus"));
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user