pstream is dead; long live pstream taciturnaxolotl.github.io/pstream-ng/
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

show "SOURCE" if the subtitle is a source subtitle

Pas f507cadf 3a909eb3

+6 -1
+1
src/assets/locales/en.json
··· 849 849 "autoSelectChoice": "Auto select", 850 850 "autoSelectDifferentChoice": "Tap again to auto select different subtitle", 851 851 "SourceChoice": "Source Subtitles", 852 + "source": "SOURCE", 852 853 "OpenSubtitlesChoice": "External Subtitles", 853 854 "loadingExternal": "Loading external subtitles...", 854 855 "transcriptChoice": "Transcript",
+5 -1
src/components/player/atoms/settings/CaptionsView.tsx
··· 197 197 {props.subtitleType.toUpperCase()} 198 198 </span> 199 199 )} 200 - {props.subtitleSource && ( 200 + {props.subtitleSource ? ( 201 201 <span 202 202 className={classNames( 203 203 "ml-2 px-2 py-0.5 rounded text-white text-xs font-semibold overflow-hidden text-ellipsis whitespace-nowrap", ··· 210 210 )} 211 211 > 212 212 {props.subtitleSource.toUpperCase()} 213 + </span> 214 + ) : ( 215 + <span className="ml-2 px-2 py-0.5 rounded text-white text-xs font-semibold overflow-hidden text-ellipsis whitespace-nowrap bg-grey-500"> 216 + {t("player.menus.subtitles.source")} 213 217 </span> 214 218 )} 215 219 {props.isHearingImpaired && (