diff options
author | Volkan Gezer <volkangezer@gmail.com> | 2014-06-06 18:31:04 +0200 |
---|---|---|
committer | Volkan Gezer <volkangezer@gmail.com> | 2014-06-06 18:31:04 +0200 |
commit | 713a1c683b6791c90cddd641c7e3f6f6e6c173e7 (patch) | |
tree | 524618ebeba288921be55ffbfa25a927c9483f32 /core/templates | |
parent | 1a519b851d3a867d13c9fc25b0cff6ec9cb29642 (diff) | |
download | nextcloud-server-713a1c683b6791c90cddd641c7e3f6f6e6c173e7.tar.gz nextcloud-server-713a1c683b6791c90cddd641c7e3f6f6e6c173e7.zip |
wrap App text with t() to let it use locales
Diffstat (limited to 'core/templates')
-rw-r--r-- | core/templates/layout.user.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index e39bb94ed98..efa169c333b 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -50,7 +50,7 @@ </a> <a href="#" class="menutoggle"> <div class="header-appname"> - <?php p(!empty($_['application'])?$_['application']:'Apps'); ?> + <?php p(!empty($_['application'])?$_['application']: $l->t('Apps')); ?> </div> <div class="icon-caret"></div> </a> |