feat: Implement location tracking service and haptic feedback for device advertising

This commit is contained in:
Janez T
2025-10-16 21:27:22 +02:00
parent c6c56f858d
commit 58d8ef0dae
18 changed files with 203 additions and 16 deletions

View File

@@ -1776,5 +1776,10 @@
"placeholders": {
"power": { "type": "int" }
}
},
"you": "You",
"@you": {
"description": "Label for the current user in message bubbles"
}
}

View File

@@ -590,5 +590,7 @@
"spreadingFactor": "Faktor širenja",
"codingRate": "Omjer kodiranja",
"txPowerDbm": "TX snaga (dBm)",
"maxPowerDbm": "Maks: {power} dBm"
"maxPowerDbm": "Maks: {power} dBm",
"you": "Ti"
}

View File

@@ -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

View File

@@ -1035,4 +1035,7 @@ class AppLocalizationsEn extends AppLocalizations {
String maxPowerDbm(int power) {
return 'Max: $power dBm';
}
@override
String get you => 'You';
}

View File

@@ -1037,4 +1037,7 @@ class AppLocalizationsHr extends AppLocalizations {
String maxPowerDbm(int power) {
return 'Maks: $power dBm';
}
@override
String get you => 'Ti';
}

View File

@@ -1037,4 +1037,7 @@ class AppLocalizationsSl extends AppLocalizations {
String maxPowerDbm(int power) {
return 'Največ: $power dBm';
}
@override
String get you => 'Ti';
}

View File

@@ -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"
}