From efb68b17efbcf5a1e826cc022b51f1196276984d Mon Sep 17 00:00:00 2001 From: Geoffrey Merck Date: Sun, 21 Apr 2019 08:45:29 +0200 Subject: [PATCH] Fix Mobile GPS Typo Fix misleading error message on mobile GPS settings validation --- GUICommon/MobileGPSSet.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GUICommon/MobileGPSSet.cpp b/GUICommon/MobileGPSSet.cpp index cc1a5d9..ce67cb4 100644 --- a/GUICommon/MobileGPSSet.cpp +++ b/GUICommon/MobileGPSSet.cpp @@ -79,7 +79,7 @@ bool CMobileGPSSet::Validate() wxString address = getAddress(); if (address.IsEmpty()) { - wxMessageDialog dialog(this, _("The Repeater Address is not valid"), m_title + _(" Error"), wxICON_ERROR); + wxMessageDialog dialog(this, _("The Mobile GPS Address is not valid"), m_title + _(" Error"), wxICON_ERROR); dialog.ShowModal(); return false; } @@ -87,7 +87,7 @@ bool CMobileGPSSet::Validate() unsigned int port = getPort(); if (port == 0U || port > 65535U) { - wxMessageDialog dialog(this, _("The Repeater Port is not valid"), m_title + _(" Error"), wxICON_ERROR); + wxMessageDialog dialog(this, _("The Mobile GPS Port is not valid"), m_title + _(" Error"), wxICON_ERROR); dialog.ShowModal(); return false; }