ionic-planb-logistic-app-fl.../lib/l10n/app_en.arb
Claude Code 4b03e9aba5 Initial commit: Plan B Logistics Flutter app with dark mode and responsive design
Implements complete refactor of Ionic Angular logistics app to Flutter/Dart with:
- Svrnty dark mode console theme (Material Design 3)
- Responsive layouts (mobile, tablet, desktop) following FRONTEND standards
- CQRS API integration with Result<T> error handling
- OAuth2/OIDC authentication support (mocked for initial testing)
- Delivery route and delivery management features
- Multi-language support (EN/FR) with i18n
- Native integrations (camera, phone calls, maps)
- Strict typing throughout codebase
- Mock data for UI testing without backend

Follows all FRONTEND style guides, design patterns, and conventions.
App is running in dark mode and fully responsive across all device sizes.

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-31 04:58:10 -04:00

70 lines
1.8 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"}
}
}
}