From fcc975488be6335b967bfdeef0cd7112e558cd42 Mon Sep 17 00:00:00 2001 From: Valdnet <47037905+Valdnet@users.noreply.github.com> Date: Mon, 12 Apr 2021 11:33:27 +0200 Subject: [PATCH 1/2] l10n: Unify spelling Spelling unification in Nextcloud applications. --- ts/Manager/RoomRow.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ts/Manager/RoomRow.tsx b/ts/Manager/RoomRow.tsx index 5ee25a4..2e14c91 100644 --- a/ts/Manager/RoomRow.tsx +++ b/ts/Manager/RoomRow.tsx @@ -66,7 +66,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 cannot be undone.', { name: room.name }), t('bbb', 'Delete "{name}"?', { name: room.name }), confirmed => { if (confirmed) { @@ -119,7 +119,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 cannot be undone.', { startDate: (new Date(recording.startTime)).toLocaleString() }), t('bbb', 'Delete?'), confirmed => { if (confirmed) { From c3a60500aa259f8ac1f0bbb9074d07c41fa9bfdd Mon Sep 17 00:00:00 2001 From: Valdnet <47037905+Valdnet@users.noreply.github.com> Date: Mon, 12 Apr 2021 11:35:36 +0200 Subject: [PATCH 2/2] l10n: Unify spelling Spelling unification in Nextcloud applications. --- ts/Restrictions/RestrictionRow.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/Restrictions/RestrictionRow.tsx b/ts/Restrictions/RestrictionRow.tsx index 0dad6ca..3c5c899 100644 --- a/ts/Restrictions/RestrictionRow.tsx +++ b/ts/Restrictions/RestrictionRow.tsx @@ -25,7 +25,7 @@ const RestrictionRoom: React.FC = (props) => { ev.preventDefault(); OC.dialogs.confirm( - t('bbb', 'Are you sure you want to delete the restrictions for group "{name}"? This operation can not be undone.', { name: restriction.groupId }), + t('bbb', 'Are you sure you want to delete the restrictions for group "{name}"? This operation cannot be undone.', { name: restriction.groupId }), t('bbb', 'Delete restrictions for "{name}"?', { name: restriction.groupId }), confirmed => { if (confirmed) {