Rename Hive hub friendly name (#14747)

Right now, "Hub Status" is very generic, I didn't know what component it was coming from, and the only way to tell was searching the source code to find the reference.
This commit is contained in:
Steve Edson 2018-06-07 21:57:07 +01:00 committed by Paulus Schoutsen
parent 87d55834be
commit 10317a0f71

View File

@ -10,7 +10,7 @@ from homeassistant.helpers.entity import Entity
DEPENDENCIES = ['hive'] DEPENDENCIES = ['hive']
FRIENDLY_NAMES = {'Hub_OnlineStatus': 'Hub Status', FRIENDLY_NAMES = {'Hub_OnlineStatus': 'Hive Hub Status',
'Hive_OutsideTemperature': 'Outside Temperature'} 'Hive_OutsideTemperature': 'Outside Temperature'}
DEVICETYPE_ICONS = {'Hub_OnlineStatus': 'mdi:switch', DEVICETYPE_ICONS = {'Hub_OnlineStatus': 'mdi:switch',
'Hive_OutsideTemperature': 'mdi:thermometer'} 'Hive_OutsideTemperature': 'mdi:thermometer'}