mirror of
https://github.com/jellyfin/jellyfin-roku.git
synced 2025-02-17 05:20:40 +00:00
Merge pull request #2017 from michaelcresswell/livetv-channel-name
This commit is contained in:
commit
033428b399
@ -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()
|
||||
|
@ -1371,5 +1371,10 @@
|
||||
<translation>Special</translation>
|
||||
<extracomment>Special episode of a TV Show</extracomment>
|
||||
</message>
|
||||
<message>
|
||||
<source>CH</source>
|
||||
<translation>CH</translation>
|
||||
<extracomment>Abbreviation for Channel</extracomment>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
Loading…
x
Reference in New Issue
Block a user