From 4d9df86055c4ccbb8f88deb9d1d9251e7f792b07 Mon Sep 17 00:00:00 2001 From: rakekniven <2069590+rakekniven@users.noreply.github.com> Date: Sat, 7 Dec 2024 14:48:51 +0100 Subject: [PATCH 1/2] chore(i18n): Improved grammar Reported at Transifex Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com> --- src/components/RightSidebar/LobbyStatus.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/RightSidebar/LobbyStatus.vue b/src/components/RightSidebar/LobbyStatus.vue index 0cd761467a0..5ec4c6a9d4b 100644 --- a/src/components/RightSidebar/LobbyStatus.vue +++ b/src/components/RightSidebar/LobbyStatus.vue @@ -42,7 +42,7 @@ async function disableLobby() { showSuccess(t('spreed', 'You opened the conversation to everyone')) } catch (e) { console.error('Error occurred when opening the conversation to everyone', e) - showError(t('spreed', 'Error occurred when opening the conversation to everyone')) + showError(t('spreed', 'An error occurred when opening the conversation to everyone')) } finally { isLobbyStateLoading.value = false } @@ -62,7 +62,7 @@ async function disableLobby() { - {{ t('spreed', 'Import e-mail participants') }} + {{ t('spreed', 'Import email participants') }} Date: Sat, 7 Dec 2024 14:52:59 +0100 Subject: [PATCH 2/2] chore(i18n): Adapted spelling of CSV Definition see https://en.wikipedia.org/wiki/Comma-separated_values Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com> --- src/components/ImportEmailsDialog.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ImportEmailsDialog.vue b/src/components/ImportEmailsDialog.vue index b8820b728fe..39df4385f04 100644 --- a/src/components/ImportEmailsDialog.vue +++ b/src/components/ImportEmailsDialog.vue @@ -37,7 +37,7 @@ const uploadResultCaption = computed(() => { : { class: 'import-list__caption--success', label: t('spreed', 'Uploaded file is verified') } }) -const importListDescription = t('spreed', 'Content format is Comma Separated Values (CSV):
- Header line is required and must match "email","name" or just "email"
- One entry per line (e.g. "John Doe","john@example.tld")', +const importListDescription = t('spreed', 'Content format is comma-separated values (CSV):
- Header line is required and must match "email","name" or just "email"
- One entry per line (e.g. "John Doe","john@example.tld")', undefined, undefined, { escape: true,