Skip to content

Commit

Permalink
Adjust wording
Browse files Browse the repository at this point in the history
  • Loading branch information
cmil committed Feb 2, 2025
1 parent e51f802 commit 4114cc0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion src/components/Play.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,10 @@ const PlayInfo = ({corpusId, playId}) => {
} else if (tab === 'tools') {
tabContent = <ToolsTab corpusId={corpusId} playId={playId} />;
description = (
<p>This tab allows you to analyze the play with external tools.</p>
<p>
This tab provides links to third-party tools. The selected text layer
will be loaded from the DraCor API for external analysis.
</p>
);
} else {
tabContent = <NetworkGraph {...{graph, nodeColor, edgeColor, play}} />;
Expand Down
4 changes: 2 additions & 2 deletions src/components/ToolsTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export default function ToolsTab({corpusId, playId}: Props) {
{isAccessible && (
<>
<p className={cx('select')}>
Text to analyze:{' '}
Text layer for analysis:{' '}
<label onClick={() => setTextType('spoken-text')}>
<input type="radio" checked={textType === 'spoken-text'} /> Spoken
text
Expand All @@ -61,7 +61,7 @@ export default function ToolsTab({corpusId, playId}: Props) {
href={`https://switchboard.clarin.eu/#/vlo/${endpoint}`}
target="_blank"
>
Clarin Switch-Board
CLARIN Language Resource Switchboard
</a>
</li>
</ul>
Expand Down

0 comments on commit 4114cc0

Please sign in to comment.