Fix USB device name matching and correct localization strings

This commit is contained in:
just_stuff_tm
2026-03-03 15:38:10 -05:00
committed by just-stuff-tm
parent 21ff765e41
commit 367e47bb1e
4 changed files with 20 additions and 13 deletions
+4 -4
View File
@@ -93,7 +93,7 @@ class AppLocalizationsEn extends AppLocalizations {
String get common_loading => 'Loading...';
@override
String get common_notAvailable => '—';
String get common_notAvailable => '';
@override
String common_voltageValue(String volts) {
@@ -2465,7 +2465,7 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String telemetry_temperatureValue(String celsius, String fahrenheit) {
return '$celsius°C / $fahrenheit°F';
return '$celsius°C / $fahrenheit°F';
}
@override
@@ -2533,7 +2533,7 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String channelPath_observedPathTitle(int index, String hops) {
return 'Observed path $index • $hops';
return 'Observed path $index • $hops';
}
@override
@@ -2588,7 +2588,7 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String channelPath_selectedPathLabel(String label, String prefixes) {
return '$label • $prefixes';
return '$label • $prefixes';
}
@override