allow notification screen text to be translated (#10576)

The `noNotifications` string was not being used so changing it for
this purpose makes sense. Non-English users will see meaningful
text even before the new text is translated.
This commit is contained in:
Alys
2018-08-05 18:48:36 +10:00
committed by Matteo Pagliazzi
parent 75c3f7214b
commit 9d994f8a77
2 changed files with 4 additions and 3 deletions

View File

@@ -27,8 +27,8 @@ menu-dropdown.item-notifications(:right="true", @toggled="handleOpenStatusChange
v-if="notificationsCount === 0"
)
.svg-icon(v-html="icons.success")
h2 You're all caught up!
p The notification fairies give you a raucous round of applause! Well done!
h2 {{ $t('noNotifications') }}
p {{ $t('noNotificationsText') }}
</template>
<style lang='scss' scoped>