Merge pull request #21878 from owncloud/fix-apps-management-templating

Include author and license in l10n string to be able to change order
This commit is contained in:
Thomas Müller 2016-01-25 09:59:45 +01:00
commit d62ea66645

View file

@ -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}}