mirror of
https://github.com/dz0ny/meshcore-sar.git
synced 2026-08-11 16:30:28 +00:00
- Integrated localization for alert dialogs, snack bars, and button labels in PacketLogScreen and SettingsScreen. - Updated location tracking service messages to use localized strings. - Enhanced ContactTile and DirectMessageSheet with localized text for user interactions. - Implemented localization in DrawingLayer and DrawingToolbar for map-related actions. - Updated SAR Update Sheet to utilize localized strings for user prompts and actions. - Ensured consistent use of localization across all relevant widgets and screens.
408 lines
9.5 KiB
Dart
408 lines
9.5 KiB
Dart
// ignore: unused_import
|
|
import 'package:intl/intl.dart' as intl;
|
|
import 'app_localizations.dart';
|
|
|
|
// ignore_for_file: type=lint
|
|
|
|
/// The translations for English (`en`).
|
|
class AppLocalizationsEn extends AppLocalizations {
|
|
AppLocalizationsEn([String locale = 'en']) : super(locale);
|
|
|
|
@override
|
|
String get appTitle => 'MeshCore SAR';
|
|
|
|
@override
|
|
String get messages => 'Messages';
|
|
|
|
@override
|
|
String get contacts => 'Contacts';
|
|
|
|
@override
|
|
String get map => 'Map';
|
|
|
|
@override
|
|
String get settings => 'Settings';
|
|
|
|
@override
|
|
String get connect => 'Connect';
|
|
|
|
@override
|
|
String get disconnect => 'Disconnect';
|
|
|
|
@override
|
|
String get scanningForDevices => 'Scanning for devices...';
|
|
|
|
@override
|
|
String get noDevicesFound => 'No devices found';
|
|
|
|
@override
|
|
String get scanAgain => 'Scan Again';
|
|
|
|
@override
|
|
String get tapToConnect => 'Tap to connect';
|
|
|
|
@override
|
|
String get deviceNotConnected => 'Device not connected';
|
|
|
|
@override
|
|
String get locationPermissionDenied => 'Location permission denied';
|
|
|
|
@override
|
|
String get locationPermissionPermanentlyDenied =>
|
|
'Location permission permanently denied. Please enable in Settings.';
|
|
|
|
@override
|
|
String get locationServicesDisabled =>
|
|
'Location services are disabled. Please enable them in Settings.';
|
|
|
|
@override
|
|
String get failedToGetGpsLocation => 'Failed to get GPS location';
|
|
|
|
@override
|
|
String advertisedAtLocation(String latitude, String longitude) {
|
|
return 'Advertised at $latitude, $longitude';
|
|
}
|
|
|
|
@override
|
|
String failedToAdvertise(String error) {
|
|
return 'Failed to advertise: $error';
|
|
}
|
|
|
|
@override
|
|
String reconnecting(int attempt, int max) {
|
|
return 'Reconnecting... ($attempt/$max)';
|
|
}
|
|
|
|
@override
|
|
String get cancelReconnection => 'Cancel reconnection';
|
|
|
|
@override
|
|
String get mapManagement => 'Map Management';
|
|
|
|
@override
|
|
String get general => 'General';
|
|
|
|
@override
|
|
String get theme => 'Theme';
|
|
|
|
@override
|
|
String get chooseTheme => 'Choose Theme';
|
|
|
|
@override
|
|
String get light => 'Light';
|
|
|
|
@override
|
|
String get dark => 'Dark';
|
|
|
|
@override
|
|
String get blueLightTheme => 'Blue light theme';
|
|
|
|
@override
|
|
String get blueDarkTheme => 'Blue dark theme';
|
|
|
|
@override
|
|
String get sarRed => 'SAR Red';
|
|
|
|
@override
|
|
String get alertEmergencyMode => 'Alert/Emergency mode';
|
|
|
|
@override
|
|
String get sarGreen => 'SAR Green';
|
|
|
|
@override
|
|
String get safeAllClearMode => 'Safe/All Clear mode';
|
|
|
|
@override
|
|
String get autoSystem => 'Auto (System)';
|
|
|
|
@override
|
|
String get followSystemTheme => 'Follow system theme';
|
|
|
|
@override
|
|
String get showRxTxIndicators => 'Show RX/TX Indicators';
|
|
|
|
@override
|
|
String get displayPacketActivity =>
|
|
'Display packet activity indicators in top bar';
|
|
|
|
@override
|
|
String get language => 'Language';
|
|
|
|
@override
|
|
String get chooseLanguage => 'Choose Language';
|
|
|
|
@override
|
|
String get english => 'English';
|
|
|
|
@override
|
|
String get slovenian => 'Slovenian';
|
|
|
|
@override
|
|
String get croatian => 'Croatian';
|
|
|
|
@override
|
|
String get locationBroadcasting => 'Location Broadcasting';
|
|
|
|
@override
|
|
String get autoLocationTracking => 'Auto Location Tracking';
|
|
|
|
@override
|
|
String get automaticallyBroadcastPosition =>
|
|
'Automatically broadcast position updates';
|
|
|
|
@override
|
|
String get configureTracking => 'Configure Tracking';
|
|
|
|
@override
|
|
String get distanceAndTimeThresholds => 'Distance and time thresholds';
|
|
|
|
@override
|
|
String get locationTrackingConfiguration => 'Location Tracking Configuration';
|
|
|
|
@override
|
|
String get configureWhenLocationBroadcasts =>
|
|
'Configure when location broadcasts are sent to the mesh network';
|
|
|
|
@override
|
|
String get minimumDistance => 'Minimum Distance';
|
|
|
|
@override
|
|
String broadcastAfterMoving(String distance) {
|
|
return 'Broadcast only after moving $distance meters';
|
|
}
|
|
|
|
@override
|
|
String get maximumDistance => 'Maximum Distance';
|
|
|
|
@override
|
|
String alwaysBroadcastAfterMoving(String distance) {
|
|
return 'Always broadcast after moving $distance meters';
|
|
}
|
|
|
|
@override
|
|
String get minimumTimeInterval => 'Minimum Time Interval';
|
|
|
|
@override
|
|
String alwaysBroadcastEvery(String duration) {
|
|
return 'Always broadcast every $duration';
|
|
}
|
|
|
|
@override
|
|
String get save => 'Save';
|
|
|
|
@override
|
|
String get cancel => 'Cancel';
|
|
|
|
@override
|
|
String get close => 'Close';
|
|
|
|
@override
|
|
String get about => 'About';
|
|
|
|
@override
|
|
String get appVersion => 'App Version';
|
|
|
|
@override
|
|
String get appName => 'App Name';
|
|
|
|
@override
|
|
String get aboutMeshCoreSar => 'About MeshCore SAR';
|
|
|
|
@override
|
|
String get aboutDescription =>
|
|
'A Search & Rescue application designed for emergency response teams. Features include:\n\n• BLE mesh networking for device-to-device communication\n• Offline maps with multiple layer options\n• Real-time team member tracking\n• SAR tactical markers (found person, fire, staging)\n• Contact management and messaging\n• GPS tracking with compass heading\n• Map tile caching for offline use';
|
|
|
|
@override
|
|
String get technologiesUsed => 'Technologies Used:';
|
|
|
|
@override
|
|
String get technologiesList =>
|
|
'• Flutter for cross-platform development\n• BLE (Bluetooth Low Energy) for mesh networking\n• OpenStreetMap for mapping\n• Provider for state management\n• SharedPreferences for local storage';
|
|
|
|
@override
|
|
String get developer => 'Developer';
|
|
|
|
@override
|
|
String get packageName => 'Package Name';
|
|
|
|
@override
|
|
String get sampleData => 'Sample Data';
|
|
|
|
@override
|
|
String get sampleDataDescription =>
|
|
'Load or clear sample contacts, channel messages, and SAR markers for testing';
|
|
|
|
@override
|
|
String get loadSampleData => 'Load Sample Data';
|
|
|
|
@override
|
|
String get clearAllData => 'Clear All Data';
|
|
|
|
@override
|
|
String get clearAllDataConfirmTitle => 'Clear All Data';
|
|
|
|
@override
|
|
String get clearAllDataConfirmMessage =>
|
|
'This will clear all contacts and SAR markers. Are you sure?';
|
|
|
|
@override
|
|
String get clear => 'Clear';
|
|
|
|
@override
|
|
String loadedSampleData(
|
|
int teamCount,
|
|
int channelCount,
|
|
int sarCount,
|
|
int messageCount,
|
|
) {
|
|
return 'Loaded $teamCount team members, $channelCount channels, $sarCount SAR markers, $messageCount messages';
|
|
}
|
|
|
|
@override
|
|
String failedToLoadSampleData(String error) {
|
|
return 'Failed to load sample data: $error';
|
|
}
|
|
|
|
@override
|
|
String get allDataCleared => 'All data cleared';
|
|
|
|
@override
|
|
String get failedToStartBackgroundTracking =>
|
|
'Failed to start background tracking. Check permissions and BLE connection.';
|
|
|
|
@override
|
|
String locationBroadcast(String latitude, String longitude) {
|
|
return 'Location broadcast: $latitude, $longitude';
|
|
}
|
|
|
|
@override
|
|
String get defaultPinInfo =>
|
|
'The default pin for devices without a screen is 123456. Trouble pairing? Forget the bluetooth device in system settings.';
|
|
|
|
@override
|
|
String get noMessagesYet => 'No messages yet';
|
|
|
|
@override
|
|
String get pullDownToSync => 'Pull down to sync messages';
|
|
|
|
@override
|
|
String get deleteContact => 'Delete Contact';
|
|
|
|
@override
|
|
String get delete => 'Delete';
|
|
|
|
@override
|
|
String get viewOnMap => 'View on Map';
|
|
|
|
@override
|
|
String get refresh => 'Refresh';
|
|
|
|
@override
|
|
String get sendDirectMessage => 'Send Direct Message';
|
|
|
|
@override
|
|
String get resetPath => 'Reset Path (Re-route)';
|
|
|
|
@override
|
|
String get publicKeyCopied => 'Public key copied to clipboard';
|
|
|
|
@override
|
|
String copiedToClipboard(String label) {
|
|
return '$label copied to clipboard';
|
|
}
|
|
|
|
@override
|
|
String get pleaseEnterPassword => 'Please enter a password';
|
|
|
|
@override
|
|
String failedToSyncContacts(String error) {
|
|
return 'Failed to sync contacts: $error';
|
|
}
|
|
|
|
@override
|
|
String get loggedInSuccessfully =>
|
|
'Logged in successfully! Waiting for room messages...';
|
|
|
|
@override
|
|
String get loginFailed => 'Login failed - incorrect password';
|
|
|
|
@override
|
|
String loggingIn(String roomName) {
|
|
return 'Logging in to $roomName...';
|
|
}
|
|
|
|
@override
|
|
String failedToSendLogin(String error) {
|
|
return 'Failed to send login: $error';
|
|
}
|
|
|
|
@override
|
|
String get lowLocationAccuracy => 'Low Location Accuracy';
|
|
|
|
@override
|
|
String get continue_ => 'Continue';
|
|
|
|
@override
|
|
String get sendSarMarker => 'Send SAR marker';
|
|
|
|
@override
|
|
String get deleteDrawing => 'Delete Drawing';
|
|
|
|
@override
|
|
String get drawLine => 'Draw Line';
|
|
|
|
@override
|
|
String get drawLineDesc => 'Draw a freehand line on the map';
|
|
|
|
@override
|
|
String get drawRectangle => 'Draw Rectangle';
|
|
|
|
@override
|
|
String get drawRectangleDesc => 'Draw a rectangular area on the map';
|
|
|
|
@override
|
|
String get shareDrawings => 'Share Drawings';
|
|
|
|
@override
|
|
String get clearAllDrawings => 'Clear All Drawings';
|
|
|
|
@override
|
|
String get clearAll => 'Clear All';
|
|
|
|
@override
|
|
String get noLocalDrawings => 'No local drawings to share';
|
|
|
|
@override
|
|
String get publicChannel => 'Public Channel';
|
|
|
|
@override
|
|
String get broadcastToAll => 'Broadcast to all nearby nodes (ephemeral)';
|
|
|
|
@override
|
|
String get storedPermanently => 'Stored permanently in room';
|
|
|
|
@override
|
|
String get notConnectedToDevice => 'Not connected to device';
|
|
|
|
@override
|
|
String get directMessage => 'Direct Message';
|
|
|
|
@override
|
|
String directMessageSentTo(String contactName) {
|
|
return 'Direct message sent to $contactName';
|
|
}
|
|
|
|
@override
|
|
String failedToSend(String error) {
|
|
return 'Failed to send: $error';
|
|
}
|
|
|
|
@override
|
|
String directMessageInfo(String contactName) {
|
|
return 'This message will be sent directly to $contactName. It will also appear in the main messages feed.';
|
|
}
|
|
|
|
@override
|
|
String get typeYourMessage => 'Type your message...';
|
|
}
|