- App.tsx: full navigation (Auth stack + Main tabs with 5 screens) - Auth: LoginScreen, RegisterScreen, ForgotPasswordScreen - HomeScreen: dashboard with IoT metrics, weather widget, alerts, quick actions, sensors - MapScreen: interactive map with layer toggles (6 layers) - MarketplaceScreen: categories (6), products (5), search - ChatScreen: AI chat with quick prompts (4), bot responses - ProfileScreen: user info, stats, menu (9 items), logout - AlertsScreen: alert list with severity, acknowledge - SensorsScreen: sensor list with type filters (6 types), search - ZonesScreen: zone cards with stats - SettingsScreen: language picker (FR/EN/ES/DE), privacy, about - Stores: iotStore (sensors, zones, alerts), notificationStore, uiStore + i18n - Hooks: useSensors, useAlerts, useNotifications, useLocation - Components: Card, Button, LoadingSpinner, ErrorBoundary, Header - Services: iotService, notificationService (with axios API client) - Utils: formatters (temp, AQI, noise, dates), validators (email, password, IBAN) - Theme: colors.ts with full design system (Blue Ocean palette) - Ditto: fixed MongoDB connection, new JWT secrets, official gateway image
47 lines
1.8 KiB
JSON
47 lines
1.8 KiB
JSON
{
|
|
"Commands:": "Comandos:",
|
|
"Options:": "Opciones:",
|
|
"Examples:": "Ejemplos:",
|
|
"boolean": "booleano",
|
|
"count": "cuenta",
|
|
"string": "cadena de caracteres",
|
|
"number": "número",
|
|
"array": "tabla",
|
|
"required": "requerido",
|
|
"default": "defecto",
|
|
"default:": "defecto:",
|
|
"choices:": "selección:",
|
|
"aliases:": "alias:",
|
|
"generated-value": "valor-generado",
|
|
"Not enough non-option arguments: got %s, need at least %s": {
|
|
"one": "Hacen falta argumentos no-opcionales: Número recibido %s, necesita por lo menos %s",
|
|
"other": "Hacen falta argumentos no-opcionales: Número recibido %s, necesita por lo menos %s"
|
|
},
|
|
"Too many non-option arguments: got %s, maximum of %s": {
|
|
"one": "Demasiados argumentos no-opcionales: Número recibido %s, máximo es %s",
|
|
"other": "Demasiados argumentos no-opcionales: Número recibido %s, máximo es %s"
|
|
},
|
|
"Missing argument value: %s": {
|
|
"one": "Falta argumento: %s",
|
|
"other": "Faltan argumentos: %s"
|
|
},
|
|
"Missing required argument: %s": {
|
|
"one": "Falta argumento requerido: %s",
|
|
"other": "Faltan argumentos requeridos: %s"
|
|
},
|
|
"Unknown argument: %s": {
|
|
"one": "Argumento desconocido: %s",
|
|
"other": "Argumentos desconocidos: %s"
|
|
},
|
|
"Invalid values:": "Valores inválidos:",
|
|
"Argument: %s, Given: %s, Choices: %s": "Argumento: %s, Recibido: %s, Seleccionados: %s",
|
|
"Argument check failed: %s": "Verificación de argumento ha fallado: %s",
|
|
"Implications failed:": "Implicaciones fallidas:",
|
|
"Not enough arguments following: %s": "No hay suficientes argumentos después de: %s",
|
|
"Invalid JSON config file: %s": "Archivo de configuración JSON inválido: %s",
|
|
"Path to JSON config file": "Ruta al archivo de configuración JSON",
|
|
"Show help": "Muestra ayuda",
|
|
"Show version number": "Muestra número de versión",
|
|
"Did you mean %s?": "Quisiste decir %s?"
|
|
}
|