Skip to content

Commit

Permalink
Change wording from 'manifest' to 'timeline'
Browse files Browse the repository at this point in the history
  • Loading branch information
bkeese committed Mar 29, 2019
1 parent 3b28452 commit 5daf2ef
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/components/Metadata/Metadata.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ const Metadata = props => {
color="textSecondary"
style={{ marginBottom: 10 }}
>
Project information
Timeline information
</Typography>
<div className="metadata__content">
{props.projectMetadataEditorOpen ? (
Expand Down
17 changes: 11 additions & 6 deletions src/components/ProjectMetadataDisplay/ProjectMetadataDisplay.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,16 @@ const ProjectMetadataDisplay = props => (
whiteSpace: 'pre-line',
}}
>
{props.manifestSummary || 'Description of manifest'}
{props.manifestSummary || 'Description of timeline'}
</Typography>
</div>
{props.homepage && props.homepageLabel ? (
<Typography variant="body1" component="p">
<Typography
variant="body1"
component="p"
style={{
marginTop: 14,
}}>
<a href={props.homepage}>{props.homepageLabel}</a>
</Typography>
) : (
Expand Down Expand Up @@ -60,10 +65,10 @@ const ProjectMetadataDisplay = props => (
variant="text"
color="primary"
onClick={props.onSaveButtonClicked}
title="Download project"
title="Download timeline"
>
<CloudDownload nativeColor="#FF4081" style={{ marginRight: 20 }} />
Download this project
Download this timeline
</Button>
</Grid>
) : null}
Expand All @@ -73,10 +78,10 @@ const ProjectMetadataDisplay = props => (
variant="text"
color="primary"
onClick={props.onEraseButtonClicked}
title="Start project over"
title="Start timeline over"
>
<RestorePage nativeColor="#303F9F" style={{ marginRight: 20 }} />
Start this project over
Start this timeline over
</Button>
</Grid>
) : (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class ProjectMetadataEditor extends Component {
InputLabelProps={{
shrink: true,
}}
placeholder="Description of manifest"
placeholder="Description of timeline"
fullWidth
multiline={true}
margin="normal"
Expand Down
2 changes: 1 addition & 1 deletion src/components/VariationsAppBar/VariationsAppBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const VariationsAppBar = props => (
color="inherit"
onClick={props.onSave}
disabled={!props.canUndo}
title={props.onSave ? 'Save project' : 'No backend set up to save'}
title={props.onSave ? 'Save timeline' : 'No backend set up to save'}
>
<Save />
</IconButton>
Expand Down

0 comments on commit 5daf2ef

Please sign in to comment.