Skip to content

Commit

Permalink
Merge pull request #695 from owncloud/fix-menu-wording
Browse files Browse the repository at this point in the history
fix wording in menu and remove unnecessary titles
  • Loading branch information
georgehrke committed Aug 11, 2016
2 parents 9e62f7a + 5bebd99 commit 11f3f6a
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions templates/part.calendarlist.item.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,29 +75,25 @@ class="calendarlist-icon shared"
class="app-navigation-entry-menu hidden">
<ul>
<li ng-show="item.calendar.arePropertiesWritable()">
<button ng-click="item.openEditor()"
title="<?php p($l->t('Edit')); ?>">
<button ng-click="item.openEditor()">
<span class="icon-rename svg"></span>
<span><?php p($l->t('Edit')); ?></span>
</button>
</li>
<li>
<button ng-click="item.showCalDAVUrl()"
title="<?php p($l->t('CalDAV')); ?>">
<button ng-click="item.showCalDAVUrl()">
<span class="icon-public svg"></span>
<span><?php p($l->t('CalDAV-Link')); ?></span>
<span><?php p($l->t('Link')); ?></span>
</button>
</li>
<li>
<button ng-click="download(item)"
title="<?php p($l->t('Export')); ?>">
<button ng-click="download(item)">
<span class="icon-download svg"></span>
<span><?php p($l->t('Export')); ?></span>
<span><?php p($l->t('Download')); ?></span>
</button>
</li>
<li>
<button ng-click="remove(item)"
title="<?php p($l->t('Delete')); ?>">
<button ng-click="remove(item)">
<span class="icon-delete svg"></span>
<span><?php p($l->t('Delete')); ?></span>
</button>
Expand Down

0 comments on commit 11f3f6a

Please sign in to comment.