This commit is contained in:
Bernhard Posselt 2014-12-02 22:02:01 +01:00
Родитель fa80ff2d03
Коммит 09a57539ad
4 изменённых файлов: 6 добавлений и 3 удалений

Просмотреть файл

@ -1,3 +1,6 @@
owncloud-news (4.2.6)
* **Bugfix**: Wording fixes
owncloud-news (4.2.5)
* **Bugfix**: Fix keep unread shortcut in compact view

Просмотреть файл

@ -98,7 +98,7 @@
<li ng-show="Navigation.getFeedUnreadCount(feed.id) > 0">
<button class="icon-checkmark"
ng-click="Navigation.markFeedRead(feed.id)"
title="<?php p($l->t('Read all')); ?>">
title="<?php p($l->t('Mark all articles read')); ?>">
</button>
</li>
</ul>

Просмотреть файл

@ -123,7 +123,7 @@
<li ng-show="Navigation.getFolderUnreadCount(folder.id) > 0">
<button class="icon-checkmark"
ng-click="Navigation.markFolderRead(folder.id)"
title="<?php p($l->t('Read all')); ?>">
title="<?php p($l->t('Mark all articles read')); ?>">
</button>
</li>
</ul>

Просмотреть файл

@ -30,7 +30,7 @@
<div class="app-navigation-entry-menu">
<ul>
<li><button class="icon-checkmark"
title="<?php p($l->t('Read all')); ?>"
title="<?php p($l->t('Mark all articles read')); ?>"
ng-click="Navigation.markRead()"></button>
</li>
</ul>