]> source.dussan.org Git - nextcloud-server.git/commitdiff
add title to entries in app menu
authorMorris Jobke <hey@morrisjobke.de>
Wed, 1 Apr 2015 07:10:19 +0000 (09:10 +0200)
committerMorris Jobke <hey@morrisjobke.de>
Wed, 1 Apr 2015 07:10:19 +0000 (09:10 +0200)
core/templates/layout.user.php

index 87342aca57080cf3d565ca7b9a89b25c808bb625..45c3f811540de2cd6c8ff4ae1943675d8c161611 100644 (file)
                                <ul>
                                <?php foreach($_['navigation'] as $entry): ?>
                                        <li data-id="<?php p($entry['id']); ?>">
-                                               <a href="<?php print_unescaped($entry['href']); ?>" title="" tabindex="3"
+                                               <a href="<?php print_unescaped($entry['href']); ?>" title="<?php p($entry['name']); ?>" tabindex="3"
                                                        <?php if( $entry['active'] ): ?> class="active"<?php endif; ?>>
                                                        <img class="app-icon svg" alt="" src="<?php print_unescaped($entry['icon']); ?>">
                                                        <div class="icon-loading-dark" style="display:none;"></div>
                                        if(OC_User::isAdminUser(OC_User::getUser())):
                                ?>
                                        <li id="apps-management">
-                                               <a href="<?php print_unescaped(OC_Helper::linkToRoute('settings_apps')); ?>" title="" tabindex="4"
+                                               <a href="<?php print_unescaped(OC_Helper::linkToRoute('settings_apps')); ?>" title="<?php p($l->t('Apps')); ?>" tabindex="4"
                                                        <?php if( $_['appsmanagement_active'] ): ?> class="active"<?php endif; ?>>
                                                        <img class="app-icon svg" alt="" src="<?php print_unescaped(OC_Helper::imagePath('settings', 'apps.svg')); ?>">
                                                        <div class="icon-loading-dark" style="display:none;"></div>