You can subscribe to this list here.
2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(18) |
Oct
(11) |
Nov
(3) |
Dec
(3) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2011 |
Jan
|
Feb
(17) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <per...@us...> - 2009-10-31 22:39:41
|
Revision: 187 http://netemul.svn.sourceforge.net/netemul/?rev=187&view=rev Author: perezmeyer Date: 2009-10-31 22:39:30 +0000 (Sat, 31 Oct 2009) Log Message: ----------- A JavaScript script soesn't needs execution permission. Fixing. Property Changed: ---------------- trunk/scripts/arp.js Property changes on: trunk/scripts/arp.js ___________________________________________________________________ Deleted: svn:executable - * This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <per...@us...> - 2009-10-27 21:41:23
|
Revision: 184 http://netemul.svn.sourceforge.net/netemul/?rev=184&view=rev Author: perezmeyer Date: 2009-10-27 21:41:17 +0000 (Tue, 27 Oct 2009) Log Message: ----------- Fixed a typo introduced in the last typo fix :) Modified Paths: -------------- trunk/src/dialogs/dhcpserverproperty.cpp Modified: trunk/src/dialogs/dhcpserverproperty.cpp =================================================================== --- trunk/src/dialogs/dhcpserverproperty.cpp 2009-10-27 21:39:52 UTC (rev 183) +++ trunk/src/dialogs/dhcpserverproperty.cpp 2009-10-27 21:41:17 UTC (rev 184) @@ -85,7 +85,7 @@ void dhcpServerProperty::apply() { if ( ie_begin->ipText() > ie_end->ipText() ) { - QMessageBox::warning(0,tr("Wrong range"),tr("You have entered a wrong range of ip."), QMessageBox::Ok, QMessageBox::Ok); + QMessageBox::warning(0,tr("Wrong range"),tr("You have entered a wrong IP range."), QMessageBox::Ok, QMessageBox::Ok); return; } myProgramm->setInterface(cb_interface->currentText()); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <per...@us...> - 2009-10-27 21:40:03
|
Revision: 183 http://netemul.svn.sourceforge.net/netemul/?rev=183&view=rev Author: perezmeyer Date: 2009-10-27 21:39:52 +0000 (Tue, 27 Oct 2009) Log Message: ----------- Fixed typo Modified Paths: -------------- trunk/src/dialogs/dhcpserverproperty.cpp Modified: trunk/src/dialogs/dhcpserverproperty.cpp =================================================================== --- trunk/src/dialogs/dhcpserverproperty.cpp 2009-10-27 21:30:58 UTC (rev 182) +++ trunk/src/dialogs/dhcpserverproperty.cpp 2009-10-27 21:39:52 UTC (rev 183) @@ -26,7 +26,7 @@ #include "ipaddressdelegate.h" dhcpServerProperty::dhcpServerProperty(smartDevice *dev,QWidget *parent /* = 0 */) : QDialog(parent) -{ +{ setupUi(this); device = dev; setAttribute(Qt::WA_DeleteOnClose); @@ -48,7 +48,7 @@ void dhcpServerProperty::setProgramm(dhcpServerProgramm *prog) { myProgramm = prog; - myModel = myProgramm->dhcpModel(); + myModel = myProgramm->dhcpModel(); tv_static->setModel( myModel ); QHeaderView *h = tv_static->horizontalHeader(); h->setResizeMode( QHeaderView::Stretch ); @@ -64,7 +64,7 @@ void dhcpServerProperty::addRecord() { - myModel->insertRow( myModel->rowCount() ); + myModel->insertRow( myModel->rowCount() ); } void dhcpServerProperty::deleteRecord() @@ -85,7 +85,7 @@ void dhcpServerProperty::apply() { if ( ie_begin->ipText() > ie_end->ipText() ) { - QMessageBox::warning(0,tr("Wrong range"),tr("You enter a wrong range of ip."), QMessageBox::Ok, QMessageBox::Ok); + QMessageBox::warning(0,tr("Wrong range"),tr("You have entered a wrong range of ip."), QMessageBox::Ok, QMessageBox::Ok); return; } myProgramm->setInterface(cb_interface->currentText()); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <per...@us...> - 2009-10-27 21:31:05
|
Revision: 182 http://netemul.svn.sourceforge.net/netemul/?rev=182&view=rev Author: perezmeyer Date: 2009-10-27 21:30:58 +0000 (Tue, 27 Oct 2009) Log Message: ----------- Fixed typos Modified Paths: -------------- trunk/src/mainwindow.cpp Modified: trunk/src/mainwindow.cpp =================================================================== --- trunk/src/mainwindow.cpp 2009-10-26 21:28:05 UTC (rev 181) +++ trunk/src/mainwindow.cpp 2009-10-27 21:30:58 UTC (rev 182) @@ -140,7 +140,7 @@ UPDATEACTION( arpAct , tr("Arp table"), tr("Arp table") ); UPDATEACTION( deleteAct , tr("Delete"),tr("Deleting object") ) UPDATEACTION( progAct , tr("Programs"), tr("Programs installed on device") ) - UPDATEACTION( settingAct , tr("Setting...") , tr("Setting") ) + UPDATEACTION( settingAct , tr("Settings...") , tr("Settings") ) UPDATEACTION( playAct , tr("Stop") , tr("Stop simulation") ) UPDATEACTION( staticsAct , tr("Statistics ") , tr("Show scene statistics ") ) UPDATEACTION( moveAct , tr("Move"),tr("Move objects") ) @@ -160,7 +160,7 @@ UPDATEACTION( propertyAct , tr("Properties") , tr("Show properties") ) UPDATEACTION( logAct , tr("Show log") , tr("Show device log file") ) UPDATEACTION( aboutDeviceAct , tr("About device") , tr("Information about device") ) - UPDATEACTION( designerPacketAct , tr("Packet desinger...") , tr("Create user's packet") ) + UPDATEACTION( designerPacketAct , tr("Packet designer...") , tr("Create user's packet") ) UPDATEACTION( printAct , tr("Print...") , tr("Print user's network") ) UPDATEACTION( printPreviewAct , tr("Preview...") , tr("Preview network berfore printing") ); fileMenu->setTitle(tr("File")); @@ -486,7 +486,7 @@ // Слот окна настроек void MainWindow::setting() { - settingDialog *d = new settingDialog; + settingDialog *d = new settingDialog; d->exec(); canva->setAnimateSpeed( appSetting::animateSpeed() ); setOpenglMode( appSetting::hasOpengl() ); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: Lisandro D. N. P. M. <per...@gm...> - 2009-10-27 21:22:18
|
I see that I missed a lot of releases :S Are you anouncing them somewhere? Regards, Lisandro. -- All of us have bad luck and good luck. The man who persists through the bad luck - who keeps right on going - is the man who is there when the good luck comes - and is ready to receive it. Lisandro Damián Nicanor Pérez Meyer http://perezmeyer.com.ar/ http://perezmeyer.blogspot.com/ |
From: Lisandro D. N. P. M. <per...@gm...> - 2009-10-17 17:29:58
|
On Saturday 17 October 2009 13:41:03 you wrote: > FYI: The status of the netemul source package > in Debian's testing distribution has changed. > > Previous version: (not in testing) > Current version: 0.8.6+svn147-1 > I'm happy to announce that NetEmul has reached Debian testing :) Regards, Lisandro. -- Cuando tenga duda, utilice la solución mas simple. Principio de William Occam, también llamado "la navaja de Occam" Lisandro Damián Nicanor Pérez Meyer http://perezmeyer.com.ar/ http://perezmeyer.blogspot.com/ |
From: <per...@us...> - 2009-10-03 17:35:13
|
Revision: 156 http://netemul.svn.sourceforge.net/netemul/?rev=156&view=rev Author: perezmeyer Date: 2009-10-03 17:33:30 +0000 (Sat, 03 Oct 2009) Log Message: ----------- Images and source code are not executable files. Fixing. Property Changed: ---------------- trunk/images/arrow.png trunk/images/back.png trunk/images/cable.png trunk/images/computer.png trunk/images/edit_add.png trunk/images/edit_remove.png trunk/images/hub.png trunk/images/k10i100.png trunk/images/k10i100i1000.png trunk/images/left_right.png trunk/images/not.png trunk/images/ok.png trunk/images/redo.png trunk/images/refresh.png trunk/images/router.png trunk/images/sharebus.png trunk/images/switch.png trunk/netemul.qrc trunk/src/chips/abstractchip.cpp trunk/src/chips/abstractchip.h trunk/src/chips/interface.cpp trunk/src/chips/interface.h trunk/src/deviceport.cpp trunk/src/deviceport.h trunk/src/devices/boxdevice.cpp trunk/src/devices/boxdevice.h trunk/src/devices/computer.cpp trunk/src/devices/computer.h trunk/src/devices/hubdevice.cpp trunk/src/devices/hubdevice.h trunk/src/devices/routerdevice.cpp trunk/src/devices/routerdevice.h trunk/src/devices/sharebus.cpp trunk/src/devices/sharebus.h trunk/src/devices/smartdevice.cpp trunk/src/devices/smartdevice.h trunk/src/devices/switchdevice.cpp trunk/src/devices/switchdevice.h trunk/src/dialogs/adapterproperty.cpp trunk/src/dialogs/adapterproperty.h trunk/src/dialogs/computerproperty.cpp trunk/src/dialogs/computerproperty.h trunk/src/dialogs/connectdialog.cpp trunk/src/dialogs/connectdialog.h trunk/src/dialogs/dialogtemplate.cpp trunk/src/dialogs/dialogtemplate.h trunk/src/dialogs/hubproperty.cpp trunk/src/dialogs/hubproperty.h trunk/src/dialogs/interfacedialog.cpp trunk/src/dialogs/interfacedialog.h trunk/src/dialogs/routeeditor.cpp trunk/src/dialogs/routeeditor.h trunk/src/dialogs/routerproperty.cpp trunk/src/dialogs/routerproperty.h trunk/src/dialogs/senddialog.cpp trunk/src/dialogs/senddialog.h trunk/src/dialogs/settingdialog.cpp trunk/src/dialogs/settingdialog.h trunk/src/dialogs/switchproperty.cpp trunk/src/dialogs/switchproperty.h trunk/src/dialogs/tableswitch.cpp trunk/src/dialogs/tableswitch.h trunk/src/dialogs/testdialog.cpp trunk/src/dialogs/testdialog.h trunk/src/forms/testdialog.ui trunk/src/frame.cpp trunk/src/frame.h trunk/src/graphics/cabledev.cpp trunk/src/graphics/cabledev.h trunk/src/graphics/device.cpp trunk/src/graphics/device.h trunk/src/ipaddress.cpp trunk/src/ipaddress.h trunk/src/ipedit.cpp trunk/src/ipedit.h trunk/src/macaddress.cpp trunk/src/macaddress.h trunk/src/main.cpp trunk/src/mainwindow.cpp trunk/src/mainwindow.h trunk/src/mycanvas.cpp trunk/src/mycanvas.h trunk/src/packets/arppacket.cpp trunk/src/packets/arppacket.h trunk/src/packets/ippacket.cpp trunk/src/packets/ippacket.h Property changes on: trunk/images/arrow.png ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/images/back.png ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/images/cable.png ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/images/computer.png ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/images/edit_add.png ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/images/edit_remove.png ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/images/hub.png ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/images/k10i100.png ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/images/k10i100i1000.png ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/images/left_right.png ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/images/not.png ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/images/ok.png ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/images/redo.png ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/images/refresh.png ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/images/router.png ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/images/sharebus.png ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/images/switch.png ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/netemul.qrc ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/chips/abstractchip.cpp ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/chips/abstractchip.h ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/chips/interface.cpp ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/chips/interface.h ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/deviceport.cpp ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/deviceport.h ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/devices/boxdevice.cpp ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/devices/boxdevice.h ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/devices/computer.cpp ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/devices/computer.h ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/devices/hubdevice.cpp ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/devices/hubdevice.h ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/devices/routerdevice.cpp ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/devices/routerdevice.h ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/devices/sharebus.cpp ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/devices/sharebus.h ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/devices/smartdevice.cpp ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/devices/smartdevice.h ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/devices/switchdevice.cpp ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/devices/switchdevice.h ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/dialogs/adapterproperty.cpp ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/dialogs/adapterproperty.h ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/dialogs/computerproperty.cpp ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/dialogs/computerproperty.h ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/dialogs/connectdialog.cpp ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/dialogs/connectdialog.h ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/dialogs/dialogtemplate.cpp ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/dialogs/dialogtemplate.h ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/dialogs/hubproperty.cpp ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/dialogs/hubproperty.h ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/dialogs/interfacedialog.cpp ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/dialogs/interfacedialog.h ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/dialogs/routeeditor.cpp ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/dialogs/routeeditor.h ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/dialogs/routerproperty.cpp ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/dialogs/routerproperty.h ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/dialogs/senddialog.cpp ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/dialogs/senddialog.h ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/dialogs/settingdialog.cpp ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/dialogs/settingdialog.h ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/dialogs/switchproperty.cpp ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/dialogs/switchproperty.h ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/dialogs/tableswitch.cpp ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/dialogs/tableswitch.h ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/dialogs/testdialog.cpp ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/dialogs/testdialog.h ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/forms/testdialog.ui ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/frame.cpp ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/frame.h ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/graphics/cabledev.cpp ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/graphics/cabledev.h ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/graphics/device.cpp ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/graphics/device.h ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/ipaddress.cpp ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/ipaddress.h ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/ipedit.cpp ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/ipedit.h ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/macaddress.cpp ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/macaddress.h ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/main.cpp ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/mainwindow.cpp ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/mainwindow.h ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/mycanvas.cpp ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/mycanvas.h ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/packets/arppacket.cpp ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/packets/arppacket.h ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/packets/ippacket.cpp ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/src/packets/ippacket.h ___________________________________________________________________ Deleted: svn:executable - * This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <per...@us...> - 2009-10-03 17:05:53
|
Revision: 155 http://netemul.svn.sourceforge.net/netemul/?rev=155&view=rev Author: perezmeyer Date: 2009-10-03 17:05:29 +0000 (Sat, 03 Oct 2009) Log Message: ----------- .directory file is a file used by KDE, not part of the source code. Removing it. Removed Paths: ------------- trunk/images/.directory Deleted: trunk/images/.directory =================================================================== --- trunk/images/.directory 2009-10-03 17:00:25 UTC (rev 154) +++ trunk/images/.directory 2009-10-03 17:05:29 UTC (rev 155) @@ -1,3 +0,0 @@ -[Dolphin] -ShowPreview=true -Timestamp=2009,7,18,1,0,24 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <per...@us...> - 2009-10-03 17:00:44
|
Revision: 154 http://netemul.svn.sourceforge.net/netemul/?rev=154&view=rev Author: perezmeyer Date: 2009-10-03 17:00:25 +0000 (Sat, 03 Oct 2009) Log Message: ----------- Remooved executable property of index.html (html files are not executable) Property Changed: ---------------- trunk/doc/ru/index.html Property changes on: trunk/doc/ru/index.html ___________________________________________________________________ Deleted: svn:executable - * This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <per...@us...> - 2009-10-03 16:29:10
|
Revision: 153 http://netemul.svn.sourceforge.net/netemul/?rev=153&view=rev Author: perezmeyer Date: 2009-10-03 16:28:46 +0000 (Sat, 03 Oct 2009) Log Message: ----------- Added spanish translation to the desktop file Modified Paths: -------------- trunk/netemul.desktop Modified: trunk/netemul.desktop =================================================================== --- trunk/netemul.desktop 2009-10-02 19:57:45 UTC (rev 152) +++ trunk/netemul.desktop 2009-10-03 16:28:46 UTC (rev 153) @@ -3,6 +3,7 @@ Name=NetEmul Name[ru]=NetEmul Comment=The LAN network simulator +Comment[es]=Simulador de redes de computadoras Comment[ru]=Симулятор работы локольной сети Type=Application Exec=/usr/local/bin/netemul This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <per...@us...> - 2009-09-29 01:13:11
|
Revision: 145 http://netemul.svn.sourceforge.net/netemul/?rev=145&view=rev Author: perezmeyer Date: 2009-09-29 00:16:22 +0000 (Tue, 29 Sep 2009) Log Message: ----------- Updated spanish translation Modified Paths: -------------- trunk/translation/netemul_es.ts Modified: trunk/translation/netemul_es.ts =================================================================== --- trunk/translation/netemul_es.ts 2009-09-28 20:14:02 UTC (rev 144) +++ trunk/translation/netemul_es.ts 2009-09-29 00:16:22 UTC (rev 145) @@ -99,12 +99,12 @@ <message> <location filename="../src/mainwindow.cpp" line="106"/> <source>File was modified</source> - <translation type="unfinished"></translation> + <translation>El archivo ha sido modificado</translation> </message> <message> <location filename="../src/mainwindow.cpp" line="106"/> <source>File was modified, do you want to save changes?</source> - <translation type="unfinished"></translation> + <translation>El archivo ha sido modificado ¿desea guardar los cambios?</translation> </message> <message> <location filename="../src/mainwindow.cpp" line="133"/> @@ -312,7 +312,7 @@ <message> <location filename="../src/mainwindow.cpp" line="155"/> <source>Edit</source> - <translation type="unfinished"></translation> + <translation>Editar</translation> </message> <message> <location filename="../src/mainwindow.cpp" line="156"/> @@ -533,37 +533,37 @@ <message> <location filename="../src/commands/addcommand.cpp" line="48"/> <source>Add %1</source> - <translation type="unfinished"></translation> + <translation>Agregar %1</translation> </message> <message> <location filename="../src/commands/deletecommand.cpp" line="38"/> <source>Delete</source> - <translation type="unfinished">Borrar</translation> + <translation>Borrar</translation> </message> <message> <location filename="../src/commands/movecommand.cpp" line="27"/> <source>Move</source> - <translation type="unfinished">Mover</translation> + <translation>Mover</translation> </message> <message> <location filename="../src/states/sendstate.cpp" line="58"/> <source>Error</source> - <translation type="unfinished">Error</translation> + <translation>Error</translation> </message> <message> <location filename="../src/states/sendstate.cpp" line="58"/> <source>The device can't transmit data!</source> - <translation type="unfinished">¡El dispositivo no puede transmitir datos!</translation> + <translation>¡El dispositivo no puede transmitir datos!</translation> </message> <message> <location filename="../src/commands/addcablecommand.cpp" line="28"/> <source>Add cable</source> - <translation type="unfinished"></translation> + <translation>Agregar cable</translation> </message> <message> <location filename="../src/commands/addtextcommand.cpp" line="28"/> <source>Add note</source> - <translation type="unfinished"></translation> + <translation>Agregar nota</translation> </message> </context> <context> @@ -618,7 +618,11 @@ Lisandro Damián Nicanor Pérez Meyer Márcio Moraes</source> - <translation type="unfinished"></translation> + <translation>Konstantin Andreev - Autor de la idea y creador de los iconos, +Arina Shelest - Autor del logotipo. + +Lisandro Damián Nicanor Pérez Meyer +Márcio Moraes</translation> </message> <message> <source>Konstantin Andreev - Author of the idea and creator of the icons, @@ -655,7 +659,7 @@ <message> <location filename="../src/dialogs/adapterproperty.cpp" line="35"/> <source>Netcard</source> - <translation type="unfinished">Tarjeta de red</translation> + <translation>Tarjeta de red</translation> </message> <message> <location filename="../src/dialogs/adapterproperty.cpp" line="46"/> @@ -737,7 +741,7 @@ <message> <location filename="../src/devices/computer.h" line="43"/> <source>Computer</source> - <translation type="unfinished">Computadora</translation> + <translation>Computadora</translation> </message> </context> <context> @@ -745,7 +749,7 @@ <message> <location filename="../src/dialogs/computerproperty.cpp" line="29"/> <source>Proreties</source> - <translation type="unfinished"></translation> + <translation>Propiedades</translation> </message> <message> <location filename="../src/dialogs/computerproperty.cpp" line="33"/> @@ -799,23 +803,24 @@ <message> <location filename="../src/forms/dhcpclientproperty.ui" line="14"/> <source>DHCP client property</source> - <translation type="unfinished"></translation> + <translation>Propiedades del cliente DHCP</translation> </message> <message> <location filename="../src/forms/dhcpclientproperty.ui" line="20"/> <source>Choose interfaces which must be under DHCP control: </source> - <translation type="unfinished"></translation> + <translation>Elija las interfaces que deben +estar bajo control de DHCP:</translation> </message> <message> <location filename="../src/forms/dhcpclientproperty.ui" line="46"/> <source>Ok</source> - <translation type="unfinished">Ok</translation> + <translation>Ok</translation> </message> <message> <location filename="../src/forms/dhcpclientproperty.ui" line="57"/> <source>Cancel</source> - <translation type="unfinished">Cancelar</translation> + <translation>Cancelar</translation> </message> </context> <context> @@ -831,34 +836,34 @@ <message> <location filename="../src/dialogs/dhcpserverproperty.cpp" line="8"/> <source>From </source> - <translation type="unfinished"></translation> + <translation>Desde</translation> </message> <message> <location filename="../src/dialogs/dhcpserverproperty.cpp" line="10"/> <source>to</source> - <translation type="unfinished"></translation> + <translation>hacia</translation> </message> <message> <location filename="../src/dialogs/dhcpserverproperty.cpp" line="12"/> <location filename="../src/dialogs/dhcpserverproperty.cpp" line="25"/> <source>Mask</source> - <translation type="unfinished">Máscara</translation> + <translation>Máscara</translation> </message> <message> <location filename="../src/dialogs/dhcpserverproperty.cpp" line="14"/> <location filename="../src/dialogs/dhcpserverproperty.cpp" line="25"/> <source>Gateway</source> - <translation type="unfinished">Puerta de enlace</translation> + <translation>Puerta de enlace</translation> </message> <message> <location filename="../src/dialogs/dhcpserverproperty.cpp" line="25"/> <source>Mac</source> - <translation type="unfinished"></translation> + <translation>MAC</translation> </message> <message> <location filename="../src/dialogs/dhcpserverproperty.cpp" line="25"/> <source>Ip</source> - <translation type="unfinished">Ip</translation> + <translation>IP</translation> </message> </context> <context> @@ -866,47 +871,47 @@ <message> <location filename="../src/forms/dhcpserverproperty.ui" line="26"/> <source>DHCP server's properties</source> - <translation type="unfinished"></translation> + <translation>Propiedades del servidor DHCP</translation> </message> <message> <location filename="../src/forms/dhcpserverproperty.ui" line="32"/> <source>Static:</source> - <translation type="unfinished"></translation> + <translation>Estático:</translation> </message> <message> <location filename="../src/forms/dhcpserverproperty.ui" line="80"/> <source>Add</source> - <translation type="unfinished">Agregar</translation> + <translation>Agregar</translation> </message> <message> <location filename="../src/forms/dhcpserverproperty.ui" line="91"/> <source>Delete</source> - <translation type="unfinished">Borrar</translation> + <translation>Borrar</translation> </message> <message> <location filename="../src/forms/dhcpserverproperty.ui" line="104"/> <source>Lease term:</source> - <translation type="unfinished"></translation> + <translation>Tiempo de préstamo:</translation> </message> <message> <location filename="../src/forms/dhcpserverproperty.ui" line="123"/> <source> s</source> - <translation type="unfinished"> s</translation> + <translation> s</translation> </message> <message> <location filename="../src/forms/dhcpserverproperty.ui" line="139"/> <source>Dynamic:</source> - <translation type="unfinished"></translation> + <translation>Dinámico:</translation> </message> <message> <location filename="../src/forms/dhcpserverproperty.ui" line="177"/> <source>Ok</source> - <translation type="unfinished">Ok</translation> + <translation>Ok</translation> </message> <message> <location filename="../src/forms/dhcpserverproperty.ui" line="188"/> <source>Cancel</source> - <translation type="unfinished">Cancelar</translation> + <translation>Cancelar</translation> </message> </context> <context> @@ -946,7 +951,7 @@ <message> <location filename="../src/devices/hubdevice.h" line="39"/> <source>Hub</source> - <translation type="unfinished">Hub</translation> + <translation>Hub</translation> </message> </context> <context> @@ -963,7 +968,7 @@ <message> <location filename="../src/dialogs/hubproperty.cpp" line="31"/> <source>Properies</source> - <translation type="unfinished"></translation> + <translation>Propiedades</translation> </message> <message> <location filename="../src/dialogs/hubproperty.cpp" line="45"/> @@ -1051,7 +1056,7 @@ <message> <location filename="../src/dialogs/installdialog.cpp" line="48"/> <source>Program already installed.</source> - <translation>Programa ya instalado</translation> + <translation>Programa ya instalado.</translation> </message> </context> <context> @@ -1059,7 +1064,7 @@ <message> <location filename="../src/dialogs/interfacedialog.cpp" line="30"/> <source>Add adapter</source> - <translation type="unfinished"></translation> + <translation>Agregar adaptador</translation> </message> <message> <location filename="../src/dialogs/interfacedialog.cpp" line="48"/> @@ -1134,17 +1139,17 @@ <message> <location filename="../src/dialogs/logdialog.cpp" line="96"/> <source>DHCP Message, Type: %1</source> - <translation type="unfinished"></translation> + <translation>Mensaje de DHCP, tipo: %1</translation> </message> <message> <location filename="../src/dialogs/logdialog.cpp" line="97"/> <source>Xid: %1, Yiaddr: %2</source> - <translation type="unfinished"></translation> + <translation>Xid: %1, Yiaddr: %2</translation> </message> <message> <location filename="../src/dialogs/logdialog.cpp" line="98"/> <source>Siaddr: %1, Chaddr: %2</source> - <translation type="unfinished"></translation> + <translation>Siaddr: %1, Chaddr: %2</translation> </message> <message> <location filename="../src/dialogs/logdialog.cpp" line="112"/> @@ -1266,7 +1271,7 @@ <message> <location filename="../src/mycanvas.cpp" line="182"/> <source>Opening file for reading is impossible</source> - <translation type="unfinished"></translation> + <translation>No es posible abrir el archivo para lectura</translation> </message> <message> <location filename="../src/mycanvas.cpp" line="191"/> @@ -1276,7 +1281,7 @@ <message> <location filename="../src/mycanvas.cpp" line="239"/> <source>Opening file for writeng is impossible</source> - <translation type="unfinished"></translation> + <translation>No es posible abrir el archivo para escritura</translation> </message> <message> <source>The device can't transmit data!</source> @@ -1317,7 +1322,7 @@ <message> <location filename="../src/forms/programmdialog.ui" line="74"/> <source>Settings</source> - <translation type="unfinished">Configuraciones</translation> + <translation>Configuraciones</translation> </message> <message> <location filename="../src/forms/programmdialog.ui" line="88"/> @@ -1348,42 +1353,42 @@ <message> <location filename="../src/forms/ripproperty.ui" line="14"/> <source>Rip programm property</source> - <translation type="unfinished"></translation> + <translation>Propiedades del programa RIP</translation> </message> <message> <location filename="../src/forms/ripproperty.ui" line="22"/> <source>Split horizon:</source> - <translation type="unfinished"></translation> + <translation>Dividir horizontalmente:</translation> </message> <message> <location filename="../src/forms/ripproperty.ui" line="36"/> <source>Disable</source> - <translation type="unfinished"></translation> + <translation>Deshabilitar</translation> </message> <message> <location filename="../src/forms/ripproperty.ui" line="41"/> <source>Enable</source> - <translation type="unfinished"></translation> + <translation>Habilitar</translation> </message> <message> <location filename="../src/forms/ripproperty.ui" line="46"/> <source>With poison reverse</source> - <translation type="unfinished"></translation> + <translation>Con envenenamiento reverso</translation> </message> <message> <location filename="../src/forms/ripproperty.ui" line="56"/> <source> Turn On/Off triggered updates</source> - <translation type="unfinished"></translation> + <translation>Encender/apagar actualizaciones automáticas</translation> </message> <message> <location filename="../src/forms/ripproperty.ui" line="91"/> <source>Ok</source> - <translation type="unfinished">Ok</translation> + <translation>Ok</translation> </message> <message> <location filename="../src/forms/ripproperty.ui" line="102"/> <source>Cancel</source> - <translation type="unfinished">Cancelar</translation> + <translation>Cancelar</translation> </message> </context> <context> @@ -1391,7 +1396,7 @@ <message> <location filename="../src/dialogs/routeeditor.cpp" line="35"/> <source>Routing table</source> - <translation type="unfinished"></translation> + <translation>Tabla de ruteo</translation> </message> <message> <location filename="../src/dialogs/routeeditor.cpp" line="46"/> @@ -1498,7 +1503,7 @@ <message> <location filename="../src/devices/routerdevice.h" line="33"/> <source>Router</source> - <translation type="unfinished">Router</translation> + <translation>Router</translation> </message> </context> <context> @@ -1506,7 +1511,7 @@ <message> <location filename="../src/dialogs/routerproperty.cpp" line="33"/> <source>Properies</source> - <translation type="unfinished"></translation> + <translation>Propiedades</translation> </message> <message> <location filename="../src/dialogs/routerproperty.cpp" line="36"/> @@ -1635,7 +1640,7 @@ <message> <location filename="../src/forms/settingdialog.ui" line="132"/> <source>Tcp</source> - <translation type="unfinished"></translation> + <translation>TCP</translation> </message> <message> <location filename="../src/forms/settingdialog.ui" line="159"/> @@ -1670,7 +1675,7 @@ <message> <location filename="../src/forms/settingdialog.ui" line="234"/> <source>Turn on/off OpenGL</source> - <translation type="unfinished"></translation> + <translation>Habilitar/deshabilitar OpenGL</translation> </message> <message> <location filename="../src/forms/settingdialog.ui" line="260"/> @@ -1788,17 +1793,17 @@ <message> <location filename="../src/forms/settingdialog.ui" line="669"/> <source>Number of repeat sendings:</source> - <translation type="unfinished"></translation> + <translation>Número de repetición de envíos:</translation> </message> <message> <location filename="../src/forms/settingdialog.ui" line="698"/> <source>Waiting confirmation time:</source> - <translation type="unfinished"></translation> + <translation>Tiempo de espera de confirmación:</translation> </message> <message> <location filename="../src/forms/settingdialog.ui" line="770"/> <source>Default</source> - <translation type="unfinished"></translation> + <translation>Por defecto</translation> </message> <message> <location filename="../src/forms/settingdialog.ui" line="784"/> @@ -1935,7 +1940,7 @@ <message> <location filename="../src/devices/switchdevice.h" line="49"/> <source>Switch</source> - <translation type="unfinished">Switch</translation> + <translation>Switch</translation> </message> <message> <location filename="../src/devices/switchdevice.h" line="50"/> @@ -1985,7 +1990,7 @@ <message> <location filename="../src/dialogs/switchproperty.cpp" line="31"/> <source>Properies</source> - <translation type="unfinished"></translation> + <translation>Propiedades</translation> </message> <message> <location filename="../src/dialogs/switchproperty.cpp" line="45"/> @@ -2028,7 +2033,7 @@ <message> <location filename="../src/dialogs/tablearp.cpp" line="37"/> <source>Arp table</source> - <translation type="unfinished">Tabla arp</translation> + <translation>Tabla ARP</translation> </message> <message> <location filename="../src/dialogs/tablearp.cpp" line="46"/> @@ -2143,12 +2148,12 @@ <message> <location filename="../src/tools/tcpsocket.cpp" line="187"/> <source>Error</source> - <translation type="unfinished">Error</translation> + <translation>Error</translation> </message> <message> <location filename="../src/tools/tcpsocket.cpp" line="187"/> <source>TCP: Data transmition error</source> - <translation type="unfinished"></translation> + <translation>TCP: error de transmisión de datos</translation> </message> </context> <context> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: Lisandro D. N. P. M. <per...@un...> - 2009-09-25 20:54:42
|
On Friday 25 September 2009 17:48:12 Семенов Павел wrote: > It is wonderful !!! You used 0.8.5 version or svn last ? The head svn > version is unstable. New release will be in next week. > > We enjoy cooperate with you =) svn head. I wanted to send the package as soon as psossible without parches so as to be ready for waiting in Debian's NEW queue. The strange thing was that it stayed there less than a day :-D If next week we have a new version, next week I'll prepare a new version too :-) Regards, Lisandro. -- Lisandro Damián Nicanor Pérez Meyer http://perezmeyer.com.ar/ http://perezmeyer.blogspot.com/ |
From: Семенов П. <fir...@ya...> - 2009-09-25 20:48:24
|
It is wonderful !!! You used 0.8.5 version or svn last ? The head svn version is unstable. New release will be in next week. We enjoy cooperate with you =) |
From: Lisandro D. N. P. M. <per...@un...> - 2009-09-25 18:39:51
|
NetEmul has entered today in Debian =) Congratulations to everyone! -- Lisandro Damián Nicanor Pérez Meyer http://perezmeyer.com.ar/ http://perezmeyer.blogspot.com/ |
From: Lisandro D. N. P. M. <per...@gm...> - 2009-09-19 23:51:30
|
On Saturday 19 September 2009 18:34:19 netemul-develop- bo...@li... wrote: > Your mail to 'Netemul-develop' with the subject > > SF.net SVN: netemul:[133] trunk > > Is being held until the list moderator can review it for approval. > > The reason it is being held: > > Post by non-member to a members-only list > > Either the message will get posted to the list, or you will receive > notification of the moderator's decision. If you would like to cancel > this posting, please visit the following URL: > > > https://lists.sourceforge.net/lists/confirm/netemul-develop/5feef14d3c68be > 6d6540ec2c5b9e55c6088a4596 Users with write privileges in the svn must add themselves to this mailing list. I'll correct that for myself now :-) -- Background: talking about Nokia's aquisition of Trolltech. <mukidohime> That's why there's the FreeQt agreement, a poison pill against just that sort of thing. ... <MoDaX> mukidohime: agreements can be broken <mukidohime> MoDaX: Yes, with a massive lawsuit following soon after. <mukidohime> If Nokia pulled something like that, aseigo would entirely pull some sort of dragonball Z-esque maneuver, and it would probably be visible from the ISS. Lisandro Damián Nicanor Pérez Meyer http://perezmeyer.com.ar/ http://perezmeyer.blogspot.com/ |
From: Lisandro D. N. P. M. <per...@gm...> - 2009-09-19 13:24:17
|
Is there a way to know which svn commit was the latest release? I can not find releases in it's directory in svn :-( Regards, Lisandro. -- Vió, buteó y andó Lisandro Damián Nicanor Pérez Meyer http://perezmeyer.com.ar/ http://perezmeyer.blogspot.com/ |
From: Lisandro D. N. P. M. <per...@gm...> - 2009-09-16 17:17:02
|
Hello! I have found a small issue with the translations path and I made some patches that try to solve them. While I could have commited them directly to the SVN, I would really like you to review them first. The problem: as the application is currently coded, the translation files must be under the direct path of the application. While in Windows this may be desirable, it is not in *nix. The patches: netemul.pro.diff shows the changes to the named .pro file. As you can see, I add "translation" as the default path for translations, and I modify it for the unix case. Finally, I define the variable to be available on compile time. appsetting.cpp.diff has a small change: it replaces the "translation" path for the variable defined in the patch described above. In this way, it should work in the same way that it used to with Windows and it's able to install and use translations in the correct path for *nix What do you think about it? If you happen to like it, you may either patch the files yourselves and commit the canges or ask me to commit them directly to the svn. Regards, Lisandro. -- No pienses que estoy loco, es sólo una manera de actuar De mí - Charly García Lisandro Damián Nicanor Pérez Meyer http://perezmeyer.com.ar/ http://perezmeyer.blogspot.com/ |
From: Lisandro D. N. P. M. <per...@gm...> - 2009-09-16 02:37:54
|
It would be good to have the e-mail addresses of Semenov Pavel and Omilaeva Anastasia, as I need them for the copyrights file of the Debian package. It would also be good to add an AUTHORS file in the source root with this info. Regards, Lisandro. -- 2: Windows con las funciones que realiza se clasifica como: * Un bug Damian Nadales http://mx.grulic.org.ar/lurker/message/20080307.141449.a70fb2fc.es.html Lisandro Damián Nicanor Pérez Meyer http://perezmeyer.com.ar/ http://perezmeyer.blogspot.com/ |
From: Lisandro D. N. P. M. <per...@gm...> - 2009-09-10 16:09:32
|
I have checked with a DD and it is not necessary to put the copyright in *every* siurce code file, it just needs to be clear somehow (a Copyright file and/or some other method). So I think I'll start to package it :-) Regards, Lisandro. -- 8: Si un archivo ha pasado a la "Papelera de Reciclaje" * Ud tiene una carpeta llamada "Papelera de Reciclaje" Damian Nadales http://mx.grulic.org.ar/lurker/message/20080307.141449.a70fb2fc.es.html Lisandro Damián Nicanor Pérez Meyer http://perezmeyer.com.ar/ http://perezmeyer.blogspot.com/ |
From: Lisandro D. N. P. M. <per...@gm...> - 2009-09-08 22:32:04
|
To set up the hook, a project admin must follow this steps: <https://sourceforge.net/apps/trac/sourceforge/wiki/Subversion%20hook%20scripts> The idea would be to send the mails to this list (perhaps that will also need to add the sender e-mail to the accepted mail dirs in the list management interface) Regards, Lisandro. -- "One of the biggest wake-up calls of my career was when I saw a record contract. I said, 'Wait - you sell it for $18.98 and I make 80 cents? And I have to pay you back the money you lent me to make it and then you own it? Who the f**k made that rule? Oh! The record labels made it because artists are dumb and they'll sign anything' - like I did. Trent Reznor, Nine Inch Nails on http://contactmusic.com/ http://tinyurl.com/c2wda4 Lisandro Damián Nicanor Pérez Meyer http://perezmeyer.com.ar/ http://perezmeyer.blogspot.com/ |
From: Lisandro D. N. P. M. <per...@gm...> - 2009-09-08 22:15:08
|
On Tuesday 08 September 2009 13:32:58 Семенов Павел wrote: > Hello=) > Thanks for lupdate .ts files, I commit other files ourself. Excellent :-) > I have one question: how can I do copyright on pictures? By the way, > they're under the GPL. Just mention it in the COPYRIGHT file, I think that's enough. > And the idea with svn hook is great, but I don't > know how to do it? Can you say me, please? That's an option in SourceForge's configs. The webpage has changed, I'll check today in Qantenna's page and will pass here the steps. Regards, Lisandro. -- Lisandro Damián Nicanor Pérez Meyer http://perezmeyer.com.ar/ http://perezmeyer.blogspot.com/ |
From: Семенов П. <fir...@ya...> - 2009-09-08 16:33:11
|
Hello=) Thanks for lupdate .ts files, I commit other files ourself. I have one question: how can I do copyright on pictures? By the way, they're under the GPL. And the idea with svn hook is great, but I don't know how to do it? Can you say me, please? |
From: Lisandro D. N. P. M. <per...@gm...> - 2009-09-08 00:38:54
|
Would you mind an svn hook to post svn commits to this mailing list? Regards, Lisandro. -- El tiempo es un buen maestro, solo que lamentablemente, asesina a todos sus discípulos. Curt Goetz. (1888-1960). Lisandro Damián Nicanor Pérez Meyer http://perezmeyer.com.ar/ http://perezmeyer.blogspot.com/ |
From: Lisandro D. N. P. M. <per...@gm...> - 2009-09-08 00:37:46
|
If I am not mistaken, the only thing that needs to be completed to be able to do a proper Debian package of netemul are the copyrights in each source code file, and the copyright of the images (are they under the GPL?) If you have any doubts, please ask, I'll be grateful to help :-) Regards, Lisandro. -- Sólo porque un mensaje pueda no ser recibido no implica que no valga la pena enviarlo. Lisandro Damián Nicanor Pérez Meyer http://perezmeyer.com.ar/ http://perezmeyer.blogspot.com/ |
From: Lisandro D. N. P. M. <per...@gm...> - 2009-09-08 00:35:36
|
Hello everyone! I have run lupdate, updated and commited the spanish translation (.ts) file. The brazilian and russian .ts files have also been updated, but I did not commited them to the svn, as I don't know how would you prefer to handle it. I dod *not* run lrelease, so the spanish .qm file is not up to date yet. Regards, Lisandro. -- FAQ del pequeño tomi: P- ¿Que cuernos es una particion swap? R- Es un coso en el disco que tenes que crear para que cuando se apachache la memoria RAM el nucelo no te entre a matar procesos como desaforado y pierdas todas las peliculas XXX que te estas bajando por el Azureus cuando te mate la maquina virtual de java por ser el proceso que mas consume o que Windos Vista se que cuelge cuando le activas las transparecias al relojito... Textual de Martín "El Ruso" Ribelotta Lisandro Damián Nicanor Pérez Meyer http://perezmeyer.com.ar/ http://perezmeyer.blogspot.com/ |