diff --git a/Localizable.xcstrings b/Localizable.xcstrings index a29534047..f5642a53a 100644 --- a/Localizable.xcstrings +++ b/Localizable.xcstrings @@ -10849,6 +10849,9 @@ }, "Line Series" : { + }, + "Loading Logs. . ." : { + }, "Location: %@" : { @@ -15301,9 +15304,6 @@ }, "No Environment Metrics" : { - }, - "No Logs Available" : { - }, "No Positions" : { diff --git a/Meshtastic/Views/Settings/AppLog.swift b/Meshtastic/Views/Settings/AppLog.swift index 0a2aaad01..fd3db8106 100644 --- a/Meshtastic/Views/Settings/AppLog.swift +++ b/Meshtastic/Views/Settings/AppLog.swift @@ -58,7 +58,6 @@ struct AppLog: View { .tint(Color(UIColor.secondarySystemBackground)) .foregroundColor(.accentColor) .buttonStyle(.borderedProminent) - } .controlSize(.regular) .padding(5) @@ -69,7 +68,7 @@ struct AppLog: View { .disabled(selection != nil) .overlay { if logs.isEmpty { - ContentUnavailableView("No Logs Available", systemImage: "scroll") + ContentUnavailableView("Loading Logs. . .", systemImage: "scroll") } } .refreshable { @@ -120,7 +119,7 @@ struct AppLog: View { .disabled(selection != nil) .overlay { if logs.isEmpty { - ContentUnavailableView("No Logs Available", systemImage: "scroll") + ContentUnavailableView("Loading Logs. . .", systemImage: "scroll") } } .refreshable {