From 0f6f0f0ad148e2f77f26b59e4465fb2d94ba0975 Mon Sep 17 00:00:00 2001 From: Valdnet <47037905+Valdnet@users.noreply.github.com> Date: Tue, 19 May 2020 12:26:53 +0200 Subject: [PATCH] chore: Adding of the dot character (#36) * l10n: Addition of the dot character * l10n: Adding the next dot character --- ts/Manager/RoomRow.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ts/Manager/RoomRow.tsx b/ts/Manager/RoomRow.tsx index b047111..1e50404 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) { @@ -148,7 +148,7 @@ const RoomRow: React.FC = (props) => { function deleteRecording(recording: Recording) { OC.dialogs.confirm( - t('bbb', 'Are you sure you want to delete the recording from "{startDate}"? This operation can not be undone', { startDate: (new Date(recording.startTime)).toLocaleString() }), + t('bbb', 'Are you sure you want to delete the recording from "{startDate}"? This operation can not be undone.', { startDate: (new Date(recording.startTime)).toLocaleString() }), t('bbb', 'Delete?'), confirmed => { if (confirmed) { @@ -234,4 +234,4 @@ const RoomRow: React.FC = (props) => { ); }; -export default RoomRow; \ No newline at end of file +export default RoomRow;