Adding i18n keys for the labels for handles

This commit is contained in:
lhenze
2019-09-04 14:57:26 -04:00
parent 50c3c4133f
commit d6bcdda8a0
3 changed files with 5 additions and 3 deletions

View File

@@ -133,6 +133,7 @@
"collection.form.title": "Name",
"collection.page.browse.recent.head": "Recent Submissions",
"collection.page.browse.recent.empty": "No items to show",
"collection.page.handle": "Handle",
"collection.page.license": "License",
"collection.page.news": "News",
"community.create.head": "Create a Community",
@@ -151,6 +152,7 @@
"community.form.rights": "Copyright text (HTML)",
"community.form.tableofcontents": "News (HTML)",
"community.form.title": "Name",
"community.page.handle": "Handle",
"community.page.license": "License",
"community.page.news": "News",
"community.sub-collection-list.head": "Collections of this Community",

View File

@@ -13,10 +13,10 @@
<ds-comcol-page-content [content]="collection.introductoryText" [hasInnerHtml]="true">
</ds-comcol-page-content>
<!-- News -->
<ds-comcol-page-content [content]="collection.sidebarText" [hasInnerHtml]="true" [title]="'community.page.news'">
<ds-comcol-page-content [content]="collection.sidebarText" [hasInnerHtml]="true" [title]="'collection.page.news'">
</ds-comcol-page-content>
<!-- Handle -->
<ds-comcol-page-content [content]="collection.handle" [hasInnerHtml]="true" [title]="'Handle'" >
<ds-comcol-page-content [content]="collection.handle" [hasInnerHtml]="true" [title]="'collection.page.handle'" >
</ds-comcol-page-content>
<!-- Browse-By Links -->
<ds-comcol-page-browse-by [id]="collection.id" [contentType]="collection.type"></ds-comcol-page-browse-by>

View File

@@ -25,7 +25,7 @@
[hasInnerHtml]="true">
</ds-comcol-page-content>
<!-- Handle -->
<ds-comcol-page-content [content]="communityPayload.handle" [hasInnerHtml]="true" [title]="'Handle'" >
<ds-comcol-page-content [content]="communityPayload.handle" [hasInnerHtml]="true" [title]="'community.page.handle'" >
</ds-comcol-page-content>
<!-- Browse-By Links -->
<ds-comcol-page-browse-by [id]="communityPayload.id" [contentType]="communityPayload.type"></ds-comcol-page-browse-by>