Skip to content

Commit

Permalink
Merge pull request #999 from nextcloud/rakekniven-patch-1
Browse files Browse the repository at this point in the history
fix(i18n): Fixed syntax
  • Loading branch information
Pytal authored Jan 3, 2024
2 parents 4dcbc7f + c6f35df commit 9c13194
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
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

0 comments on commit 9c13194

Please sign in to comment.