Skip to content

Commit

Permalink
Merge pull request #495 from nextcloud/bugfix/rename-shared-with-you-tab
Browse files Browse the repository at this point in the history
Rename shared with you tab
  • Loading branch information
Mikescops authored Oct 22, 2020
2 parents e4b9123 + 96d7312 commit c1ffe53
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions js/photos-main.js

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/Photos.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<AppNavigationItem to="/videos" :title="t('photos', 'Your videos')" icon="icon-video" />
<AppNavigationItem to="/favorites" :title="t('photos', 'Favorites')" icon="icon-favorite" />
<AppNavigationItem :to="{name: 'albums'}" :title="t('photos', 'Your folders')" icon="icon-files-dark" />
<AppNavigationItem :to="{name: 'shared'}" :title="t('photos', 'Shared folders')" icon="icon-share" />
<AppNavigationItem :to="{name: 'shared'}" :title="t('photos', 'Shared with you')" icon="icon-share" />
<AppNavigationItem :to="{name: 'tags'}" :title="t('photos', 'Tagged photos')" icon="icon-tag" />
<AppNavigationItem v-if="showLocationMenuEntry"
:to="{name: 'maps'}"
Expand Down
2 changes: 1 addition & 1 deletion src/router/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export default new Router({
path: `/${route.params.path ? route.params.path : ''}`,
// if path is empty
isRoot: !route.params.path,
rootTitle: t('photos', 'Shared folders'),
rootTitle: t('photos', 'Shared with you'),
showShared: true,
}),
},
Expand Down

0 comments on commit c1ffe53

Please sign in to comment.