forked from home-assistant/core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add icon translations support (home-assistant#103294)
Co-authored-by: Robert Resch <[email protected]> Co-authored-by: Paul Bottein <[email protected]>
- Loading branch information
1 parent
ed449a5
commit 0137202
Showing
21 changed files
with
886 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,178 @@ | ||
{ | ||
"entity_component": { | ||
"_": { | ||
"default": "mdi:radiobox-blank", | ||
"state": { | ||
"on": "mdi:checkbox-marked-circle" | ||
} | ||
}, | ||
"battery": { | ||
"default": "mdi:battery", | ||
"state": { | ||
"on": "mdi:battery-outline" | ||
} | ||
}, | ||
"battery_charging": { | ||
"default": "mdi:battery", | ||
"state": { | ||
"on": "mdi:battery-charging" | ||
} | ||
}, | ||
"carbon_monoxide": { | ||
"default": "mdi:smoke-detector", | ||
"state": { | ||
"on": "mdi:smoke-detector-alert" | ||
} | ||
}, | ||
"cold": { | ||
"default": "mdi:thermometer", | ||
"state": { | ||
"on": "mdi:snowflake" | ||
} | ||
}, | ||
"connectivity": { | ||
"default": "mdi:close-network-outline", | ||
"state": { | ||
"on": "mdi:check-network-outline" | ||
} | ||
}, | ||
"door": { | ||
"default": "mdi:door-closed", | ||
"state": { | ||
"on": "mdi:door-open" | ||
} | ||
}, | ||
"garage_door": { | ||
"default": "mdi:garage", | ||
"state": { | ||
"on": "mdi:garage-open" | ||
} | ||
}, | ||
"gas": { | ||
"default": "mdi:check-circle", | ||
"state": { | ||
"on": "mdi:alert-circle" | ||
} | ||
}, | ||
"heat": { | ||
"default": "mdi:thermometer", | ||
"state": { | ||
"on": "mdi:fire" | ||
} | ||
}, | ||
"light": { | ||
"default": "mdi:brightness-5", | ||
"state": { | ||
"on": "mdi:brightness-7" | ||
} | ||
}, | ||
"lock": { | ||
"default": "mdi:lock", | ||
"state": { | ||
"on": "mdi:lock-open" | ||
} | ||
}, | ||
"moisture": { | ||
"default": "mdi:water-off", | ||
"state": { | ||
"on": "mdi:water" | ||
} | ||
}, | ||
"motion": { | ||
"default": "mdi:motion-sensor-off", | ||
"state": { | ||
"on": "mdi:motion-sensor" | ||
} | ||
}, | ||
"moving": { | ||
"default": "mdi:arrow-right", | ||
"state": { | ||
"on": "mdi:octagon" | ||
} | ||
}, | ||
"occupancy": { | ||
"default": "mdi:home-outline", | ||
"state": { | ||
"on": "mdi:home" | ||
} | ||
}, | ||
"opening": { | ||
"default": "mdi:square", | ||
"state": { | ||
"on": "mdi:square-outline" | ||
} | ||
}, | ||
"plug": { | ||
"default": "mdi:power-plug-off", | ||
"state": { | ||
"on": "mdi:power-plug" | ||
} | ||
}, | ||
"power": { | ||
"default": "mdi:power-plug-off", | ||
"state": { | ||
"on": "mdi:power-plug" | ||
} | ||
}, | ||
"presence": { | ||
"default": "mdi:home-outline", | ||
"state": { | ||
"on": "mdi:home" | ||
} | ||
}, | ||
"problem": { | ||
"default": "mdi:check-circle", | ||
"state": { | ||
"on": "mdi:alert-circle" | ||
} | ||
}, | ||
"running": { | ||
"default": "mdi:stop", | ||
"state": { | ||
"on": "mdi:play" | ||
} | ||
}, | ||
"safety": { | ||
"default": "mdi:check-circle", | ||
"state": { | ||
"on": "mdi:alert-circle" | ||
} | ||
}, | ||
"smoke": { | ||
"default": "mdi:smoke-detector-variant", | ||
"state": { | ||
"on": "mdi:smoke-detector-variant-alert" | ||
} | ||
}, | ||
"sound": { | ||
"default": "mdi:music-note-off", | ||
"state": { | ||
"on": "mdi:music-note" | ||
} | ||
}, | ||
"tamper": { | ||
"default": "mdi:check-circle", | ||
"state": { | ||
"on": "mdi:alert-circle" | ||
} | ||
}, | ||
"update": { | ||
"default": "mdi:package", | ||
"state": { | ||
"on": "mdi:package-up" | ||
} | ||
}, | ||
"vibration": { | ||
"default": "mdi:crop-portrait", | ||
"state": { | ||
"on": "mdi:vibrate" | ||
} | ||
}, | ||
"window": { | ||
"default": "mdi:window-closed", | ||
"state": { | ||
"on": "mdi:window-open" | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
{ | ||
"entity": { | ||
"climate": { | ||
"ubercool": { | ||
"state_attributes": { | ||
"fan_mode": { | ||
"state": { | ||
"auto_high": "mdi:fan-auto", | ||
"auto_low": "mdi:fan-auto", | ||
"on_high": "mdi:fan-chevron-up", | ||
"on_low": "mdi:fan-chevron-down" | ||
} | ||
}, | ||
"swing_mode": { | ||
"state": { | ||
"1": "mdi:numeric-1", | ||
"2": "mdi:numeric-2", | ||
"3": "mdi:numeric-3", | ||
"auto": "mdi:arrow-oscillating", | ||
"off": "mdi:arrow-oscillating-off" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"number": { | ||
"volume": { | ||
"default": "mdi:volume-high" | ||
}, | ||
"pwm": { | ||
"default": "mdi:square-wave" | ||
}, | ||
"range": { | ||
"default": "mdi:square-wave" | ||
} | ||
}, | ||
"select": { | ||
"speed": { | ||
"state": { | ||
"light_speed": "mdi:speedometer-slow", | ||
"ludicrous_speed": "mdi:speedometer-medium", | ||
"ridiculous_speed": "mdi:speedometer" | ||
} | ||
} | ||
}, | ||
"sensor": { | ||
"thermostat_mode": { | ||
"state": { | ||
"away": "mdi:home-export-outline", | ||
"comfort": "mdi:home-account", | ||
"eco": "mdi:leaf", | ||
"sleep": "mdi:weather-night" | ||
} | ||
} | ||
}, | ||
"switch": { | ||
"air_conditioner": { | ||
"default": "mdi:air-conditioner" | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.