mirror of
https://github.com/dz0ny/meshcore-sar.git
synced 2026-08-12 00:40:28 +00:00
feat: Implement location tracking service and haptic feedback for device advertising
This commit is contained in:
@@ -1776,5 +1776,10 @@
|
||||
"placeholders": {
|
||||
"power": { "type": "int" }
|
||||
}
|
||||
},
|
||||
|
||||
"you": "You",
|
||||
"@you": {
|
||||
"description": "Label for the current user in message bubbles"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -590,5 +590,7 @@
|
||||
"spreadingFactor": "Faktor širenja",
|
||||
"codingRate": "Omjer kodiranja",
|
||||
"txPowerDbm": "TX snaga (dBm)",
|
||||
"maxPowerDbm": "Maks: {power} dBm"
|
||||
"maxPowerDbm": "Maks: {power} dBm",
|
||||
|
||||
"you": "Ti"
|
||||
}
|
||||
|
||||
@@ -1898,6 +1898,12 @@ abstract class AppLocalizations {
|
||||
/// In en, this message translates to:
|
||||
/// **'Max: {power} dBm'**
|
||||
String maxPowerDbm(int power);
|
||||
|
||||
/// Label for the current user in message bubbles
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'You'**
|
||||
String get you;
|
||||
}
|
||||
|
||||
class _AppLocalizationsDelegate
|
||||
|
||||
@@ -1035,4 +1035,7 @@ class AppLocalizationsEn extends AppLocalizations {
|
||||
String maxPowerDbm(int power) {
|
||||
return 'Max: $power dBm';
|
||||
}
|
||||
|
||||
@override
|
||||
String get you => 'You';
|
||||
}
|
||||
|
||||
@@ -1037,4 +1037,7 @@ class AppLocalizationsHr extends AppLocalizations {
|
||||
String maxPowerDbm(int power) {
|
||||
return 'Maks: $power dBm';
|
||||
}
|
||||
|
||||
@override
|
||||
String get you => 'Ti';
|
||||
}
|
||||
|
||||
@@ -1037,4 +1037,7 @@ class AppLocalizationsSl extends AppLocalizations {
|
||||
String maxPowerDbm(int power) {
|
||||
return 'Največ: $power dBm';
|
||||
}
|
||||
|
||||
@override
|
||||
String get you => 'Ti';
|
||||
}
|
||||
|
||||
@@ -590,5 +590,7 @@
|
||||
"spreadingFactor": "Faktor razširitve",
|
||||
"codingRate": "Razmerje kodiranja",
|
||||
"txPowerDbm": "Izhodna moč (dBm)",
|
||||
"maxPowerDbm": "Največ: {power} dBm"
|
||||
"maxPowerDbm": "Največ: {power} dBm",
|
||||
|
||||
"you": "Ti"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user