Index: sources/gui/qml/pages/settings/SettingsDeviceRegistration.qml =================================================================== diff -u -raf9b5ee3e759ca45c4e55488f46601f30143edae -rd862dfcd402206e33b314c458e41c13b684a4565 --- sources/gui/qml/pages/settings/SettingsDeviceRegistration.qml (.../SettingsDeviceRegistration.qml) (revision af9b5ee3e759ca45c4e55488f46601f30143edae) +++ sources/gui/qml/pages/settings/SettingsDeviceRegistration.qml (.../SettingsDeviceRegistration.qml) (revision d862dfcd402206e33b314c458e41c13b684a4565) @@ -70,24 +70,24 @@ label.width : _root.labelWidth } - TextEntry { id : _serial_HD + TextEntry { id : _serial_TD textInput.clip : true hasCursor : false textInput.text : vAdjustmentVersions .tdSerial 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