Index: sources/gui/qml/pages/settings/SettingsDeviceRegistration.qml =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -r9f70ae0e4a2a053486198c4a505575044a7ab3be --- sources/gui/qml/pages/settings/SettingsDeviceRegistration.qml (.../SettingsDeviceRegistration.qml) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/gui/qml/pages/settings/SettingsDeviceRegistration.qml (.../SettingsDeviceRegistration.qml) (revision 9f70ae0e4a2a053486198c4a505575044a7ab3be) @@ -70,24 +70,24 @@ label.width : _root.labelWidth } - TextEntry { id : _serial_HD + TextEntry { id : _serial_TD textInput.clip : true hasCursor : false textInput.text : vAdjustmentVersions .hdSerial textInput.horizontalAlignment: Text.AlignLeft - label.text : qsTr("HD Serial") + label.text : qsTr("TD Serial") separator.text : _root.separatorText separator.width : _root.separatorGap textInput.width : _root.entryWidth label.width : _root.labelWidth } - TextEntry { id : _serial_DG + TextEntry { id : _serial_DD textInput.clip : true hasCursor : false - textInput.text : vAdjustmentVersions .dgSerial + textInput.text : vAdjustmentVersions .ddSerial textInput.horizontalAlignment: Text.AlignLeft - label.text : qsTr("DG Serial") + label.text : qsTr("DD Serial") separator.text : _root.separatorText separator.width : _root.separatorGap textInput.width : _root.entryWidth @@ -145,7 +145,7 @@ let mHasNetworkConnection = (_ipAddress_eth0.isValid || _ipAddress_wlan0.isValid) if ( ! mHasNetworkConnection) { _root.notificationText = qsTr("No Network Connection"); return } - let mHasSerials = ( _serial_HD != "" && _serial_DG != "") + let mHasSerials = ( _serial_TD != "" && _serial_DD != "") if ( ! mHasSerials ) { _root.notificationText = qsTr("No device Serial" ); return } vCloudSync .doRegister () } // start device registration