chore: Adding of the dot character (#36)

* l10n: Addition of the dot character

* l10n: Adding the next dot character
pull/37/head
Valdnet 2020-05-19 12:26:53 +02:00 committed by GitHub
parent f4aff6cd7c
commit 0f6f0f0ad1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -95,7 +95,7 @@ const RoomRow: React.FC<Props> = (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> = (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> = (props) => {
);
};
export default RoomRow;
export default RoomRow;