summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2012-08-11 02:42:46 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2012-08-11 02:42:46 +0200
commit627865d433609eb7b12eb075a68a29d9fac31c3c (patch)
treed7aa9cc31d17c8736ab19e273a920ac81a2e1b4e /templates
parentc37d6ea2225e6b7ee93d2a294c33d81681fa843e (diff)
changed the foldername Everything to Subscriptions, removed strtoupper for foldername dropdown menu to prevent confusion, made the button for folder selection wider and hid overflow
Diffstat (limited to 'templates')
-rw-r--r--templates/part.feeddialog.php2
-rw-r--r--templates/part.folderdialog.php2
-rw-r--r--templates/part.folderlist.php2
3 files changed, 3 insertions, 3 deletions
diff --git a/templates/part.feeddialog.php b/templates/part.feeddialog.php
index 6807f3c5b..99332d421 100644
--- a/templates/part.feeddialog.php
+++ b/templates/part.feeddialog.php
@@ -6,7 +6,7 @@
<td>
<div class="add_parentfolder">
<button id="dropdownBtn" onclick="News.DropDownMenu.dropdown(this)">
- <?php echo $l->t('EVERYTHING'); ?>
+ <?php echo $l->t('Subscriptions'); ?>
</button>
<input id="inputfolderid" type="hidden" name="folderid" value="0" />
<ul class="menu" id="dropdownmenu">
diff --git a/templates/part.folderdialog.php b/templates/part.folderdialog.php
index e1217160c..fb1a819af 100644
--- a/templates/part.folderdialog.php
+++ b/templates/part.folderdialog.php
@@ -6,7 +6,7 @@
<td>
<div class="add_parentfolder">
<button id="dropdownBtn" onclick="News.DropDownMenu.dropdown(this)">
- <?php echo $l->t('EVERYTHING'); ?>
+ <?php echo $l->t('Subscriptions'); ?>
</button>
<input id="inputfolderid" type="hidden" name="folderid" value="0" />
<ul class="menu" id="dropdownmenu">
diff --git a/templates/part.folderlist.php b/templates/part.folderlist.php
index a5f9626c6..b4b966e3c 100644
--- a/templates/part.folderlist.php
+++ b/templates/part.folderlist.php
@@ -1,6 +1,6 @@
<?php
function print_folder(OC_News_Folder $folder, $depth){
- echo '<li style="margin-left:' . 10*$depth . 'px;" class="menuItem" onclick="News.DropDownMenu.selectItem(this, ' . $folder->getId() . ')">' . strtoupper($folder->getName()) . '</li>';
+ echo '<li style="margin-left:' . 10*$depth . 'px;" class="menuItem" onclick="News.DropDownMenu.selectItem(this, ' . $folder->getId() . ')">' . $folder->getName() . '</li>';
$children = $folder->getChildren();
foreach($children as $child) {
if ($child instanceOf OC_News_Folder){