|
| 1 | +export default { |
| 2 | + 'sunny': 'Soleggiato', |
| 3 | + 'clear': 'Sereno', |
| 4 | + 'overcast': 'Coperto', |
| 5 | + 'cloudy': 'Nuvoloso', |
| 6 | + 'partlycloudy': 'Parzialmente Nuvoloso', |
| 7 | + 'rainy': 'Piovoso', |
| 8 | + 'rain': 'Pioggia', |
| 9 | + 'snowy': 'Nevoso', |
| 10 | + 'snow': 'Neve', |
| 11 | + 'foggy': 'Nebbia', |
| 12 | + 'fog': 'Nebbia', |
| 13 | + 'lightning': 'Fulmine', |
| 14 | + 'lightning-rainy': 'Temporale', |
| 15 | + 'pouring': 'Pioggia Intensa', |
| 16 | + 'snowy-rainy': 'Nevischio', |
| 17 | + 'hail': 'Grandine', |
| 18 | + 'clear-night': 'Notte Serena', |
| 19 | + 'feels_like': 'Percepita', |
| 20 | + 'forecast_title': "Previsioni di oggi", |
| 21 | + 'no_data': 'Nessun dato', |
| 22 | + 'forecast_unavailable': 'Previsioni non disponibili', |
| 23 | + 'weather': 'Meteo', |
| 24 | + 'language': 'Lingua', |
| 25 | + 'wind_unit_kmh': 'km/h', |
| 26 | + 'wind_unit_ms': 'm/s', |
| 27 | + 'demo': { |
| 28 | + 'pageTitle': '🌤️ Dynamic Weather Card', |
| 29 | + 'pageSubtitle': 'Demo interattiva & Strumento di configurazione', |
| 30 | + 'livePreview': 'Anteprima live', |
| 31 | + 'configuration': '⚙️ Configurazione', |
| 32 | + 'quickPresets': '🎨 Preset veloci', |
| 33 | + 'sunnyDay': 'Giornata Soleggiata', |
| 34 | + 'rainy': 'Piovoso', |
| 35 | + 'snowy': 'Nevoso', |
| 36 | + 'clearNight': 'Notte Serena', |
| 37 | + 'weatherCondition': '🌦️ Condizione Meteo', |
| 38 | + 'condition': 'Condizione', |
| 39 | + 'temperature': 'Temperatura (°C)', |
| 40 | + 'humidity': 'Umidità (%)', |
| 41 | + 'windSpeed': 'Velocità del Vento', |
| 42 | + 'timeOfDay': '🕐 Momento della giornata', |
| 43 | + 'timeMode': 'Modalità ora', |
| 44 | + 'autoTime': '🕐 Automatico (Ora corrente)', |
| 45 | + 'manualControl': '⏱️ Controllo manuale', |
| 46 | + 'sunrise': '🌅 Alba', |
| 47 | + 'day': '☀️ Giorno', |
| 48 | + 'sunset': '🌇 Tramonto', |
| 49 | + 'night': '🌙 Notte', |
| 50 | + 'currentTime': 'Ora corrente', |
| 51 | + 'displayOptions': '👁️ Opzioni di visualizzazione', |
| 52 | + 'cardName': 'Nome della card', |
| 53 | + 'height': 'Altezza (px)', |
| 54 | + 'feelsLike': 'Temperatura percepita', |
| 55 | + 'minTemp': 'Temperatura minima', |
| 56 | + 'windDirection': 'Direzione del vento', |
| 57 | + 'windGust': 'Raffiche di vento', |
| 58 | + 'hourlyForecast': 'Previsioni orarie', |
| 59 | + 'sunriseSunset': 'Alba/Tramonto', |
| 60 | + 'updateCard': '🔄 Aggiorna card', |
| 61 | + 'startDemo': '🎬 Avvia Demo', |
| 62 | + 'stopDemo': '⏹️ Ferma Demo', |
| 63 | + 'madeWith': 'Creato con ❤️ per Home Assistant', |
| 64 | + 'loading': '⏳ Caricamento card...', |
| 65 | + 'errorTitle': '⚠️ Impossibile caricare la card', |
| 66 | + 'errorDetails': 'Controlla la console del browser (F12) per i dettagli', |
| 67 | + 'errorServer': 'Assicurati che il file sia servito tramite server locale (non file://)', |
| 68 | + 'placeholderEmpty': 'Lascia vuoto per nascondere', |
| 69 | + 'weatherConditions': { |
| 70 | + 'sunny': '☀️ Soleggiato', |
| 71 | + 'clear': '☀️ Sereno', |
| 72 | + 'clearNight': '🌙 Notte Serena', |
| 73 | + 'partlyCloudy': '⛅ Parzialmente Nuvoloso', |
| 74 | + 'cloudy': '☁️ Nuvoloso', |
| 75 | + 'rainy': '🌧️ Piovoso', |
| 76 | + 'pouring': '⛈️ Pioggia Intensa', |
| 77 | + 'snowy': '❄️ Nevoso', |
| 78 | + 'sleet': '🌨️ Nevischio', |
| 79 | + 'hail': '🧊 Grandine', |
| 80 | + 'foggy': '🌫️ Nebbia', |
| 81 | + 'lightning': '⚡ Fulmine', |
| 82 | + 'thunderstorm': '⛈️ Temporale' |
| 83 | + }, |
| 84 | + 'language': { |
| 85 | + 'title': '🌍 Lingua', |
| 86 | + 'english': '🇺🇸 Inglese', |
| 87 | + 'russian': '🇷🇺 Russo', |
| 88 | + 'french': '🇫🇷 Francese', |
| 89 | + 'german': '🇩🇪 Tedesco', |
| 90 | + 'dutch': '🇳🇱 Olandese' |
| 91 | + 'italy': '🇮🇹 Italia' |
| 92 | + } |
| 93 | + } |
| 94 | +}; |
0 commit comments