// 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...'; @override String get quickLocationMarker => 'Quick location marker'; @override String get markerType => 'Marker Type'; @override String get sendTo => 'Send To'; @override String get noDestinationsAvailable => 'No destinations available.'; @override String get selectDestination => 'Select destination...'; @override String get ephemeralBroadcastInfo => 'Ephemeral: Broadcast over-the-air only. Not stored - nodes must be online.'; @override String get persistentRoomInfo => 'Persistent: Stored immutably in room. Synced automatically and preserved offline.'; @override String get location => 'Location'; @override String get fromMap => 'From Map'; @override String get gettingLocation => 'Getting location...'; @override String get locationError => 'Location Error'; @override String get retry => 'Retry'; @override String get refreshLocation => 'Refresh location'; @override String accuracyMeters(int accuracy) { return 'Accuracy: ±${accuracy}m'; } @override String get notesOptional => 'Notes (optional)'; @override String get addAdditionalInformation => 'Add additional information...'; @override String lowAccuracyWarning(int accuracy) { return 'Location accuracy is ±${accuracy}m. This may not be accurate enough for SAR operations.\n\nContinue anyway?'; } @override String get loginToRoom => 'Login to Room'; @override String get enterPasswordInfo => 'Enter the password to access this room. The password will be saved for future use.'; @override String get password => 'Password'; @override String get enterRoomPassword => 'Enter room password'; @override String get loggingInDots => 'Logging in...'; @override String get login => 'Login'; @override String failedToAddRoom(String error) { return 'Failed to add room to device: $error\n\nThe room may not have advertised yet.\nTry waiting for the room to broadcast.'; } @override String get direct => 'Direct'; @override String get flood => 'Flood'; @override String get admin => 'Admin'; @override String get loggedIn => 'Logged In'; @override String get noGpsData => 'No GPS data'; @override String get distance => 'Distance'; @override String pingingDirect(String name) { return 'Pinging $name (direct via path)...'; } @override String pingingFlood(String name) { return 'Pinging $name (flooding - no path)...'; } @override String directPingTimeout(String name) { return 'Direct ping timeout - retrying $name with flooding...'; } @override String pingSuccessful(String name, String fallback) { return 'Ping successful to $name$fallback'; } @override String get viaFloodingFallback => ' (via flooding fallback)'; @override String pingFailed(String name) { return 'Ping failed to $name - no response received'; } @override String deleteContactConfirmation(String name) { return 'Are you sure you want to delete \"$name\"?\n\nThis will remove the contact from both the app and the companion radio device.'; } @override String removingContact(String name) { return 'Removing $name...'; } @override String contactRemoved(String name) { return 'Contact \"$name\" removed'; } @override String failedToRemoveContact(String error) { return 'Failed to remove contact: $error'; } @override String get type => 'Type'; @override String get publicKey => 'Public Key'; @override String get lastSeen => 'Last Seen'; @override String get roomStatus => 'Room Status'; @override String get loginStatus => 'Login Status'; @override String get notLoggedIn => 'Not Logged In'; @override String get adminAccess => 'Admin Access'; @override String get yes => 'Yes'; @override String get no => 'No'; @override String get permissions => 'Permissions'; @override String get passwordSaved => 'Password Saved'; @override String get locationColon => 'Location:'; @override String get telemetry => 'Telemetry'; @override String requestingTelemetry(String name) { return 'Requesting telemetry from $name...'; } @override String get voltage => 'Voltage'; @override String get battery => 'Battery'; @override String get temperature => 'Temperature'; @override String get humidity => 'Humidity'; @override String get pressure => 'Pressure'; @override String get gpsTelemetry => 'GPS (Telemetry)'; @override String get updated => 'Updated'; @override String pathResetInfo(String name) { return 'Path reset for $name. Next message will find a new route.'; } @override String get reLoginToRoom => 'Re-Login to Room'; @override String get heading => 'Heading'; @override String get elevation => 'Elevation'; @override String get accuracy => 'Accuracy'; @override String get filterMarkers => 'Filter Markers'; @override String get filterMarkersTooltip => 'Filter markers'; @override String get contactsFilter => 'Contacts'; @override String get sarMarkers => 'SAR Markers'; @override String get foundPerson => 'Found Person'; @override String get fire => 'Fire'; @override String get stagingArea => 'Staging Area'; @override String get showAll => 'Show All'; @override String get nearbyContacts => 'Nearby Contacts'; @override String get locationUnavailable => 'Location unavailable'; @override String get ahead => 'ahead'; @override String degreesRight(int degrees) { return '$degrees° right'; } @override String degreesLeft(int degrees) { return '$degrees° left'; } @override String latLonFormat(String latitude, String longitude) { return 'Lat: $latitude Lon: $longitude'; } @override String get noContactsYet => 'No contacts yet'; @override String get connectToDeviceToLoadContacts => 'Connect to a device to load contacts'; @override String get teamMembers => 'Team Members'; @override String get repeaters => 'Repeaters'; @override String get rooms => 'Rooms'; @override String get cacheStatistics => 'Cache Statistics'; @override String get totalTiles => 'Total Tiles'; @override String get cacheSize => 'Cache Size'; @override String get storeName => 'Store Name'; @override String get noCacheStatistics => 'No cache statistics available'; @override String get downloadRegion => 'Download Region'; @override String get mapLayer => 'Map Layer'; @override String get regionBounds => 'Region Bounds'; @override String get north => 'North'; @override String get south => 'South'; @override String get east => 'East'; @override String get west => 'West'; @override String get zoomLevels => 'Zoom Levels'; @override String minZoom(int zoom) { return 'Min: $zoom'; } @override String maxZoom(int zoom) { return 'Max: $zoom'; } @override String get downloadingDots => 'Downloading...'; @override String get cancelDownload => 'Cancel Download'; @override String get downloadRegionButton => 'Download Region'; @override String get downloadNote => 'Note: Large regions or high zoom levels may take significant time and storage.'; @override String get cacheManagement => 'Cache Management'; @override String get clearAllMaps => 'Clear All Maps'; @override String get clearMapsConfirmTitle => 'Clear All Maps'; @override String get clearMapsConfirmMessage => 'Are you sure you want to delete all downloaded maps? This action cannot be undone.'; @override String get mapDownloadCompleted => 'Map download completed!'; @override String get cacheClearedSuccessfully => 'Cache cleared successfully!'; @override String get downloadCancelled => 'Download cancelled'; @override String get startingDownload => 'Starting download...'; @override String get downloadingMapTiles => 'Downloading map tiles...'; @override String get downloadCompletedSuccessfully => 'Download completed successfully!'; @override String get cancellingDownload => 'Cancelling download...'; @override String errorLoadingStats(String error) { return 'Error loading stats: $error'; } @override String downloadFailed(String error) { return 'Download failed: $error'; } @override String cancelFailed(String error) { return 'Cancel failed: $error'; } @override String clearCacheFailed(String error) { return 'Clear cache failed: $error'; } @override String minZoomError(String error) { return 'Min zoom: $error'; } @override String maxZoomError(String error) { return 'Max zoom: $error'; } @override String get minZoomGreaterThanMax => 'Minimum zoom must be less than or equal to maximum zoom'; @override String get selectMapLayer => 'Select Map Layer'; @override String get mapOptions => 'Map Options'; @override String get showLegend => 'Show Legend'; @override String get displayMarkerTypeCounts => 'Display marker type counts'; @override String get rotateMapWithHeading => 'Rotate Map with Heading'; @override String get mapFollowsDirection => 'Map follows your direction when moving'; @override String get showMapDebugInfo => 'Show Map Debug Info'; @override String get displayZoomLevelBounds => 'Display zoom level and bounds'; @override String get fullscreenMode => 'Fullscreen Mode'; @override String get hideUiFullMapView => 'Hide all UI controls for full map view'; @override String get openStreetMap => 'OpenStreetMap'; @override String get openTopoMap => 'OpenTopoMap'; @override String get esriSatellite => 'ESRI Satellite'; @override String get downloadVisibleArea => 'Download visible area'; @override String get initializingMap => 'Initializing map...'; @override String get dragToPosition => 'Drag to Position'; @override String get createSarMarker => 'Create SAR Marker'; @override String get compass => 'Compass'; @override String get navigationAndContacts => 'Navigation & Contacts'; @override String get sarAlert => 'SAR ALERT'; }