mirror of
https://github.com/zjs81/meshcore-open.git
synced 2026-07-04 07:50:57 +10:00
Add radio statistics and localization updates
- Implemented radio statistics features in multiple screens including chat, channels, and settings. - Added localization for new strings in Swedish, Ukrainian, and Chinese. - Introduced a setting to jump to the oldest unread message in chat and channels. - Enhanced path management and display for contacts and messages. - Updated app settings to include new boolean for jumping to the oldest unread message. - Improved battery indicator and radio stats display in the app bar. - Removed unused wakelock_plus dependency and updated plugin registrations.
This commit is contained in:
@@ -3503,4 +3503,86 @@ class AppLocalizationsPl extends AppLocalizations {
|
||||
@override
|
||||
String get discoveredContacts_deleteContactAllContent =>
|
||||
'Czy na pewno chcesz usunąć wszystkie znalezione kontakty?';
|
||||
|
||||
@override
|
||||
String get chat_sendCooldown =>
|
||||
'Prosimy o chwilowe oczekiwanie przed ponownym wysłaniem.';
|
||||
|
||||
@override
|
||||
String get appSettings_jumpToOldestUnread =>
|
||||
'Przejdź do najstarszego nieodczytanej wiadomości';
|
||||
|
||||
@override
|
||||
String get appSettings_jumpToOldestUnreadSubtitle =>
|
||||
'Przy otwieraniu czatu z nieodczytanymi wiadomościami, przewijaj, aby przejść do pierwszej nieodczytanej wiadomości, zamiast do najnowszej.';
|
||||
|
||||
@override
|
||||
String get appSettings_languageHu => 'Węgierski';
|
||||
|
||||
@override
|
||||
String get appSettings_languageJa => 'Japoński';
|
||||
|
||||
@override
|
||||
String get appSettings_languageKo => 'Koreański';
|
||||
|
||||
@override
|
||||
String get radioStats_tooltip => 'Statystyki dotyczące radia i siatki';
|
||||
|
||||
@override
|
||||
String get radioStats_screenTitle => 'Statystyki radiowe';
|
||||
|
||||
@override
|
||||
String get radioStats_notConnected =>
|
||||
'Połącz się z urządzeniem, aby wyświetlić statystyki radiowe.';
|
||||
|
||||
@override
|
||||
String get radioStats_firmwareTooOld =>
|
||||
'Statystyki radiowe wymagają towarzyszącej oprogramowania w wersji 8 lub nowszej.';
|
||||
|
||||
@override
|
||||
String get radioStats_waiting => 'Czekam na dane…';
|
||||
|
||||
@override
|
||||
String radioStats_noiseFloor(int noiseDbm) {
|
||||
return 'Poziom szumów: $noiseDbm dBm';
|
||||
}
|
||||
|
||||
@override
|
||||
String radioStats_lastRssi(int rssiDbm) {
|
||||
return 'Ostatni poziom RSSI: $rssiDbm dBm';
|
||||
}
|
||||
|
||||
@override
|
||||
String radioStats_lastSnr(String snr) {
|
||||
return 'Ostatni poziom SNR: $snr dB';
|
||||
}
|
||||
|
||||
@override
|
||||
String radioStats_txAir(int seconds) {
|
||||
return 'Czas emisji w stacji TX (całkowity): $seconds s';
|
||||
}
|
||||
|
||||
@override
|
||||
String radioStats_rxAir(int seconds) {
|
||||
return 'Czas wykorzystania kanału RX (całkowity): $seconds s';
|
||||
}
|
||||
|
||||
@override
|
||||
String get radioStats_chartCaption =>
|
||||
'Poziom szumów (dBm) w ostatnich próbkach.';
|
||||
|
||||
@override
|
||||
String radioStats_stripNoise(int noiseDbm) {
|
||||
return 'Poziom szumów: $noiseDbm dBm';
|
||||
}
|
||||
|
||||
@override
|
||||
String get radioStats_stripWaiting => 'Pobieranie danych dotyczących radia…';
|
||||
|
||||
@override
|
||||
String get radioStats_settingsTile => 'Statystyki radiowe';
|
||||
|
||||
@override
|
||||
String get radioStats_settingsSubtitle =>
|
||||
'Szum tła, RSSI, SNR oraz czas dostępny';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user