Dashboard: Wording change from panels to widgets

Signed-off-by: Jan C. Borchardt <hey@jancborchardt.net>
This commit is contained in:
Jan C. Borchardt 2020-07-31 14:51:14 +02:00 committed by Julius Härtl
parent 995144faa6
commit da8a29f42e
No known key found for this signature in database
GPG key ID: 4C614C6ED2CDE6DF

View file

@ -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>