summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2016-01-25 09:59:45 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2016-01-25 09:59:45 +0100
commitd62ea666453f26b46635e558afa493c31d0efff8 (patch)
treefb9fd4bdc4e7fd4c95182c0a877e683520ebf80d
parente84a663b05e87156bdea4e4e8862c5c16b3070bc (diff)
parent605df6c36b2f33de82e9f114cc857aca4ef6c501 (diff)
downloadnextcloud-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.php4
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}}