ionic-planb-logistic-app-fl.../lib/l10n/app_en.arb
Jean-Philippe Brule d8bdaed63e Upgrade Flutter packages and fix breaking changes for Riverpod 3.0
Major package upgrades:
- Riverpod 2.x → 3.0.3 (breaking changes)
- flutter_appauth 7.0.0 → 11.0.0
- go_router 14.0.0 → 17.0.0
- permission_handler 11.3.0 → 12.0.1
- flutter_lints 5.0.0 → 6.0.0
- animate_do 3.1.2 → 4.2.0
- Plus 41 transitive dependency updates

Breaking changes fixed:

Riverpod 3.0 migration:
- Replace StateProvider with NotifierProvider pattern
- Update .valueOrNull to proper async value handling with .future
- Create LanguageNotifier and ThemeModeNotifier classes
- Fix all provider async value access patterns

Google Maps Navigation API updates:
- Rename GoogleMapsNavigationViewController to GoogleNavigationViewController
- Update Waypoint to NavigationWaypoint.withLatLngTarget
- Migrate controller methods to static GoogleMapsNavigator methods
- Update event listener types and callbacks

Localization system fixes:
- Update l10n.yaml synthetic-package configuration
- Fix import paths from flutter_gen to package imports
- Add errorTitle translation key for both en/fr
- Remove unnecessary null-aware operators (AppLocalizations is non-nullable)
- Regenerate localization files

iOS/macOS configuration:
- Update CocoaPods dependencies (AppAuth 1.7.5 → 2.0.0)
- Create missing Profile.xcconfig files for both platforms
- Sync Podfile.lock files with updated dependencies

Code quality:
- Fix all analyzer errors (0 errors remaining)
- Resolve deprecated API usage warnings
- Update async/await patterns for better error handling

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-16 01:25:16 -05:00

89 lines
2.9 KiB
Plaintext

{
"@@locale": "en",
"appTitle": "Plan B Logistics",
"appDescription": "Delivery Management System",
"loginWithKeycloak": "Login with Keycloak",
"deliveryRoutes": "Delivery Routes",
"routes": "Routes",
"deliveries": "Deliveries",
"settings": "Settings",
"profile": "Profile",
"logout": "Logout",
"completed": "Completed",
"pending": "Pending",
"todo": "To Do",
"delivered": "Delivered",
"newCustomer": "New Customer",
"items": "{count} items",
"@items": {
"placeholders": {
"count": {"type": "int"}
}
},
"moneyCurrency": "{amount} MAD",
"@moneyCurrency": {
"placeholders": {
"amount": {"type": "double"}
}
},
"call": "Call",
"map": "Map",
"more": "More",
"markAsCompleted": "Mark as Completed",
"markAsUncompleted": "Mark as Uncompleted",
"uploadPhoto": "Upload Photo",
"viewDetails": "View Details",
"deliverySuccessful": "Delivery marked as completed",
"deliveryFailed": "Failed to mark delivery",
"noDeliveries": "No deliveries",
"noRoutes": "No routes available",
"error": "Error: {message}",
"@error": {
"placeholders": {
"message": {"type": "String"}
}
},
"retry": "Retry",
"authenticationRequired": "Authentication required",
"phoneCall": "Call customer",
"navigateToAddress": "Show on map",
"language": "Language",
"english": "English",
"french": "French",
"appVersion": "App Version",
"about": "About",
"fullName": "{firstName} {lastName}",
"@fullName": {
"placeholders": {
"firstName": {"type": "String"},
"lastName": {"type": "String"}
}
},
"completedDeliveries": "{completed}/{total} completed",
"@completedDeliveries": {
"placeholders": {
"completed": {"type": "int"},
"total": {"type": "int"}
}
},
"navigationTcTitle": "Navigation Service",
"navigationTcDescription": "This app uses Google Navigation to provide turn-by-turn navigation for deliveries.",
"navigationTcAttribution": "Attribution: Maps and navigation services provided by Google Maps.",
"navigationTcTerms": "By accepting, you agree to Google's Terms of Service and Privacy Policy for Navigation services.",
"accept": "Accept",
"decline": "Decline",
"locationPermissionRequired": "Location Permission",
"locationPermissionMessage": "This app requires location permission to navigate to deliveries.",
"locationPermissionDenied": "Location permission denied. Navigation cannot proceed.",
"permissionPermanentlyDenied": "Permission Required",
"openSettingsMessage": "Location permission is permanently denied. Please enable it in app settings.",
"openSettings": "Open Settings",
"cancel": "Cancel",
"ok": "OK",
"errorTitle": "Error",
"requestPermission": "Request Permission",
"navigationArrived": "You have arrived at the destination",
"navigatingTo": "Navigating to",
"initializingNavigation": "Initializing navigation..."
}