From a4f3ee2752fcdd4d6afdd531cffa82229e89a6b7 Mon Sep 17 00:00:00 2001 From: Sidney Bell Date: Thu, 28 May 2020 11:51:56 -0700 Subject: [PATCH] Add license for visualizations / graphics. (#1140) --- src/components/download/downloadModal.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/download/downloadModal.js b/src/components/download/downloadModal.js index 3e046ac82..20e7ef82e 100644 --- a/src/components/download/downloadModal.js +++ b/src/components/download/downloadModal.js @@ -151,6 +151,7 @@ class DownloadModal extends React.Component { x.push(this.createSummaryWrapper()); x.push(""); x.push(`${this.props.t("Data usage part 1")} A full list of sequence authors is available via nextstrain.org.`); + x.push(`Visualizations are licensed under CC-BY.`); x.push(`Relevant publications:`); this.getRelevantPublications().forEach((pub) => { x.push(`${pub.author}, ${pub.title}, ${pub.journal} (${pub.year})`); @@ -191,7 +192,7 @@ class DownloadModal extends React.Component { (), () => helpers.authorTSV(this.props.dispatch, filePrefix, this.props.tree)]); } buttons.push( - ["Screenshot (SVG)", "Screenshot of the current nextstrain display in SVG format.", + ["Screenshot (SVG)", "Screenshot of the current nextstrain display in SVG format; CC-BY licensed.", (), () => helpers.SVG(this.props.dispatch, filePrefix, this.props.panelsToDisplay, this.props.panelLayout, this.makeTextStringsForSVGExport())] ); const buttonTextStyle = Object.assign({}, materialButton, {backgroundColor: "rgba(0,0,0,0)", paddingLeft: "10px", color: "white", minWidth: "300px", textAlign: "left" });