118n keys

This commit is contained in:
L. Henze
2019-09-18 13:41:32 -04:00
parent 5341beae1e
commit 8cec08b29f
2 changed files with 3 additions and 4 deletions

View File

@@ -143,7 +143,6 @@
"collection.page.handle": "Collection Handle",
"collection.page.license": "License",
"collection.page.news": "News",
"collection.landing.head": "Submission date",
"community.create.head": "Create a Community",
"community.create.sub-head": "Create a Sub-Community for Community {{ parent }}",
@@ -164,7 +163,7 @@
"community.page.handle": "Community Handle",
"community.page.license": "License",
"community.page.news": "News",
"community.landing.head": "Subcommunities and Collections",
"community.all-lists.head": "Subcommunities and Collections",
"community.sub-collection-list.head": "Collections of this Community",
"community.sub-community-list.head": "Communities of this Community",

View File

@@ -1,8 +1,8 @@
<h2 class="comcol-browse-label">{{'browse.comcol.head' | translate}}</h2>
<nav class="comcol-browse" aria-label="Browse Community or Collection" >
<div class="list-group list-group-horizontal">
<a *ngIf="contentType=='collection'" [routerLink]="['/collections/' + id ]" class="list-group-item" routerLinkActive="active">{{'collection.landing.head' | translate}}</a>
<a *ngIf="contentType=='community'" [routerLink]="['/communities/' + id ]" class="list-group-item" routerLinkActive="active" >{{'community.landing.head' | translate}}</a>
<a *ngIf="contentType=='collection'" [routerLink]="['/collections/' + id ]" class="list-group-item" routerLinkActive="active">{{'collection.page.browse.recent.head' | translate}}</a>
<a *ngIf="contentType=='community'" [routerLink]="['/communities/' + id ]" class="list-group-item" routerLinkActive="active" >{{'community.all-lists.head' | translate}}</a>
<a *ngFor="let config of types" class="list-group-item" [routerLink]="['/browse/' + config.id]" [queryParams]="{scope: id}" routerLinkActive="active">{{'browse.comcol.by.' + config.id | translate}}</a>
</div>
</nav>