[Glitch] Change labels of live feeds tabs in web UI
Port 54a10523e2 to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
			
			
This commit is contained in:
		
							parent
							
								
									5de49e74d4
								
							
						
					
					
						commit
						0a5271629c
					
				| 
						 | 
					@ -154,12 +154,13 @@ const Firehose = ({ feedType, multiColumn }) => {
 | 
				
			||||||
      />
 | 
					      />
 | 
				
			||||||
    </DismissableBanner>
 | 
					    </DismissableBanner>
 | 
				
			||||||
  ) : (
 | 
					  ) : (
 | 
				
			||||||
   <DismissableBanner id='public_timeline'>
 | 
					    <DismissableBanner id='public_timeline'>
 | 
				
			||||||
     <FormattedMessage
 | 
					      <FormattedMessage
 | 
				
			||||||
       id='dismissable_banner.public_timeline'
 | 
					        id='dismissable_banner.public_timeline'
 | 
				
			||||||
       defaultMessage='These are the most recent public posts from people on this and other servers of the decentralized network that this server knows about.'
 | 
					        defaultMessage='These are the most recent public posts from people on the social web that people on {domain} follow.'
 | 
				
			||||||
     />
 | 
					        values={{ domain }}
 | 
				
			||||||
   </DismissableBanner>
 | 
					      />
 | 
				
			||||||
 | 
					    </DismissableBanner>
 | 
				
			||||||
  );
 | 
					  );
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  const emptyMessage = feedType === 'community' ? (
 | 
					  const emptyMessage = feedType === 'community' ? (
 | 
				
			||||||
| 
						 | 
					@ -168,10 +169,10 @@ const Firehose = ({ feedType, multiColumn }) => {
 | 
				
			||||||
      defaultMessage='The local timeline is empty. Write something publicly to get the ball rolling!'
 | 
					      defaultMessage='The local timeline is empty. Write something publicly to get the ball rolling!'
 | 
				
			||||||
    />
 | 
					    />
 | 
				
			||||||
  ) : (
 | 
					  ) : (
 | 
				
			||||||
   <FormattedMessage
 | 
					    <FormattedMessage
 | 
				
			||||||
     id='empty_column.public'
 | 
					      id='empty_column.public'
 | 
				
			||||||
     defaultMessage='There is nothing here! Write something publicly, or manually follow users from other servers to fill it up'
 | 
					      defaultMessage='There is nothing here! Write something publicly, or manually follow users from other servers to fill it up'
 | 
				
			||||||
   />
 | 
					    />
 | 
				
			||||||
  );
 | 
					  );
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  return (
 | 
					  return (
 | 
				
			||||||
| 
						 | 
					@ -190,11 +191,11 @@ const Firehose = ({ feedType, multiColumn }) => {
 | 
				
			||||||
      <div className='scrollable scrollable--flex'>
 | 
					      <div className='scrollable scrollable--flex'>
 | 
				
			||||||
        <div className='account__section-headline'>
 | 
					        <div className='account__section-headline'>
 | 
				
			||||||
          <NavLink exact to='/public/local'>
 | 
					          <NavLink exact to='/public/local'>
 | 
				
			||||||
            <FormattedMessage tagName='div' id='firehose.local' defaultMessage='Local' />
 | 
					            <FormattedMessage tagName='div' id='firehose.local' defaultMessage='This server' />
 | 
				
			||||||
          </NavLink>
 | 
					          </NavLink>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
          <NavLink exact to='/public/remote'>
 | 
					          <NavLink exact to='/public/remote'>
 | 
				
			||||||
            <FormattedMessage tagName='div' id='firehose.remote' defaultMessage='Remote' />
 | 
					            <FormattedMessage tagName='div' id='firehose.remote' defaultMessage='Other servers' />
 | 
				
			||||||
          </NavLink>
 | 
					          </NavLink>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
          <NavLink exact to='/public'>
 | 
					          <NavLink exact to='/public'>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -13,6 +13,7 @@ import { expandPublicTimeline } from 'flavours/glitch/actions/timelines';
 | 
				
			||||||
import Column from 'flavours/glitch/components/column';
 | 
					import Column from 'flavours/glitch/components/column';
 | 
				
			||||||
import ColumnHeader from 'flavours/glitch/components/column_header';
 | 
					import ColumnHeader from 'flavours/glitch/components/column_header';
 | 
				
			||||||
import DismissableBanner from 'flavours/glitch/components/dismissable_banner';
 | 
					import DismissableBanner from 'flavours/glitch/components/dismissable_banner';
 | 
				
			||||||
 | 
					import { domain } from 'flavours/glitch/initial_state';
 | 
				
			||||||
import StatusListContainer from 'flavours/glitch/features/ui/containers/status_list_container';
 | 
					import StatusListContainer from 'flavours/glitch/features/ui/containers/status_list_container';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import ColumnSettingsContainer from './containers/column_settings_container';
 | 
					import ColumnSettingsContainer from './containers/column_settings_container';
 | 
				
			||||||
| 
						 | 
					@ -147,7 +148,7 @@ class PublicTimeline extends PureComponent {
 | 
				
			||||||
        </ColumnHeader>
 | 
					        </ColumnHeader>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <StatusListContainer
 | 
					        <StatusListContainer
 | 
				
			||||||
          prepend={<DismissableBanner id='public_timeline'><FormattedMessage id='dismissable_banner.public_timeline' defaultMessage='These are the most recent public posts from people on this and other servers of the decentralized network that this server knows about.' /></DismissableBanner>}
 | 
					          prepend={<DismissableBanner id='public_timeline'><FormattedMessage id='dismissable_banner.public_timeline' defaultMessage='These are the most recent public posts from people on the social web that people on {domain} follow.' values={{ domain }} /></DismissableBanner>}
 | 
				
			||||||
          timelineId={`public${onlyRemote ? ':remote' : (allowLocalOnly ? ':allow_local_only' : '')}${onlyMedia ? ':media' : ''}`}
 | 
					          timelineId={`public${onlyRemote ? ':remote' : (allowLocalOnly ? ':allow_local_only' : '')}${onlyMedia ? ':media' : ''}`}
 | 
				
			||||||
          onLoadMore={this.handleLoadMore}
 | 
					          onLoadMore={this.handleLoadMore}
 | 
				
			||||||
          trackScroll={!pinned}
 | 
					          trackScroll={!pinned}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue