diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2016-01-25 09:59:45 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2016-01-25 09:59:45 +0100 |
commit | d62ea666453f26b46635e558afa493c31d0efff8 (patch) | |
tree | fb9fd4bdc4e7fd4c95182c0a877e683520ebf80d | |
parent | e84a663b05e87156bdea4e4e8862c5c16b3070bc (diff) | |
parent | 605df6c36b2f33de82e9f114cc857aca4ef6c501 (diff) | |
download | nextcloud-server-d62ea666453f26b46635e558afa493c31d0efff8.tar.gz nextcloud-server-d62ea666453f26b46635e558afa493c31d0efff8.zip |
Merge pull request #21878 from owncloud/fix-apps-management-templating
Include author and license in l10n string to be able to change order
-rw-r--r-- | settings/templates/apps.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/settings/templates/apps.php b/settings/templates/apps.php index 94efd76c7c2..489062d5191 100644 --- a/settings/templates/apps.php +++ b/settings/templates/apps.php @@ -60,9 +60,9 @@ script( </h2> <div class="app-version"> {{version}}</div> {{#if profilepage}}<a href="{{profilepage}}" target="_blank" rel="noreferrer">{{/if}} - <div class="app-author"><?php p($l->t('by')); ?> {{author}} + <div class="app-author"><?php p($l->t('by %s', ['{{author}}']));?> {{#if licence}} - ({{licence}}-<?php p($l->t('licensed')); ?>) + (<?php p($l->t('%s-licensed', ['{{licence}}'])); ?>) {{/if}} </div> {{#if profilepage}}</a>{{/if}} |