Skip to content

Commit

Permalink
Merge pull request #13962 from nextcloud/backport/13961/stable30
Browse files Browse the repository at this point in the history
[stable30] chore(i18n): Improved grammar
  • Loading branch information
Antreesy authored Dec 9, 2024
2 parents 8dde84a + 15bcfad commit d9a9405
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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","[email protected]"</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","[email protected]"</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

0 comments on commit d9a9405

Please sign in to comment.