mirror of https://github.com/sualko/cloud_bbb
chore: Adding of the dot character (#36)
* l10n: Addition of the dot character * l10n: Adding the next dot characterpull/37/head
parent
f4aff6cd7c
commit
0f6f0f0ad1
|
@ -95,7 +95,7 @@ const RoomRow: React.FC<Props> = (props) => {
|
||||||
ev.preventDefault();
|
ev.preventDefault();
|
||||||
|
|
||||||
OC.dialogs.confirm(
|
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 }),
|
t('bbb', 'Delete "{name}"?', { name: room.name }),
|
||||||
confirmed => {
|
confirmed => {
|
||||||
if (confirmed) {
|
if (confirmed) {
|
||||||
|
@ -148,7 +148,7 @@ const RoomRow: React.FC<Props> = (props) => {
|
||||||
|
|
||||||
function deleteRecording(recording: Recording) {
|
function deleteRecording(recording: Recording) {
|
||||||
OC.dialogs.confirm(
|
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?'),
|
t('bbb', 'Delete?'),
|
||||||
confirmed => {
|
confirmed => {
|
||||||
if (confirmed) {
|
if (confirmed) {
|
||||||
|
@ -234,4 +234,4 @@ const RoomRow: React.FC<Props> = (props) => {
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
export default RoomRow;
|
export default RoomRow;
|
||||||
|
|
Loading…
Reference in New Issue