diff --git a/src/panels/lovelace/cards/energy/hui-energy-sources-table-card.ts b/src/panels/lovelace/cards/energy/hui-energy-sources-table-card.ts
index 5c1b21a992..136d4fd81c 100644
--- a/src/panels/lovelace/cards/energy/hui-energy-sources-table-card.ts
+++ b/src/panels/lovelace/cards/energy/hui-energy-sources-table-card.ts
@@ -538,7 +538,11 @@ export class HuiEnergySourcesTableCard
${types.gas
? html`
|
- Gas total |
+
+ ${this.hass.localize(
+ "ui.panel.lovelace.cards.energy.energy_sources_table.gas_total"
+ )}
+ |
diff --git a/src/translations/en.json b/src/translations/en.json
index e804716cf5..034810a867 100755
--- a/src/translations/en.json
+++ b/src/translations/en.json
@@ -3145,6 +3145,7 @@
},
"energy_sources_table": {
"grid_total": "Grid total",
+ "gas_total": "Gas total",
"source": "Source",
"energy": "Energy",
"cost": "Cost",
|