Hi @davidfor. In the last update the modification of the backup on each connection does not appear in Spanish. It's not important but surely you'd know. Thank you for your invaluable work.
The translation would be: "Hacer copia de seguridad del dispositivo en cada conexión"
Doing a little research I have seen that in the file "es.po" in translations directory, after:
Code:
#: config.py:390 config.py:398
msgid ""
"If this is selected the plugin will backup the device database the first "
"time it is connected each day."
msgstr ""
"Si selecciona esta opción el plugin hará una copia de seguridad de la base "
"de datos del dispositivo la primera vez que se conecte cada día."
should not be the code for this part in the code of config.py ??
Code:
self.backup_each_connection_checkbox = QCheckBox(_('Backup the device database on each connection'), self)
self.backup_each_connection_checkbox.setToolTip(_('If this is selected the plugin will backup the device database each time the device is connected.'))
self.backup_each_connection_checkbox.setCheckState(Qt.Checked if backup_each_connection else Qt.Unchecked)
self.backup_each_connection_checkbox.clicked.connect(self.backup_each_connection_checkbox_clicked)
options_layout.addWidget(self.backup_each_connection_checkbox, 0, 2, 1, 3)
Thanks