Skip to content

Commit

Permalink
Merge pull request #370 from BIDMCDigitalPsychiatry/issue-802
Browse files Browse the repository at this point in the history
QA fixes - translation changes
  • Loading branch information
sarithapillai8 authored Mar 12, 2024
2 parents 0d247b5 + 03ac23f commit 1127389
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions JewelsPro/src/components/jewels/Board.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ class Board extends React.Component<BoardProps, DiamondState> {
<div>
<div className="countdown-timer">
<div>{timer}</div>
<div className="level">{i18n.t("LEVEL ")}{this.props.level}/{this.state.totalLevels.toString()}</div>
<div className="level">{i18n.t("LEVEL")}{this.props.level}/{this.state.totalLevels.toString()}</div>
</div>
{negSection}
{confirmModal}
Expand All @@ -383,4 +383,4 @@ class Board extends React.Component<BoardProps, DiamondState> {
}
}

export default Board;
export default Board;
2 changes: 1 addition & 1 deletion Spin_Wheel/src/containers/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ const Layout = ({...props}) => {
<IconButton onClick={() => setComplete(true)} color="default" aria-label="Menu">
<ArrowBackIcon />
</IconButton>
<Typography variant="h5">{i18n.t("GAME")}</Typography>
<Typography variant="h5">{i18n.t("SPIN_THE_WHEEL")}</Typography>
</Toolbar>
</AppBar>
<Container>
Expand Down
2 changes: 1 addition & 1 deletion Symbol_Digit_Substitution/src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ props?.clickBackData()
{!props?.data && <IconButton onClick={() => clickBack()} color="default" aria-label="Menu">
<Icon>arrow_back</Icon>
</IconButton>}
<Typography variant="h5">{t("Symbol-Digit Substitution")}</Typography>
<Typography variant="h5">{`${t("Symbol-Digit Substitution")}`}</Typography>
</Toolbar>
</AppBar>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -482,8 +482,8 @@ export default function SymbolDigitSubstitution({...props}) {
<DialogTitle id="alert-dialog-title">{`${t("")}`}</DialogTitle>
<DialogContent>
<DialogContentText className={classes.comment} id="alert-dialog-description">
{<span > {showMapping === "not_at_all" ? <>In this game, you will be shown a symbol in the middle of your screen, represented by a greek letter. This symbol will correspond to a numerical digit.</> :
<>In this game, you will be shown a symbol in the middle of your screen, represented by a greek letter. This symbol will correspond to a numerical digit. There is a symbol-mapping legend in the top row of your screen. Use the legend to identify the digit which corresponds to your symbol. Then, press the button at the bottom of the screen which contains this digit. After you select the correct button, you will move on to a new symbol. Try to get as many symbols as you can.</>}</span>}
{<span > {showMapping === "not_at_all" ? <>`${t("In this game, you will be shown a symbol in the middle of your screen, represented by a greek letter. This symbol will correspond to a numerical digit.")}`</> :
<>{t("In this game, you will be shown a symbol in the middle of your screen, represented by a greek letter. This symbol will correspond to a numerical digit. There is a symbol-mapping legend in the top row of your screen. Use the legend to identify the digit which corresponds to your symbol. Then, press the button at the bottom of the screen which contains this digit. After you select the correct button, you will move on to a new symbol. Try to get as many symbols as you can.")}</>}</span>}


</DialogContentText>
Expand Down

0 comments on commit 1127389

Please sign in to comment.