Add longitude and latitude common strings (#40963)
parent
e0d14603f1
commit
480066ba63
|
@ -7,8 +7,8 @@
|
|||
"data": {
|
||||
"name": "Name of the integration",
|
||||
"api_key": "[%key:common::config_flow::data::api_key%]",
|
||||
"latitude": "Latitude",
|
||||
"longitude": "Longitude"
|
||||
"latitude": "[%key:common::config_flow::data::latitude%]",
|
||||
"longitude": "[%key:common::config_flow::data::longitude%]"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
@ -7,8 +7,8 @@
|
|||
"data": {
|
||||
"name": "Name of the integration",
|
||||
"api_key": "[%key:common::config_flow::data::api_key%]",
|
||||
"latitude": "Latitude",
|
||||
"longitude": "Longitude"
|
||||
"latitude": "[%key:common::config_flow::data::latitude%]",
|
||||
"longitude": "[%key:common::config_flow::data::longitude%]"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
"description": "Use the AirVisual cloud API to monitor a geographical location.",
|
||||
"data": {
|
||||
"api_key": "[%key:common::config_flow::data::api_key%]",
|
||||
"latitude": "Latitude",
|
||||
"longitude": "Longitude"
|
||||
"latitude": "[%key:common::config_flow::data::latitude%]",
|
||||
"longitude": "[%key:common::config_flow::data::longitude%]"
|
||||
}
|
||||
},
|
||||
"node_pro": {
|
||||
|
|
|
@ -4,7 +4,10 @@
|
|||
"user": {
|
||||
"title": "Configure Flu Near You",
|
||||
"description": "Monitor user-based and CDC repots for a pair of coordinates.",
|
||||
"data": { "latitude": "Latitude", "longitude": "Longitude" }
|
||||
"data": {
|
||||
"latitude": "[%key:common::config_flow::data::latitude%]",
|
||||
"longitude": "[%key:common::config_flow::data::longitude%]"
|
||||
}
|
||||
}
|
||||
},
|
||||
"error": { "general_error": "There was an unknown error." },
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
"description": "Instituto Portugu\u00eas do Mar e Atmosfera",
|
||||
"data": {
|
||||
"name": "Name",
|
||||
"latitude": "Latitude",
|
||||
"longitude": "Longitude",
|
||||
"latitude": "[%key:common::config_flow::data::latitude%]",
|
||||
"longitude": "[%key:common::config_flow::data::longitude%]",
|
||||
"mode": "Mode"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
"description": "Meteorologisk institutt",
|
||||
"data": {
|
||||
"name": "Name",
|
||||
"latitude": "Latitude",
|
||||
"longitude": "Longitude",
|
||||
"latitude": "[%key:common::config_flow::data::latitude%]",
|
||||
"longitude": "[%key:common::config_flow::data::longitude%]",
|
||||
"elevation": "Elevation"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
"title": "Connect to the UK Met Office",
|
||||
"data": {
|
||||
"api_key": "Met Office DataPoint API key",
|
||||
"latitude": "Latitude",
|
||||
"longitude": "Longitude"
|
||||
"latitude": "[%key:common::config_flow::data::latitude%]",
|
||||
"longitude": "[%key:common::config_flow::data::longitude%]"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
"title": "Connect to the National Weather Service",
|
||||
"data": {
|
||||
"api_key": "[%key:common::config_flow::data::api_key%]",
|
||||
"latitude": "Latitude",
|
||||
"longitude": "Longitude",
|
||||
"latitude": "[%key:common::config_flow::data::latitude%]",
|
||||
"longitude": "[%key:common::config_flow::data::longitude%]",
|
||||
"station": "METAR station code"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
"data": {
|
||||
"api_key": "[%key:common::config_flow::data::api_key%]",
|
||||
"elevation": "Elevation",
|
||||
"latitude": "Latitude",
|
||||
"longitude": "Longitude"
|
||||
"latitude": "[%key:common::config_flow::data::latitude%]",
|
||||
"longitude": "[%key:common::config_flow::data::longitude%]"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
@ -12,8 +12,8 @@
|
|||
"data": {
|
||||
"api_key": "OpenWeatherMap API key",
|
||||
"language": "Language",
|
||||
"latitude": "Latitude",
|
||||
"longitude": "Longitude",
|
||||
"latitude": "[%key:common::config_flow::data::latitude%]",
|
||||
"longitude": "[%key:common::config_flow::data::longitude%]",
|
||||
"mode": "Mode",
|
||||
"name": "Name of the integration"
|
||||
},
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
"title": "Location in Sweden",
|
||||
"data": {
|
||||
"name": "Name",
|
||||
"latitude": "Latitude",
|
||||
"longitude": "Longitude"
|
||||
"latitude": "[%key:common::config_flow::data::latitude%]",
|
||||
"longitude": "[%key:common::config_flow::data::longitude%]"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
@ -34,7 +34,9 @@
|
|||
"url": "URL",
|
||||
"usb_path": "USB Device Path",
|
||||
"access_token": "Access Token",
|
||||
"api_key": "API Key"
|
||||
"api_key": "API Key",
|
||||
"longitude": "Longitude",
|
||||
"latitude": "Latitude"
|
||||
},
|
||||
"create_entry": {
|
||||
"authenticated": "Successfully authenticated"
|
||||
|
|
Loading…
Reference in New Issue