diff --git a/components/data/ChannelData.bs b/components/data/ChannelData.bs
index ff4ec8189..e9bc35f01 100644
--- a/components/data/ChannelData.bs
+++ b/components/data/ChannelData.bs
@@ -5,7 +5,11 @@ import "pkg:/source/utils/config.bs"
sub setFields()
json = m.top.json
m.top.id = json.id
- m.top.title = json.name
+ if isValid(json.number)
+ m.top.title = `${tr("CH")} ${json.number} ${json.name}`
+ else
+ m.top.title = json.name
+ end if
m.top.live = true
m.top.Type = "TvChannel"
setPoster()
diff --git a/locale/en_US/translations.ts b/locale/en_US/translations.ts
index 14445ef91..2bfc46dc0 100644
--- a/locale/en_US/translations.ts
+++ b/locale/en_US/translations.ts
@@ -1371,5 +1371,10 @@
Special
Special episode of a TV Show
+
+
+ CH
+ Abbreviation for Channel
+
\ No newline at end of file