Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[stable30] chore(i18n): Improved grammar #13962

Merged
merged 2 commits into from
Dec 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/ImportEmailsDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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):<br/>- Header line is required and must match <samp>"email","name"</samp> or just <samp>"email"</samp><br/>- One entry per line (e.g. <samp>"John Doe","john@example.tld"</samp>)',
const importListDescription = t('spreed', 'Content format is comma-separated values (CSV):<br/>- Header line is required and must match <samp>"email","name"</samp> or just <samp>"email"</samp><br/>- One entry per line (e.g. <samp>"John Doe","john@example.tld"</samp>)',
undefined,
undefined, {
escape: true,
Expand Down
4 changes: 2 additions & 2 deletions src/components/RightSidebar/LobbyStatus.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand All @@ -62,7 +62,7 @@ async function disableLobby() {
<template #icon>
<IconFileUpload :size="20" />
</template>
{{ t('spreed', 'Import e-mail participants') }}
{{ t('spreed', 'Import email participants') }}
</NcButton>

<ImportEmailsDialog v-if="isImportEmailsDialogOpen"
Expand Down
Loading