mirror of https://github.com/sualko/cloud_bbb
Compare commits
3 Commits
a6ea1e6b2e
...
12f9594270
Author | SHA1 | Date |
---|---|---|
|
12f9594270 | |
|
038f24302f | |
|
d63c4dbba3 |
|
@ -18,6 +18,8 @@ OC.L10N.register(
|
|||
"Access" : "Åtkomst",
|
||||
"Max" : "Max",
|
||||
"Edit" : "Redigera",
|
||||
"This message is shown to all users in the chat area after they joined." : "Detta meddelande visas för alla användare i chattområdet efter att de gått med.",
|
||||
"If enabled, the user list, chat area and presentation are hidden by default." : "Om aktiverat är användarlistan, chattområdet och presentationen dolda som standard.",
|
||||
"Welcome" : "Välkommen",
|
||||
"Miscellaneous" : "Diverse",
|
||||
"Recording" : "Inspelning",
|
||||
|
|
|
@ -16,6 +16,8 @@
|
|||
"Access" : "Åtkomst",
|
||||
"Max" : "Max",
|
||||
"Edit" : "Redigera",
|
||||
"This message is shown to all users in the chat area after they joined." : "Detta meddelande visas för alla användare i chattområdet efter att de gått med.",
|
||||
"If enabled, the user list, chat area and presentation are hidden by default." : "Om aktiverat är användarlistan, chattområdet och presentationen dolda som standard.",
|
||||
"Welcome" : "Välkommen",
|
||||
"Miscellaneous" : "Diverse",
|
||||
"Recording" : "Inspelning",
|
||||
|
|
|
@ -89,7 +89,7 @@ const EditRoomDialog: React.FC<Props> = ({ room, restriction, updateProperty, op
|
|||
return <option key={key} value={key}>{label}</option>;
|
||||
})}
|
||||
</select>
|
||||
{(value === Access.Password && room.password) && <CopyToClipboard text={room.password}><input type="text" readOnly={true} className="icon-clippy" value={room.password} /></CopyToClipboard>}
|
||||
{(value === Access.Password && room.password) && <CopyToClipboard text={room.password} options={{format:'text/plain'}}><input type="text" readOnly={true} className="icon-clippy" value={room.password} /></CopyToClipboard>}
|
||||
{descriptions[field] && <em>{descriptions[field]}</em>}
|
||||
</div>
|
||||
);
|
||||
|
|
|
@ -17,7 +17,7 @@ const RecordingRow: React.FC<Props> = ({recording, deleteRecording, storeRecordi
|
|||
</a>
|
||||
</td>
|
||||
<td className="share icon-col">
|
||||
<CopyToClipboard text={recording.url}>
|
||||
<CopyToClipboard text={recording.url} options={{format:'text/plain'}}>
|
||||
<button className="action-item copy-to-clipboard" title={t('bbb', 'Copy to clipboard')}>
|
||||
<span className="icon icon-clippy icon-visible" ></span>
|
||||
</button>
|
||||
|
|
|
@ -202,7 +202,7 @@ const RoomRow: React.FC<Props> = (props) => {
|
|||
</a>
|
||||
</td>
|
||||
<td className="share icon-col">
|
||||
<CopyToClipboard text={api.getRoomUrl(room)}>
|
||||
<CopyToClipboard text={api.getRoomUrl(room)} options={{format:'text/plain'}}>
|
||||
<button className="action-item copy-to-clipboard" title={t('bbb', 'Copy to clipboard')}>
|
||||
<span className="icon icon-clippy icon-visible" ></span>
|
||||
</button>
|
||||
|
|
Loading…
Reference in New Issue