Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,9 @@
[separator]="', '"
[label]="'item.page.subject'">
</ds-generic-item-page-field>
<ds-item-page-funder-field [item]="object"
[label]="'item.page.funder'">
</ds-item-page-funder-field>
<ds-generic-item-page-field [item]="object"
[fields]="['dc.identifier.citation']"
[label]="'item.page.citation'">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import { ItemPageAbstractFieldComponent } from '../../field-components/specific-field/abstract/item-page-abstract-field.component';
import { ItemPageCitationFieldComponent } from '../../field-components/specific-field/citation/item-page-citation.component';
import { ItemPageDateFieldComponent } from '../../field-components/specific-field/date/item-page-date-field.component';
import { ItemPageFunderFieldComponent } from '../../field-components/specific-field/funder/item-page-funder-field.component';
Comment thread
Kasinhou marked this conversation as resolved.
import { GenericItemPageFieldComponent } from '../../field-components/specific-field/generic/generic-item-page-field.component';
import { GeospatialItemPageFieldComponent } from '../../field-components/specific-field/geospatial/geospatial-item-page-field.component';
import { ThemedItemPageTitleFieldComponent } from '../../field-components/specific-field/title/themed-item-page-field.component';
Expand All @@ -38,12 +39,13 @@
templateUrl: './publication.component.html',
changeDetection: ChangeDetectionStrategy.OnPush,
standalone: true,
imports: [

Check failure on line 42 in src/app/item-page/simple/item-types/publication/publication.component.ts

View workflow job for this annotation

GitHub Actions / tests (18.x)

Standalone imports should be sorted alphabetically

Check failure on line 42 in src/app/item-page/simple/item-types/publication/publication.component.ts

View workflow job for this annotation

GitHub Actions / tests (20.x)

Standalone imports should be sorted alphabetically
AsyncPipe,
CollectionsComponent,
DsoEditMenuComponent,
GenericItemPageFieldComponent,
GeospatialItemPageFieldComponent,
ItemPageFunderFieldComponent,
ItemPageAbstractFieldComponent,
ItemPageCitationFieldComponent,
ItemPageDateFieldComponent,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,9 @@
[separator]="', '"
[label]="'item.page.subject'">
</ds-generic-item-page-field>
<ds-item-page-funder-field [item]="object"
[label]="'item.page.funder'">
</ds-item-page-funder-field>
<ds-generic-item-page-field [item]="object"
[fields]="['dc.identifier.citation']"
[label]="'item.page.citation'">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
import { ItemPageCcLicenseFieldComponent } from '../../field-components/specific-field/cc-license/item-page-cc-license-field.component';
import { ItemPageCitationFieldComponent } from '../../field-components/specific-field/citation/item-page-citation.component';
import { ItemPageDateFieldComponent } from '../../field-components/specific-field/date/item-page-date-field.component';
import { ItemPageFunderFieldComponent } from '../../field-components/specific-field/funder/item-page-funder-field.component';
Comment thread
Kasinhou marked this conversation as resolved.
import { GenericItemPageFieldComponent } from '../../field-components/specific-field/generic/generic-item-page-field.component';
import { GeospatialItemPageFieldComponent } from '../../field-components/specific-field/geospatial/geospatial-item-page-field.component';
import { ThemedItemPageTitleFieldComponent } from '../../field-components/specific-field/title/themed-item-page-field.component';
Expand All @@ -39,12 +40,13 @@
templateUrl: './untyped-item.component.html',
changeDetection: ChangeDetectionStrategy.OnPush,
standalone: true,
imports: [

Check failure on line 43 in src/app/item-page/simple/item-types/untyped-item/untyped-item.component.ts

View workflow job for this annotation

GitHub Actions / tests (18.x)

Standalone imports should be sorted alphabetically

Check failure on line 43 in src/app/item-page/simple/item-types/untyped-item/untyped-item.component.ts

View workflow job for this annotation

GitHub Actions / tests (20.x)

Standalone imports should be sorted alphabetically
AsyncPipe,
CollectionsComponent,
DsoEditMenuComponent,
GenericItemPageFieldComponent,
GeospatialItemPageFieldComponent,
ItemPageFunderFieldComponent,
ItemPageAbstractFieldComponent,
ItemPageCcLicenseFieldComponent,
ItemPageCitationFieldComponent,
Expand Down
3 changes: 3 additions & 0 deletions src/assets/i18n/cs.json5
Original file line number Diff line number Diff line change
Expand Up @@ -4466,6 +4466,9 @@
// "item.page.subject": "Keywords",
"item.page.subject": "Klíčová slova",

// "item.page.funder": "Funder",
"item.page.funder": "Poskytovatel",
Comment thread
milanmajchrak marked this conversation as resolved.
Outdated

// "item.page.uri": "Identifier",
"item.page.uri": "Identifikátor",

Expand Down
2 changes: 2 additions & 0 deletions src/assets/i18n/en.json5
Original file line number Diff line number Diff line change
Expand Up @@ -2977,6 +2977,8 @@

"item.page.subject": "Keywords",

"item.page.funder": "Funder",

"item.page.uri": "Identifier",

"item.page.bitstreams.view-more": "Show more",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
import { ItemPageAbstractFieldComponent } from '../../../../../../../app/item-page/simple/field-components/specific-field/abstract/item-page-abstract-field.component';
import { ItemPageCitationFieldComponent } from '../../../../../../../app/item-page/simple/field-components/specific-field/citation/item-page-citation.component';
import { ItemPageDateFieldComponent } from '../../../../../../../app/item-page/simple/field-components/specific-field/date/item-page-date-field.component';
import { ItemPageFunderFieldComponent } from '../../../../../../../app/item-page/simple/field-components/specific-field/funder/item-page-funder-field.component';
Comment thread
Kasinhou marked this conversation as resolved.
import { GenericItemPageFieldComponent } from '../../../../../../../app/item-page/simple/field-components/specific-field/generic/generic-item-page-field.component';
import { GeospatialItemPageFieldComponent } from '../../../../../../../app/item-page/simple/field-components/specific-field/geospatial/geospatial-item-page-field.component';
import { ThemedItemPageTitleFieldComponent } from '../../../../../../../app/item-page/simple/field-components/specific-field/title/themed-item-page-field.component';
Expand All @@ -37,13 +38,14 @@
templateUrl: '../../../../../../../app/item-page/simple/item-types/publication/publication.component.html',
changeDetection: ChangeDetectionStrategy.OnPush,
standalone: true,
imports: [

Check failure on line 41 in src/themes/custom/app/item-page/simple/item-types/publication/publication.component.ts

View workflow job for this annotation

GitHub Actions / tests (18.x)

Standalone imports should be sorted alphabetically

Check failure on line 41 in src/themes/custom/app/item-page/simple/item-types/publication/publication.component.ts

View workflow job for this annotation

GitHub Actions / tests (20.x)

Standalone imports should be sorted alphabetically
AsyncPipe,
CollectionsComponent,
DsoEditMenuComponent,
GenericItemPageFieldComponent,
GeospatialItemPageFieldComponent,
ItemPageAbstractFieldComponent,
ItemPageFunderFieldComponent,
ItemPageCitationFieldComponent,
ItemPageDateFieldComponent,
ItemPageUriFieldComponent,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
import { ItemPageCcLicenseFieldComponent } from '../../../../../../../app/item-page/simple/field-components/specific-field/cc-license/item-page-cc-license-field.component';
import { ItemPageCitationFieldComponent } from '../../../../../../../app/item-page/simple/field-components/specific-field/citation/item-page-citation.component';
import { ItemPageDateFieldComponent } from '../../../../../../../app/item-page/simple/field-components/specific-field/date/item-page-date-field.component';
import { ItemPageFunderFieldComponent } from '../../../../../../../app/item-page/simple/field-components/specific-field/funder/item-page-funder-field.component';
Comment thread
Kasinhou marked this conversation as resolved.
import { GenericItemPageFieldComponent } from '../../../../../../../app/item-page/simple/field-components/specific-field/generic/generic-item-page-field.component';
import { GeospatialItemPageFieldComponent } from '../../../../../../../app/item-page/simple/field-components/specific-field/geospatial/geospatial-item-page-field.component';
import { ThemedItemPageTitleFieldComponent } from '../../../../../../../app/item-page/simple/field-components/specific-field/title/themed-item-page-field.component';
Expand All @@ -41,13 +42,14 @@
'../../../../../../../app/item-page/simple/item-types/untyped-item/untyped-item.component.html',
changeDetection: ChangeDetectionStrategy.OnPush,
standalone: true,
imports: [

Check failure on line 45 in src/themes/custom/app/item-page/simple/item-types/untyped-item/untyped-item.component.ts

View workflow job for this annotation

GitHub Actions / tests (18.x)

Standalone imports should be sorted alphabetically

Check failure on line 45 in src/themes/custom/app/item-page/simple/item-types/untyped-item/untyped-item.component.ts

View workflow job for this annotation

GitHub Actions / tests (20.x)

Standalone imports should be sorted alphabetically
AsyncPipe,
CollectionsComponent,
DsoEditMenuComponent,
GenericItemPageFieldComponent,
GeospatialItemPageFieldComponent,
ItemPageAbstractFieldComponent,
ItemPageFunderFieldComponent,
ItemPageCcLicenseFieldComponent,
ItemPageCitationFieldComponent,
ItemPageDateFieldComponent,
Expand Down
Loading