mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
Merge branch 'main' into #885-media-viewer
This commit is contained in:
87
.github/workflows/build.yml
vendored
Normal file
87
.github/workflows/build.yml
vendored
Normal file
@@ -0,0 +1,87 @@
|
||||
# DSpace Continuous Integration/Build via GitHub Actions
|
||||
# Concepts borrowed from
|
||||
# https://docs.github.com/en/free-pro-team@latest/actions/guides/building-and-testing-nodejs
|
||||
name: Build
|
||||
|
||||
# Run this Build for all pushes / PRs to current branch
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
tests:
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
# The ci step will test the dspace-angular code against DSpace REST.
|
||||
# Direct that step to utilize a DSpace REST service that has been started in docker.
|
||||
DSPACE_REST_HOST: localhost
|
||||
DSPACE_REST_PORT: 8080
|
||||
DSPACE_REST_NAMESPACE: '/server'
|
||||
DSPACE_REST_SSL: false
|
||||
strategy:
|
||||
# Create a matrix of Node versions to test against (in parallel)
|
||||
matrix:
|
||||
node-version: [10.x, 12.x]
|
||||
# Do NOT exit immediately if one matrix job fails
|
||||
fail-fast: false
|
||||
# These are the actual CI steps to perform per job
|
||||
steps:
|
||||
# https://github.com/actions/checkout
|
||||
- name: Checkout codebase
|
||||
uses: actions/checkout@v1
|
||||
|
||||
# https://github.com/actions/setup-node
|
||||
- name: Install Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
|
||||
- name: Install latest Chrome (for e2e tests)
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get --only-upgrade install google-chrome-stable -y
|
||||
google-chrome --version
|
||||
|
||||
# https://github.com/actions/cache/blob/main/examples.md#node---yarn
|
||||
- name: Get Yarn cache directory
|
||||
id: yarn-cache-dir-path
|
||||
run: echo "::set-output name=dir::$(yarn cache dir)"
|
||||
- name: Cache Yarn dependencies
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
# Cache entire Yarn cache directory (see previous step)
|
||||
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
||||
# Cache key is hash of yarn.lock. Therefore changes to yarn.lock will invalidate cache
|
||||
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
||||
restore-keys: ${{ runner.os }}-yarn-
|
||||
|
||||
- name: Install Yarn dependencies
|
||||
run: yarn install --frozen-lockfile
|
||||
|
||||
- name: Run lint
|
||||
run: yarn run lint
|
||||
|
||||
- name: Run build
|
||||
run: yarn run build:prod
|
||||
|
||||
- name: Run specs (unit tests)
|
||||
run: yarn run test:headless
|
||||
|
||||
# Using docker-compose start backend using CI configuration
|
||||
# and load assetstore from a cached copy
|
||||
- name: Start DSpace REST Backend via Docker (for e2e tests)
|
||||
run: |
|
||||
docker-compose -f ./docker/docker-compose-ci.yml up -d
|
||||
docker-compose -f ./docker/cli.yml -f ./docker/cli.assetstore.yml run --rm dspace-cli
|
||||
docker container ls
|
||||
|
||||
- name: Run e2e tests (integration tests)
|
||||
run: yarn run e2e:ci
|
||||
|
||||
- name: Shutdown Docker containers
|
||||
run: docker-compose -f ./docker/docker-compose-ci.yml down
|
||||
|
||||
# NOTE: Angular CLI only supports code coverage for specs. See https://github.com/angular/angular-cli/issues/6286
|
||||
# Upload coverage reports to Codecov (for Node v12 only)
|
||||
# https://github.com/codecov/codecov-action
|
||||
- name: Upload coverage to Codecov.io
|
||||
uses: codecov/codecov-action@v1
|
||||
if: matrix.node-version == '12.x'
|
66
.travis.yml
66
.travis.yml
@@ -1,66 +0,0 @@
|
||||
os: linux
|
||||
dist: bionic
|
||||
language: node_js
|
||||
|
||||
# Enable caching for yarn & node_modules
|
||||
cache:
|
||||
yarn: true
|
||||
|
||||
node_js:
|
||||
- "10"
|
||||
- "12"
|
||||
|
||||
# Install latest chrome (for e2e headless testing). Run an update if needed.
|
||||
addons:
|
||||
apt:
|
||||
sources:
|
||||
- google-chrome
|
||||
packages:
|
||||
- google-chrome-stable
|
||||
update: true
|
||||
|
||||
env:
|
||||
# The ci step will test the dspace-angular code against DSpace REST.
|
||||
# Direct that step to utilize a DSpace REST service that has been started in docker.
|
||||
DSPACE_REST_HOST: localhost
|
||||
DSPACE_REST_PORT: 8080
|
||||
DSPACE_REST_NAMESPACE: '/server'
|
||||
DSPACE_REST_SSL: false
|
||||
|
||||
before_install:
|
||||
# Check our versions of everything
|
||||
- echo "Check versions"
|
||||
- yarn -v
|
||||
- docker-compose -v
|
||||
- google-chrome-stable --version
|
||||
|
||||
install:
|
||||
# Start up a test DSpace 7 REST backend using the entities database dump
|
||||
- docker-compose -f ./docker/docker-compose-travis.yml up -d
|
||||
# Use the dspace-cli image to populate the assetstore. Triggers a discovery and oai update
|
||||
- docker-compose -f ./docker/cli.yml -f ./docker/cli.assetstore.yml run --rm dspace-cli
|
||||
# Install all local dependencies (retry if initially fails)
|
||||
- travis_retry yarn install
|
||||
|
||||
before_script:
|
||||
- echo "Check Docker containers"
|
||||
- docker container ls
|
||||
# The following line could be enabled to verify that the rest server is responding.
|
||||
#- echo "Check REST API available (via Docker)"
|
||||
#- curl http://localhost:8080/server/
|
||||
|
||||
script:
|
||||
# build app and run all tests
|
||||
- ng lint || travis_terminate 1;
|
||||
- travis_wait yarn run build:prod || travis_terminate 1;
|
||||
- yarn test:headless || travis_terminate 1;
|
||||
- yarn run e2e:ci || travis_terminate 1;
|
||||
|
||||
after_script:
|
||||
# Shutdown docker after everything runs
|
||||
- docker-compose -f ./docker/docker-compose-travis.yml down
|
||||
|
||||
# After a successful build and test (see 'script'), send code coverage reports to codecov.io
|
||||
# NOTE: As there's no need to send coverage multiple times, we only run this for one version of node.
|
||||
after_success:
|
||||
- if [ "$TRAVIS_NODE_VERSION" = "12" ]; then bash <(curl -s https://codecov.io/bash); fi
|
@@ -1,4 +1,4 @@
|
||||
[](https://travis-ci.com/DSpace/dspace-angular) [](https://codecov.io/gh/DSpace/dspace-angular) [](https://github.com/angular/universal)
|
||||
[](https://github.com/DSpace/dspace-angular/actions?query=workflow%3ABuild) [](https://codecov.io/gh/DSpace/dspace-angular) [](https://github.com/angular/universal)
|
||||
|
||||
dspace-angular
|
||||
==============
|
||||
|
@@ -1,3 +1,4 @@
|
||||
# Docker Compose for running the DSpace backend for e2e testing in CI
|
||||
networks:
|
||||
dspacenet:
|
||||
services:
|
@@ -17,7 +17,7 @@ describe('CollectionCurateComponent', () => {
|
||||
let dsoNameService;
|
||||
|
||||
const collection = Object.assign(new Collection(), {
|
||||
handle: '123456789/1', metadata: {'dc.title': ['Collection Name']}
|
||||
metadata: {'dc.title': ['Collection Name'], 'dc.identifier.uri': [ { value: '123456789/1'}]}
|
||||
});
|
||||
|
||||
beforeEach(async(() => {
|
||||
|
@@ -17,7 +17,7 @@ describe('CommunityCurateComponent', () => {
|
||||
let dsoNameService;
|
||||
|
||||
const community = Object.assign(new Community(), {
|
||||
handle: '123456789/1', metadata: {'dc.title': ['Community Name']}
|
||||
metadata: {'dc.title': ['Community Name'], 'dc.identifier.uri': [ { value: '123456789/1'}]}
|
||||
});
|
||||
|
||||
beforeEach(async(() => {
|
||||
|
24
src/app/core/shared/collection.model.spec.ts
Normal file
24
src/app/core/shared/collection.model.spec.ts
Normal file
@@ -0,0 +1,24 @@
|
||||
import {Collection} from './collection.model';
|
||||
|
||||
describe('Collection', () => {
|
||||
|
||||
describe('Collection handle value', () => {
|
||||
|
||||
let metadataValue;
|
||||
|
||||
beforeEach(() => {
|
||||
metadataValue = {'dc.identifier.uri': [ { value: '123456789/1'}]};
|
||||
})
|
||||
|
||||
it('should return the handle value from metadata', () => {
|
||||
const community = Object.assign(new Collection(), { metadata: metadataValue });
|
||||
expect(community.handle).toEqual('123456789/1');
|
||||
});
|
||||
|
||||
it('should return undefined if the handle value from metadata is not present', () => {
|
||||
const community = Object.assign(new Collection(), { });
|
||||
expect(community.handle).toEqual(undefined);
|
||||
});
|
||||
});
|
||||
|
||||
});
|
@@ -1,4 +1,4 @@
|
||||
import { autoserialize, deserialize, inheritSerialization } from 'cerialize';
|
||||
import { deserialize, inheritSerialization } from 'cerialize';
|
||||
import { Observable } from 'rxjs';
|
||||
import { link, typedObject } from '../cache/builders/build-decorators';
|
||||
import { PaginatedList } from '../data/paginated-list';
|
||||
@@ -21,12 +21,6 @@ import { ChildHALResource } from './child-hal-resource.model';
|
||||
export class Collection extends DSpaceObject implements ChildHALResource {
|
||||
static type = COLLECTION;
|
||||
|
||||
/**
|
||||
* A string representing the unique handle of this Collection
|
||||
*/
|
||||
@autoserialize
|
||||
handle: string;
|
||||
|
||||
/**
|
||||
* The {@link HALLink}s for this Collection
|
||||
*/
|
||||
@@ -75,6 +69,13 @@ export class Collection extends DSpaceObject implements ChildHALResource {
|
||||
@link(COMMUNITY, false)
|
||||
parentCommunity?: Observable<RemoteData<Community>>;
|
||||
|
||||
/**
|
||||
* A string representing the unique handle of this Collection
|
||||
*/
|
||||
get handle(): string {
|
||||
return this.firstMetadataValue('dc.identifier.uri');
|
||||
}
|
||||
|
||||
/**
|
||||
* The introductory text of this Collection
|
||||
* Corresponds to the metadata field dc.description
|
||||
|
24
src/app/core/shared/community.model.spec.ts
Normal file
24
src/app/core/shared/community.model.spec.ts
Normal file
@@ -0,0 +1,24 @@
|
||||
import {Community} from './community.model';
|
||||
|
||||
describe('Community', () => {
|
||||
|
||||
describe('Community handle value', () => {
|
||||
|
||||
let metadataValue;
|
||||
|
||||
beforeEach(() => {
|
||||
metadataValue = {'dc.identifier.uri': [ { value: '123456789/1'}]};
|
||||
})
|
||||
|
||||
it('should return the handle value from metadata', () => {
|
||||
const community = Object.assign(new Community(), { metadata: metadataValue });
|
||||
expect(community.handle).toEqual('123456789/1');
|
||||
});
|
||||
|
||||
it('should return undefined if the handle value from metadata is not present', () => {
|
||||
const community = Object.assign(new Community(), { });
|
||||
expect(community.handle).toEqual(undefined);
|
||||
});
|
||||
});
|
||||
|
||||
});
|
@@ -1,4 +1,4 @@
|
||||
import { autoserialize, deserialize, inheritSerialization } from 'cerialize';
|
||||
import { deserialize, inheritSerialization } from 'cerialize';
|
||||
import { Observable } from 'rxjs';
|
||||
import { link, typedObject } from '../cache/builders/build-decorators';
|
||||
import { PaginatedList } from '../data/paginated-list';
|
||||
@@ -17,12 +17,6 @@ import { ChildHALResource } from './child-hal-resource.model';
|
||||
export class Community extends DSpaceObject implements ChildHALResource {
|
||||
static type = COMMUNITY;
|
||||
|
||||
/**
|
||||
* A string representing the unique handle of this Community
|
||||
*/
|
||||
@autoserialize
|
||||
handle: string;
|
||||
|
||||
/**
|
||||
* The {@link HALLink}s for this Community
|
||||
*/
|
||||
@@ -64,6 +58,13 @@ export class Community extends DSpaceObject implements ChildHALResource {
|
||||
@link(COMMUNITY, false)
|
||||
parentCommunity?: Observable<RemoteData<Community>>;
|
||||
|
||||
/**
|
||||
* A string representing the unique handle of this Community
|
||||
*/
|
||||
get handle(): string {
|
||||
return this.firstMetadataValue('dc.identifier.uri');
|
||||
}
|
||||
|
||||
/**
|
||||
* The introductory text of this Community
|
||||
* Corresponds to the metadata field dc.description
|
||||
|
@@ -0,0 +1,48 @@
|
||||
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
import { TranslateModule } from '@ngx-translate/core';
|
||||
import { By } from '@angular/platform-browser';
|
||||
import { ComcolPageHandleComponent } from './comcol-page-handle.component';
|
||||
|
||||
const handle = 'http://localhost:4000/handle/123456789/2';
|
||||
|
||||
describe('ComcolPageHandleComponent', () => {
|
||||
let component: ComcolPageHandleComponent;
|
||||
let fixture: ComponentFixture<ComcolPageHandleComponent>;
|
||||
|
||||
beforeEach(async(() => {
|
||||
TestBed.configureTestingModule({
|
||||
imports: [TranslateModule.forRoot()],
|
||||
declarations: [ ComcolPageHandleComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
}));
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(ComcolPageHandleComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should be empty if no content is passed', () => {
|
||||
component.content = undefined;
|
||||
fixture.detectChanges();
|
||||
const div = fixture.debugElement.query(By.css('div'));
|
||||
expect(div).toBeNull();
|
||||
});
|
||||
|
||||
it('should create a link pointing the handle when present', () => {
|
||||
|
||||
component.content = handle;
|
||||
fixture.detectChanges();
|
||||
|
||||
const link = fixture.debugElement.query(By.css('a'));
|
||||
expect(link.nativeElement.getAttribute('href')).toBe(handle);
|
||||
expect(link.nativeElement.innerHTML).toBe(handle);
|
||||
|
||||
});
|
||||
|
||||
});
|
@@ -1,5 +1,4 @@
|
||||
import { Component, Injectable, Input } from '@angular/core';
|
||||
import { UIURLCombiner } from '../../core/url-combiner/ui-url-combiner';
|
||||
|
||||
/**
|
||||
* This component builds a URL from the value of "handle"
|
||||
@@ -21,6 +20,6 @@ export class ComcolPageHandleComponent {
|
||||
@Input() content: string;
|
||||
|
||||
public getHandle(): string {
|
||||
return new UIURLCombiner('/handle/', this.content).toString();
|
||||
return this.content;
|
||||
}
|
||||
}
|
||||
|
@@ -53,12 +53,26 @@ describe('ExportMetadataSelectorComponent', () => {
|
||||
const mockCollection: Collection = Object.assign(new Collection(), {
|
||||
id: 'test-collection-1-1',
|
||||
name: 'test-collection-1',
|
||||
handle: 'fake/test-collection-1',
|
||||
metadata: {
|
||||
'dc.identifier.uri': [
|
||||
{
|
||||
language: null,
|
||||
value: 'fake/test-collection-1'
|
||||
}
|
||||
]
|
||||
}
|
||||
});
|
||||
|
||||
const mockCommunity = Object.assign(new Community(), {
|
||||
id: 'test-uuid',
|
||||
handle: 'fake/test-community-1',
|
||||
metadata: {
|
||||
'dc.identifier.uri': [
|
||||
{
|
||||
language: null,
|
||||
value: 'fake/test-community-1'
|
||||
}
|
||||
]
|
||||
}
|
||||
});
|
||||
|
||||
const itemRD = createSuccessfulRemoteDataObject(mockItem);
|
||||
|
@@ -109,7 +109,6 @@ describe('SearchFormComponent', () => {
|
||||
|
||||
export const objects: DSpaceObject[] = [
|
||||
Object.assign(new Community(), {
|
||||
handle: '10673/11',
|
||||
logo: {
|
||||
self: {
|
||||
_isScalar: true,
|
||||
@@ -162,12 +161,17 @@ export const objects: DSpaceObject[] = [
|
||||
language: null,
|
||||
value: 'OR2017 - Demonstration'
|
||||
}
|
||||
]
|
||||
],
|
||||
'dc.identifier.uri': [
|
||||
{
|
||||
language: null,
|
||||
value: 'http://localhost:4000/handle/10673/11'
|
||||
}
|
||||
],
|
||||
}
|
||||
}),
|
||||
Object.assign(new Community(),
|
||||
{
|
||||
handle: '10673/1',
|
||||
logo: {
|
||||
self: {
|
||||
_isScalar: true,
|
||||
@@ -220,7 +224,13 @@ export const objects: DSpaceObject[] = [
|
||||
language: null,
|
||||
value: 'Sample Community'
|
||||
}
|
||||
]
|
||||
],
|
||||
'dc.identifier.uri': [
|
||||
{
|
||||
language: null,
|
||||
value: 'http://localhost:4000/handle/10673/1'
|
||||
}
|
||||
],
|
||||
}
|
||||
}
|
||||
)
|
||||
|
@@ -96,7 +96,6 @@ describe('SearchResultsComponent', () => {
|
||||
|
||||
export const objects = [
|
||||
Object.assign(new Community(), {
|
||||
handle: '10673/11',
|
||||
logo: {
|
||||
self: {
|
||||
_isScalar: true,
|
||||
@@ -149,12 +148,17 @@ export const objects = [
|
||||
language: null,
|
||||
value: 'OR2017 - Demonstration'
|
||||
}
|
||||
],
|
||||
'dc.identifier.uri': [
|
||||
{
|
||||
language: null,
|
||||
value: 'http://localhost:4000/handle/10673/11'
|
||||
}
|
||||
]
|
||||
}
|
||||
}),
|
||||
Object.assign(new Community(),
|
||||
{
|
||||
handle: '10673/1',
|
||||
logo: {
|
||||
self: {
|
||||
_isScalar: true,
|
||||
@@ -207,6 +211,12 @@ export const objects = [
|
||||
language: null,
|
||||
value: 'Sample Community'
|
||||
}
|
||||
],
|
||||
'dc.identifier.uri': [
|
||||
{
|
||||
language: null,
|
||||
value: 'http://localhost:4000/handle/10673/1'
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
@@ -4210,9 +4210,9 @@
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "Importing from LC Name",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcidV2": "Importing from ORCID",
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "Importing from ORCID",
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcidV2": "Importing from ORCID",
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "Importing from ORCID",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Importing from Sherpa Journal",
|
||||
// TODO New key - Add a translation
|
||||
@@ -4322,9 +4322,9 @@
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "Sherpa Publishers ({{ count }})",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidV2": "ORCID ({{ count }})",
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})",
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidV2": "ORCID ({{ count }})",
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "LC Names ({{ count }})",
|
||||
// TODO New key - Add a translation
|
||||
@@ -4402,9 +4402,9 @@
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "Search Results",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.orcidV2": "Search Results",
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "Search Results",
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.orcidV2": "Search Results",
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "Search Results",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "Search Results",
|
||||
// TODO New key - Add a translation
|
||||
|
@@ -4078,9 +4078,9 @@
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "Importing from LC Name",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcidV2": "Importing from ORCID",
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "Importing from ORCID",
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcidV2": "Importing from ORCID",
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "Importing from ORCID",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Importing from Sherpa Journal",
|
||||
// TODO New key - Add a translation
|
||||
@@ -4190,9 +4190,9 @@
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "Sherpa Publishers ({{ count }})",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidV2": "ORCID ({{ count }})",
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})",
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidV2": "ORCID ({{ count }})",
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "LC Names ({{ count }})",
|
||||
// TODO New key - Add a translation
|
||||
@@ -4270,9 +4270,9 @@
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "Search Results",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.orcidV2": "Search Results",
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "Search Results",
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.orcidV2": "Search Results",
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "Search Results",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "Search Results",
|
||||
// TODO New key - Add a translation
|
||||
|
@@ -3437,8 +3437,8 @@
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "Importing from LC Name",
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "Von LC Name importieren",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcidV2": "Importing from ORCID",
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcidV2": "Von ORCID importieren",
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "Importing from ORCID",
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "Von ORCID importieren",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Importing from Sherpa Journal",
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Von Sherpa Zeitschriften importieren",
|
||||
@@ -3521,8 +3521,8 @@
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "Sherpa Publishers ({{ count }})",
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "Sherpa Verlage ({{ count }})",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidV2": "ORCID ({{ count }})",
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidV2": "ORCID ({{ count }})",
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})",
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "LC Names ({{ count }})",
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "LC Namen ({{ count }})",
|
||||
@@ -3581,8 +3581,8 @@
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "Search Results",
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "Suchergebnisse",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.orcidV2": "Search Results",
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.orcidV2": "Suchergebnisse",
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "Search Results",
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "Suchergebnisse",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "Search Results",
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "Suchergebnisse",
|
||||
|
@@ -2979,7 +2979,7 @@
|
||||
|
||||
"submission.import-external.source.sherpaPublisher": "SHERPA Publishers",
|
||||
|
||||
"submission.import-external.source.orcidV2": "ORCID",
|
||||
"submission.import-external.source.orcid": "ORCID",
|
||||
|
||||
"submission.import-external.source.pubmed": "Pubmed",
|
||||
|
||||
@@ -3027,7 +3027,7 @@
|
||||
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "Importing from LC Name",
|
||||
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcidV2": "Importing from ORCID",
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "Importing from ORCID",
|
||||
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Importing from Sherpa Journal",
|
||||
|
||||
@@ -3102,7 +3102,7 @@
|
||||
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "Sherpa Publishers ({{ count }})",
|
||||
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidV2": "ORCID ({{ count }})",
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})",
|
||||
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "LC Names ({{ count }})",
|
||||
|
||||
@@ -3186,7 +3186,7 @@
|
||||
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "Search Results",
|
||||
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.orcidV2": "Search Results",
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "Search Results",
|
||||
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.orcidv2": "Search Results",
|
||||
|
||||
|
@@ -3539,9 +3539,9 @@
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "Importing from LC Name",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcidV2": "Importing from ORCID",
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "Importing from ORCID",
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcidV2": "Importing from ORCID",
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "Importing from ORCID",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Importing from Sherpa Journal",
|
||||
// TODO New key - Add a translation
|
||||
@@ -3651,9 +3651,9 @@
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "Sherpa Publishers ({{ count }})",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidV2": "ORCID ({{ count }})",
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})",
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidV2": "ORCID ({{ count }})",
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "LC Names ({{ count }})",
|
||||
// TODO New key - Add a translation
|
||||
@@ -3731,9 +3731,9 @@
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "Search Results",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.orcidV2": "Search Results",
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "Search Results",
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.orcidV2": "Search Results",
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "Search Results",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "Search Results",
|
||||
// TODO New key - Add a translation
|
||||
|
@@ -3537,9 +3537,9 @@
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "Importing from LC Name",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcidV2": "Importing from ORCID",
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "Importing from ORCID",
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcidV2": "Importing from ORCID",
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "Importing from ORCID",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Importing from Sherpa Journal",
|
||||
// TODO New key - Add a translation
|
||||
@@ -3649,9 +3649,9 @@
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "Sherpa Publishers ({{ count }})",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidV2": "ORCID ({{ count }})",
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})",
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidV2": "ORCID ({{ count }})",
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "LC Names ({{ count }})",
|
||||
// TODO New key - Add a translation
|
||||
@@ -3729,9 +3729,9 @@
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "Search Results",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.orcidV2": "Search Results",
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "Search Results",
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.orcidV2": "Search Results",
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "Search Results",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "Search Results",
|
||||
// TODO New key - Add a translation
|
||||
|
@@ -3541,9 +3541,9 @@
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "Importing from LC Name",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcidV2": "Importing from ORCID",
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "Importing from ORCID",
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcidV2": "Importing from ORCID",
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "Importing from ORCID",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Importing from Sherpa Journal",
|
||||
// TODO New key - Add a translation
|
||||
@@ -3653,9 +3653,9 @@
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "Sherpa Publishers ({{ count }})",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidV2": "ORCID ({{ count }})",
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})",
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidV2": "ORCID ({{ count }})",
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "LC Names ({{ count }})",
|
||||
// TODO New key - Add a translation
|
||||
@@ -3733,9 +3733,9 @@
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "Search Results",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.orcidV2": "Search Results",
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "Search Results",
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.orcidV2": "Search Results",
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "Search Results",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "Search Results",
|
||||
// TODO New key - Add a translation
|
||||
|
@@ -4210,9 +4210,9 @@
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "Importing from LC Name",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcidV2": "Importing from ORCID",
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "Importing from ORCID",
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcidV2": "Importing from ORCID",
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "Importing from ORCID",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Importing from Sherpa Journal",
|
||||
// TODO New key - Add a translation
|
||||
@@ -4322,9 +4322,9 @@
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "Sherpa Publishers ({{ count }})",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidV2": "ORCID ({{ count }})",
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})",
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidV2": "ORCID ({{ count }})",
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "LC Names ({{ count }})",
|
||||
// TODO New key - Add a translation
|
||||
@@ -4402,9 +4402,9 @@
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "Search Results",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.orcidV2": "Search Results",
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "Search Results",
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.orcidV2": "Search Results",
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "Search Results",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "Search Results",
|
||||
// TODO New key - Add a translation
|
||||
|
@@ -3340,8 +3340,8 @@
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "Importing from LC Name",
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "Importē no LC Nosaukuma",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcidV2": "Importing from ORCID",
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcidV2": "Importē no ORCID",
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "Importing from ORCID",
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "Importē no ORCID",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Importing from Sherpa Journal",
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Importē no Sherpa Žurnāla",
|
||||
@@ -3424,8 +3424,8 @@
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "Sherpa Publishers ({{ count }})",
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "Sherpa Izdevēji ({{ count }})",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidV2": "ORCID ({{ count }})",
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidV2": "ORCID ({{ count }})",
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})",
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "LC Names ({{ count }})",
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "LC Nosaukumi ({{ count }})",
|
||||
@@ -3484,8 +3484,8 @@
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "Search Results",
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "Meklēšanas rezultāti",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.orcidV2": "Search Results",
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.orcidV2": "Meklēšanas rezultāti",
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "Search Results",
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "Meklēšanas rezultāti",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "Search Results",
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "Meklēšanas rezultāti",
|
||||
|
@@ -3536,9 +3536,9 @@
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "Importing from LC Name",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcidV2": "Importing from ORCID",
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "Importing from ORCID",
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcidV2": "Importing from ORCID",
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "Importing from ORCID",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Importing from Sherpa Journal",
|
||||
// TODO New key - Add a translation
|
||||
@@ -3648,9 +3648,9 @@
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "Sherpa Publishers ({{ count }})",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidV2": "ORCID ({{ count }})",
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})",
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidV2": "ORCID ({{ count }})",
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "LC Names ({{ count }})",
|
||||
// TODO New key - Add a translation
|
||||
@@ -3728,9 +3728,9 @@
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "Search Results",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.orcidV2": "Search Results",
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "Search Results",
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.orcidV2": "Search Results",
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "Search Results",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "Search Results",
|
||||
// TODO New key - Add a translation
|
||||
|
@@ -4210,9 +4210,9 @@
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "Importing from LC Name",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcidV2": "Importing from ORCID",
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "Importing from ORCID",
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcidV2": "Importing from ORCID",
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "Importing from ORCID",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Importing from Sherpa Journal",
|
||||
// TODO New key - Add a translation
|
||||
@@ -4322,9 +4322,9 @@
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "Sherpa Publishers ({{ count }})",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidV2": "ORCID ({{ count }})",
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})",
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidV2": "ORCID ({{ count }})",
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "LC Names ({{ count }})",
|
||||
// TODO New key - Add a translation
|
||||
@@ -4402,9 +4402,9 @@
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "Search Results",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.orcidV2": "Search Results",
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "Search Results",
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.orcidV2": "Search Results",
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "Search Results",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "Search Results",
|
||||
// TODO New key - Add a translation
|
||||
|
@@ -3536,9 +3536,9 @@
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "Importing from LC Name",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcidV2": "Importing from ORCID",
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "Importing from ORCID",
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcidV2": "Importing from ORCID",
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "Importing from ORCID",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Importing from Sherpa Journal",
|
||||
// TODO New key - Add a translation
|
||||
@@ -3648,9 +3648,9 @@
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "Sherpa Publishers ({{ count }})",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidV2": "ORCID ({{ count }})",
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})",
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidV2": "ORCID ({{ count }})",
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "LC Names ({{ count }})",
|
||||
// TODO New key - Add a translation
|
||||
@@ -3728,9 +3728,9 @@
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "Search Results",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.orcidV2": "Search Results",
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "Search Results",
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.orcidV2": "Search Results",
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "Search Results",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "Search Results",
|
||||
// TODO New key - Add a translation
|
||||
|
@@ -4210,9 +4210,9 @@
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "Importing from LC Name",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcidV2": "Importing from ORCID",
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "Importing from ORCID",
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcidV2": "Importing from ORCID",
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "Importing from ORCID",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Importing from Sherpa Journal",
|
||||
// TODO New key - Add a translation
|
||||
@@ -4322,9 +4322,9 @@
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "Sherpa Publishers ({{ count }})",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidV2": "ORCID ({{ count }})",
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})",
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidV2": "ORCID ({{ count }})",
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "LC Names ({{ count }})",
|
||||
// TODO New key - Add a translation
|
||||
@@ -4402,9 +4402,9 @@
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "Search Results",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.orcidV2": "Search Results",
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "Search Results",
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.orcidV2": "Search Results",
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "Search Results",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "Search Results",
|
||||
// TODO New key - Add a translation
|
||||
|
@@ -4210,9 +4210,9 @@
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "Importing from LC Name",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcidV2": "Importing from ORCID",
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "Importing from ORCID",
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcidV2": "Importing from ORCID",
|
||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "Importing from ORCID",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Importing from Sherpa Journal",
|
||||
// TODO New key - Add a translation
|
||||
@@ -4322,9 +4322,9 @@
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "Sherpa Publishers ({{ count }})",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidV2": "ORCID ({{ count }})",
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})",
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidV2": "ORCID ({{ count }})",
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "LC Names ({{ count }})",
|
||||
// TODO New key - Add a translation
|
||||
@@ -4402,9 +4402,9 @@
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "Search Results",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.orcidV2": "Search Results",
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "Search Results",
|
||||
// TODO New key - Add a translation
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.orcidV2": "Search Results",
|
||||
"submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "Search Results",
|
||||
|
||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "Search Results",
|
||||
// TODO New key - Add a translation
|
||||
|
Reference in New Issue
Block a user