diff options
author | Raghu Nayyar <me@iraghu.com> | 2014-06-06 22:39:31 +0530 |
---|---|---|
committer | Raghu Nayyar <me@iraghu.com> | 2014-06-06 22:39:31 +0530 |
commit | dfe6bd61bf315693dd447cda0f66d5a4c23128f1 (patch) | |
tree | 68c79d09df092c12e8ed859af6ca1121fc67cda7 | |
parent | 506f7adb12d2da0916fadb22b6f2ddd2c52ba708 (diff) | |
parent | 713a1c683b6791c90cddd641c7e3f6f6e6c173e7 (diff) | |
download | nextcloud-server-dfe6bd61bf315693dd447cda0f66d5a4c23128f1.tar.gz nextcloud-server-dfe6bd61bf315693dd447cda0f66d5a4c23128f1.zip |
Merge pull request #8935 from owncloud/missed-apps-tag
wrap App text with t() to let it use locales
-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> |