aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2011-05-04 07:58:21 +0200
committercedricbonhomme <devnull@localhost>2011-05-04 07:58:21 +0200
commit551addb09952b75767a2aa5a3fe2f42de850fbfa (patch)
tree51f464e856c07ccdbea987c82ac35ca571b385f2
parentMinor: Added informations about how many articles are currently loaded from t... (diff)
downloadnewspipe-551addb09952b75767a2aa5a3fe2f42de850fbfa.tar.gz
newspipe-551addb09952b75767a2aa5a3fe2f42de850fbfa.tar.bz2
newspipe-551addb09952b75767a2aa5a3fe2f42de850fbfa.zip
Renamed the string 'feeds' to 'articles' in the management page.
-rwxr-xr-xpyAggr3g470r.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py
index b5de302e..33a5da2c 100755
--- a/pyAggr3g470r.py
+++ b/pyAggr3g470r.py
@@ -290,7 +290,7 @@ class Root:
html += "<br />All articles are currently loaded.\n"
else:
html += "<br />For each feed only " + str(utils.MAX_NB_ARTICLES) + " articles are currently loaded. "
- html += '<a href="/set_max_articles/-1">Load all feeds.</a><br />\n'
+ html += '<a href="/set_max_articles/-1">Load all articles.</a><br />\n'
html += "</form>\n"
# Export functions
bgstack15