summaryrefslogtreecommitdiffstats
path: root/index.php
diff options
context:
space:
mode:
authorAlessandro Cosentino <cosenal@gmail.com>2012-07-08 17:15:12 -0400
committerAlessandro Cosentino <cosenal@gmail.com>2012-07-08 17:15:12 -0400
commit365eb073ba61d9690697bedd2a683a234165d26e (patch)
tree56ed35abc7f725df8edf96a9c3fb1b7d847fc893 /index.php
parente62ad61be429fe81e27cd5f8d374d938a5fd2bf5 (diff)
new names for the user view
Diffstat (limited to 'index.php')
-rw-r--r--index.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/index.php b/index.php
index 75a8485e6..e75ec19d6 100644
--- a/index.php
+++ b/index.php
@@ -20,14 +20,16 @@ OCP\App::setActiveNavigationEntry('news');
OCP\Util::addscript('news','news');
OCP\Util::addStyle('news','news');
+$l = OC_L10N::get('news');
+
$foldermapper = new OC_News_FolderMapper(OCP\USER::getUser());
-$allfeeds = $foldermapper->populate('All Feeds', 0);
+$allfeeds = $foldermapper->populate($l->t('Everything'), 0);
if ($allfeeds) {
$feedid = isset( $_GET['feedid'] ) ? $_GET['feedid'] : null;
if ($feedid == null) {
-
+
}
}
else {