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

fix(i18n): Fixed syntax #999

Merged
merged 3 commits into from
Jan 3, 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
4 changes: 2 additions & 2 deletions js/privacy-main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/privacy-main.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/components/ShareAccess.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@

<template>
<div class="shared">
<h3>{{ t('privacy', `People you've shared with`) }}</h3>
<h3>{{ t('privacy', 'People you\'ve shared with') }}</h3>

<NcLoadingIcon v-if="isLoading"
:name="t('privacy', `Loading people you've shared with …`)"
:name="t('privacy', 'Loading people you\'ve shared with …')"
:size="40" />

<p v-else-if="!uniqueShareUIDs.length">
{{ t('privacy', `You don't have any shares with individual users.`) }}
{{ t('privacy', 'You do not have any shares with individual users.') }}
</p>

<ul v-else
Expand Down Expand Up @@ -100,7 +100,7 @@
case 0:
if (this.uniqueShareUIDs.indexOf(d.share_with) === -1) {
this.uniqueShareUIDs.push(d.share_with)
Vue.set(this.uidDisplaynameMap, d.share_with, d.share_with_displayname)

Check warning on line 103 in src/components/ShareAccess.vue

View workflow job for this annotation

GitHub Actions / eslint

Caution: `Vue` also has a named export `set`. Check if you meant to write `import {set} from 'vue'` instead
}
break

Expand Down
Loading