// @flow import React from 'react'; import DateTime from 'component/dateTime'; import FileViewCount from 'component/fileViewCount'; import FileActions from 'component/fileActions'; type Props = { uri: string, livestream?: boolean, activeViewers?: number, stateOfViewers: string, }; function FileSubtitle(props: Props) { const { uri, livestream = false, activeViewers = 0, stateOfViewers } = props; return (
{livestream ? {__('Right now')} : } {livestream ? ( {__('%viewer_count% currently %viewer_state%', { viewer_count: activeViewers, viewer_state: stateOfViewers })} ) : ( )}
); } export default FileSubtitle;