webpack-angular-translate
Version:
Webpack plugin that extracts the translation-ids with the default texts.
17 lines (16 loc) • 399 B
HTML
<h2 ng-if="edit.user.id" translate>Benutzer bearbeiten</h2>
<h2 ng-if="!edit.user.id" translate>Neuen Benuzer erstellen</h2>
<div>
<tabset>
<tab
ng-repeat="t in edit.tabs"
heading="{{t.heading | translate}}"
select="edit.changeTab(t.route)"
active="t.active"
disabled="t.disabled"
suppress-dynamic-translation-error
>
<div ui-view></div>
</tab>
</tabset>
</div>