Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/photos.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCorentin Mors <corentin.mors@dashlane.com>2020-10-17 13:05:47 +0300
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-11-15 11:36:18 +0300
commitf49eec3cd41f12f3c00dea2db14b67b453bd6669 (patch)
treef44ad908966d6f0e7399b5006f55a8446169f8d4 /src
parent90a43e08372fd6e4ad3d269ef6a1426f44d01fa6 (diff)
Rename shared with you tab
Signed-off-by: Corentin Mors <corentin.mors@dashlane.com>
Diffstat (limited to 'src')
-rw-r--r--src/Photos.vue2
-rw-r--r--src/router/index.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Photos.vue b/src/Photos.vue
index f9598fa8..330607f2 100644
--- a/src/Photos.vue
+++ b/src/Photos.vue
@@ -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'}"
diff --git a/src/router/index.js b/src/router/index.js
index 6f0355ad..6fc04aa7 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -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,
}),
},