initial i18n messages for loading and error components

This commit is contained in:
William Welling
2017-10-05 08:24:19 -05:00
parent 5b45871bff
commit cb72e4db07
13 changed files with 101 additions and 26 deletions

View File

@@ -15,6 +15,6 @@
<ds-wrapper-list-element [object]="object"></ds-wrapper-list-element>
</li>
</ul>
<ds-error *ngIf="objects.hasFailed | async" message="Error fetching"></ds-error>
<ds-loading *ngIf="objects.isLoading | async" message="Loading..."></ds-loading>
<ds-error *ngIf="objects.hasFailed | async" message="{{'error.objects' | translate}}"></ds-error>
<ds-loading *ngIf="objects.isLoading | async" message="{{'loading.objects' | translate}}"></ds-loading>
</ds-pagination>