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.

Revert "show "SOURCE" if the subtitle is a source subtitle"

This reverts commit f507cadf010817dca8ba2651b11b1baa6c6983cc.

Pas 7de37b96 f507cadf

+1 -6
-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", 853 852 "OpenSubtitlesChoice": "External Subtitles", 854 853 "loadingExternal": "Loading external subtitles...", 855 854 "transcriptChoice": "Transcript",
+1 -5
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")} 217 213 </span> 218 214 )} 219 215 {props.isHearingImpaired && (