From 01b19c688912a8d0fe6a744f7d9a686c054fc431 Mon Sep 17 00:00:00 2001 From: epenet <6771947+epenet@users.noreply.github.com> Date: Wed, 19 Oct 2022 14:52:25 +0200 Subject: [PATCH] Rename Imperial to US Customary (#24612) * Rename Imperial to US Customary * Update configuration.markdown * Update splitting_configuration.markdown --- source/_docs/configuration/basic.markdown | 4 ++-- source/_docs/configuration/splitting_configuration.markdown | 4 ++-- source/getting-started/configuration.markdown | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/source/_docs/configuration/basic.markdown b/source/_docs/configuration/basic.markdown index 495d4a0f2754..0b2fef45192b 100644 --- a/source/_docs/configuration/basic.markdown +++ b/source/_docs/configuration/basic.markdown @@ -3,7 +3,7 @@ title: "Setup basic information" description: "Setting up the basic info of Home Assistant." --- -As part of the default onboarding process, Home Assistant can detect your location from IP address geolocation. Home Assistant will automatically select a temperature unit and time zone based on this location. You may adjust this during onboarding, or afterwards at {% my general title="Settings > System > General" %}. +As part of the default onboarding process, Home Assistant can detect your location from IP address geolocation. Home Assistant will automatically select a unit system and time zone based on this location. You may adjust this during onboarding, or afterwards at {% my general title="Settings > System > General" %}. If you prefer YAML, you can add the following information to your `configuration.yaml`: @@ -53,7 +53,7 @@ elevation: required: false type: integer unit_system: - description: "`metric` for Metric, `imperial` for Imperial. This also sets temperature_unit, Celsius for Metric and Fahrenheit for Imperial" + description: "`metric` for Metric, `us_customary` for US Customary. This also sets temperature_unit, Celsius for Metric and Fahrenheit for US Customary" required: false type: string temperature_unit: diff --git a/source/_docs/configuration/splitting_configuration.markdown b/source/_docs/configuration/splitting_configuration.markdown index 234cc07369e6..400ee579658d 100644 --- a/source/_docs/configuration/splitting_configuration.markdown +++ b/source/_docs/configuration/splitting_configuration.markdown @@ -20,8 +20,8 @@ homeassistant: # Location required to calculate the time the sun rises and sets latitude: 37 longitude: -121 - # 'metric' for Metric, 'imperial' for Imperial - unit_system: imperial + # 'metric' for Metric, 'us_customary' for US Customary + unit_system: us_customary # Pick yours from here: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones time_zone: "America/Los_Angeles" customize: !include customize.yaml diff --git a/source/getting-started/configuration.markdown b/source/getting-started/configuration.markdown index 3043e234b6b4..857bf2724173 100644 --- a/source/getting-started/configuration.markdown +++ b/source/getting-started/configuration.markdown @@ -31,12 +31,12 @@ Now let's make a change using the file editor: we are going to change the name, name: Home latitude: xx.xxxx longitude: xx.xxxx - unit_system: imperial + unit_system: us_customary time_zone: America/Chicago ```
- Valid options for `unit_system` are `imperial` or `metric`. See [here](https://timezonedb.com/time-zones) for a list of valid time zones. Enter the appropriate option found under the Time Zone column at that page. + Valid options for `unit_system` are `us_customary` or `metric`. See [here](https://timezonedb.com/time-zones) for a list of valid time zones. Enter the appropriate option found under the Time Zone column at that page.