diff --git a/Localizable.xcstrings b/Localizable.xcstrings index 94ed462f..a21e1e2a 100644 --- a/Localizable.xcstrings +++ b/Localizable.xcstrings @@ -6919,7 +6919,7 @@ } }, "Channel Details" : { - "localizations" : { + "localizations" : { "it" : { "stringUnit" : { "state" : "translated", @@ -18303,6 +18303,7 @@ } }, "Infrastructure node on a tower or mountain top only. Not to be used for roofs or mobile nodes. Relays messages with minimal overhead. Not visible in Nodes list." : { + "extractionState" : "stale", "localizations" : { "de" : { "stringUnit" : { @@ -18367,6 +18368,7 @@ } }, "Infrastructure node that always rebroadcasts packets once but only after all other modes, ensuring additional coverage for local clusters. Visible in Nodes list." : { + "extractionState" : "stale", "localizations" : { "de" : { "stringUnit" : { diff --git a/Meshtastic/Views/Settings/Config/DeviceConfig.swift b/Meshtastic/Views/Settings/Config/DeviceConfig.swift index cc682e66..9a4de816 100644 --- a/Meshtastic/Views/Settings/Config/DeviceConfig.swift +++ b/Meshtastic/Views/Settings/Config/DeviceConfig.swift @@ -44,7 +44,7 @@ struct DeviceConfig: View { } } .onChange(of: deviceRole) { _, newRole in - if hasChanges && [DeviceRoles.router.rawValue, DeviceRoles.routerLate.rawValue, DeviceRoles.repeater.rawValue].contains(newRole) { + if hasChanges && [DeviceRoles.router.rawValue, DeviceRoles.routerLate.rawValue].contains(newRole) { showRouterWarning = true } }