diff --git a/src/panels/profile/ha-pick-dashboard-row.ts b/src/panels/profile/ha-pick-dashboard-row.ts
index 482ce1969b..544c7296cc 100644
--- a/src/panels/profile/ha-pick-dashboard-row.ts
+++ b/src/panels/profile/ha-pick-dashboard-row.ts
@@ -43,7 +43,11 @@ class HaPickDashboardRow extends LitElement {
@iron-select=${this._dashboardChanged}
attr-for-selected="url-path"
>
- default
+ ${this.hass.localize(
+ "ui.panel.profile.dashboard.default_dashboard_label"
+ )}
${this._dashboards.map((dashboard) => {
if (!this.hass.user!.is_admin && dashboard.require_admin) {
return "";
diff --git a/src/translations/en.json b/src/translations/en.json
index 30caecee09..079233c5c5 100755
--- a/src/translations/en.json
+++ b/src/translations/en.json
@@ -1288,7 +1288,7 @@
"confirm_delete_title": "Delete {dashboard_title}?",
"confirm_delete_text": "Your dashboard will be permanently deleted.",
"cant_edit_yaml": "Dashboards defined in YAML cannot be edited from the UI. Change them in configuration.yaml.",
- "cant_edit_default": "The standard Lovelace dashboard cannot be edited from the UI. You can hide it by setting another dashboard as default.",
+ "cant_edit_default": "The default Lovelace dashboard, Overview, cannot be edited from the UI. You can hide it by setting another dashboard as default.",
"detail": {
"edit_dashboard": "Edit dashboard",
"new_dashboard": "Add new dashboard",
@@ -3592,7 +3592,8 @@
"dashboard": {
"header": "Dashboard",
"description": "Pick a default dashboard for this device.",
- "dropdown_label": "Dashboard"
+ "dropdown_label": "Dashboard",
+ "default_dashboard_label": "Overview (default)"
},
"change_password": {
"header": "Change Password",