8 Commits

Author SHA1 Message Date
hugh b1749248cf jvm 17 wip 2024-04-10 11:16:27 +01:00
hugh a3e297fa61 5.3 release 2024-02-01 13:37:07 +00:00
hugh f0c670fd67 5.3 release 2024-01-29 15:40:29 +00:00
hugh a23631be46 5.3 release 2024-01-27 15:10:23 +00:00
hugh-unicenta a86418b16d Merge pull request #31 from uniCenta/product-api-new
Product api new
2024-01-27 14:45:29 +00:00
hugh 763c06f0c9 teya fix working 2024-01-27 14:44:13 +00:00
hugh 1b34fdabb0 product api 2023-12-29 17:09:58 +00:00
hugh cab75818b7 5.2 release 2023-12-23 16:36:54 +00:00
11 changed files with 76 additions and 56 deletions
+27 -8
View File
@@ -4,7 +4,7 @@
<groupId>com.unicenta</groupId> <groupId>com.unicenta</groupId>
<artifactId>unicentaopos</artifactId> <artifactId>unicentaopos</artifactId>
<version>5.2</version> <version>5.3</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -153,7 +153,7 @@
<dependency> <dependency>
<groupId>org.jpos</groupId> <groupId>org.jpos</groupId>
<artifactId>jpos</artifactId> <artifactId>jpos</artifactId>
<version>2.0.10</version> <version>2.1.9</version>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>org.slf4j</groupId> <groupId>org.slf4j</groupId>
@@ -302,7 +302,7 @@
<artifactId>reflections</artifactId> <artifactId>reflections</artifactId>
<version>0.9.12</version> <version>0.9.12</version>
</dependency> </dependency>
<!-- https://mvnrepository.com/artifact/de.sciss/weblaf --> <!-- https://mvnrepository.com/artifact/de.sciss/weblaf
<dependency> <dependency>
<groupId>de.sciss</groupId> <groupId>de.sciss</groupId>
<artifactId>weblaf</artifactId> <artifactId>weblaf</artifactId>
@@ -321,11 +321,26 @@
<artifactId>slf4j-simple</artifactId> <artifactId>slf4j-simple</artifactId>
</exclusion> </exclusion>
</exclusions> </exclusions>
</dependency> </dependency>-->
<dependency> <dependency>
<groupId>com.unicenta</groupId> <groupId>com.unicenta</groupId>
<artifactId>unicenta-plugins</artifactId> <artifactId>unicenta-plugins</artifactId>
<version>1.2.3</version> <version>1.2.6</version>
<exclusions>
<exclusion>
<groupId>de.sciss</groupId>
<artifactId>weblaf</artifactId>
</exclusion>
<exclusion>
<groupId>de.sciss</groupId>
<artifactId>weblaf-core</artifactId>
</exclusion>
<exclusion>
<groupId>de.sciss</groupId>
<artifactId>weblaf-ui</artifactId>
</exclusion>
</exclusions>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.gluonhq</groupId> <groupId>com.gluonhq</groupId>
@@ -386,10 +401,14 @@
<version>9.4.1208</version> <version>9.4.1208</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>de.sciss</groupId> <groupId>com.weblookandfeel</groupId>
<artifactId>weblaf-ui</artifactId> <artifactId>weblaf-ui</artifactId>
<version>2.1.3</version> <version>1.2.14</version>
<type>jar</type> </dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.9</version>
</dependency> </dependency>
<!-- https://mvnrepository.com/artifact/junit/junit --> <!-- https://mvnrepository.com/artifact/junit/junit -->
<dependency> <dependency>
@@ -1961,7 +1961,7 @@ public class JPanelConfigPeripheral extends javax.swing.JPanel implements PanelC
webSlider.setSnapToTicks(true); webSlider.setSnapToTicks(true);
webSlider.setToolTipText(""); webSlider.setToolTipText("");
webSlider.setValue(5); webSlider.setValue(5);
webSlider.setAnimated(false); //webSlider.setAnimated(false);
webSlider.setFont(new java.awt.Font("Arial", 0, 14)); // NOI18N webSlider.setFont(new java.awt.Font("Arial", 0, 14)); // NOI18N
webSlider.setPreferredSize(new java.awt.Dimension(270, 47)); webSlider.setPreferredSize(new java.awt.Dimension(270, 47));
webSlider.addChangeListener(new javax.swing.event.ChangeListener() { webSlider.addChangeListener(new javax.swing.event.ChangeListener() {
@@ -30,7 +30,7 @@ public class AppLocal {
public static final String APP_NAME = "uniCenta oPOS"; public static final String APP_NAME = "uniCenta oPOS";
public static final String APP_ID = "unicentaopos"; public static final String APP_ID = "unicentaopos";
public static final String APP_VERSION = "5.2"; public static final String APP_VERSION = "5.3";
private static final LocaleResources m_resources; private static final LocaleResources m_resources;
@@ -19,6 +19,7 @@
package com.unicenta.pos.forms; package com.unicenta.pos.forms;
//import com.alee.extended.statusbar.WebMemoryBar;
import com.dalsemi.onewire.OneWireAccessProvider; import com.dalsemi.onewire.OneWireAccessProvider;
import com.dalsemi.onewire.OneWireException; import com.dalsemi.onewire.OneWireException;
import com.dalsemi.onewire.adapter.DSPortAdapter; import com.dalsemi.onewire.adapter.DSPortAdapter;
@@ -194,8 +195,8 @@ public class JRootApp extends JPanel implements AppView, DeviceMonitorEventListe
initComponents(); initComponents();
jScrollPane1.getVerticalScrollBar().setPreferredSize(new Dimension(30, 30)); jScrollPane1.getVerticalScrollBar().setPreferredSize(new Dimension(30, 30));
serverMonitor.setVisible(false); //serverMonitor.setVisible(false);
webMemoryBar1.setShowMaximumMemory(true); //webMemoryBar1.setShowMaximumMemory(true);
} }
private DSPortAdapter m_oneWireAdapter; private DSPortAdapter m_oneWireAdapter;
@@ -935,7 +936,7 @@ public class JRootApp extends JPanel implements AppView, DeviceMonitorEventListe
} }
private int getProgressBar() { private int getProgressBar() {
int rate = serverMonitor.getValue(); int rate = 1;
return rate; return rate;
} }
@@ -944,7 +945,7 @@ public class JRootApp extends JPanel implements AppView, DeviceMonitorEventListe
* This method is for the future. Connects and will include both servers + backup server * This method is for the future. Connects and will include both servers + backup server
* Tested locally on JG machine and unicenta-server * Tested locally on JG machine and unicenta-server
*/ */
serverMonitor.setString("Checking..."); //serverMonitor.setString("Checking...");
InetAddress addr = InetAddress.getByName(AppLocal.getIntString("db.ip")); InetAddress addr = InetAddress.getByName(AppLocal.getIntString("db.ip"));
int port = 3306; int port = 3306;
@@ -953,8 +954,8 @@ public class JRootApp extends JPanel implements AppView, DeviceMonitorEventListe
Socket sock = new Socket(); Socket sock = new Socket();
try { try {
sock.connect(sockaddr, 2000); sock.connect(sockaddr, 2000);
serverMonitor.setString("Server is alive!"); //serverMonitor.setString("Server is alive!");
serverMonitor.setValue(0); //serverMonitor.setValue(0);
return true; return true;
} catch (IOException ex) { } catch (IOException ex) {
log.error(ex.getMessage()); log.error(ex.getMessage());
@@ -991,8 +992,8 @@ public class JRootApp extends JPanel implements AppView, DeviceMonitorEventListe
m_jPanelDown = new javax.swing.JPanel(); m_jPanelDown = new javax.swing.JPanel();
panelTask = new javax.swing.JPanel(); panelTask = new javax.swing.JPanel();
m_jHost = new javax.swing.JLabel(); m_jHost = new javax.swing.JLabel();
webMemoryBar1 = new com.alee.extended.statusbar.WebMemoryBar(); //webMemoryBar1 = new com.alee.extended.statusbar.WebMemoryBar();
serverMonitor = new com.alee.laf.progressbar.WebProgressBar(); serverMonitor = null;
jPanel3 = new javax.swing.JPanel(); jPanel3 = new javax.swing.JPanel();
setEnabled(false); setEnabled(false);
@@ -1152,23 +1153,23 @@ public class JRootApp extends JPanel implements AppView, DeviceMonitorEventListe
m_jHost.setText("*Hostname"); m_jHost.setText("*Hostname");
panelTask.add(m_jHost); panelTask.add(m_jHost);
webMemoryBar1.setBackground(new java.awt.Color(153, 153, 153)); //webMemoryBar1.setBackground(new java.awt.Color(153, 153, 153));
webMemoryBar1.setText(""); //webMemoryBar1.setText("");
webMemoryBar1.setFont(new java.awt.Font("Arial", 0, 11)); // NOI18N //webMemoryBar1.setFont(new java.awt.Font("Arial", 0, 11)); // NOI18N
webMemoryBar1.setPreferredSize(new java.awt.Dimension(150, 30)); //webMemoryBar1.setPreferredSize(new java.awt.Dimension(150, 30));
webMemoryBar1.setUsedBorderColor(new java.awt.Color(0, 204, 204)); //webMemoryBar1.setUsedBorderColor(new java.awt.Color(0, 204, 204));
webMemoryBar1.setUsedFillColor(new java.awt.Color(0, 204, 255)); //webMemoryBar1.setUsedFillColor(new java.awt.Color(0, 204, 255));
panelTask.add(webMemoryBar1); //panelTask.add(webMemoryBar1);
serverMonitor.setToolTipText(""); //serverMonitor.setToolTipText("");
serverMonitor.setFont(new java.awt.Font("Arial", 0, 12)); // NOI18N //serverMonitor.setFont(new java.awt.Font("Arial", 0, 12)); // NOI18N
serverMonitor.setMaximumSize(new java.awt.Dimension(50, 18)); //serverMonitor.setMaximumSize(new java.awt.Dimension(50, 18));
serverMonitor.setPreferredSize(new java.awt.Dimension(150, 30)); //serverMonitor.setPreferredSize(new java.awt.Dimension(150, 30));
serverMonitor.setProgressBottomColor(new java.awt.Color(76, 197, 237)); //serverMonitor.setProgressBottomColor(new java.awt.Color(76, 197, 237));
serverMonitor.setRound(2); //serverMonitor.setRound(2);
serverMonitor.setString("Keep Alive"); //serverMonitor.setString("Keep Alive");
serverMonitor.setStringPainted(true); //serverMonitor.setStringPainted(true);
panelTask.add(serverMonitor); //panelTask.add(serverMonitor);
m_jPanelDown.add(panelTask, java.awt.BorderLayout.LINE_START); m_jPanelDown.add(panelTask, java.awt.BorderLayout.LINE_START);
m_jPanelDown.add(jPanel3, java.awt.BorderLayout.LINE_END); m_jPanelDown.add(jPanel3, java.awt.BorderLayout.LINE_END);
@@ -1212,6 +1213,6 @@ public class JRootApp extends JPanel implements AppView, DeviceMonitorEventListe
private javax.swing.JPanel panelTask; private javax.swing.JPanel panelTask;
private javax.swing.JLabel poweredby; private javax.swing.JLabel poweredby;
private com.alee.laf.progressbar.WebProgressBar serverMonitor; private com.alee.laf.progressbar.WebProgressBar serverMonitor;
private com.alee.extended.statusbar.WebMemoryBar webMemoryBar1; //private com.alee.extended.statusbar.WebMemoryBar webMemoryBar1;
// End of variables declaration//GEN-END:variables // End of variables declaration//GEN-END:variables
} }
@@ -487,7 +487,7 @@ public final class ProductsEditor extends javax.swing.JPanel implements EditorRe
myprod[28] = m_UomModel.getSelectedKey(); myprod[28] = m_UomModel.getSelectedKey();
myprod[29] = Formats.TIMESTAMP.parseValue(m_jdate.getText()); myprod[29] = Formats.TIMESTAMP.parseValue(m_jdate.getText());
myprod[30] = m_jInCatalog.isSelected(); myprod [30] = m_jInCatalog.isSelected();
myprod[31] = Formats.INT.parseValue(m_jCatalogOrder.getText()); myprod[31] = Formats.INT.parseValue(m_jCatalogOrder.getText());
if (m_jName.getText().contains("&")) { if (m_jName.getText().contains("&")) {
@@ -283,7 +283,7 @@ public final class Transfer extends JPanel implements JPanelView {
try { try {
txtOut.append("Adding Foreign Keys" + "\n"); txtOut.append("Adding Foreign Keys" + "\n");
webPBar.setString("Adding Keys..."); webPBar.setString("Adding Keys...");
webPBar.setBgBottom(Color.MAGENTA); //webPBar.setBgBottom(Color.MAGENTA);
BatchSentence bsentence = new BatchSentenceResource(session_target, targetFKadd); BatchSentence bsentence = new BatchSentenceResource(session_target, targetFKadd);
java.util.List l = bsentence.list(); java.util.List l = bsentence.list();
@@ -2059,7 +2059,7 @@ public final class Transfer extends JPanel implements JPanelView {
txtOut.append("Data Transfer Complete" + "\n"); txtOut.append("Data Transfer Complete" + "\n");
webPBar.setString("Finished!"); webPBar.setString("Finished!");
webPBar.setBgBottom(Color.GREEN); //webPBar.setBgBottom(Color.GREEN);
jbtnTransfer.setEnabled(true); jbtnTransfer.setEnabled(true);
JOptionPane.showMessageDialog(this JOptionPane.showMessageDialog(this
@@ -2204,7 +2204,7 @@ public final class Transfer extends JPanel implements JPanelView {
jlblDBSize = new javax.swing.JLabel(); jlblDBSize = new javax.swing.JLabel();
jtxtDbName = new com.alee.laf.text.WebTextField(); jtxtDbName = new com.alee.laf.text.WebTextField();
jbtnTransfer = new javax.swing.JButton(); jbtnTransfer = new javax.swing.JButton();
webMemoryBar = new com.alee.extended.statusbar.WebMemoryBar(); //webMemoryBar = new com.alee.extended.statusbar.WebMemoryBar();
jLabel10 = new javax.swing.JLabel(); jLabel10 = new javax.swing.JLabel();
jLabel15 = new javax.swing.JLabel(); jLabel15 = new javax.swing.JLabel();
jbtnSet = new javax.swing.JButton(); jbtnSet = new javax.swing.JButton();
@@ -2352,9 +2352,9 @@ public final class Transfer extends JPanel implements JPanelView {
}); });
webPBar.setFont(new java.awt.Font("Arial", 0, 13)); // NOI18N webPBar.setFont(new java.awt.Font("Arial", 0, 13)); // NOI18N
webPBar.setHighlightDarkWhite(new java.awt.Color(204, 0, 0)); //webPBar.setHighlightDarkWhite(new java.awt.Color(204, 0, 0));
webPBar.setPreferredSize(new java.awt.Dimension(240, 30)); webPBar.setPreferredSize(new java.awt.Dimension(240, 30));
webPBar.setProgressBottomColor(new java.awt.Color(0, 153, 255)); //webPBar.setProgressBottomColor(new java.awt.Color(0, 153, 255));
jtxtDbServerPort.setForeground(new java.awt.Color(51, 51, 51)); jtxtDbServerPort.setForeground(new java.awt.Color(51, 51, 51));
jtxtDbServerPort.setToolTipText(bundle.getString("tootltip.servernameport")); // NOI18N jtxtDbServerPort.setToolTipText(bundle.getString("tootltip.servernameport")); // NOI18N
@@ -2450,13 +2450,13 @@ public final class Transfer extends JPanel implements JPanelView {
} }
}); });
webMemoryBar.setBackground(new java.awt.Color(153, 153, 153)); //webMemoryBar.setBackground(new java.awt.Color(153, 153, 153));
webMemoryBar.setText("Text"); //webMemoryBar.setText("Text");
webMemoryBar.setFont(new java.awt.Font("Arial", 0, 12)); // NOI18N //webMemoryBar.setFont(new java.awt.Font("Arial", 0, 12)); // NOI18N
webMemoryBar.setPreferredSize(new java.awt.Dimension(150, 30)); //webMemoryBar.setPreferredSize(new java.awt.Dimension(150, 30));
webMemoryBar.setUsedBorderColor(new java.awt.Color(0, 204, 204)); //webMemoryBar.setUsedBorderColor(new java.awt.Color(0, 204, 204));
webMemoryBar.setUsedFillColor(new java.awt.Color(0, 204, 255)); //webMemoryBar.setUsedFillColor(new java.awt.Color(0, 204, 255));
//
jLabel10.setFont(new java.awt.Font("Arial", 0, 14)); // NOI18N jLabel10.setFont(new java.awt.Font("Arial", 0, 14)); // NOI18N
jLabel10.setForeground(new java.awt.Color(102, 102, 102)); jLabel10.setForeground(new java.awt.Color(102, 102, 102));
jLabel10.setHorizontalAlignment(javax.swing.SwingConstants.CENTER); jLabel10.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
@@ -2531,7 +2531,7 @@ public final class Transfer extends JPanel implements JPanelView {
.addComponent(jLabel15, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)) .addComponent(jLabel15, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(jTransferPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false) .addGroup(jTransferPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
.addComponent(webMemoryBar, javax.swing.GroupLayout.PREFERRED_SIZE, 125, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(null, javax.swing.GroupLayout.PREFERRED_SIZE, 125, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jLabel10, javax.swing.GroupLayout.PREFERRED_SIZE, 1, Short.MAX_VALUE))) .addComponent(jLabel10, javax.swing.GroupLayout.PREFERRED_SIZE, 1, Short.MAX_VALUE)))
.addGroup(jTransferPanelLayout.createSequentialGroup() .addGroup(jTransferPanelLayout.createSequentialGroup()
.addComponent(jLabel14, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(jLabel14, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
@@ -2550,7 +2550,7 @@ public final class Transfer extends JPanel implements JPanelView {
.addGroup(jTransferPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) .addGroup(jTransferPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel13, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(jLabel13, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jCBSchema, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(jCBSchema, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(webMemoryBar, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)) .addComponent(null, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(jTransferPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) .addGroup(jTransferPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jtxtDbParams, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(jtxtDbParams, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
@@ -3011,7 +3011,7 @@ public final class Transfer extends JPanel implements JPanelView {
private com.alee.laf.text.WebPasswordField txtDbPass; private com.alee.laf.text.WebPasswordField txtDbPass;
private com.alee.laf.text.WebTextField txtDbUser; private com.alee.laf.text.WebTextField txtDbUser;
private javax.swing.JTextArea txtOut; private javax.swing.JTextArea txtOut;
private com.alee.extended.statusbar.WebMemoryBar webMemoryBar; //private com.alee.extended.statusbar.WebMemoryBar webMemoryBar;
private com.alee.laf.progressbar.WebProgressBar webPBar; private com.alee.laf.progressbar.WebProgressBar webPBar;
// End of variables declaration//GEN-END:variables // End of variables declaration//GEN-END:variables
+1 -1
View File
@@ -881,7 +881,7 @@ message.email=Desktop email app' not found
message.emptycustomer=Customer cannot be empty message.emptycustomer=Customer cannot be empty
message.emptynumber=Number cannot be empty message.emptynumber=Number cannot be empty
message.enterbuyprice=Enter new Buy Price message.enterbuyprice=Enter new Buy Price
message.eolupdate=<html><center><h2>Version 5.2 Upgrade!</h2></br><h3>Your current database version is {0}</h3><br>For version 5.1 click <b>YES</b><br/><br/>For any other version click <b>NO</b> and get to 5.1 first<br><br/> message.eolupdate=<html><center><h2>Version 5.3 Upgrade!</h2></br><h3>Your current database version is {0}</h3><br>For version 5.2 click <b>YES</b><br/><br/>For any other version click <b>NO</b> and get to 5.2 first<br><br/>
message.ibuttonassign=<html><center>Get the iButton ID<br>Place iButton onto the reader then click OK message.ibuttonassign=<html><center>Get the iButton ID<br>Place iButton onto the reader then click OK
message.ibuttonnotassign=<html><center>The iButton used is not yet assigned to anyone message.ibuttonnotassign=<html><center>The iButton used is not yet assigned to anyone
message.ibuttonnotfound=No iButton adapter found. Key fobs will be disabled. message.ibuttonnotfound=No iButton adapter found. Key fobs will be disabled.
@@ -1190,4 +1190,4 @@ cboption.find=Buscar
button.prodhtmldisplayFont=Tipo de fuente button.prodhtmldisplayFont=Tipo de fuente
button.prodhtmldisplayImage=Imagen button.prodhtmldisplayImage=Imagen
label.csvclear=Diario de importaci\u00f3n label.csvclear=Diario de importaci\u00f3n
message.eolupdate=<html><center><h3>uniCenta oPOS Versi\u00f3n {0} detectada!</h3><h4>\u00a1Las actualizaciones de la versi\u00f3n est\u00e1n cambiando!</h4> Si su versi\u00f3n es 5.1 o posterior, elija <b>S\u00cd</b> para continuar.<br/><br/> Para versiones anteriores, haga clic en <b>NO</b> para abrir Opciones de configuraci\u00f3n ahora.<br/></br>Lea la Gu\u00eda de transferencia de datos de uniCenta oPOS message.eolupdate=<html><center><h3>uniCenta oPOS Versi\u00f3n {0} detectada!</h3><h4>\u00a1Las actualizaciones de la versi\u00f3n est\u00e1n cambiando!</h4> Si su versi\u00f3n es 5.2 o posterior, elija <b>S\u00cd</b> para continuar.<br/><br/> Para versiones anteriores, haga clic en <b>NO</b> para abrir Opciones de configuraci\u00f3n ahora.<br/></br>Lea la Gu\u00eda de transferencia de datos de uniCenta oPOS
@@ -468,4 +468,4 @@ transpayment.ticket=Ticket
transpayment.voucherin=Vales cobrados transpayment.voucherin=Vales cobrados
transpayment.voucherout=Vales emitidos transpayment.voucherout=Vales emitidos
Visor.Title=uniCenta oPOS Visor.Title=uniCenta oPOS
message.eolupdate=<html><center><h3>uniCenta oPOS Versi\u00f3n {0} detectada!</h3><h4>\u00a1Las actualizaciones de la versi\u00f3n est\u00e1n cambiando!</h4> Si su versi\u00f3n es 5.1 o posterior, elija <b>S\u00cd</b> para continuar.<br/><br/> Para versiones anteriores, haga clic en <b>NO</b> para abrir Opciones de configuraci\u00f3n ahora.<br/></br>Lea la Gu\u00eda de transferencia de datos de uniCenta oPOS message.eolupdate=<html><center><h3>uniCenta oPOS Versi\u00f3n {0} detectada!</h3><h4>\u00a1Las actualizaciones de la versi\u00f3n est\u00e1n cambiando!</h4> Si su versi\u00f3n es 5.2 o posterior, elija <b>S\u00cd</b> para continuar.<br/><br/> Para versiones anteriores, haga clic en <b>NO</b> para abrir Opciones de configuraci\u00f3n ahora.<br/></br>Lea la Gu\u00eda de transferencia de datos de uniCenta oPOS
@@ -911,7 +911,7 @@ message.transfermessage=Database overdracht
message.transfernotsupported=Database overdrachtstype wordt niet ondersteund message.transfernotsupported=Database overdrachtstype wordt niet ondersteund
message.transfertitle=Database overdracht message.transfertitle=Database overdracht
message.updatedatabase=<html><center><h3>uniCenta oPOS Version {0} database gedetecteerd!</h3> De database wordt automatisch geüpgraded.<br>GEGEVENS KUNNEN VERLOREN GAAN. MAAK EERST EEN BACKUP.<br><br>Wilt u doorgaan? message.updatedatabase=<html><center><h3>uniCenta oPOS Version {0} database gedetecteerd!</h3> De database wordt automatisch geüpgraded.<br>GEGEVENS KUNNEN VERLOREN GAAN. MAAK EERST EEN BACKUP.<br><br>Wilt u doorgaan?
message.eolupdate=<html><center><h3>uniCenta oPOS Version {0} gedetecteerd!</h3><h4>Versie-upgrades veranderen!</h4>Als je versie 5.1 of hoger is kies<b>YES</b>om door te gaan<br/><br/>Voor oudere versies kies<b>NO</b> Om nu de configuratie opties te openen!<br>Lees alstublieft de uniCenta oPOS Data Transfer Guide<br/><br/> message.eolupdate=<html><center><h3>uniCenta oPOS Version {0} gedetecteerd!</h3><h4>Versie-upgrades veranderen!</h4>Als je versie 5.2 of hoger is kies<b>YES</b>om door te gaan<br/><br/>Voor oudere versies kies<b>NO</b> Om nu de configuratie opties te openen!<br>Lees alstublieft de uniCenta oPOS Data Transfer Guide<br/><br/>
message.URL=<html>Een webpagina laten zien in het hoofdscherm . vereist de volledige URL<br />Voor een lokaal bestand begin met - <b>file://</b><br/>Voor een extern bestand gebruik <b>http://</b><br/> message.URL=<html>Een webpagina laten zien in het hoofdscherm . vereist de volledige URL<br />Voor een lokaal bestand begin met - <b>file://</b><br/>Voor een extern bestand gebruik <b>http://</b><br/>
message.uuidcopy=<html><center><h4>UUID is gekopieerd naar het klembord message.uuidcopy=<html><center><h4>UUID is gekopieerd naar het klembord
message.vipno=Klant is geen VIP message.vipno=Klant is geen VIP