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

l10n: Correct spelling #2244

Merged
merged 6 commits into from
Jun 3, 2021
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
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ export default {
confirmDeletion() {
OC.dialogs.confirm(
t('contacts', 'This will delete the address book and every contacts within it'),
t('contacts', 'Delete {addressbook} ?', { addressbook: this.addressbook.displayName }),
t('contacts', 'Delete {addressbook}?', { addressbook: this.addressbook.displayName }),
this.deleteAddressbook,
true
)
Expand Down
2 changes: 1 addition & 1 deletion src/components/EntityPicker/NewCircleIntro.vue
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
{{ t('contacts', 'Local circle') }}
</CheckboxRadioSwitch>
<p>
{{ t('contacts', 'This circle will not be shared with the other instances of the GlobalScale') }}
{{ t('contacts', 'This circle will not be shared with the other instances of the global scale') }}
</p>
</template>
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/mixins/CircleActionsMixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export default {
methods: {
confirmLeaveCircle() {
OC.dialogs.confirmDestructive(
t('contacts', 'You are about to leave {circle}.\n Are you sure ?', {
t('contacts', 'You are about to leave {circle}.\nAre you sure?', {
circle: this.circle.displayName,
}),
t('contacts', 'Please confirm circle leave'),
Expand Down Expand Up @@ -115,7 +115,7 @@ export default {

confirmDeleteCircle() {
OC.dialogs.confirmDestructive(
t('contacts', 'You are about to delete {circle}.\n Are you sure ?', {
t('contacts', 'You are about to delete {circle}.\nAre you sure?', {
circle: this.circle.displayName,
}),
t('contacts', 'Please confirm circle deletion'),
Expand Down
2 changes: 1 addition & 1 deletion src/models/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export const CIRCLES_MEMBER_TYPES = {
[MEMBER_TYPE_CIRCLE]: t('circles', 'Circle'),
[MEMBER_TYPE_USER]: t('circles', 'User'),
[MEMBER_TYPE_GROUP]: t('circles', 'Group'),
[MEMBER_TYPE_MAIL]: t('circles', 'Mail'),
[MEMBER_TYPE_MAIL]: t('circles', 'Email'),
[MEMBER_TYPE_CONTACT]: t('circles', 'Contact'),
}

Expand Down
2 changes: 1 addition & 1 deletion src/store/circles.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ const actions = {
})

if (failure) {
showError(t('contacts', 'Some circle(s) errored, check the console for more details'))
showError(t('contacts', 'Some circle(s) an error occurred. Check the console for more details.'))
}

return circles
Expand Down