Use common state for "Manual", unify intercardinal directions in netatmo (#143062)

In US English the intercardinal directions (Northeast, Southwest, etc.) are written in single words, not using hyphens. That can be adapted in Lokalise for Home Assistant's "English (United Kingdom)" UI language.

Making them identical in both occurrences also resolves the missing sentence-casing of "North-East" etc.
This commit is contained in:
Norbert Rittel 2025-04-16 20:44:24 +02:00 committed by GitHub
parent e901dc4ec4
commit 0ec4652b52
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -29,10 +29,10 @@
"public_weather": { "public_weather": {
"data": { "data": {
"area_name": "Name of the area", "area_name": "Name of the area",
"lat_ne": "North-East corner latitude", "lat_ne": "Northeast corner latitude",
"lon_ne": "North-East corner longitude", "lon_ne": "Northeast corner longitude",
"lat_sw": "South-West corner latitude", "lat_sw": "Southwest corner latitude",
"lon_sw": "South-West corner longitude", "lon_sw": "Southwest corner longitude",
"mode": "Calculation", "mode": "Calculation",
"show_on_map": "Show on map" "show_on_map": "Show on map"
}, },
@ -175,7 +175,7 @@
"state": { "state": {
"frost_guard": "Frost guard", "frost_guard": "Frost guard",
"schedule": "Schedule", "schedule": "Schedule",
"manual": "Manual" "manual": "[%key:common::state::manual%]"
} }
} }
} }
@ -206,13 +206,13 @@
"name": "Wind direction", "name": "Wind direction",
"state": { "state": {
"n": "North", "n": "North",
"ne": "North-east", "ne": "Northeast",
"e": "East", "e": "East",
"se": "South-east", "se": "Southeast",
"s": "South", "s": "South",
"sw": "South-west", "sw": "Southwest",
"w": "West", "w": "West",
"nw": "North-west" "nw": "Northwest"
} }
}, },
"wind_angle": { "wind_angle": {