mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-20 16:21:28 +00:00
add catchup button to main toolbar
This commit is contained in:
@@ -4115,23 +4115,20 @@
|
||||
<li onclick=\"$tog_unread_link\"> ".__('Unread')."</li>
|
||||
<li onclick=\"$tog_marked_link\"> ".__('Starred')."</li>
|
||||
<li onclick=\"$tog_published_link\"> ".__('Published')."</li>
|
||||
<!-- <li><span class=\"insensitive\">--------</span></li> -->
|
||||
<li class=\"insensitive\">".__('Mark as read:')."</li>
|
||||
<li onclick=\"$catchup_sel_link\"> ".__('Selection')."</li>";
|
||||
<li class=\"insensitive\">".__('Selection:')."</li>
|
||||
<li onclick=\"$catchup_sel_link\"> ".__('Mark as read')."</li>";
|
||||
|
||||
print "<li onclick=\"$catchup_feed_link\"> ".__('Entire feed').
|
||||
"</li>";
|
||||
// print "<li onclick=\"$catchup_feed_link\"> ".__('Entire feed').
|
||||
// "</li>";
|
||||
|
||||
if ($feed_id != "0") {
|
||||
print "<li class=\"insensitive\">".__('Selection:')."</li>
|
||||
<li onclick=\"$archive_sel_link\"> ".__('Archive')."</li>
|
||||
<li onclick=\"$delete_sel_link\"> ".__('Delete')."</li>";
|
||||
print "<li onclick=\"$archive_sel_link\"> ".__('Archive')."</li>";
|
||||
} else {
|
||||
print "<li class=\"insensitive\">".__('Selection:')."</li>
|
||||
<li onclick=\"$archive_sel_link\"> ".__('Move back')."</li>
|
||||
<li onclick=\"$delete_sel_link\"> ".__('Delete')."</li>";
|
||||
print "<li onclick=\"$archive_sel_link\"> ".__('Move back')."</li>";
|
||||
}
|
||||
|
||||
print "<li onclick=\"$delete_sel_link\"> ".__('Delete')."</li>";
|
||||
|
||||
//print "<li><span class=\"insensitive\">--------</span></li>";
|
||||
print "<li class=\"insensitive\">".__('Assign label:')."</li>";
|
||||
|
||||
|
||||
@@ -244,7 +244,6 @@
|
||||
<option value="score"><?php echo __('Score') ?></option>
|
||||
</select>
|
||||
|
||||
|
||||
<?php echo __('Limit:') ?>
|
||||
<?php
|
||||
$limits = array(15 => 15, 30 => 30, 60 => 60, 0 => __("All"));
|
||||
@@ -272,6 +271,10 @@
|
||||
onclick="return viewCurrentFeed('ForceUpdate')"
|
||||
value="<?php echo __('Update') ?>"/>
|
||||
|
||||
<input class="button" type="submit" name="update"
|
||||
onclick="return catchupCurrentFeed()"
|
||||
value="<?php echo __('Mark as read') ?>"/>
|
||||
|
||||
</form>
|
||||
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user