summaryrefslogtreecommitdiffstats
path: root/core/templates
diff options
context:
space:
mode:
authorRobin Appelman <icewind1991@gmail.com>2011-08-09 17:54:02 +0200
committerRobin Appelman <icewind1991@gmail.com>2011-08-10 14:03:54 +0200
commit9059b559791b9f5333c24815c4bfd77cc6201c5e (patch)
treef0b0ca5d7f60707650d81dac2c2a61091d7c2709 /core/templates
parent32be4746f8514e06e838b4aa0ee45cb832df1b2c (diff)
downloadnextcloud-server-9059b559791b9f5333c24815c4bfd77cc6201c5e.tar.gz
nextcloud-server-9059b559791b9f5333c24815c4bfd77cc6201c5e.zip
make more strings translatable
Diffstat (limited to 'core/templates')
-rw-r--r--core/templates/layout.user.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php
index 2dce647873f..3b065ef6ede 100644
--- a/core/templates/layout.user.php
+++ b/core/templates/layout.user.php
@@ -32,7 +32,7 @@
<a href="<?php echo link_to('', 'index.php'); ?>" title="" id="owncloud"><img src="<?php echo image_path('', 'owncloud-logo-small-white.png'); ?>" alt="ownCloud" /></a>
<?php echo $_['searchbox']?>
<ul id="metanav">
- <li><a href="<?php echo link_to('', 'index.php'); ?>?logout=true" title="Log out"><img class='svg' src="<?php echo image_path('', 'actions/logout.svg'); ?>" /></a></li>
+ <li><a href="<?php echo link_to('', 'index.php'); ?>?logout=true" title="<?php echo $l->t('Log out');?>"><img class='svg' src="<?php echo image_path('', 'actions/logout.svg'); ?>" /></a></li>
</ul>
</div></header>
@@ -52,6 +52,7 @@
</ul>
<ul id="settings">
<img id="expand" class='svg' src="<?php echo image_path('', 'actions/settings.svg'); ?>" />
+ <span style="display:none"><?php echo $l->t('Settings');?></span>
<?php foreach($_['settingsnavigation'] as $entry):?>
<li><a style="background-image:url(<?php echo $entry['icon']; ?>)" href="<?php echo $entry['href']; ?>" title="" <?php if( $entry["active"] ): ?> class="active"<?php endif; ?>><?php echo $entry['name'] ?></a></li>
<?php if( sizeof( $entry["subnavigation"] )): ?>