summaryrefslogtreecommitdiffstats
path: root/apps/dashboard
diff options
context:
space:
mode:
authorJan C. Borchardt <hey@jancborchardt.net>2020-07-31 14:51:14 +0200
committerJulius Härtl <jus@bitgrid.net>2020-08-05 17:01:29 +0200
commitda8a29f42edaebb18a1cb5ec31ffc053d1ac58a4 (patch)
tree3f1ab0a4306818dbc530f11cfea5250a35e6d75d /apps/dashboard
parent995144faa61d2746150e34780a107f316f4f7cb3 (diff)
downloadnextcloud-server-da8a29f42edaebb18a1cb5ec31ffc053d1ac58a4.tar.gz
nextcloud-server-da8a29f42edaebb18a1cb5ec31ffc053d1ac58a4.zip
Dashboard: Wording change from panels to widgets
Signed-off-by: Jan C. Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'apps/dashboard')
-rw-r--r--apps/dashboard/src/App.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/dashboard/src/App.vue b/apps/dashboard/src/App.vue
index 12e73121cc0..1dd95431867 100644
--- a/apps/dashboard/src/App.vue
+++ b/apps/dashboard/src/App.vue
@@ -14,10 +14,10 @@
</div>
</div>
</Draggable>
- <a class="edit-panels icon-add" @click="showModal">{{ t('dashboard', 'Edit panels') }}</a>
+ <a class="edit-panels icon-add" @click="showModal">{{ t('dashboard', 'Edit widgets') }}</a>
<Modal v-if="modal" @close="closeModal">
<div class="modal__content">
- <h3>{{ t('dashboard', 'Edit panels') }}</h3>
+ <h3>{{ t('dashboard', 'Edit widgets') }}</h3>
<transition-group name="flip-list" tag="ol">
<li v-for="panel in sortedPanels" :key="panel.id">
<input :id="'panel-checkbox-' + panel.id"
@@ -30,7 +30,7 @@
</label>
</li>
<li key="appstore">
- <a :href="appStoreUrl" class="button">{{ t('dashboard', 'Get more panels from the app store') }}</a>
+ <a :href="appStoreUrl" class="button">{{ t('dashboard', 'Get more widgets from the app store') }}</a>
</li>
</transition-group>
</div>