summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-05-20 10:50:24 +0100
committerAndrew Dolgov <[email protected]>2006-05-20 10:50:24 +0100
commitc6932f8da234df5b53eef4b599fbcf6999f3c84b (patch)
tree3501865ff4a622595c224ab271af7b2cb7cb9774
parent673d54caa558f33950e8534be5a9906f6345acb1 (diff)
somewhat friendlier purge/update names in feed editor
-rw-r--r--backend.php26
1 files changed, 14 insertions, 12 deletions
diff --git a/backend.php b/backend.php
index 6a3f7ecf3..6e7136e2a 100644
--- a/backend.php
+++ b/backend.php
@@ -63,21 +63,21 @@
}
$purge_intervals = array(
- 0 => "Default",
+ 0 => "Use default",
-1 => "Never purge",
- 5 => "1 week",
- 14 => "2 weeks",
- 31 => "1 month",
- 60 => "2 months",
- 90 => "3 months");
+ 5 => "1 week old",
+ 14 => "2 weeks old",
+ 31 => "1 month old",
+ 60 => "2 months old",
+ 90 => "3 months old");
$update_intervals = array(
- 0 => "Default",
+ 0 => "Use default",
-1 => "Disable updates",
- 30 => "30 minutes",
- 60 => "1 hour",
- 240 => "4 hours",
- 720 => "12 hours",
+ 30 => "Each 30 minutes",
+ 60 => "Hourly",
+ 240 => "Each 4 hours",
+ 720 => "Each 12 hours",
1440 => "Daily",
10080 => "Weekly");
@@ -1508,7 +1508,7 @@
$purge_interval = db_fetch_result($result, 0, "purge_interval");
# $row_class = toggleEvenOdd($row_class);
- print "<tr class='$row_class'><td>Purge Days:</td>";
+ print "<tr class='$row_class'><td>Article purging:</td>";
// print "<td><input id=\"iedit_purgintl\"
// value=\"$purge_interval\"></td></tr>";
@@ -2763,6 +2763,8 @@
print "<div id=\"infoBoxTitle\">Create filter</div>";
print "<div class=\"infoBoxContents\">";
+// print "<div class=\"notice\"><b>Note:</b> filter will only apply to new articles.</div>";
+
$result = db_query($link, "SELECT description
FROM ttrss_filter_types ORDER BY description");