diff options
| author | tusooa <tusooa@kazv.moe> | 2022-11-07 13:39:48 -0500 |
|---|---|---|
| committer | tusooa <tusooa@kazv.moe> | 2022-11-07 13:39:48 -0500 |
| commit | 038b45e64a69cec5a58053442de6f71576752be8 (patch) | |
| tree | 17359803e9824478f9480a3aeb2f6a066d76e20b /src/components | |
| parent | f715de43f2bae1593128f34f7362c1963a54e3a1 (diff) | |
Add labels to mobile navs
Diffstat (limited to 'src/components')
| -rw-r--r-- | src/components/mobile_nav/mobile_nav.vue | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/components/mobile_nav/mobile_nav.vue b/src/components/mobile_nav/mobile_nav.vue index 264bc713..ee360f80 100644 --- a/src/components/mobile_nav/mobile_nav.vue +++ b/src/components/mobile_nav/mobile_nav.vue @@ -10,6 +10,8 @@ <div class="item"> <button class="button-unstyled mobile-nav-button" + :title="$t('nav.mobile_sidebar')" + :aria-expanaded="this.$refs.sideDrawer && !this.$refs.sideDrawer.closed" @click.stop.prevent="toggleMobileSidebar()" > <FAIcon @@ -26,6 +28,7 @@ <button v-if="currentUser" class="button-unstyled mobile-nav-button" + :title="unseenNotificationsCount ? $t('nav.mobile_notifications_unread_active') : $t('nav.mobile_notifications')" @click.stop.prevent="openMobileNotifications()" > <FAIcon @@ -52,6 +55,7 @@ <button v-if="notificationsAtTop" class="button-unstyled mobile-nav-button" + :title="$t('general.scroll_to_top')" @click.stop.prevent="scrollMobileNotificationsToTop" > <FALayers class="fa-scale-110 fa-old-padding-layer"> @@ -64,6 +68,7 @@ </button> <button class="button-unstyled mobile-nav-button" + :title="$t('nav.mobile_notifications_close')" @click.stop.prevent="closeMobileNotifications(true)" > <FAIcon |
