diff --git a/ts/Manager/RoomRow.tsx b/ts/Manager/RoomRow.tsx index b047111..ab53a88 100644 --- a/ts/Manager/RoomRow.tsx +++ b/ts/Manager/RoomRow.tsx @@ -95,7 +95,7 @@ const RoomRow: React.FC = (props) => { ev.preventDefault(); OC.dialogs.confirm( - t('bbb', 'Are you sure you want to delete "{name}"? This operation can not be undone', { name: room.name }), + t('bbb', 'Are you sure you want to delete "{name}"? This operation can not be undone.', { name: room.name }), t('bbb', 'Delete "{name}"?', { name: room.name }), confirmed => { if (confirmed) { @@ -234,4 +234,4 @@ const RoomRow: React.FC = (props) => { ); }; -export default RoomRow; \ No newline at end of file +export default RoomRow;