diff --git a/homeassistant/components/shelly/config_flow.py b/homeassistant/components/shelly/config_flow.py
index 612e2be0a749d5b0b3b15b8cb54cfd243d0873f5..0979e6e036a53adf06d14314073afe6dd0b1ef27 100644
--- a/homeassistant/components/shelly/config_flow.py
+++ b/homeassistant/components/shelly/config_flow.py
@@ -21,11 +21,7 @@ from homeassistant.const import CONF_HOST, CONF_PASSWORD, CONF_USERNAME
 from homeassistant.core import HomeAssistant, callback
 from homeassistant.data_entry_flow import FlowResult
 from homeassistant.helpers.aiohttp_client import async_get_clientsession
-from homeassistant.helpers.selector import (
-    SelectOptionDict,
-    SelectSelector,
-    SelectSelectorConfig,
-)
+from homeassistant.helpers.selector import SelectSelector, SelectSelectorConfig
 
 from .const import (
     BLE_MIN_VERSION,
@@ -53,9 +49,9 @@ HOST_SCHEMA: Final = vol.Schema({vol.Required(CONF_HOST): str})
 
 
 BLE_SCANNER_OPTIONS = [
-    SelectOptionDict(value=BLEScannerMode.DISABLED, label="Disabled"),
-    SelectOptionDict(value=BLEScannerMode.ACTIVE, label="Active"),
-    SelectOptionDict(value=BLEScannerMode.PASSIVE, label="Passive"),
+    BLEScannerMode.DISABLED,
+    BLEScannerMode.ACTIVE,
+    BLEScannerMode.PASSIVE,
 ]
 
 INTERNAL_WIFI_AP_IP = "192.168.33.1"
@@ -403,7 +399,10 @@ class OptionsFlowHandler(OptionsFlow):
                             CONF_BLE_SCANNER_MODE, BLEScannerMode.DISABLED
                         ),
                     ): SelectSelector(
-                        SelectSelectorConfig(options=BLE_SCANNER_OPTIONS),
+                        SelectSelectorConfig(
+                            options=BLE_SCANNER_OPTIONS,
+                            translation_key=CONF_BLE_SCANNER_MODE,
+                        ),
                     ),
                 }
             ),
diff --git a/homeassistant/components/shelly/strings.json b/homeassistant/components/shelly/strings.json
index 9f67ed0181d4587810600f13aa57caf68b6f2986..1f05364ca3e25245b9503637a4bf1498db59cfd2 100644
--- a/homeassistant/components/shelly/strings.json
+++ b/homeassistant/components/shelly/strings.json
@@ -71,5 +71,14 @@
     "abort": {
       "ble_unsupported": "Bluetooth support requires firmware version {ble_min_version} or newer."
     }
+  },
+  "selector": {
+    "ble_scanner_mode": {
+      "options": {
+        "disabled": "Disabled",
+        "active": "Active",
+        "passive": "Passive"
+      }
+    }
   }
 }
diff --git a/homeassistant/components/shelly/translations/en.json b/homeassistant/components/shelly/translations/en.json
index d6e41c0d1181f05c347b3334035f74bd74c4c9db..302cb71f4825bc311fd856636d74f7c5e332ac0e 100644
--- a/homeassistant/components/shelly/translations/en.json
+++ b/homeassistant/components/shelly/translations/en.json
@@ -71,5 +71,14 @@
                 "description": "Bluetooth scanning can be active or passive. With active, the Shelly requests data from nearby devices; with passive, the Shelly receives unsolicited data from nearby devices."
             }
         }
+    },
+    "selector": {
+        "ble_scanner_mode": {
+            "options": {
+                "disabled": "Disabled",
+                "active": "Active",
+                "passive": "Passive"
+            }
+        }
     }
 }
\ No newline at end of file