mirror of https://github.com/sualko/cloud_bbb
Merge pull request #283 from arawa/fix/261/missing_wordings_in_transifex
fix: 261 wordings that aren't visible in Transifexpull/284/head
commit
122cf10f60
|
@ -193,7 +193,11 @@ const RoomRow: React.FC<Props> = (props) => {
|
||||||
<>
|
<>
|
||||||
<tr className={showRecordings ? 'selected-row' : ''}>
|
<tr className={showRecordings ? 'selected-row' : ''}>
|
||||||
<td className="start">
|
<td className="start">
|
||||||
<a href={api.getRoomUrl(room)} className={`button ${room.running ? 'success' : 'primary'}`} target="_blank" rel="noopener noreferrer" title={t('bbb', 'Open room')}>
|
<a href={api.getRoomUrl(room)}
|
||||||
|
className={`button ${room.running ? 'success' : 'primary'}`}
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
title={t('bbb', 'Open room')}>
|
||||||
{room.running ? t('bbb', 'Join') : t('bbb', 'Start')}
|
{room.running ? t('bbb', 'Join') : t('bbb', 'Start')}
|
||||||
</a>
|
</a>
|
||||||
</td>
|
</td>
|
||||||
|
@ -231,7 +235,10 @@ const RoomRow: React.FC<Props> = (props) => {
|
||||||
<EditRoom room={props.room} restriction={props.restriction} updateProperty={updateRoom} />
|
<EditRoom room={props.room} restriction={props.restriction} updateProperty={updateRoom} />
|
||||||
</td>
|
</td>
|
||||||
<td className="clone icon-col">
|
<td className="clone icon-col">
|
||||||
<button className="action-item" onClick={cloneRow} title={t('bbb', 'Clone Room')}>
|
<button
|
||||||
|
className="action-item"
|
||||||
|
onClick={cloneRow}
|
||||||
|
title={t('bbb', 'Clone room')}>
|
||||||
<span className="icon icon-template-add icon-visible"></span>
|
<span className="icon icon-template-add icon-visible"></span>
|
||||||
</button>
|
</button>
|
||||||
</td>
|
</td>
|
||||||
|
|
Loading…
Reference in New Issue