Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValdnet <47037905+Valdnet@users.noreply.github.com>2022-05-18 09:53:20 +0300
committerGitHub <noreply@github.com>2022-05-18 09:53:20 +0300
commit05ad7b046c07859a33c010dbbb3edf3620ed8969 (patch)
tree582d85f82b97948d1bb32b4723edc09a07e953e4 /src/components
parent3bdf2e262cdd56b7463539bae55b19c22507efb7 (diff)
l10n: Delete dots
Unification of messages. Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
Diffstat (limited to 'src/components')
-rw-r--r--src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue b/src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue
index 8987ec0b3..301d3b3cb 100644
--- a/src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue
+++ b/src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue
@@ -669,7 +669,7 @@ export default {
token: this.token,
attendeeId: this.attendeeId,
})
- showSuccess(t('spreed', 'Invitation was sent to {actorId}.', { actorId: this.participant.actorId }))
+ showSuccess(t('spreed', 'Invitation was sent to {actorId}', { actorId: this.participant.actorId }))
} catch (error) {
showError(t('spreed', 'Could not send invitation to {actorId}', { actorId: this.participant.actorId }))
}
@@ -681,7 +681,7 @@ export default {
token: this.token,
attendeeId: this.attendeeId,
})
- showSuccess(t('spreed', 'Notification was sent to {displayName}.', { displayName: this.participant.displayName }))
+ showSuccess(t('spreed', 'Notification was sent to {displayName}', { displayName: this.participant.displayName }))
} catch (error) {
console.error(error)
showError(t('spreed', 'Could not send notification to {displayName}', { displayName: this.participant.displayName }))