1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
OC.L10N.register(
"weather_status",
{
"Unknown address" : "Indirizzo sconosciuto",
"No result." : "Nessun risultato.",
"Malformed JSON data." : "Dati JSON non validi.",
"Error" : "Errore",
"Weather status" : "Stato meteo",
"Weather status in your dashboard" : "Stato meteo nel tuo cruscotto",
"Weather status integrated in the Dashboard app.\n The geographic location can be automatically determined or manually defined. A 6 hours forecast is then displayed.\n This status can also be integrated in other places like the Calendar app." : "Meteo integrato nell'applicazione del cruscotto.\n La posizione geografica può essere determinata automaticamente o definita a mano. Vengono poi mostrate previsioni per 6 ore.\n Questo stato può anche essere integrato in altri posti come nell'applicazione Calendario.",
"Detect location" : "Elimina località",
"Set custom address" : "Imposta indirizzo personalizzato",
"Favorites" : "Preferiti",
"{temperature} {unit} clear sky later today" : "{temperature} {unit} cielo sereno più tardi in giornata",
"{temperature} {unit} clear sky" : "{temperature} {unit} cielo sereno",
"{temperature} {unit} cloudy later today" : "{temperature} {unit} nuvoloso più tardi in giornata",
"{temperature} {unit} cloudy" : "{temperature} {unit} nuvoloso",
"{temperature} {unit} snow later today" : "{temperature} {unit} neve più tardi oggi",
"{temperature} {unit} snow" : "{temperature} {unit} neve",
"{temperature} {unit} fair weather later today" : "{temperature} {unit} bel tempo più tardi in giornata",
"{temperature} {unit} fair weather" : "{temperature} {unit} bel tempo",
"{temperature} {unit} partly cloudy later today" : "{temperature} {unit} parzialmente nuvoloso più tardi in giornata",
"{temperature} {unit} partly cloudy" : "{temperature} {unit} parzialmente nuvoloso",
"{temperature} {unit} foggy later today" : "{temperature} {unit} nebbioso più tardi in giornata",
"{temperature} {unit} foggy" : "{temperature} {unit} nebbioso",
"{temperature} {unit} light rainfall later today" : "{temperature} {unit} deboli precipitazioni più tardi oggi",
"{temperature} {unit} light rainfall" : "{temperature} {unit} precipitazioni deboli",
"{temperature} {unit} rainfall later today" : "{temperature} {unit} pioggia più tardi oggi",
"{temperature} {unit} rainfall" : "{temperature} {unit} precipitazioni",
"{temperature} {unit} heavy rainfall later today" : "{temperature} {unit} forti precipitazioni più tardi oggi",
"{temperature} {unit} heavy rainfall" : "{temperature} {unit} forti precipitazioni",
"{temperature} {unit} rainfall showers later today" : "{temperature} {unit} rovesci di pioggia più tardi oggi",
"{temperature} {unit} rainfall showers" : "{temperature} {unit} rovesci di pioggia",
"{temperature} {unit} light rainfall showers later today" : "{temperature} {unit} deboli rovesci di pioggia più tardi oggi",
"{temperature} {unit} light rainfall showers" : "{temperature} {unit} deboli rovesci di pioggia",
"{temperature} {unit} heavy rainfall showers later today" : "{temperature} {unit} forti rovesci di pioggia più tardi oggi",
"{temperature} {unit} heavy rainfall showers" : "{temperature} {unit} forti rovesci di pioggia",
"More weather for {adr}" : "Altro meteo per {adr}",
"Loading weather" : "Caricamento meteo",
"Set location for weather" : "Imposta la località per il meteo",
"Remove from favorites" : "Rimuovi dai preferiti",
"Add as favorite" : "Aggiungi come preferito",
"You are not logged in." : "Accesso non effettuato.",
"There was an error getting the weather status information." : "Si è verificato un errore durante il recupero delle informazioni meteo.",
"No weather information found" : "Nessuna informazione meteo trovata",
"Location not found" : "Località non trovata",
"There was an error setting the location address." : "Si è verificato un errore impostando l'indirizzo della località.",
"There was an error setting the location." : "Si è verificato un errore durante l'impostazione della località.",
"There was an error saving the mode." : "Si è verificato un errore durante il salvataggio della modalità.",
"There was an error using personal address." : "Si è verificato un errore usando l'indirizzo personale.",
"Unknown weather code" : "Codice meteo sconosciuto",
"Weather status integrated in the Dashboard app.\n User's position can be automatically determined or manually defined. A 6 hours forecast is then displayed.\n This status can also be integrated in other places like the Calendar app." : "Meteo integrato nell'applicazione del cruscotto.\n La posizione dell'utente può essere determinata automaticamente o definita a mano. Vengono poi mostrate previsioni per 6 ore.\n Questo stato può anche essere integrato in altri posti come nell'applicazione Calendario."
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|