Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/news.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-12-03 00:02:01 +0300
committerBernhard Posselt <dev@bernhard-posselt.com>2014-12-03 00:02:01 +0300
commit09a57539ad24b76ca2e66098384d43e87a52667d (patch)
tree62c439486ebd3c1aab729f66aeb1683c2d333804 /templates
parentfa80ff2d032db71b1f8b89595b4c063d9c428f64 (diff)
fix #680
Diffstat (limited to 'templates')
-rw-r--r--templates/part.navigation.feed.php2
-rw-r--r--templates/part.navigation.folder.php2
-rw-r--r--templates/part.navigation.unreadfeed.php2
3 files changed, 3 insertions, 3 deletions
diff --git a/templates/part.navigation.feed.php b/templates/part.navigation.feed.php
index 893b0fa15..cb54a180b 100644
--- a/templates/part.navigation.feed.php
+++ b/templates/part.navigation.feed.php
@@ -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>
diff --git a/templates/part.navigation.folder.php b/templates/part.navigation.folder.php
index f095237e1..e1add05de 100644
--- a/templates/part.navigation.folder.php
+++ b/templates/part.navigation.folder.php
@@ -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>
diff --git a/templates/part.navigation.unreadfeed.php b/templates/part.navigation.unreadfeed.php
index 8eae37eed..755ec1e9c 100644
--- a/templates/part.navigation.unreadfeed.php
+++ b/templates/part.navigation.unreadfeed.php
@@ -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>