Skip to content

Commit

Permalink
Merge pull request #2 from daneedk/master
Browse files Browse the repository at this point in the history
Added translations
  • Loading branch information
WillooWisp authored Mar 7, 2019
2 parents d3ec1d2 + 5eb1476 commit db672a8
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 20 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Adds support for WeatherFlow's Smart Weather Station

# Changelog

* 0.3.1 Added Dutch and German translation
* 0.3.0 Removed daily rain since not reported through WeatherFlow's UDP API.
* 0.2.1 Fixed bug in rain sensor reading.
* 0.2.0 Added more sensor readings on both Air and Sky devices. Air and Sky devices must be removed and added again in order for the new sensor readings to show up. Flow triggers and conditions added for rain started and wind above/below specified threshold.
Expand Down
72 changes: 52 additions & 20 deletions app.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
{
"id": "com.weatherflow.smartweatherstation",
"version": "0.3.0",
"version": "0.3.1",
"compatibility": ">=1.5.0",
"sdk": 2,
"brandColor": "#3077BF",
"name": {
"en": "Smart Weather Station"
},
"description": {
"en": "Adds support for WeatherFlow's Smart Weather Station"
"en": "Adds support for WeatherFlow's Smart Weather Station",
"nl": "Voegt ondersteuning voor WeatherFlow's Smart Weather Station toe",
"de": "Unterstützung für WeatherFlow's Smart Weather Station"
},
"tags": {
"en": [
"weatherflow smart weather temperature rain wind sensor"
]
"en": [ "weatherflow", "smart", "weather", "temperature", "rain", "wind", "lightning", "sensor" ],
"nl": [ "weatherflow", "slim" , "weer", "temperatuur", "regen", "wind", "Bliksem", "sensor" ],
"de": [ "Weaterhflow", "Smart", "Wetter", "Temperatur", "Regen", "Wind", "Blitz", "Sensor" ]
},
"category": [
"climate"
Expand All @@ -39,13 +41,17 @@
"measure_uv": {
"type": "number",
"title": {
"en": "UV"
"en": "UV",
"nl": "UV",
"de": "UV"
},
"getable": true,
"setable": false,
"decimals": 0,
"units": {
"en": "index"
"en": "index",
"nl": "index",
"de": "Index"
},
"uiComponent": "sensor",
"uiQuickAction": false,
Expand All @@ -54,13 +60,17 @@
"measure_solarradiation": {
"type": "number",
"title": {
"en": "Solar Radiation"
"en": "Solar Radiation",
"nl": "Zonnestraling",
"de": "Sonnenstrahlung"
},
"getable": true,
"setable": false,
"decimals": 2,
"units": {
"en": "W/m^2"
"en": "W/m^2",
"nl": "W/m^2",
"de": "W/m^2"
},
"uiComponent": "sensor",
"uiQuickAction": false,
Expand All @@ -69,13 +79,17 @@
"measure_lightningstrike_count": {
"type": "number",
"title": {
"en": "Lightning Strike Count"
"en": "Lightning Strike Count",
"nl": "Bikseminslag telling",
"de": "Blitzschlagzählung"
},
"getable": true,
"setable": false,
"decimals": 0,
"units": {
"en": ""
"en": "",
"nl": "",
"de": ""
},
"uiComponent": "sensor",
"uiQuickAction": false,
Expand All @@ -84,13 +98,17 @@
"measure_lightningstrike_distance": {
"type": "number",
"title": {
"en": "Lightning Strike Distance"
"en": "Lightning Strike Distance",
"nl": "Afstand Bliksem inslag ",
"de": "Blitzschlag-Entfernung"
},
"getable": true,
"setable": false,
"decimals": 2,
"units": {
"en": "km"
"en": "km",
"nl": "km",
"de": "km"
},
"uiComponent": "sensor",
"uiQuickAction": false,
Expand All @@ -101,7 +119,9 @@
{
"id": "air",
"name": {
"en": "Air"
"en": "Air",
"nl": "Air",
"de": "Air"
},
"class": "sensor",
"capabilities": [
Expand Down Expand Up @@ -136,7 +156,9 @@
{
"id": "sky",
"name": {
"en": "Sky"
"en": "Sky",
"nl": "Sky",
"de": "Sky"
},
"class": "sensor",
"capabilities": [
Expand Down Expand Up @@ -176,7 +198,9 @@
{
"id": "rain_start",
"title": {
"en": "It starts raining"
"en": "It starts raining",
"nl": "Het begint te regenen",
"de": "Es beginnt zu regnen"
},
"args": [
{
Expand All @@ -189,7 +213,9 @@
{
"id": "wind_above",
"title": {
"en": "It is more wind than..."
"en": "It is more wind than...",
"nl": "Het waait harder dan...",
"de": "Es bläst härter als ..."
},
"args": [
{
Expand All @@ -211,7 +237,9 @@
{
"id": "wind_below",
"title": {
"en": "It is less wind than..."
"en": "It is less wind than...",
"nl": "Het waait minder hard dan...",
"de": "Es weht weniger als..."
},
"args": [
{
Expand All @@ -235,7 +263,9 @@
{
"id": "is_raining",
"title": {
"en": "It !{{is|isn't}} raining"
"en": "It !{{is|isn't}} raining",
"nl": "Het regent !{{ |niet}}",
"de": "es regnet !{{ |nicht}}"
},
"args": [
{
Expand All @@ -248,7 +278,9 @@
{
"id": "is_windy",
"title": {
"en": "It !{{is|isn't}} windy"
"en": "It !{{is|isn't}} windy",
"nl": "Het waait !{{ |niet}}",
"de": "Es weht !{{ |nicht}}"
},
"args": [
{
Expand Down

0 comments on commit db672a8

Please sign in to comment.