mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
Merge branch 'main' into issue-2337_fix-vocabulary-treeview-not-updating
This commit is contained in:
2
.github/workflows/label_merge_conflicts.yml
vendored
2
.github/workflows/label_merge_conflicts.yml
vendored
@@ -25,6 +25,8 @@ jobs:
|
||||
# See: https://github.com/prince-chrismc/label-merge-conflicts-action
|
||||
- name: Auto-label PRs with merge conflicts
|
||||
uses: prince-chrismc/label-merge-conflicts-action@v3
|
||||
# Ignore any failures -- may occur (randomly?) for older, outdated PRs.
|
||||
continue-on-error: true
|
||||
# Add "merge conflict" label if a merge conflict is detected. Remove it when resolved.
|
||||
# Note, the authentication token is created automatically
|
||||
# See: https://docs.github.com/en/actions/configuring-and-managing-workflows/authenticating-with-the-github_token
|
||||
|
46
.github/workflows/port_merged_pull_request.yml
vendored
Normal file
46
.github/workflows/port_merged_pull_request.yml
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
# This workflow will attempt to port a merged pull request to
|
||||
# the branch specified in a "port to" label (if exists)
|
||||
name: Port merged Pull Request
|
||||
|
||||
# Only run for merged PRs against the "main" or maintenance branches
|
||||
# We allow this to run for `pull_request_target` so that github secrets are available
|
||||
# (This is required when the PR comes from a forked repo)
|
||||
on:
|
||||
pull_request_target:
|
||||
types: [ closed ]
|
||||
branches:
|
||||
- main
|
||||
- 'dspace-**'
|
||||
|
||||
permissions:
|
||||
contents: write # so action can add comments
|
||||
pull-requests: write # so action can create pull requests
|
||||
|
||||
jobs:
|
||||
port_pr:
|
||||
runs-on: ubuntu-latest
|
||||
# Don't run on closed *unmerged* pull requests
|
||||
if: github.event.pull_request.merged
|
||||
steps:
|
||||
# Checkout code
|
||||
- uses: actions/checkout@v3
|
||||
# Port PR to other branch (ONLY if labeled with "port to")
|
||||
# See https://github.com/korthout/backport-action
|
||||
- name: Create backport pull requests
|
||||
uses: korthout/backport-action@v1
|
||||
with:
|
||||
# Trigger based on a "port to [branch]" label on PR
|
||||
# (This label must specify the branch name to port to)
|
||||
label_pattern: '^port to ([^ ]+)$'
|
||||
# Title to add to the (newly created) port PR
|
||||
pull_title: '[Port ${target_branch}] ${pull_title}'
|
||||
# Description to add to the (newly created) port PR
|
||||
pull_description: 'Port of #${pull_number} by @${pull_author} to `${target_branch}`.'
|
||||
# Copy all labels from original PR to (newly created) port PR
|
||||
# NOTE: The labels matching 'label_pattern' are automatically excluded
|
||||
copy_labels_pattern: '.*'
|
||||
# Skip any merge commits in the ported PR. This means only non-merge commits are cherry-picked to the new PR
|
||||
merge_commits: 'skip'
|
||||
# Use a personal access token (PAT) to create PR as 'dspace-bot' user.
|
||||
# A PAT is required in order for the new PR to trigger its own actions (for CI checks)
|
||||
github_token: ${{ secrets.PR_PORT_TOKEN }}
|
@@ -2,7 +2,7 @@
|
||||
# See https://github.com/DSpace/dspace-angular/tree/main/docker for usage details
|
||||
|
||||
# Test build:
|
||||
# docker build -f Dockerfile.dist -t dspace/dspace-angular:dspace-7_x-dist .
|
||||
# docker build -f Dockerfile.dist -t dspace/dspace-angular:latest-dist .
|
||||
|
||||
FROM node:18-alpine as build
|
||||
|
||||
|
@@ -157,8 +157,8 @@ DSPACE_UI_SSL => DSPACE_SSL
|
||||
|
||||
The same settings can also be overwritten by setting system environment variables instead, E.g.:
|
||||
```bash
|
||||
export DSPACE_HOST=api7.dspace.org
|
||||
export DSPACE_UI_PORT=4200
|
||||
export DSPACE_HOST=demo.dspace.org
|
||||
export DSPACE_UI_PORT=4000
|
||||
```
|
||||
|
||||
The priority works as follows: **environment variable** overrides **variable in `.env` file** overrides external config set by `DSPACE_APP_CONFIG_PATH` overrides **`config.(prod or dev).yml`**
|
||||
@@ -288,7 +288,7 @@ E2E tests (aka integration tests) use [Cypress.io](https://www.cypress.io/). Con
|
||||
The test files can be found in the `./cypress/integration/` folder.
|
||||
|
||||
Before you can run e2e tests, two things are REQUIRED:
|
||||
1. You MUST be running the DSpace backend (i.e. REST API) locally. The e2e tests will *NOT* succeed if run against our demo REST API (https://api7.dspace.org/server/), as that server is uncontrolled and may have content added/removed at any time.
|
||||
1. You MUST be running the DSpace backend (i.e. REST API) locally. The e2e tests will *NOT* succeed if run against our demo/sandbox REST API (https://demo.dspace.org/server/ or https://sandbox.dspace.org/server/), as those sites may have content added/removed at any time.
|
||||
* After starting up your backend on localhost, make sure either your `config.prod.yml` or `config.dev.yml` has its `rest` settings defined to use that localhost backend.
|
||||
* If you'd prefer, you may instead use environment variables as described at [Configuring](#configuring). For example:
|
||||
```
|
||||
|
@@ -22,7 +22,7 @@ ui:
|
||||
# 'synced' with the 'dspace.server.url' setting in your backend's local.cfg.
|
||||
rest:
|
||||
ssl: true
|
||||
host: api7.dspace.org
|
||||
host: sandbox.dspace.org
|
||||
port: 443
|
||||
# NOTE: Space is capitalized because 'namespace' is a reserved string in TypeScript
|
||||
nameSpace: /server
|
||||
|
@@ -1,5 +1,5 @@
|
||||
rest:
|
||||
ssl: true
|
||||
host: api7.dspace.org
|
||||
host: sandbox.dspace.org
|
||||
port: 443
|
||||
nameSpace: /server
|
||||
|
@@ -23,14 +23,14 @@ the Docker compose scripts in this 'docker' folder.
|
||||
This Dockerfile is used to build a *development* DSpace 7 Angular UI image, published as 'dspace/dspace-angular'
|
||||
|
||||
```
|
||||
docker build -t dspace/dspace-angular:dspace-7_x .
|
||||
docker build -t dspace/dspace-angular:latest .
|
||||
```
|
||||
|
||||
This image is built *automatically* after each commit is made to the `main` branch.
|
||||
|
||||
Admins to our DockerHub repo can manually publish with the following command.
|
||||
```
|
||||
docker push dspace/dspace-angular:dspace-7_x
|
||||
docker push dspace/dspace-angular:latest
|
||||
```
|
||||
|
||||
### Dockerfile.dist
|
||||
@@ -39,7 +39,7 @@ The `Dockerfile.dist` is used to generate a *production* build and runtime envir
|
||||
|
||||
```bash
|
||||
# build the latest image
|
||||
docker build -f Dockerfile.dist -t dspace/dspace-angular:dspace-7_x-dist .
|
||||
docker build -f Dockerfile.dist -t dspace/dspace-angular:latest-dist .
|
||||
```
|
||||
|
||||
A default/demo version of this image is built *automatically*.
|
||||
@@ -101,8 +101,8 @@ and the backend at http://localhost:8080/server/
|
||||
|
||||
## Run DSpace Angular dist build with DSpace Demo site backend
|
||||
|
||||
This allows you to run the Angular UI in *production* mode, pointing it at the demo backend
|
||||
(https://api7.dspace.org/server/).
|
||||
This allows you to run the Angular UI in *production* mode, pointing it at the demo or sandbox backend
|
||||
(https://demo.dspace.org/server/ or https://sandbox.dspace.org/server/).
|
||||
|
||||
```
|
||||
docker-compose -f docker/docker-compose-dist.yml pull
|
||||
|
@@ -16,7 +16,7 @@ version: "3.7"
|
||||
|
||||
services:
|
||||
dspace-cli:
|
||||
image: "${DOCKER_OWNER:-dspace}/dspace-cli:${DSPACE_VER:-dspace-7_x}"
|
||||
image: "${DOCKER_OWNER:-dspace}/dspace-cli:${DSPACE_VER:-latest}"
|
||||
container_name: dspace-cli
|
||||
environment:
|
||||
# Below syntax may look odd, but it is how to override dspace.cfg settings via env variables.
|
||||
|
@@ -35,7 +35,7 @@ services:
|
||||
solr__D__statistics__P__autoCommit: 'false'
|
||||
depends_on:
|
||||
- dspacedb
|
||||
image: dspace/dspace:dspace-7_x-test
|
||||
image: dspace/dspace:latest-test
|
||||
networks:
|
||||
dspacenet:
|
||||
ports:
|
||||
|
@@ -24,10 +24,10 @@ services:
|
||||
# This is because Server Side Rendering (SSR) currently requires a public URL,
|
||||
# see this bug: https://github.com/DSpace/dspace-angular/issues/1485
|
||||
DSPACE_REST_SSL: 'true'
|
||||
DSPACE_REST_HOST: api7.dspace.org
|
||||
DSPACE_REST_HOST: sandbox.dspace.org
|
||||
DSPACE_REST_PORT: 443
|
||||
DSPACE_REST_NAMESPACE: /server
|
||||
image: dspace/dspace-angular:dspace-7_x-dist
|
||||
image: dspace/dspace-angular:${DSPACE_VER:-latest}-dist
|
||||
build:
|
||||
context: ..
|
||||
dockerfile: Dockerfile.dist
|
||||
|
@@ -39,7 +39,7 @@ services:
|
||||
# proxies.trusted.ipranges: This setting is required for a REST API running in Docker to trust requests
|
||||
# from the host machine. This IP range MUST correspond to the 'dspacenet' subnet defined above.
|
||||
proxies__P__trusted__P__ipranges: '172.23.0'
|
||||
image: "${DOCKER_OWNER:-dspace}/dspace:${DSPACE_VER:-dspace-7_x-test}"
|
||||
image: "${DOCKER_OWNER:-dspace}/dspace:${DSPACE_VER:-latest-test}"
|
||||
depends_on:
|
||||
- dspacedb
|
||||
networks:
|
||||
@@ -82,7 +82,7 @@ services:
|
||||
# DSpace Solr container
|
||||
dspacesolr:
|
||||
container_name: dspacesolr
|
||||
image: "${DOCKER_OWNER:-dspace}/dspace-solr:${DSPACE_VER:-dspace-7_x}"
|
||||
image: "${DOCKER_OWNER:-dspace}/dspace-solr:${DSPACE_VER:-latest}"
|
||||
# Needs main 'dspace' container to start first to guarantee access to solr_configs
|
||||
depends_on:
|
||||
- dspace
|
||||
|
@@ -24,7 +24,7 @@ services:
|
||||
DSPACE_REST_HOST: localhost
|
||||
DSPACE_REST_PORT: 8080
|
||||
DSPACE_REST_NAMESPACE: /server
|
||||
image: dspace/dspace-angular:dspace-7_x
|
||||
image: dspace/dspace-angular:${DSPACE_VER:-latest}
|
||||
build:
|
||||
context: ..
|
||||
dockerfile: Dockerfile
|
||||
|
@@ -48,7 +48,7 @@ dspace-angular connects to your DSpace installation by using its REST endpoint.
|
||||
```yaml
|
||||
rest:
|
||||
ssl: true
|
||||
host: api7.dspace.org
|
||||
host: demo.dspace.org
|
||||
port: 443
|
||||
nameSpace: /server
|
||||
}
|
||||
@@ -57,7 +57,7 @@ rest:
|
||||
Alternately you can set the following environment variables. If any of these are set, it will override all configuration files:
|
||||
```
|
||||
DSPACE_REST_SSL=true
|
||||
DSPACE_REST_HOST=api7.dspace.org
|
||||
DSPACE_REST_HOST=demo.dspace.org
|
||||
DSPACE_REST_PORT=443
|
||||
DSPACE_REST_NAMESPACE=/server
|
||||
```
|
||||
|
@@ -16,23 +16,23 @@
|
||||
[submitLabel]="submitLabel"
|
||||
(submitForm)="onSubmit()">
|
||||
<div before class="btn-group">
|
||||
<button (click)="onCancel()"
|
||||
<button (click)="onCancel()" type="button"
|
||||
class="btn btn-outline-secondary"><i class="fas fa-arrow-left"></i> {{messagePrefix + '.return' | translate}}</button>
|
||||
</div>
|
||||
<div *ngIf="displayResetPassword" between class="btn-group">
|
||||
<button class="btn btn-primary" [disabled]="!(canReset$ | async)" (click)="resetPassword()">
|
||||
<button class="btn btn-primary" [disabled]="!(canReset$ | async)" type="button" (click)="resetPassword()">
|
||||
<i class="fa fa-key"></i> {{'admin.access-control.epeople.actions.reset' | translate}}
|
||||
</button>
|
||||
</div>
|
||||
<div between class="btn-group ml-1">
|
||||
<button *ngIf="!isImpersonated" class="btn btn-primary" [ngClass]="{'d-none' : !(canImpersonate$ | async)}" (click)="impersonate()">
|
||||
<button *ngIf="!isImpersonated" class="btn btn-primary" type="button" [ngClass]="{'d-none' : !(canImpersonate$ | async)}" (click)="impersonate()">
|
||||
<i class="fa fa-user-secret"></i> {{'admin.access-control.epeople.actions.impersonate' | translate}}
|
||||
</button>
|
||||
<button *ngIf="isImpersonated" class="btn btn-primary" (click)="stopImpersonating()">
|
||||
<button *ngIf="isImpersonated" class="btn btn-primary" type="button" (click)="stopImpersonating()">
|
||||
<i class="fa fa-user-secret"></i> {{'admin.access-control.epeople.actions.stop-impersonating' | translate}}
|
||||
</button>
|
||||
</div>
|
||||
<button after class="btn btn-danger delete-button" [disabled]="!(canDelete$ | async)" (click)="delete()">
|
||||
<button after class="btn btn-danger delete-button" type="button" [disabled]="!(canDelete$ | async)" (click)="delete()">
|
||||
<i class="fas fa-trash"></i> {{'admin.access-control.epeople.actions.delete' | translate}}
|
||||
</button>
|
||||
</ds-form>
|
||||
|
@@ -36,12 +36,12 @@
|
||||
[displayCancel]="false"
|
||||
(submitForm)="onSubmit()">
|
||||
<div before class="btn-group">
|
||||
<button (click)="onCancel()"
|
||||
<button (click)="onCancel()" type="button"
|
||||
class="btn btn-outline-secondary"><i class="fas fa-arrow-left"></i> {{messagePrefix + '.return' | translate}}</button>
|
||||
</div>
|
||||
<div after *ngIf="groupBeingEdited != null" class="btn-group">
|
||||
<button class="btn btn-danger delete-button" [disabled]="!(canEdit$ | async) || groupBeingEdited.permanent"
|
||||
(click)="delete()">
|
||||
(click)="delete()" type="button">
|
||||
<i class="fa fa-trash"></i> {{ messagePrefix + '.actions.delete' | translate}}
|
||||
</button>
|
||||
</div>
|
||||
|
@@ -37,7 +37,7 @@ import {
|
||||
getFirstCompletedRemoteData,
|
||||
getFirstSucceededRemoteDataPayload
|
||||
} from '../../../core/shared/operators';
|
||||
import { AlertType } from '../../../shared/alert/aletr-type';
|
||||
import { AlertType } from '../../../shared/alert/alert-type';
|
||||
import { ConfirmationModalComponent } from '../../../shared/confirmation-modal/confirmation-modal.component';
|
||||
import { hasValue, isNotEmpty, hasValueOperator } from '../../../shared/empty.util';
|
||||
import { FormBuilderService } from '../../../shared/form/builder/form-builder.service';
|
||||
|
@@ -98,9 +98,8 @@ export class CollectionFormComponent extends ComColFormComponent<Collection> imp
|
||||
// retrieve all entity types to populate the dropdowns selection
|
||||
entities$.subscribe((entityTypes: ItemType[]) => {
|
||||
|
||||
entityTypes
|
||||
.filter((type: ItemType) => type.label !== NONE_ENTITY_TYPE)
|
||||
.forEach((type: ItemType, index: number) => {
|
||||
entityTypes = entityTypes.filter((type: ItemType) => type.label !== NONE_ENTITY_TYPE);
|
||||
entityTypes.forEach((type: ItemType, index: number) => {
|
||||
this.entityTypeSelection.add({
|
||||
disabled: false,
|
||||
label: type.label,
|
||||
@@ -112,7 +111,7 @@ export class CollectionFormComponent extends ComColFormComponent<Collection> imp
|
||||
}
|
||||
});
|
||||
|
||||
this.formModel = [...collectionFormModels, this.entityTypeSelection];
|
||||
this.formModel = entityTypes.length === 0 ? collectionFormModels : [...collectionFormModels, this.entityTypeSelection];
|
||||
|
||||
super.ngOnInit();
|
||||
this.chd.detectChanges();
|
||||
|
@@ -8,7 +8,7 @@ import { ItemTemplateDataService } from '../../core/data/item-template-data.serv
|
||||
import { getCollectionEditRoute } from '../collection-page-routing-paths';
|
||||
import { Item } from '../../core/shared/item.model';
|
||||
import { getFirstSucceededRemoteDataPayload } from '../../core/shared/operators';
|
||||
import { AlertType } from '../../shared/alert/aletr-type';
|
||||
import { AlertType } from '../../shared/alert/alert-type';
|
||||
import { DSONameService } from '../../core/breadcrumbs/dso-name.service';
|
||||
|
||||
@Component({
|
||||
|
@@ -1,4 +1,4 @@
|
||||
<div class="container">
|
||||
<h2>{{ 'communityList.title' | translate }}</h2>
|
||||
<h1>{{ 'communityList.title' | translate }}</h1>
|
||||
<ds-themed-community-list></ds-themed-community-list>
|
||||
</div>
|
||||
|
@@ -25,7 +25,7 @@ import { ShowMoreFlatNode } from './show-more-flat-node.model';
|
||||
import { FindListOptions } from '../core/data/find-list-options.model';
|
||||
import { AppConfig, APP_CONFIG } from 'src/config/app-config.interface';
|
||||
|
||||
// Helper method to combine an flatten an array of observables of flatNode arrays
|
||||
// Helper method to combine and flatten an array of observables of flatNode arrays
|
||||
export const combineAndFlatten = (obsList: Observable<FlatNode[]>[]): Observable<FlatNode[]> =>
|
||||
observableCombineLatest([...obsList]).pipe(
|
||||
map((matrix: any[][]) => [].concat(...matrix)),
|
||||
@@ -199,7 +199,7 @@ export class CommunityListService {
|
||||
* Transforms a community in a list of FlatNodes containing firstly a flatnode of the community itself,
|
||||
* followed by flatNodes of its possible subcommunities and collection
|
||||
* It gets called recursively for each subcommunity to add its subcommunities and collections to the list
|
||||
* Number of subcommunities and collections added, is dependant on the current page the parent is at for respectively subcommunities and collections.
|
||||
* Number of subcommunities and collections added, is dependent on the current page the parent is at for respectively subcommunities and collections.
|
||||
* @param community Community being transformed
|
||||
* @param level Depth of the community in the list, subcommunities and collections go one level deeper
|
||||
* @param parent Flatnode of the parent community
|
||||
@@ -275,7 +275,7 @@ export class CommunityListService {
|
||||
|
||||
/**
|
||||
* Checks if a community has subcommunities or collections by querying the respective services with a pageSize = 0
|
||||
* Returns an observable that combines the result.payload.totalElements fo the observables that the
|
||||
* Returns an observable that combines the result.payload.totalElements of the observables that the
|
||||
* respective services return when queried
|
||||
* @param community Community being checked whether it is expandable (if it has subcommunities or collections)
|
||||
*/
|
||||
|
@@ -1,5 +1,5 @@
|
||||
<ds-themed-loading *ngIf="(dataSource.loading$ | async) && !loadingNode" class="ds-themed-loading"></ds-themed-loading>
|
||||
<cdk-tree [dataSource]="dataSource" [treeControl]="treeControl">
|
||||
<cdk-tree [dataSource]="dataSource" [treeControl]="treeControl" [trackBy]="trackBy">
|
||||
<!-- This is the tree node template for show more node -->
|
||||
<cdk-tree-node *cdkTreeNodeDef="let node; when: isShowMore" cdkTreeNodePadding
|
||||
class="example-tree-node show-more-node">
|
||||
@@ -34,13 +34,13 @@
|
||||
aria-hidden="true"></span>
|
||||
</button>
|
||||
<div class="d-flex flex-row">
|
||||
<h5 class="align-middle pt-2">
|
||||
<span class="align-middle pt-2 lead">
|
||||
<a [routerLink]="node.route" class="lead">
|
||||
{{ dsoNameService.getName(node.payload) }}
|
||||
</a>
|
||||
<span class="pr-2"> </span>
|
||||
<span *ngIf="node.payload.archivedItemsCount >= 0" class="badge badge-pill badge-secondary align-top archived-items-lead">{{node.payload.archivedItemsCount}}</span>
|
||||
</h5>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
<ds-truncatable [id]="node.id">
|
||||
|
@@ -28,10 +28,9 @@ export class CommunityListComponent implements OnInit, OnDestroy {
|
||||
treeControl = new FlatTreeControl<FlatNode>(
|
||||
(node: FlatNode) => node.level, (node: FlatNode) => true
|
||||
);
|
||||
|
||||
dataSource: CommunityListDatasource;
|
||||
|
||||
paginationConfig: FindListOptions;
|
||||
trackBy = (index, node: FlatNode) => node.id;
|
||||
|
||||
constructor(
|
||||
protected communityListService: CommunityListService,
|
||||
@@ -58,18 +57,28 @@ export class CommunityListComponent implements OnInit, OnDestroy {
|
||||
this.communityListService.saveCommunityListStateToStore(this.expandedNodes, this.loadingNode);
|
||||
}
|
||||
|
||||
// whether or not this node has children (subcommunities or collections)
|
||||
/**
|
||||
* Whether this node has children (subcommunities or collections)
|
||||
* @param _
|
||||
* @param node
|
||||
*/
|
||||
hasChild(_: number, node: FlatNode) {
|
||||
return node.isExpandable$;
|
||||
}
|
||||
|
||||
// whether or not it is a show more node (contains no data, but is indication that there are more topcoms, subcoms or collections
|
||||
/**
|
||||
* Whether this is a show more node that contains no data, but indicates that there is
|
||||
* one or more community or collection.
|
||||
* @param _
|
||||
* @param node
|
||||
*/
|
||||
isShowMore(_: number, node: FlatNode) {
|
||||
return node.isShowMoreNode;
|
||||
}
|
||||
|
||||
/**
|
||||
* Toggles the expanded variable of a node, adds it to the expanded nodes list and reloads the tree so this node is expanded
|
||||
* Toggles the expanded variable of a node, adds it to the expanded nodes list and reloads the tree
|
||||
* so this node is expanded
|
||||
* @param node Node we want to expand
|
||||
*/
|
||||
toggleExpanded(node: FlatNode) {
|
||||
@@ -92,9 +101,12 @@ export class CommunityListComponent implements OnInit, OnDestroy {
|
||||
|
||||
/**
|
||||
* Makes sure the next page of a node is added to the tree (top community, sub community of collection)
|
||||
* > Finds its parent (if not top community) and increases its corresponding collection/subcommunity currentPage
|
||||
* > Reloads tree with new page added to corresponding top community lis, sub community list or collection list
|
||||
* @param node The show more node indicating whether it's an increase in top communities, sub communities or collections
|
||||
* > Finds its parent (if not top community) and increases its corresponding collection/subcommunity
|
||||
* currentPage
|
||||
* > Reloads tree with new page added to corresponding top community lis, sub community list or
|
||||
* collection list
|
||||
* @param node The show more node indicating whether it's an increase in top communities, sub communities
|
||||
* or collections
|
||||
*/
|
||||
getNextPage(node: FlatNode): void {
|
||||
this.loadingNode = node;
|
||||
|
@@ -1,6 +1,6 @@
|
||||
/**
|
||||
* The show more links in the community tree are also represented by a flatNode so we know where in
|
||||
* the tree it should be rendered an who its parent is (needed for the action resulting in clicking this link)
|
||||
* the tree it should be rendered and who its parent is (needed for the action resulting in clicking this link)
|
||||
*/
|
||||
export class ShowMoreFlatNode {
|
||||
}
|
||||
|
@@ -38,8 +38,8 @@ export class BrowserHardRedirectService extends HardRedirectService {
|
||||
/**
|
||||
* Get the origin of the current URL
|
||||
* i.e. <scheme> "://" <hostname> [ ":" <port> ]
|
||||
* e.g. if the URL is https://demo7.dspace.org/search?query=test,
|
||||
* the origin would be https://demo7.dspace.org
|
||||
* e.g. if the URL is https://demo.dspace.org/search?query=test,
|
||||
* the origin would be https://demo.dspace.org
|
||||
*/
|
||||
getCurrentOrigin(): string {
|
||||
return this.location.origin;
|
||||
|
@@ -25,8 +25,8 @@ export abstract class HardRedirectService {
|
||||
/**
|
||||
* Get the origin of the current URL
|
||||
* i.e. <scheme> "://" <hostname> [ ":" <port> ]
|
||||
* e.g. if the URL is https://demo7.dspace.org/search?query=test,
|
||||
* the origin would be https://demo7.dspace.org
|
||||
* e.g. if the URL is https://demo.dspace.org/search?query=test,
|
||||
* the origin would be https://demo.dspace.org
|
||||
*/
|
||||
abstract getCurrentOrigin(): string;
|
||||
}
|
||||
|
@@ -69,8 +69,8 @@ export class ServerHardRedirectService extends HardRedirectService {
|
||||
/**
|
||||
* Get the origin of the current URL
|
||||
* i.e. <scheme> "://" <hostname> [ ":" <port> ]
|
||||
* e.g. if the URL is https://demo7.dspace.org/search?query=test,
|
||||
* the origin would be https://demo7.dspace.org
|
||||
* e.g. if the URL is https://demo.dspace.org/search?query=test,
|
||||
* the origin would be https://demo.dspace.org
|
||||
*/
|
||||
getCurrentOrigin(): string {
|
||||
return this.req.protocol + '://' + this.req.headers.host;
|
||||
|
@@ -1,5 +1,5 @@
|
||||
import { Component, Inject, Injector, Input, OnDestroy, OnInit, ViewChild } from '@angular/core';
|
||||
import { AlertType } from '../../shared/alert/aletr-type';
|
||||
import { AlertType } from '../../shared/alert/alert-type';
|
||||
import { DSpaceObject } from '../../core/shared/dspace-object.model';
|
||||
import { DsoEditMetadataForm } from './dso-edit-metadata-form';
|
||||
import { map } from 'rxjs/operators';
|
||||
|
@@ -3,7 +3,7 @@ import { Component, Input } from '@angular/core';
|
||||
import { TranslateService } from '@ngx-translate/core';
|
||||
|
||||
import { HealthComponent } from '../../models/health-component.model';
|
||||
import { AlertType } from '../../../shared/alert/aletr-type';
|
||||
import { AlertType } from '../../../shared/alert/alert-type';
|
||||
|
||||
/**
|
||||
* A component to render a "health component" object.
|
||||
|
@@ -1,6 +1,6 @@
|
||||
import { Component, Input } from '@angular/core';
|
||||
import { Item } from '../../core/shared/item.model';
|
||||
import { AlertType } from '../../shared/alert/aletr-type';
|
||||
import { AlertType } from '../../shared/alert/alert-type';
|
||||
|
||||
@Component({
|
||||
selector: 'ds-item-alerts',
|
||||
|
@@ -5,7 +5,7 @@ import { Item } from '../../../core/shared/item.model';
|
||||
import { map } from 'rxjs/operators';
|
||||
import { getFirstSucceededRemoteData } from '../../../core/shared/operators';
|
||||
import { ActivatedRoute } from '@angular/router';
|
||||
import { AlertType } from '../../../shared/alert/aletr-type';
|
||||
import { AlertType } from '../../../shared/alert/alert-type';
|
||||
|
||||
@Component({
|
||||
selector: 'ds-item-version-history',
|
||||
|
@@ -15,7 +15,7 @@ import { getFirstCompletedRemoteData } from '../../../core/shared/operators';
|
||||
import { hasValue } from '../../../shared/empty.util';
|
||||
import { NotificationsService } from '../../../shared/notifications/notifications.service';
|
||||
import { PaginationComponentOptions } from '../../../shared/pagination/pagination-component-options.model';
|
||||
import { AlertType } from '../../../shared/alert/aletr-type';
|
||||
import { AlertType } from '../../../shared/alert/alert-type';
|
||||
import { Item } from '../../../core/shared/item.model';
|
||||
import { OrcidAuthService } from '../../../core/orcid/orcid-auth.service';
|
||||
|
||||
|
@@ -5,8 +5,7 @@ import { RemoteData } from '../../../../core/data/remote-data';
|
||||
import { Relationship } from '../../../../core/shared/item-relationships/relationship.model';
|
||||
import { Item } from '../../../../core/shared/item.model';
|
||||
import {
|
||||
getFirstSucceededRemoteDataPayload,
|
||||
getFirstSucceededRemoteData
|
||||
getFirstCompletedRemoteData
|
||||
} from '../../../../core/shared/operators';
|
||||
import { hasValue } from '../../../../shared/empty.util';
|
||||
import { InjectionToken } from '@angular/core';
|
||||
@@ -77,24 +76,42 @@ export const relationsToItems = (thisId: string) =>
|
||||
* @param {string} thisId The item's id of which the relations belong to
|
||||
* @returns {(source: Observable<Relationship[]>) => Observable<Item[]>}
|
||||
*/
|
||||
export const paginatedRelationsToItems = (thisId: string) =>
|
||||
(source: Observable<RemoteData<PaginatedList<Relationship>>>): Observable<RemoteData<PaginatedList<Item>>> =>
|
||||
export const paginatedRelationsToItems = (thisId: string) => (source: Observable<RemoteData<PaginatedList<Relationship>>>): Observable<RemoteData<PaginatedList<Item>>> =>
|
||||
source.pipe(
|
||||
getFirstSucceededRemoteData(),
|
||||
getFirstCompletedRemoteData(),
|
||||
switchMap((relationshipsRD: RemoteData<PaginatedList<Relationship>>) => {
|
||||
return observableCombineLatest(
|
||||
relationshipsRD.payload.page.map((rel: Relationship) =>
|
||||
observableCombineLatest([
|
||||
rel.leftItem.pipe(getFirstSucceededRemoteDataPayload()),
|
||||
rel.rightItem.pipe(getFirstSucceededRemoteDataPayload())]
|
||||
rel.leftItem.pipe(
|
||||
getFirstCompletedRemoteData(),
|
||||
map((rd: RemoteData<Item>) => {
|
||||
if (rd.hasSucceeded) {
|
||||
return rd.payload;
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
})
|
||||
),
|
||||
rel.rightItem.pipe(
|
||||
getFirstCompletedRemoteData(),
|
||||
map((rd: RemoteData<Item>) => {
|
||||
if (rd.hasSucceeded) {
|
||||
return rd.payload;
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
})
|
||||
),
|
||||
]
|
||||
)
|
||||
)).pipe(
|
||||
)
|
||||
).pipe(
|
||||
map((arr) =>
|
||||
arr
|
||||
.map(([leftItem, rightItem]) => {
|
||||
if (leftItem.id === thisId) {
|
||||
arr.map(([leftItem, rightItem]) => {
|
||||
if (hasValue(leftItem) && leftItem.id === thisId) {
|
||||
return rightItem;
|
||||
} else if (rightItem.id === thisId) {
|
||||
} else if (hasValue(rightItem) && rightItem.id === thisId) {
|
||||
return leftItem;
|
||||
}
|
||||
})
|
||||
|
@@ -23,7 +23,7 @@ import { PaginatedList } from '../../core/data/paginated-list.model';
|
||||
import { PaginationComponentOptions } from '../../shared/pagination/pagination-component-options.model';
|
||||
import { VersionHistoryDataService } from '../../core/data/version-history-data.service';
|
||||
import { PaginatedSearchOptions } from '../../shared/search/models/paginated-search-options.model';
|
||||
import { AlertType } from '../../shared/alert/aletr-type';
|
||||
import { AlertType } from '../../shared/alert/alert-type';
|
||||
import { followLink } from '../../shared/utils/follow-link-config.model';
|
||||
import { hasValue, hasValueOperator } from '../../shared/empty.util';
|
||||
import { PaginationService } from '../../core/pagination/pagination.service';
|
||||
|
@@ -12,7 +12,7 @@ import {
|
||||
} from '../../../core/shared/operators';
|
||||
import { map, startWith, switchMap } from 'rxjs/operators';
|
||||
import { VersionHistoryDataService } from '../../../core/data/version-history-data.service';
|
||||
import { AlertType } from '../../../shared/alert/aletr-type';
|
||||
import { AlertType } from '../../../shared/alert/alert-type';
|
||||
import { getItemPageRoute } from '../../item-page-routing-paths';
|
||||
|
||||
@Component({
|
||||
|
@@ -147,7 +147,7 @@ describe('ProcessDetailComponent', () => {
|
||||
providers: [
|
||||
{
|
||||
provide: ActivatedRoute,
|
||||
useValue: { data: observableOf({ process: createSuccessfulRemoteDataObject(process) }) }
|
||||
useValue: { data: observableOf({ process: createSuccessfulRemoteDataObject(process) }), snapshot: { params: { id: 1 } } },
|
||||
},
|
||||
{ provide: ProcessDataService, useValue: processService },
|
||||
{ provide: BitstreamDataService, useValue: bitstreamDataService },
|
||||
@@ -310,10 +310,11 @@ describe('ProcessDetailComponent', () => {
|
||||
});
|
||||
|
||||
it('should call refresh method every 5 seconds, until process is completed', fakeAsync(() => {
|
||||
spyOn(component, 'refresh');
|
||||
spyOn(component, 'stopRefreshTimer');
|
||||
spyOn(component, 'refresh').and.callThrough();
|
||||
spyOn(component, 'stopRefreshTimer').and.callThrough();
|
||||
|
||||
process.processStatus = ProcessStatus.COMPLETED;
|
||||
// start off with a running process in order for the refresh counter starts counting up
|
||||
process.processStatus = ProcessStatus.RUNNING;
|
||||
// set findbyId to return a completed process
|
||||
(processService.findById as jasmine.Spy).and.returnValue(observableOf(createSuccessfulRemoteDataObject(process)));
|
||||
|
||||
@@ -336,6 +337,10 @@ describe('ProcessDetailComponent', () => {
|
||||
tick(1001); // 1 second + 1 ms by the setTimeout
|
||||
expect(component.refreshCounter$.value).toBe(0); // 1 - 1
|
||||
|
||||
// set the process to completed right before the counter checks the process
|
||||
process.processStatus = ProcessStatus.COMPLETED;
|
||||
(processService.findById as jasmine.Spy).and.returnValue(observableOf(createSuccessfulRemoteDataObject(process)));
|
||||
|
||||
tick(1000); // 1 second
|
||||
|
||||
expect(component.refresh).toHaveBeenCalledTimes(1);
|
||||
|
@@ -17,7 +17,7 @@ import {
|
||||
getFirstSucceededRemoteDataPayload
|
||||
} from '../../core/shared/operators';
|
||||
import { URLCombiner } from '../../core/url-combiner/url-combiner';
|
||||
import { AlertType } from '../../shared/alert/aletr-type';
|
||||
import { AlertType } from '../../shared/alert/alert-type';
|
||||
import { hasValue } from '../../shared/empty.util';
|
||||
import { ProcessStatus } from '../processes/process-status.model';
|
||||
import { Process } from '../processes/process.model';
|
||||
|
@@ -161,7 +161,7 @@ export class ProfilePageComponent implements OnInit {
|
||||
} else {
|
||||
this.notificationsService.error(
|
||||
this.translate.instant(this.PASSWORD_NOTIFICATIONS_PREFIX + 'error.title'),
|
||||
this.translate.instant(this.PASSWORD_NOTIFICATIONS_PREFIX + 'error.change-failed')
|
||||
this.getPasswordErrorMessage(response)
|
||||
);
|
||||
}
|
||||
});
|
||||
@@ -199,4 +199,18 @@ export class ProfilePageComponent implements OnInit {
|
||||
return this.isResearcherProfileEnabled$.asObservable();
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns an error message from a password validation request with a specific reason or
|
||||
* a default message without specific reason.
|
||||
* @param response from the validation password patch request.
|
||||
*/
|
||||
getPasswordErrorMessage(response) {
|
||||
if (response.hasFailed && isNotEmpty(response.errorMessage)) {
|
||||
// Response has a specific error message. Show this message in the error notification.
|
||||
return this.translate.instant(response.errorMessage);
|
||||
}
|
||||
// Show default error message notification.
|
||||
return this.translate.instant(this.PASSWORD_NOTIFICATIONS_PREFIX + 'error.change-failed');
|
||||
}
|
||||
|
||||
}
|
||||
|
@@ -13,7 +13,7 @@ import {isNotEmpty} from '../shared/empty.util';
|
||||
import {BehaviorSubject, combineLatest, Observable, of, switchMap} from 'rxjs';
|
||||
import {map, startWith, take} from 'rxjs/operators';
|
||||
import {CAPTCHA_NAME, GoogleRecaptchaService} from '../core/google-recaptcha/google-recaptcha.service';
|
||||
import {AlertType} from '../shared/alert/aletr-type';
|
||||
import {AlertType} from '../shared/alert/alert-type';
|
||||
import {KlaroService} from '../shared/cookies/klaro.service';
|
||||
import {CookieService} from '../core/services/cookie.service';
|
||||
import { Subscription } from 'rxjs';
|
||||
|
@@ -15,7 +15,7 @@ import {
|
||||
import { BulkAccessConfigDataService } from '../../core/config/bulk-access-config-data.service';
|
||||
import { getFirstCompletedRemoteData } from '../../core/shared/operators';
|
||||
import { BulkAccessConditionOptions } from '../../core/config/models/bulk-access-condition-options.model';
|
||||
import { AlertType } from '../alert/aletr-type';
|
||||
import { AlertType } from '../alert/alert-type';
|
||||
import {
|
||||
createAccessControlInitialFormState
|
||||
} from './access-control-form-container-intial-state';
|
||||
|
@@ -8,7 +8,7 @@ import { TranslateModule } from '@ngx-translate/core';
|
||||
|
||||
import { AlertComponent } from './alert.component';
|
||||
import { createTestComponent } from '../testing/utils.test';
|
||||
import { AlertType } from './aletr-type';
|
||||
import { AlertType } from './alert-type';
|
||||
|
||||
describe('AlertComponent test suite', () => {
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
import { ChangeDetectorRef, Component, EventEmitter, Input, Output, ViewEncapsulation } from '@angular/core';
|
||||
import { trigger } from '@angular/animations';
|
||||
|
||||
import { AlertType } from './aletr-type';
|
||||
import { AlertType } from './alert-type';
|
||||
import { fadeOutLeave, fadeOutState } from '../animations/fade';
|
||||
|
||||
/**
|
||||
|
@@ -42,7 +42,7 @@
|
||||
[formModel]="formModel"
|
||||
[displayCancel]="false"
|
||||
(submitForm)="onSubmit()">
|
||||
<button before (click)="back.emit()" class="btn btn-outline-secondary">
|
||||
<button before (click)="back.emit()" class="btn btn-outline-secondary" type="button">
|
||||
<i class="fas fa-arrow-left"></i> {{ type.value + '.edit.return' | translate }}
|
||||
</button>
|
||||
</ds-form>
|
||||
|
@@ -3,7 +3,7 @@ import { Component, Input } from '@angular/core';
|
||||
import { TranslateService } from '@ngx-translate/core';
|
||||
|
||||
import { Subscription } from 'rxjs';
|
||||
import { AlertType } from '../alert/aletr-type';
|
||||
import { AlertType } from '../alert/alert-type';
|
||||
|
||||
@Component({
|
||||
selector: 'ds-error',
|
||||
|
@@ -130,7 +130,7 @@ export class DsDynamicListComponent extends DynamicFormControlComponent implemen
|
||||
(v) => v.value === option.value));
|
||||
|
||||
const item: ListItem = {
|
||||
id: value,
|
||||
id: `${this.model.id}_${value}`,
|
||||
label: option.display,
|
||||
value: checked,
|
||||
index: key
|
||||
|
@@ -28,6 +28,7 @@ describe('SearchFormComponent', () => {
|
||||
const searchService = new SearchServiceStub();
|
||||
const paginationService = new PaginationServiceStub();
|
||||
const searchConfigService = { paginationID: 'test-id' };
|
||||
const firstPage = { 'spc.page': 1 };
|
||||
const dspaceObjectService = {
|
||||
findById: () => createSuccessfulRemoteDataObject$(undefined),
|
||||
};
|
||||
@@ -104,16 +105,16 @@ describe('SearchFormComponent', () => {
|
||||
const scope = 'MCU';
|
||||
let searchQuery = {};
|
||||
|
||||
it('should navigate to the search page even when no parameters are provided', () => {
|
||||
it('should navigate to the search first page even when no parameters are provided', () => {
|
||||
comp.updateSearch(searchQuery);
|
||||
|
||||
expect(router.navigate).toHaveBeenCalledWith(comp.getSearchLinkParts(), {
|
||||
queryParams: searchQuery,
|
||||
queryParams: { ...searchQuery, ...firstPage },
|
||||
queryParamsHandling: 'merge'
|
||||
});
|
||||
});
|
||||
|
||||
it('should navigate to the search page with parameters only query if only query is provided', () => {
|
||||
it('should navigate to the search first page with parameters only query if only query is provided', () => {
|
||||
searchQuery = {
|
||||
query: query
|
||||
};
|
||||
@@ -121,12 +122,12 @@ describe('SearchFormComponent', () => {
|
||||
comp.updateSearch(searchQuery);
|
||||
|
||||
expect(router.navigate).toHaveBeenCalledWith(comp.getSearchLinkParts(), {
|
||||
queryParams: searchQuery,
|
||||
queryParams: { ...searchQuery, ...firstPage },
|
||||
queryParamsHandling: 'merge'
|
||||
});
|
||||
});
|
||||
|
||||
it('should navigate to the search page with parameters only query if only scope is provided', () => {
|
||||
it('should navigate to the search first page with parameters only query if only scope is provided', () => {
|
||||
searchQuery = {
|
||||
scope: scope
|
||||
};
|
||||
@@ -134,7 +135,7 @@ describe('SearchFormComponent', () => {
|
||||
comp.updateSearch(searchQuery);
|
||||
|
||||
expect(router.navigate).toHaveBeenCalledWith(comp.getSearchLinkParts(), {
|
||||
queryParams: searchQuery,
|
||||
queryParams: {...searchQuery, ...firstPage},
|
||||
queryParamsHandling: 'merge'
|
||||
});
|
||||
});
|
||||
|
@@ -114,7 +114,14 @@ export class SearchFormComponent implements OnChanges {
|
||||
* @param data Updated parameters
|
||||
*/
|
||||
updateSearch(data: any) {
|
||||
const queryParams = Object.assign({}, data);
|
||||
const goToFirstPage = { 'spc.page': 1 };
|
||||
|
||||
const queryParams = Object.assign(
|
||||
{
|
||||
...goToFirstPage
|
||||
},
|
||||
data
|
||||
);
|
||||
|
||||
void this.router.navigate(this.getSearchLinkParts(), {
|
||||
queryParams: queryParams,
|
||||
|
@@ -29,7 +29,7 @@ export const themeStateSelector = createFeatureSelector<ThemeState>('theme');
|
||||
|
||||
export const currentThemeSelector = createSelector(
|
||||
themeStateSelector,
|
||||
(state: ThemeState): string => hasValue(state) ? state.currentTheme : undefined
|
||||
(state: ThemeState): string => hasValue(state) ? state.currentTheme : BASE_THEME_NAME,
|
||||
);
|
||||
|
||||
@Injectable({
|
||||
@@ -240,14 +240,7 @@ export class ThemeService {
|
||||
if (hasValue(parentThemeName)) {
|
||||
// inherit the head tags of the parent theme
|
||||
return this.createHeadTags(parentThemeName);
|
||||
}
|
||||
const defaultThemeConfig = getDefaultThemeConfig();
|
||||
const defaultThemeName = defaultThemeConfig.name;
|
||||
if (
|
||||
hasNoValue(defaultThemeName) ||
|
||||
themeName === defaultThemeName ||
|
||||
themeName === BASE_THEME_NAME
|
||||
) {
|
||||
} else {
|
||||
// last resort, use fallback favicon.ico
|
||||
return [
|
||||
this.createHeadTag({
|
||||
@@ -260,9 +253,6 @@ export class ThemeService {
|
||||
})
|
||||
];
|
||||
}
|
||||
|
||||
// inherit the head tags of the default theme
|
||||
return this.createHeadTags(defaultThemeConfig.name);
|
||||
}
|
||||
|
||||
return headTagConfigs.map(this.createHeadTag.bind(this));
|
||||
@@ -425,9 +415,10 @@ export class ThemeService {
|
||||
* @private
|
||||
*/
|
||||
private getActionForMatch(newTheme: Theme, currentThemeName: string): SetThemeAction | NoOpAction {
|
||||
if (hasValue(newTheme) && newTheme.config.name !== currentThemeName) {
|
||||
const newThemeName: string = newTheme?.config.name ?? BASE_THEME_NAME;
|
||||
if (newThemeName !== currentThemeName) {
|
||||
// If we have a match, and it isn't already the active theme, set it as the new theme
|
||||
return new SetThemeAction(newTheme.config.name);
|
||||
return new SetThemeAction(newThemeName);
|
||||
} else {
|
||||
// Otherwise, do nothing
|
||||
return new NoOpAction();
|
||||
|
@@ -1,10 +1,10 @@
|
||||
import {
|
||||
AfterViewInit,
|
||||
Component,
|
||||
ViewChild,
|
||||
ViewContainerRef,
|
||||
ComponentRef,
|
||||
SimpleChanges,
|
||||
OnInit,
|
||||
OnDestroy,
|
||||
ComponentFactoryResolver,
|
||||
ChangeDetectorRef,
|
||||
@@ -24,7 +24,7 @@ import { BASE_THEME_NAME } from './theme.constants';
|
||||
styleUrls: ['./themed.component.scss'],
|
||||
templateUrl: './themed.component.html',
|
||||
})
|
||||
export abstract class ThemedComponent<T> implements OnInit, OnDestroy, OnChanges {
|
||||
export abstract class ThemedComponent<T> implements AfterViewInit, OnDestroy, OnChanges {
|
||||
@ViewChild('vcr', { read: ViewContainerRef }) vcr: ViewContainerRef;
|
||||
@ViewChild('content') themedElementContent: ElementRef;
|
||||
protected compRef: ComponentRef<T>;
|
||||
@@ -74,8 +74,7 @@ export abstract class ThemedComponent<T> implements OnInit, OnDestroy, OnChanges
|
||||
}
|
||||
}
|
||||
|
||||
ngOnInit(): void {
|
||||
this.destroyComponentInstance();
|
||||
ngAfterViewInit(): void {
|
||||
this.initComponentInstance();
|
||||
}
|
||||
|
||||
@@ -96,8 +95,6 @@ export abstract class ThemedComponent<T> implements OnInit, OnDestroy, OnChanges
|
||||
}
|
||||
|
||||
if (hasNoValue(this.lazyLoadObs)) {
|
||||
this.destroyComponentInstance();
|
||||
|
||||
this.lazyLoadObs = combineLatest([
|
||||
observableOf(changes),
|
||||
this.resolveThemedComponent(this.themeService.getThemeName()).pipe(
|
||||
@@ -120,6 +117,7 @@ export abstract class ThemedComponent<T> implements OnInit, OnDestroy, OnChanges
|
||||
}
|
||||
|
||||
this.lazyLoadSub = this.lazyLoadObs.subscribe(([simpleChanges, constructor]: [SimpleChanges, GenericConstructor<T>]) => {
|
||||
this.destroyComponentInstance();
|
||||
const factory = this.resolver.resolveComponentFactory(constructor);
|
||||
this.compRef = this.vcr.createComponent(factory, undefined, undefined, [this.themedElementContent.nativeElement.childNodes]);
|
||||
if (hasValue(simpleChanges)) {
|
||||
|
@@ -67,7 +67,9 @@ export class MarkdownPipe implements PipeTransform {
|
||||
// sanitize-html doesn't let through SVG by default, so we extend its allowlists to cover MathJax SVG
|
||||
allowedTags: [
|
||||
...sanitizeHtml.defaults.allowedTags,
|
||||
'mjx-container', 'svg', 'g', 'path', 'rect', 'text'
|
||||
'mjx-container', 'svg', 'g', 'path', 'rect', 'text',
|
||||
// Also let the mjx-assistive-mml tag (and it's children) through (for screen readers)
|
||||
'mjx-assistive-mml', 'math', 'mrow', 'mi',
|
||||
],
|
||||
allowedAttributes: {
|
||||
...sanitizeHtml.defaults.allowedAttributes,
|
||||
@@ -88,7 +90,16 @@ export class MarkdownPipe implements PipeTransform {
|
||||
],
|
||||
text: [
|
||||
'transform', 'font-size'
|
||||
]
|
||||
],
|
||||
'mjx-assistive-mml': [
|
||||
'unselectable', 'display', 'style',
|
||||
],
|
||||
math: [
|
||||
'xmlns',
|
||||
],
|
||||
mrow: [
|
||||
'data-mjx-texclass',
|
||||
],
|
||||
},
|
||||
parser: {
|
||||
lowerCaseAttributeNames: false,
|
||||
|
@@ -3,7 +3,7 @@ import { Component, Injector, Input, OnInit, ViewChild } from '@angular/core';
|
||||
import { SectionsDirective } from '../sections.directive';
|
||||
import { SectionDataObject } from '../models/section-data.model';
|
||||
import { rendersSectionType } from '../sections-decorator';
|
||||
import { AlertType } from '../../../shared/alert/aletr-type';
|
||||
import { AlertType } from '../../../shared/alert/alert-type';
|
||||
|
||||
/**
|
||||
* This component represents a section that contains the submission license form.
|
||||
|
@@ -7,7 +7,7 @@ import { SectionModelComponent } from '../models/section.model';
|
||||
import { renderSectionFor } from '../sections-decorator';
|
||||
import { SectionDataObject } from '../models/section-data.model';
|
||||
import { SubmissionService } from '../../submission.service';
|
||||
import { AlertType } from '../../../shared/alert/aletr-type';
|
||||
import { AlertType } from '../../../shared/alert/alert-type';
|
||||
import { SectionsService } from '../sections.service';
|
||||
import { WorkspaceitemSectionIdentifiersObject } from '../../../core/submission/models/workspaceitem-section-identifiers.model';
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
import { Component, Input } from '@angular/core';
|
||||
|
||||
import { Policy } from '../../../../core/submission/models/sherpa-policies-details.model';
|
||||
import { AlertType } from '../../../../shared/alert/aletr-type';
|
||||
import { AlertType } from '../../../../shared/alert/alert-type';
|
||||
|
||||
/**
|
||||
* This component represents a section that contains the publisher policy informations.
|
||||
|
@@ -1,4 +1,4 @@
|
||||
import { AlertType } from '../../../shared/alert/aletr-type';
|
||||
import { AlertType } from '../../../shared/alert/alert-type';
|
||||
import { Component, Inject } from '@angular/core';
|
||||
|
||||
import { BehaviorSubject, Observable, of, Subscription } from 'rxjs';
|
||||
|
@@ -21,7 +21,7 @@ import { SectionsType } from '../sections-type';
|
||||
import { renderSectionFor } from '../sections-decorator';
|
||||
import { SectionDataObject } from '../models/section-data.model';
|
||||
import { SubmissionObjectEntry } from '../../objects/submission-objects.reducer';
|
||||
import { AlertType } from '../../../shared/alert/aletr-type';
|
||||
import { AlertType } from '../../../shared/alert/alert-type';
|
||||
import { RemoteData } from '../../../core/data/remote-data';
|
||||
import { Group } from '../../../core/eperson/models/group.model';
|
||||
import { SectionsService } from '../sections.service';
|
||||
|
@@ -4276,25 +4276,25 @@
|
||||
// TODO New key - Add a translation
|
||||
"mydspace.show.workspace": "Your Submissions",
|
||||
|
||||
// "mydspace.status.archived": "Archived",
|
||||
// "mydspace.status.mydspaceArchived": "Archived",
|
||||
// TODO New key - Add a translation
|
||||
"mydspace.status.archived": "Archived",
|
||||
"mydspace.status.mydspaceArchived": "Archived",
|
||||
|
||||
// "mydspace.status.validation": "Validation",
|
||||
// "mydspace.status.mydspaceValidation": "Validation",
|
||||
// TODO New key - Add a translation
|
||||
"mydspace.status.validation": "Validation",
|
||||
"mydspace.status.mydspaceValidation": "Validation",
|
||||
|
||||
// "mydspace.status.waiting-for-controller": "Waiting for controller",
|
||||
// "mydspace.status.mydspaceWaitingController": "Waiting for controller",
|
||||
// TODO New key - Add a translation
|
||||
"mydspace.status.waiting-for-controller": "Waiting for controller",
|
||||
"mydspace.status.mydspaceWaitingController": "Waiting for controller",
|
||||
|
||||
// "mydspace.status.workflow": "Workflow",
|
||||
// "mydspace.status.mydspaceWorkflow": "Workflow",
|
||||
// TODO New key - Add a translation
|
||||
"mydspace.status.workflow": "Workflow",
|
||||
"mydspace.status.mydspaceWorkflow": "Workflow",
|
||||
|
||||
// "mydspace.status.workspace": "Workspace",
|
||||
// "mydspace.status.mydspaceWorkspace": "Workspace",
|
||||
// TODO New key - Add a translation
|
||||
"mydspace.status.workspace": "Workspace",
|
||||
"mydspace.status.mydspaceWorkspace": "Workspace",
|
||||
|
||||
// "mydspace.title": "MyDSpace",
|
||||
// TODO New key - Add a translation
|
||||
|
@@ -3880,20 +3880,20 @@
|
||||
// "mydspace.show.workspace": "Your Submissions",
|
||||
"mydspace.show.workspace": "আপনার জমাগুলো",
|
||||
|
||||
// "mydspace.status.archived": "Archived",
|
||||
"mydspace.status.archived": "সংরক্ষণাগারভুক্ত",
|
||||
// "mydspace.status.mydspaceArchived": "Archived",
|
||||
"mydspace.status.mydspaceArchived": "সংরক্ষণাগারভুক্ত",
|
||||
|
||||
// "mydspace.status.validation": "Validation",
|
||||
"mydspace.status.validation": "বৈধতা",
|
||||
// "mydspace.status.mydspaceValidation": "Validation",
|
||||
"mydspace.status.mydspaceValidation": "বৈধতা",
|
||||
|
||||
// "mydspace.status.waiting-for-controller": "Waiting for controller",
|
||||
"mydspace.status.waiting-for-controller": "নিয়ামক জন্য অপেক্ষা করছে",
|
||||
// "mydspace.status.mydspaceWaitingController": "Waiting for controller",
|
||||
"mydspace.status.mydspaceWaitingController": "নিয়ামক জন্য অপেক্ষা করছে",
|
||||
|
||||
// "mydspace.status.workflow": "Workflow",
|
||||
"mydspace.status.workflow": "ওয়ার্কফ্লো",
|
||||
// "mydspace.status.mydspaceWorkflow": "Workflow",
|
||||
"mydspace.status.mydspaceWorkflow": "ওয়ার্কফ্লো",
|
||||
|
||||
// "mydspace.status.workspace": "Workspace",
|
||||
"mydspace.status.workspace": "কর্মক্ষেত্র",
|
||||
// "mydspace.status.mydspaceWorkspace": "Workspace",
|
||||
"mydspace.status.mydspaceWorkspace": "কর্মক্ষেত্র",
|
||||
|
||||
// "mydspace.title": "MyDSpace",
|
||||
"mydspace.title": "আমার ডিস্পেস",
|
||||
|
@@ -4190,20 +4190,20 @@
|
||||
// "mydspace.show.workspace": "Your Submissions",
|
||||
"mydspace.show.workspace": "Els seus enviaments",
|
||||
|
||||
// "mydspace.status.archived": "Archived",
|
||||
"mydspace.status.archived": "Arxivat",
|
||||
// "mydspace.status.mydspaceArchived": "Archived",
|
||||
"mydspace.status.mydspaceArchived": "Arxivat",
|
||||
|
||||
// "mydspace.status.validation": "Validation",
|
||||
"mydspace.status.validation": "Validació",
|
||||
// "mydspace.status.mydspaceValidation": "Validation",
|
||||
"mydspace.status.mydspaceValidation": "Validació",
|
||||
|
||||
// "mydspace.status.waiting-for-controller": "Waiting for controller",
|
||||
"mydspace.status.waiting-for-controller": "Esperant el controlador",
|
||||
// "mydspace.status.mydspaceWaitingController": "Waiting for controller",
|
||||
"mydspace.status.mydspaceWaitingController": "Esperant el controlador",
|
||||
|
||||
// "mydspace.status.workflow": "Workflow",
|
||||
"mydspace.status.workflow": "Flux de treball",
|
||||
// "mydspace.status.mydspaceWorkflow": "Workflow",
|
||||
"mydspace.status.mydspaceWorkflow": "Flux de treball",
|
||||
|
||||
// "mydspace.status.workspace": "Workspace",
|
||||
"mydspace.status.workspace": "Espai de treball",
|
||||
// "mydspace.status.mydspaceWorkspace": "Workspace",
|
||||
"mydspace.status.mydspaceWorkspace": "Espai de treball",
|
||||
|
||||
// "mydspace.title": "MyDSpace",
|
||||
"mydspace.title": "El meu DSpace",
|
||||
|
@@ -4187,25 +4187,25 @@
|
||||
// TODO New key - Add a translation
|
||||
"mydspace.show.workspace": "Your Submissions",
|
||||
|
||||
// "mydspace.status.archived": "Archived",
|
||||
// "mydspace.status.mydspaceArchived": "Archived",
|
||||
// TODO New key - Add a translation
|
||||
"mydspace.status.archived": "Archived",
|
||||
"mydspace.status.mydspaceArchived": "Archived",
|
||||
|
||||
// "mydspace.status.validation": "Validation",
|
||||
// "mydspace.status.mydspaceValidation": "Validation",
|
||||
// TODO New key - Add a translation
|
||||
"mydspace.status.validation": "Validation",
|
||||
"mydspace.status.mydspaceValidation": "Validation",
|
||||
|
||||
// "mydspace.status.waiting-for-controller": "Waiting for controller",
|
||||
// "mydspace.status.mydspaceWaitingController": "Waiting for controller",
|
||||
// TODO New key - Add a translation
|
||||
"mydspace.status.waiting-for-controller": "Waiting for controller",
|
||||
"mydspace.status.mydspaceWaitingController": "Waiting for controller",
|
||||
|
||||
// "mydspace.status.workflow": "Workflow",
|
||||
// "mydspace.status.mydspaceWorkflow": "Workflow",
|
||||
// TODO New key - Add a translation
|
||||
"mydspace.status.workflow": "Workflow",
|
||||
"mydspace.status.mydspaceWorkflow": "Workflow",
|
||||
|
||||
// "mydspace.status.workspace": "Workspace",
|
||||
// "mydspace.status.mydspaceWorkspace": "Workspace",
|
||||
// TODO New key - Add a translation
|
||||
"mydspace.status.workspace": "Workspace",
|
||||
"mydspace.status.mydspaceWorkspace": "Workspace",
|
||||
|
||||
// "mydspace.title": "MyDSpace",
|
||||
// TODO New key - Add a translation
|
||||
|
@@ -1712,7 +1712,8 @@
|
||||
// "curation-task.task.vscan.label": "Virus Scan",
|
||||
"curation-task.task.vscan.label": "Virenscan",
|
||||
|
||||
|
||||
// "curation-task.task.registerdoi.label": "Register DOI",
|
||||
"curation-task.task.registerdoi.label": "DOI registrieren",
|
||||
|
||||
// "curation.form.task-select.label": "Task:",
|
||||
"curation.form.task-select.label": "Aufgabe:",
|
||||
@@ -3484,20 +3485,20 @@
|
||||
// "mydspace.show.workspace": "Your Submissions",
|
||||
"mydspace.show.workspace": "Ihre Veröffentlichungen",
|
||||
|
||||
// "mydspace.status.archived": "Archived",
|
||||
"mydspace.status.archived": "Archiviert",
|
||||
// "mydspace.status.mydspaceArchived": "Archived",
|
||||
"mydspace.status.mydspaceArchived": "Archiviert",
|
||||
|
||||
// "mydspace.status.validation": "Validation",
|
||||
"mydspace.status.validation": "Validierung",
|
||||
// "mydspace.status.mydspaceValidation": "Validation",
|
||||
"mydspace.status.mydspaceValidation": "Validierung",
|
||||
|
||||
// "mydspace.status.waiting-for-controller": "Waiting for controller",
|
||||
"mydspace.status.waiting-for-controller": "Warten auf die Überprüfung",
|
||||
// "mydspace.status.mydspaceWaitingController": "Waiting for controller",
|
||||
"mydspace.status.mydspaceWaitingController": "Warten auf die Überprüfung",
|
||||
|
||||
// "mydspace.status.workflow": "Workflow",
|
||||
"mydspace.status.workflow": "Geschäftsgang",
|
||||
// "mydspace.status.mydspaceWorkflow": "Workflow",
|
||||
"mydspace.status.mydspaceWorkflow": "Geschäftsgang",
|
||||
|
||||
// "mydspace.status.workspace": "Workspace",
|
||||
"mydspace.status.workspace": "Arbeitsbereich",
|
||||
// "mydspace.status.mydspaceWorkspace": "Workspace",
|
||||
"mydspace.status.mydspaceWorkspace": "Arbeitsbereich",
|
||||
|
||||
// "mydspace.title": "MyDSpace",
|
||||
"mydspace.title": "Mein DSpace",
|
||||
@@ -4487,6 +4488,21 @@
|
||||
// "search.filters.discoverable.false": "Yes",
|
||||
"search.filters.discoverable.false": "Ja",
|
||||
|
||||
// "search.filters.namedresourcetype.Archived": "Archived",
|
||||
"search.filters.namedresourcetype.Archived": "Archiviert",
|
||||
|
||||
// "search.filters.namedresourcetype.Validation": "Validation",
|
||||
"search.filters.namedresourcetype.Validation": "Validierung",
|
||||
|
||||
// "search.filters.namedresourcetype.Waiting for Controller": "Waiting for Controller",
|
||||
"search.filters.namedresourcetype.Waiting for Controller": "Warten auf die Überprüfung",
|
||||
|
||||
// "search.filters.namedresourcetype.Workflow": "Workflow",
|
||||
"search.filters.namedresourcetype.Workflow": "Geschäftsgang",
|
||||
|
||||
// "search.filters.namedresourcetype.Workspace": "Workspace",
|
||||
"search.filters.namedresourcetype.Workspace": "Arbeitsbereich",
|
||||
|
||||
// "search.filters.withdrawn.true": "Yes",
|
||||
"search.filters.withdrawn.true": "Ja",
|
||||
|
||||
|
@@ -1315,11 +1315,11 @@
|
||||
"mydspace.search-form.placeholder": "Αναζήτηση στο mydspace...",
|
||||
"mydspace.show.workflow": "Εργασίες ροής εργασιών",
|
||||
"mydspace.show.workspace": "Οι Υποβολές σας",
|
||||
"mydspace.status.archived": "Αρχειοθετημένα",
|
||||
"mydspace.status.validation": "Επικύρωση",
|
||||
"mydspace.status.waiting-for-controller": "Αναμονή για τον ελεγκτή",
|
||||
"mydspace.status.workflow": "Ροή εργασιών",
|
||||
"mydspace.status.workspace": "Χώρος εργασίας",
|
||||
"mydspace.status.mydspaceArchived": "Αρχειοθετημένα",
|
||||
"mydspace.status.mydspaceValidation": "Επικύρωση",
|
||||
"mydspace.status.mydspaceWaitingController": "Αναμονή για τον ελεγκτή",
|
||||
"mydspace.status.mydspaceWorkflow": "Ροή εργασιών",
|
||||
"mydspace.status.mydspaceWorkspace": "Χώρος εργασίας",
|
||||
"mydspace.title": "MyDSpace",
|
||||
"mydspace.upload.upload-failed": "Σφάλμα κατά τη δημιουργία νέου χώρου εργασίας. Επαληθεύστε το περιεχόμενο που ανεβάσατε πριν δοκιμάσετε ξανά.",
|
||||
"mydspace.upload.upload-failed-manyentries": "Μη επεξεργάσιμο αρχείο. Εντοπίστηκαν πάρα πολλές καταχωρίσεις, αλλά επιτρέπεται μόνο μία για αρχείο.",
|
||||
|
@@ -1396,7 +1396,7 @@
|
||||
|
||||
"curation-task.task.vscan.label": "Virus Scan",
|
||||
|
||||
"curation-task.task.register-doi.label": "Register DOI",
|
||||
"curation-task.task.registerdoi.label": "Register DOI",
|
||||
|
||||
"curation.form.task-select.label": "Task:",
|
||||
|
||||
@@ -3818,6 +3818,16 @@
|
||||
|
||||
"search.filters.discoverable.false": "Yes",
|
||||
|
||||
"search.filters.namedresourcetype.Archived": "Archived",
|
||||
|
||||
"search.filters.namedresourcetype.Validation": "Validation",
|
||||
|
||||
"search.filters.namedresourcetype.Waiting for Controller": "Waiting for Controller",
|
||||
|
||||
"search.filters.namedresourcetype.Workflow": "Workflow",
|
||||
|
||||
"search.filters.namedresourcetype.Workspace": "Workspace",
|
||||
|
||||
"search.filters.withdrawn.true": "Yes",
|
||||
|
||||
"search.filters.withdrawn.false": "No",
|
||||
|
@@ -2080,8 +2080,8 @@
|
||||
// "curation-task.task.vscan.label": "Virus Scan",
|
||||
"curation-task.task.vscan.label": "Búsqueda de virus",
|
||||
|
||||
// "curation-task.task.register-doi.label": "Register DOI",
|
||||
"curation-task.task.register-doi.label": "Registro DOI",
|
||||
// "curation-task.task.registerdoi.label": "Register DOI",
|
||||
"curation-task.task.registerdoi.label": "Registro DOI",
|
||||
|
||||
|
||||
|
||||
@@ -4560,20 +4560,20 @@
|
||||
// "mydspace.show.supervisedWorkspace": "Supervised items",
|
||||
"mydspace.show.supervisedWorkspace": "Ítems supervisados",
|
||||
|
||||
// "mydspace.status.archived": "Archived",
|
||||
"mydspace.status.archived": "Archivado",
|
||||
// "mydspace.status.mydspaceArchived": "Archived",
|
||||
"mydspace.status.mydspaceArchived": "Archivado",
|
||||
|
||||
// "mydspace.status.validation": "Validation",
|
||||
"mydspace.status.validation": "Validación",
|
||||
// "mydspace.status.mydspaceValidation": "Validation",
|
||||
"mydspace.status.mydspaceValidation": "Validación",
|
||||
|
||||
// "mydspace.status.waiting-for-controller": "Waiting for controller",
|
||||
"mydspace.status.waiting-for-controller": "Esperando al controlador",
|
||||
// "mydspace.status.mydspaceWaitingController": "Waiting for controller",
|
||||
"mydspace.status.mydspaceWaitingController": "Esperando al controlador",
|
||||
|
||||
// "mydspace.status.workflow": "Workflow",
|
||||
"mydspace.status.workflow": "Flujo de trabajo",
|
||||
// "mydspace.status.mydspaceWorkflow": "Workflow",
|
||||
"mydspace.status.mydspaceWorkflow": "Flujo de trabajo",
|
||||
|
||||
// "mydspace.status.workspace": "Workspace",
|
||||
"mydspace.status.workspace": "Espacio de trabajo",
|
||||
// "mydspace.status.mydspaceWorkspace": "Workspace",
|
||||
"mydspace.status.mydspaceWorkspace": "Espacio de trabajo",
|
||||
|
||||
// "mydspace.title": "MyDSpace",
|
||||
"mydspace.title": "Mi DSpace",
|
||||
|
File diff suppressed because it is too large
Load Diff
@@ -3822,20 +3822,20 @@
|
||||
//"mydspace.show.supervisedWorkspace": "Supervised items",
|
||||
"mydspace.show.supervisedWorkspace": "Items supervisés",
|
||||
|
||||
// "mydspace.status.archived": "Archived",
|
||||
"mydspace.status.archived": "Archivés",
|
||||
// "mydspace.status.mydspaceArchived": "Archived",
|
||||
"mydspace.status.mydspaceArchived": "Archivés",
|
||||
|
||||
// "mydspace.status.validation": "Validation",
|
||||
"mydspace.status.validation": "En cours de validation",
|
||||
// "mydspace.status.mydspaceValidation": "Validation",
|
||||
"mydspace.status.mydspaceValidation": "En cours de validation",
|
||||
|
||||
// "mydspace.status.waiting-for-controller": "Waiting for controller",
|
||||
"mydspace.status.waiting-for-controller": "En attente d'assignation",
|
||||
// "mydspace.status.mydspaceWaitingController": "Waiting for controller",
|
||||
"mydspace.status.mydspaceWaitingController": "En attente d'assignation",
|
||||
|
||||
// "mydspace.status.workflow": "Workflow",
|
||||
"mydspace.status.workflow": "En traitement",
|
||||
// "mydspace.status.mydspaceWorkflow": "Workflow",
|
||||
"mydspace.status.mydspaceWorkflow": "En traitement",
|
||||
|
||||
// "mydspace.status.workspace": "Workspace",
|
||||
"mydspace.status.workspace": "Dépôts en cours",
|
||||
// "mydspace.status.mydspaceWorkspace": "Workspace",
|
||||
"mydspace.status.mydspaceWorkspace": "Dépôts en cours",
|
||||
|
||||
// "mydspace.title": "MyDSpace",
|
||||
"mydspace.title": "Mon compte DSpace",
|
||||
|
@@ -3867,20 +3867,20 @@
|
||||
// "mydspace.show.workspace": "Your Submissions",
|
||||
"mydspace.show.workspace": "Do Chur-a-steachan",
|
||||
|
||||
// "mydspace.status.archived": "Archived",
|
||||
"mydspace.status.archived": "San Tasglann",
|
||||
// "mydspace.status.mydspaceArchived": "Archived",
|
||||
"mydspace.status.mydspaceArchived": "San Tasglann",
|
||||
|
||||
// "mydspace.status.validation": "Validation",
|
||||
"mydspace.status.validation": "Dearbhadh",
|
||||
// "mydspace.status.mydspaceValidation": "Validation",
|
||||
"mydspace.status.mydspaceValidation": "Dearbhadh",
|
||||
|
||||
// "mydspace.status.waiting-for-controller": "Waiting for controller",
|
||||
"mydspace.status.waiting-for-controller": "A' feitheamh riaghladair",
|
||||
// "mydspace.status.mydspaceWaitingController": "Waiting for controller",
|
||||
"mydspace.status.mydspaceWaitingController": "A' feitheamh riaghladair",
|
||||
|
||||
// "mydspace.status.workflow": "Workflow",
|
||||
"mydspace.status.workflow": "Sruth-obrach",
|
||||
// "mydspace.status.mydspaceWorkflow": "Workflow",
|
||||
"mydspace.status.mydspaceWorkflow": "Sruth-obrach",
|
||||
|
||||
// "mydspace.status.workspace": "Workspace",
|
||||
"mydspace.status.workspace": "Raon-obrach",
|
||||
// "mydspace.status.mydspaceWorkspace": "Workspace",
|
||||
"mydspace.status.mydspaceWorkspace": "Raon-obrach",
|
||||
|
||||
// "mydspace.title": "MyDSpace",
|
||||
"mydspace.title": "MoDSpace",
|
||||
|
@@ -2677,15 +2677,15 @@
|
||||
|
||||
"mydspace.show.workspace": "आपकी प्रस्तुतियां",
|
||||
|
||||
"mydspace.status.archived": "संग्रहीत",
|
||||
"mydspace.status.mydspaceArchived": "संग्रहीत",
|
||||
|
||||
"mydspace.status.validation": "सत्यापन",
|
||||
"mydspace.status.mydspaceValidation": "सत्यापन",
|
||||
|
||||
"mydspace.status.waiting-for-controller": "नियंत्रक की प्रतीक्षा कर रहा है",
|
||||
"mydspace.status.mydspaceWaitingController": "नियंत्रक की प्रतीक्षा कर रहा है",
|
||||
|
||||
"mydspace.status.workflow": "कार्यप्रवाह",
|
||||
"mydspace.status.mydspaceWorkflow": "कार्यप्रवाह",
|
||||
|
||||
"mydspace.status.workspace": "कार्यस्थान",
|
||||
"mydspace.status.mydspaceWorkspace": "कार्यस्थान",
|
||||
|
||||
"mydspace.title": "मेरा डीस्पेस",
|
||||
|
||||
|
@@ -2228,9 +2228,9 @@
|
||||
// "curation-task.task.vscan.label": "Virus Scan",
|
||||
"curation-task.task.vscan.label": "Virus ellenőrzés",
|
||||
|
||||
// "curation-task.task.register-doi.label": "Register DOI",
|
||||
// "curation-task.task.registerdoi.label": "Register DOI",
|
||||
// TODO New key - Add a translation
|
||||
"curation-task.task.register-doi.label": "Register DOI",
|
||||
"curation-task.task.registerdoi.label": "Register DOI",
|
||||
|
||||
|
||||
|
||||
@@ -4983,20 +4983,20 @@
|
||||
// TODO New key - Add a translation
|
||||
"mydspace.show.supervisedWorkspace": "Supervised items",
|
||||
|
||||
// "mydspace.status.archived": "Archived",
|
||||
"mydspace.status.archived": "Tárolva",
|
||||
// "mydspace.status.mydspaceArchived": "Archived",
|
||||
"mydspace.status.mydspaceArchived": "Tárolva",
|
||||
|
||||
// "mydspace.status.validation": "Validation",
|
||||
"mydspace.status.validation": "Érvényesítés",
|
||||
// "mydspace.status.mydspaceValidation": "Validation",
|
||||
"mydspace.status.mydspaceValidation": "Érvényesítés",
|
||||
|
||||
// "mydspace.status.waiting-for-controller": "Waiting for controller",
|
||||
"mydspace.status.waiting-for-controller": "Várakozás a kontrollerre",
|
||||
// "mydspace.status.mydspaceWaitingController": "Waiting for controller",
|
||||
"mydspace.status.mydspaceWaitingController": "Várakozás a kontrollerre",
|
||||
|
||||
// "mydspace.status.workflow": "Workflow",
|
||||
"mydspace.status.workflow": "Munkafolyamat",
|
||||
// "mydspace.status.mydspaceWorkflow": "Workflow",
|
||||
"mydspace.status.mydspaceWorkflow": "Munkafolyamat",
|
||||
|
||||
// "mydspace.status.workspace": "Workspace",
|
||||
"mydspace.status.workspace": "Munkafelület",
|
||||
// "mydspace.status.mydspaceWorkspace": "Workspace",
|
||||
"mydspace.status.mydspaceWorkspace": "Munkafelület",
|
||||
|
||||
// "mydspace.title": "MyDSpace",
|
||||
"mydspace.title": "MyDSpace",
|
||||
|
@@ -2160,9 +2160,9 @@
|
||||
// "curation-task.task.vscan.label": "Virus Scan",
|
||||
"curation-task.task.vscan.label": "Scansione antivirus",
|
||||
|
||||
// "curation-task.task.register-doi.label": "Register DOI",
|
||||
// "curation-task.task.registerdoi.label": "Register DOI",
|
||||
// TODO New key - Add a translation
|
||||
"curation-task.task.register-doi.label": "Register DOI",
|
||||
"curation-task.task.registerdoi.label": "Register DOI",
|
||||
|
||||
|
||||
|
||||
@@ -4813,20 +4813,20 @@
|
||||
// TODO New key - Add a translation
|
||||
"mydspace.show.supervisedWorkspace": "Supervised items",
|
||||
|
||||
// "mydspace.status.archived": "Archived",
|
||||
"mydspace.status.archived": "Archiviati",
|
||||
// "mydspace.status.mydspaceArchived": "Archived",
|
||||
"mydspace.status.mydspaceArchived": "Archiviati",
|
||||
|
||||
// "mydspace.status.validation": "Validation",
|
||||
"mydspace.status.validation": "Convalida",
|
||||
// "mydspace.status.mydspaceValidation": "Validation",
|
||||
"mydspace.status.mydspaceValidation": "Convalida",
|
||||
|
||||
// "mydspace.status.waiting-for-controller": "Waiting for controller",
|
||||
"mydspace.status.waiting-for-controller": "In attesa del controllo",
|
||||
// "mydspace.status.mydspaceWaitingController": "Waiting for controller",
|
||||
"mydspace.status.mydspaceWaitingController": "In attesa del controllo",
|
||||
|
||||
// "mydspace.status.workflow": "Workflow",
|
||||
"mydspace.status.workflow": "Workflow",
|
||||
// "mydspace.status.mydspaceWorkflow": "Workflow",
|
||||
"mydspace.status.mydspaceWorkflow": "Workflow",
|
||||
|
||||
// "mydspace.status.workspace": "Workspace",
|
||||
"mydspace.status.workspace": "Workspace",
|
||||
// "mydspace.status.mydspaceWorkspace": "Workspace",
|
||||
"mydspace.status.mydspaceWorkspace": "Workspace",
|
||||
|
||||
// "mydspace.title": "MyDSpace",
|
||||
"mydspace.title": "MyDSpace",
|
||||
|
@@ -4276,25 +4276,25 @@
|
||||
// TODO New key - Add a translation
|
||||
"mydspace.show.workspace": "Your Submissions",
|
||||
|
||||
// "mydspace.status.archived": "Archived",
|
||||
// "mydspace.status.mydspaceArchived": "Archived",
|
||||
// TODO New key - Add a translation
|
||||
"mydspace.status.archived": "Archived",
|
||||
"mydspace.status.mydspaceArchived": "Archived",
|
||||
|
||||
// "mydspace.status.validation": "Validation",
|
||||
// "mydspace.status.mydspaceValidation": "Validation",
|
||||
// TODO New key - Add a translation
|
||||
"mydspace.status.validation": "Validation",
|
||||
"mydspace.status.mydspaceValidation": "Validation",
|
||||
|
||||
// "mydspace.status.waiting-for-controller": "Waiting for controller",
|
||||
// "mydspace.status.mydspaceWaitingController": "Waiting for controller",
|
||||
// TODO New key - Add a translation
|
||||
"mydspace.status.waiting-for-controller": "Waiting for controller",
|
||||
"mydspace.status.mydspaceWaitingController": "Waiting for controller",
|
||||
|
||||
// "mydspace.status.workflow": "Workflow",
|
||||
// "mydspace.status.mydspaceWorkflow": "Workflow",
|
||||
// TODO New key - Add a translation
|
||||
"mydspace.status.workflow": "Workflow",
|
||||
"mydspace.status.mydspaceWorkflow": "Workflow",
|
||||
|
||||
// "mydspace.status.workspace": "Workspace",
|
||||
// "mydspace.status.mydspaceWorkspace": "Workspace",
|
||||
// TODO New key - Add a translation
|
||||
"mydspace.status.workspace": "Workspace",
|
||||
"mydspace.status.mydspaceWorkspace": "Workspace",
|
||||
|
||||
// "mydspace.title": "MyDSpace",
|
||||
// TODO New key - Add a translation
|
||||
|
@@ -4139,20 +4139,20 @@
|
||||
// "mydspace.show.workspace": "Your Submissions",
|
||||
"mydspace.show.workspace": "Сіздің өтініштеріңіз",
|
||||
|
||||
// "mydspace.status.archived": "Archived",
|
||||
"mydspace.status.archived": "Мұрағатталған",
|
||||
// "mydspace.status.mydspaceArchived": "Archived",
|
||||
"mydspace.status.mydspaceArchived": "Мұрағатталған",
|
||||
|
||||
// "mydspace.status.validation": "Validation",
|
||||
"mydspace.status.validation": "Валидация",
|
||||
// "mydspace.status.mydspaceValidation": "Validation",
|
||||
"mydspace.status.mydspaceValidation": "Валидация",
|
||||
|
||||
// "mydspace.status.waiting-for-controller": "Waiting for controller",
|
||||
"mydspace.status.waiting-for-controller": "Контроллерді күтуде",
|
||||
// "mydspace.status.mydspaceWaitingController": "Waiting for controller",
|
||||
"mydspace.status.mydspaceWaitingController": "Контроллерді күтуде",
|
||||
|
||||
// "mydspace.status.workflow": "Workflow",
|
||||
"mydspace.status.workflow": "Жұмыс барысы",
|
||||
// "mydspace.status.mydspaceWorkflow": "Workflow",
|
||||
"mydspace.status.mydspaceWorkflow": "Жұмыс барысы",
|
||||
|
||||
// "mydspace.status.workspace": "Workspace",
|
||||
"mydspace.status.workspace": "Жұмыс кеңістігі",
|
||||
// "mydspace.status.mydspaceWorkspace": "Workspace",
|
||||
"mydspace.status.mydspaceWorkspace": "Жұмыс кеңістігі",
|
||||
|
||||
// "mydspace.title": "MyDSpace",
|
||||
"mydspace.title": "MyDSpace",
|
||||
|
@@ -3492,20 +3492,20 @@
|
||||
// "mydspace.show.workspace": "Your Submissions",
|
||||
"mydspace.show.workspace": "Jūsu Iesniegumi",
|
||||
|
||||
// "mydspace.status.archived": "Archived",
|
||||
"mydspace.status.archived": "Arhivēts",
|
||||
// "mydspace.status.mydspaceArchived": "Archived",
|
||||
"mydspace.status.mydspaceArchived": "Arhivēts",
|
||||
|
||||
// "mydspace.status.validation": "Validation",
|
||||
"mydspace.status.validation": "Validācija",
|
||||
// "mydspace.status.mydspaceValidation": "Validation",
|
||||
"mydspace.status.mydspaceValidation": "Validācija",
|
||||
|
||||
// "mydspace.status.waiting-for-controller": "Waiting for controller",
|
||||
"mydspace.status.waiting-for-controller": "Gaida kontrolieri",
|
||||
// "mydspace.status.mydspaceWaitingController": "Waiting for controller",
|
||||
"mydspace.status.mydspaceWaitingController": "Gaida kontrolieri",
|
||||
|
||||
// "mydspace.status.workflow": "Workflow",
|
||||
"mydspace.status.workflow": "Darba plūsma",
|
||||
// "mydspace.status.mydspaceWorkflow": "Workflow",
|
||||
"mydspace.status.mydspaceWorkflow": "Darba plūsma",
|
||||
|
||||
// "mydspace.status.workspace": "Workspace",
|
||||
"mydspace.status.workspace": "Darbavieta",
|
||||
// "mydspace.status.mydspaceWorkspace": "Workspace",
|
||||
"mydspace.status.mydspaceWorkspace": "Darbavieta",
|
||||
|
||||
// "mydspace.title": "MyDSpace",
|
||||
"mydspace.title": "Mans DSpace",
|
||||
|
@@ -3764,20 +3764,20 @@
|
||||
// "mydspace.show.workspace": "Your Submissions",
|
||||
"mydspace.show.workspace": "Uw Submissions",
|
||||
|
||||
// "mydspace.status.archived": "Archived",
|
||||
"mydspace.status.archived": "Opgeslagen",
|
||||
// "mydspace.status.mydspaceArchived": "Archived",
|
||||
"mydspace.status.mydspaceArchived": "Opgeslagen",
|
||||
|
||||
// "mydspace.status.validation": "Validation",
|
||||
"mydspace.status.validation": "Validatie",
|
||||
// "mydspace.status.mydspaceValidation": "Validation",
|
||||
"mydspace.status.mydspaceValidation": "Validatie",
|
||||
|
||||
// "mydspace.status.waiting-for-controller": "Waiting for controller",
|
||||
"mydspace.status.waiting-for-controller": "Wachten op controlleur",
|
||||
// "mydspace.status.mydspaceWaitingController": "Waiting for controller",
|
||||
"mydspace.status.mydspaceWaitingController": "Wachten op controlleur",
|
||||
|
||||
// "mydspace.status.workflow": "Workflow",
|
||||
"mydspace.status.workflow": "Workflow",
|
||||
// "mydspace.status.mydspaceWorkflow": "Workflow",
|
||||
"mydspace.status.mydspaceWorkflow": "Workflow",
|
||||
|
||||
// "mydspace.status.workspace": "Workspace",
|
||||
"mydspace.status.workspace": "Workspace",
|
||||
// "mydspace.status.mydspaceWorkspace": "Workspace",
|
||||
"mydspace.status.mydspaceWorkspace": "Workspace",
|
||||
|
||||
// "mydspace.title": "MyDSpace",
|
||||
"mydspace.title": "MyDSpace",
|
||||
|
@@ -1207,11 +1207,11 @@
|
||||
"mydspace.search-form.placeholder": "Wyszukaj w mydspace...",
|
||||
"mydspace.show.workflow": "Wszystkie zadania",
|
||||
"mydspace.show.workspace": "Twoje zadania",
|
||||
"mydspace.status.archived": "Zarchiwizowano",
|
||||
"mydspace.status.validation": "Walidacja",
|
||||
"mydspace.status.waiting-for-controller": "Oczekiwanie na redaktora",
|
||||
"mydspace.status.workflow": "Workflow",
|
||||
"mydspace.status.workspace": "Wersja robocza",
|
||||
"mydspace.status.mydspaceArchived": "Zarchiwizowano",
|
||||
"mydspace.status.mydspaceValidation": "Walidacja",
|
||||
"mydspace.status.mydspaceWaitingController": "Oczekiwanie na redaktora",
|
||||
"mydspace.status.mydspaceWorkflow": "Workflow",
|
||||
"mydspace.status.mydspaceWorkspace": "Wersja robocza",
|
||||
"mydspace.title": "Mój DSpace",
|
||||
"mydspace.upload.upload-failed": "Bład podczas tworzenia nowej wersji roboczej. Sprawdź poprawność plików i spróbuj ponownie.",
|
||||
"mydspace.upload.upload-failed-manyentries": "Plik jest niemożliwy do przetworzenia. Wykryto wiele wejść, a dopuszczalne jest tylko jedno dla jednego pliku.",
|
||||
@@ -2296,4 +2296,326 @@
|
||||
"submission.sections.license.required": "Najpierw musisz zaakceptować licencję",
|
||||
"confirmation-modal.export-batch.confirm": "Eksportuj",
|
||||
"confirmation-modal.export-batch.cancel": "Anuluj",
|
||||
"admin.access-control.bulk-access.breadcrumbs": "Zbiorcza edycja dostępu do osiągnięć",
|
||||
"administrativeBulkAccess.search.results.head": "Wyniki wyszukiwania",
|
||||
"admin.access-control.bulk-access": "Zbiorcza edycja dostępu do osiągnięć",
|
||||
"admin.access-control.bulk-access.title": "Zbiorcza edycja dostępu do osiągnięć",
|
||||
"admin.access-control.bulk-access-browse.header": "Krok 1: Wybierz pozycje",
|
||||
"admin.access-control.bulk-access-browse.search.header": "Wyszukaj",
|
||||
"admin.access-control.bulk-access-browse.selected.header": "Obecny wybór({{number}})",
|
||||
"admin.access-control.bulk-access-settings.header": "Krok 2: Działanie do wykonania",
|
||||
"admin.access-control.groups.form.tooltip.editGroupPage": "Na tej stronie można edytować opcje grupy i przypisane do niej osoby. W górnej sekcji można edytować nazwę i opis grupy, chyba że jest to grupa administratorów dla zbioru i kolekcji. W tym przypadku nazwa i opis grupy są generowane automatycznie i nie można ich edytować. W kolejnych sekcjach można edytować przypisanie użytkowników do grupy. Szczegóły na [stronie](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group).",
|
||||
"admin.access-control.groups.form.tooltip.editGroup.addEpeople": "Aby dodać lub usunąć użytkownika do/z tej grupy, kliknij przycisk 'Przeglądaj wszystko' lub użyj paska wyszukiwania poniżej, aby wyszukać użytkowników (użyj listy rozwijanej po lewej stronie paska wyszukiwania, aby wybrać, czy chcesz wyszukiwać według imienia i nazwiska, czy według adresu e-mail). Następnie kliknij ikonę plusa przy każdym użytkowniku, którego chcesz dodać do poniższej listy, lub ikonę kosza przy każdym użytkowniku, którego chcesz usunąć. Poniższa lista może mieć kilka stron: użyj strzałek pod listą, aby przejść do kolejnych stron. Gdy wszystkie zmiany zostaną wprowadzone, zapisz je, klikając przycisk 'Zapisz' w górnej sekcji.",
|
||||
"admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "Aby dodać lub usunąć podgrupę do/z tej grupy, kliknij przycisk 'Przeglądaj wszystko' lub użyj wyszukiwarki poniżej, aby wyszukać użytkowników. Następnie kliknij ikonę plusa przy każdym użytkowniku, którego chcesz dodać do poniższej listy, lub ikonę kosza przy każdym użytkowniku, którego chcesz usunąć. Poniższa lista może składać się z kilku stron: użyj przycisków pod listą, aby przejść do kolejnych stron. Gdy wszystkie zmiany zostaną wprowadzone, zapisz je, klikając przycisk 'Zapisz' w górnej sekcji.",
|
||||
"admin.workflow.item.workspace": "Przestrzeń robocza",
|
||||
"admin.workflow.item.policies": "Polityki",
|
||||
"admin.workflow.item.supervision": "Recenzja",
|
||||
"admin.batch-import.page.toggle.help": "It is possible to perform import either with file upload or via URL, use above toggle to set the input source",
|
||||
"admin.metadata-import.page.error.addFileUrl": "Najpierw wpisz URL pliku!",
|
||||
"admin.metadata-import.page.toggle.upload": "Prześlij",
|
||||
"admin.metadata-import.page.toggle.url": "URL",
|
||||
"admin.metadata-import.page.urlMsg": "Wpisz URL pliku ZIP, aby wykonać import masowy",
|
||||
"advanced-workflow-action.rating.form.rating.label": "Ocena",
|
||||
"advanced-workflow-action.rating.form.rating.error": "Ta pozycja musi zostać oceniona",
|
||||
"advanced-workflow-action.rating.form.review.label": "Recenzja",
|
||||
"advanced-workflow-action.rating.form.review.error": "Musisz wpisać tekst recenzji",
|
||||
"advanced-workflow-action.rating.description": "Wybierz ocenę poniżej",
|
||||
"advanced-workflow-action.rating.description-requiredDescription": "Wybierz ocenę poniżej i wpisz uzasadnienie",
|
||||
"advanced-workflow-action.select-reviewer.description-single": "Wybierz recenzenta przed zdeponowaniem pozycji",
|
||||
"advanced-workflow-action.select-reviewer.description-multiple": "Wybierz jednego lub więcej recenzentów przed zdeponowaniem pozycji",
|
||||
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.head": "Użytkownicy",
|
||||
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.head": "Dodaj użytkownika",
|
||||
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.button.see-all": "Przeglądaj wszystko",
|
||||
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.headMembers": "Aktualni użytkownicy",
|
||||
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.scope.metadata": "Metadane",
|
||||
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.scope.email": "Adres e-mail (dokładny)",
|
||||
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.button": "Wyszukaj",
|
||||
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.id": "ID",
|
||||
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.name": "Nazwa",
|
||||
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.identity": "Tożsamość",
|
||||
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.email": "Adres e-mail",
|
||||
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.netid": "NetID",
|
||||
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit": "Usuń / Dodaj",
|
||||
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.remove": "Usuń użytkownika z nazwę \"{{name}}\"",
|
||||
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.addMember": "Dodano użytkownika o nazwie: \"{{name}}\"",
|
||||
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.addMember": "Nie dodano użytkownika: \"{{name}}\"",
|
||||
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.deleteMember": "Usunięto użytkownika: \"{{name}}\"",
|
||||
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.deleteMember": "Nie usunięto użytkownika: \"{{name}}\"",
|
||||
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.add": "Dodano użytkownika \"{{name}}\"",
|
||||
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.noActiveGroup": "Brak aktywnej grupy, najpierw wpisz nazwę.",
|
||||
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-members-yet": "W tej grupie nie ma użytkowników, wyszukaj ich i dodaj.",
|
||||
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-items": "Nie znaleziono żadnych użytkowników",
|
||||
"advanced-workflow-action.select-reviewer.no-reviewer-selected.error": "Recenzent nie jest wybrany.",
|
||||
"bitstream.edit.notifications.error.primaryBitstream.title": "Wystąpił błąd podczas zapisu pliku.",
|
||||
"browse.comcol.by.srsc": "Wg słów kluczowych",
|
||||
"browse.metadata.srsc.breadcrumbs": "Przeglądaj wg słów kluczowych",
|
||||
"browse.startsWith.input": "Filtr",
|
||||
"browse.taxonomy.button": "Przeglądaj",
|
||||
"search.browse.item-back": "Powrót do wyników wyszukiwania",
|
||||
"claimed-approved-search-result-list-element.title": "Zaakceptowano",
|
||||
"claimed-declined-search-result-list-element.title": "Odrzucono i przesłano do deponującego",
|
||||
"claimed-declined-task-search-result-list-element.title": "Odrzucono i przesłano do recenzenta",
|
||||
"collection.edit.tabs.access-control.head": "Dostępy",
|
||||
"collection.edit.tabs.access-control.title": "Edycja kolekcji - dostępy",
|
||||
"collection.listelement.badge": "Kolekcja",
|
||||
"community.edit.tabs.access-control.head": "Dostępy",
|
||||
"community.edit.tabs.access-control.title": "Edycja zbioru - dostępy",
|
||||
"comcol-role.edit.scorereviewers.name": "Ocena recenzenta",
|
||||
"comcol-role.edit.scorereviewers.description": "Recenzenci mogą oceniać zdeponowane pozycje, co określi, czy pozycja zostanie przyjęta lub odrzucona.",
|
||||
"curation-task.task.register-doi.label": "Rejestracja DOI",
|
||||
"dso.name.unnamed": "Bez nazwy",
|
||||
"dso-selector.create.community.or-divider": "lub",
|
||||
"dso-selector.set-scope.community.or-divider": "lub",
|
||||
"dso-selector.results-could-not-be-retrieved": "Wystąpił błąd, proszę odświeżyć stronę",
|
||||
"supervision-group-selector.header": "Wybór grupy recenzenckiej",
|
||||
"supervision-group-selector.select.type-of-order.label": "Wybierz typ funkcji",
|
||||
"supervision-group-selector.select.type-of-order.option.none": "BRAK",
|
||||
"supervision-group-selector.select.type-of-order.option.editor": "REDAKTOR",
|
||||
"supervision-group-selector.select.type-of-order.option.observer": "OBSERWATOR",
|
||||
"supervision-group-selector.select.group.label": "Wybierz grupę",
|
||||
"supervision-group-selector.button.cancel": "Anuluj",
|
||||
"supervision-group-selector.button.save": "Zapisz",
|
||||
"supervision-group-selector.select.type-of-order.error": "Wybierz typ funkcji",
|
||||
"supervision-group-selector.select.group.error": "Wybierz grupę",
|
||||
"supervision-group-selector.notification.create.success.title": "Grupa recenzencka został dodana dla grupy {{ name }}",
|
||||
"supervision-group-selector.notification.create.failure.title": "Błąd",
|
||||
"supervision-group-selector.notification.create.already-existing": "Funkcja recenzenta już jest przypisana do tej grupy",
|
||||
"confirmation-modal.delete-subscription.header": "Usuń subksrypcje",
|
||||
"confirmation-modal.delete-subscription.info": "Czy na pewno chcesz usunąć subskrypcję: \"{{ dsoName }}\"",
|
||||
"confirmation-modal.delete-subscription.cancel": "Anuluj",
|
||||
"confirmation-modal.delete-subscription.confirm": "Usuń",
|
||||
"error.validation.metadata.name.invalid-pattern": "To pole nie może zawierać kropek, przecinków i spacji. Zamiast tego This field cannot contain dots, commas or spaces. Zamiast tego może użyć pól z notacji SNEQ",
|
||||
"error.validation.metadata.name.max-length": "To pole nie może zawierać więcej niż 32 znaki",
|
||||
"error.validation.metadata.namespace.max-length": "To pole nie może zawierać więcej niż 256 znaków",
|
||||
"error.validation.metadata.element.invalid-pattern": "To pole nie może zawierać kropek, przecinków i spacji. Zamiast tego This field cannot contain dots, commas or spaces. Zamiast tego może użyć pól z notacji SNEQ",
|
||||
"error.validation.metadata.element.max-length": "To pole nie może zawierać więcej niż 64 znaki",
|
||||
"error.validation.metadata.qualifier.invalid-pattern": "To pole nie może zawierać kropek, przecinków i spacji",
|
||||
"error.validation.metadata.qualifier.max-length": "To pole nie może zawierać więcej niż 64 znaki",
|
||||
"forgot-email.form.email.error.not-email-form": "Wpisz prawidłowy adres e-mail",
|
||||
"form.other-information.email": "Adres e-mail",
|
||||
"form.other-information.first-name": "Imię",
|
||||
"form.other-information.insolr": "Solr Index",
|
||||
"form.other-information.institution": "Instytucja",
|
||||
"form.other-information.last-name": "Nazwisko",
|
||||
"form.other-information.orcid": "ORCID",
|
||||
"form.create": "Utwórz",
|
||||
"info.end-user-agreement.hosting-country": "Stany Zjednoczone",
|
||||
"item.edit.identifiers.doi.status.UNKNOWN": "Nieznane",
|
||||
"item.edit.identifiers.doi.status.TO_BE_REGISTERED": "W kolejce do rejestracji",
|
||||
"item.edit.identifiers.doi.status.TO_BE_RESERVED": "W kolejce do rezerwacji",
|
||||
"item.edit.identifiers.doi.status.IS_REGISTERED": "Zarejestrowane",
|
||||
"item.edit.identifiers.doi.status.IS_RESERVED": "Zarezerwowane",
|
||||
"item.edit.identifiers.doi.status.UPDATE_RESERVED": "Zarezerwowane (aktualizacja w kolejce)",
|
||||
"item.edit.identifiers.doi.status.UPDATE_REGISTERED": "Zarejestrowane (aktualizacja w kolejce)",
|
||||
"item.edit.identifiers.doi.status.UPDATE_BEFORE_REGISTRATION": "W kolejce do aktualizacji i rejestracji",
|
||||
"item.edit.identifiers.doi.status.TO_BE_DELETED": "Zakolejkowane do usunięcia",
|
||||
"item.edit.identifiers.doi.status.DELETED": "Usunięte",
|
||||
"item.edit.identifiers.doi.status.PENDING": "Oczekujące (niezarejestrowane)",
|
||||
"item.edit.identifiers.doi.status.MINTED": "Rezerwowanie nazwy (niezarejestrowane)",
|
||||
"item.edit.tabs.status.buttons.register-doi.label": "Zarejestruj nowe lub oczekujące DOI",
|
||||
"item.edit.tabs.status.buttons.register-doi.button": "Rejestruj DOI...",
|
||||
"item.edit.register-doi.header": "Zarejestruj nowe lub oczekujące DOI",
|
||||
"item.edit.register-doi.description": "Zweryfikuj poniższe identyfikatory i metadane pozycji i rozpocznij rejestrację DOI lub anuluj",
|
||||
"item.edit.register-doi.confirm": "Zatwierdź",
|
||||
"item.edit.register-doi.cancel": "Anuluj",
|
||||
"item.edit.register-doi.success": "DOI jest w kolejce do rejestracji.",
|
||||
"item.edit.register-doi.error": "Wystąpił błąd poczas rejestracji DOI",
|
||||
"item.edit.register-doi.to-update": "To DOI zostało zarezerwowane i będzie znajdować się w kolejce do rejestracji",
|
||||
"item.edit.metadata.edit.buttons.confirm": "Zatwierdź",
|
||||
"item.edit.metadata.edit.buttons.drag": "Przeciągnij, aby zmienić kolejność",
|
||||
"item.edit.metadata.edit.buttons.virtual": "To pole przechowuje wirutalne wartości metadanych, np. wartość pobraną z encji, z którą jest połączona ta pozycja. Dodaj lub usuń relację w zakładce 'Relacje' ",
|
||||
"item.edit.metadata.metadatafield.error": "Wystąpił błąd podczas walidcji pól metadanych",
|
||||
"item.edit.metadata.reset-order-button": "Cofnij zamianę kolejności",
|
||||
"item.edit.curate.title": "Zarządzaj pozycją: {{item}}",
|
||||
"item.edit.tabs.access-control.head": "Dostęp",
|
||||
"item.edit.tabs.access-control.title": "Edycja pozycji - dostęp",
|
||||
"workflow-item.search.result.delete-supervision.modal.header": "Usuń zadanie dla recenzenta",
|
||||
"workflow-item.search.result.delete-supervision.modal.info": "Czy na pewno usunąć zadanie dla recenzenta",
|
||||
"workflow-item.search.result.delete-supervision.modal.cancel": "Anuluj",
|
||||
"workflow-item.search.result.delete-supervision.modal.confirm": "Usuń",
|
||||
"workflow-item.search.result.notification.deleted.success": "Usunięto zadanie dla recenzenta \"{{name}}\"",
|
||||
"workflow-item.search.result.notification.deleted.failure": "Nie usunięto zadania dla recenzenta \"{{name}}\"",
|
||||
"workflow-item.search.result.list.element.supervised-by": "Recenzja:",
|
||||
"workflow-item.search.result.list.element.supervised.remove-tooltip": "Usuń grupę recenzencką",
|
||||
"item.preview.dc.subject": "Słowo kluczowe:",
|
||||
"item.preview.dc.publisher": "Wydawca:",
|
||||
"itemtemplate.edit.metadata.add-button": "Dodaj",
|
||||
"itemtemplate.edit.metadata.discard-button": "Cofnij",
|
||||
"itemtemplate.edit.metadata.edit.buttons.confirm": "Zatwierdź",
|
||||
"itemtemplate.edit.metadata.edit.buttons.drag": "Przeciągnij, aby zmienić kolejność",
|
||||
"itemtemplate.edit.metadata.edit.buttons.edit": "Edytuj",
|
||||
"itemtemplate.edit.metadata.edit.buttons.remove": "Usuń",
|
||||
"itemtemplate.edit.metadata.edit.buttons.undo": "Cofnij zmiany",
|
||||
"itemtemplate.edit.metadata.edit.buttons.unedit": "Nie edytuj",
|
||||
"itemtemplate.edit.metadata.empty": "To pozycja nie zawiera żadnych metadanych. Wybierz Dodaj, aby je wprowadzić.",
|
||||
"itemtemplate.edit.metadata.headers.edit": "Edytuj",
|
||||
"itemtemplate.edit.metadata.headers.field": "Pole",
|
||||
"itemtemplate.edit.metadata.headers.language": "Język",
|
||||
"itemtemplate.edit.metadata.headers.value": "Wartość",
|
||||
"itemtemplate.edit.metadata.metadatafield.error": "Wystąpił błąd podczas walidowania pola metadanych",
|
||||
"itemtemplate.edit.metadata.metadatafield.invalid": "Wybierz odpowiednie pole metadanych",
|
||||
"itemtemplate.edit.metadata.notifications.discarded.content": "Twoje zmiany nie zostały zachowane. Aby spróbować wprowadzić je ponownie wybierz Cofnij",
|
||||
"itemtemplate.edit.metadata.notifications.discarded.title": "Zmiany nie zostały zachowane",
|
||||
"itemtemplate.edit.metadata.notifications.error.title": "Wystąpił błąd",
|
||||
"itemtemplate.edit.metadata.notifications.invalid.content": "Twoje zmiany nie zostały zapisane. Upewnij się, że wszystkie pola zostały wypełnione prawidłowo.",
|
||||
"itemtemplate.edit.metadata.notifications.invalid.title": "Nieprawidłowe metadan",
|
||||
"itemtemplate.edit.metadata.notifications.outdated.content": "Wzór dla pozycji, na którą w tym momencie pracujesz, został zmodyfikowany przez innego użytkownika. Twoje zmiany zostały odrzucone, aby uniknąć konfliktów pomiędzy wersjami.",
|
||||
"itemtemplate.edit.metadata.notifications.outdated.title": "Zmiany zostały odrzucone",
|
||||
"itemtemplate.edit.metadata.notifications.saved.content": "Zmiany w metadanych wzoru pozycji zostały zapisane.",
|
||||
"itemtemplate.edit.metadata.notifications.saved.title": "Metadane zostały zapisane",
|
||||
"itemtemplate.edit.metadata.reinstate-button": "Cofnij",
|
||||
"itemtemplate.edit.metadata.reset-order-button": "Cofnij zmianę kolejności",
|
||||
"itemtemplate.edit.metadata.save-button": "Zapisz",
|
||||
"menu.section.access_control_bulk": "Zbiorowe zarządzanie dostępem",
|
||||
"menu.section.browse_global_by_srsc": "Wg słów kluczowych",
|
||||
"mydspace.show.supervisedWorkspace": "Pozycje recenzowane",
|
||||
"mydspace.status.mydspaceArchived": "Opublikowano",
|
||||
"mydspace.status.mydspaceValidation": "Walidacja",
|
||||
"mydspace.status.mydspaceWaitingController": "Oczekiwanie na redakctora",
|
||||
"mydspace.status.mydspaceWorkflow": "Redakcja",
|
||||
"mydspace.status.mydspaceWorkspace": "Przestrzeń robocza",
|
||||
"nav.context-help-toggle": "Przełącz pomoc kontekstową",
|
||||
"nav.search.button": "Wpisz wyszukiwaną frazę",
|
||||
"nav.subscriptions": "Subksrypcje",
|
||||
"process.new.notification.error.max-upload.content": "Plik jest większy niż maksymalny dozwolony rozmiar pliku",
|
||||
"register-page.registration.email.error.not-email-form": "Wprowadź poprawny adres e-mail",
|
||||
"register-page.registration.email.error.not-valid-domain": "Użyj adresu e-mail z domeny: {{ domains }}",
|
||||
"register-page.registration.error.maildomain": "Tego adresu e-mail nie możesz zarejestrować, ponieważ nie ma go na liście domen. Dozwolone domeny to: {{ domains }}",
|
||||
"register-page.registration.info.maildomain": "Konta mogą być założone dla adresów e-mail z domeną",
|
||||
"repository.title": "Repozytorium DSpace",
|
||||
"search.filters.applied.f.supervisedBy": "Recenzent",
|
||||
"search.filters.filter.show-tree": "Przeglądaj {{ name }} strukturę recenzentów",
|
||||
"search.filters.filter.supervisedBy.head": "Recenzent",
|
||||
"search.filters.filter.supervisedBy.placeholder": "Recenzent",
|
||||
"search.filters.filter.supervisedBy.label": "Wyszukaj recenzenta",
|
||||
"statistics.table.no-name": "(nazwa obiektu nie może zostać załadowana)",
|
||||
"submission.import-external.source.datacite": "DataCite",
|
||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.isPublicationOfAuthor": "Publikacje autora",
|
||||
"submission.sections.describe.relationship-lookup.title.isPublicationOfAuthor": "Publikacje",
|
||||
"submission.sections.identifiers.info": "Te identyfikatory zostaną utworzone dla pozycji:",
|
||||
"submission.sections.identifiers.no_handle": "Do tej pozycji nie zostały przypisane żadne Handle",
|
||||
"submission.sections.identifiers.no_doi": "Do tej pozycji nie zostały przypisane żadne DOI",
|
||||
"submission.sections.identifiers.handle_label": "Handle: ",
|
||||
"submission.sections.identifiers.doi_label": "DOI: ",
|
||||
"submission.sections.identifiers.otherIdentifiers_label": "Inne identyfikatory: ",
|
||||
"submission.sections.submit.progressbar.identifiers": "Identyfikatory",
|
||||
"submission.workflow.generic.submit_select_reviewer": "Wybierz recenzenta",
|
||||
"submission.workflow.generic.submit_select_reviewer-help": "",
|
||||
"submission.workflow.generic.submit_score": "Wynik",
|
||||
"submission.workflow.generic.submit_score-help": "",
|
||||
"submission.workflow.tasks.claimed.decline": "Odrzuć",
|
||||
"submission.workflow.tasks.claimed.decline_help": "",
|
||||
"submitter.empty": "n.d.",
|
||||
"subscriptions.title": "Subskrypcje",
|
||||
"subscriptions.item": "Subskrypcje pozycji",
|
||||
"subscriptions.collection": "Subskrypcje kolekcji",
|
||||
"subscriptions.community": "Subskrypcje zbiorów",
|
||||
"subscriptions.subscription_type": "Typ subksrypcji",
|
||||
"subscriptions.frequency": "Częstotliwość subskrypcji",
|
||||
"subscriptions.frequency.D": "Codziennie",
|
||||
"subscriptions.frequency.M": "Co miesiąc",
|
||||
"subscriptions.frequency.W": "Co tydzień",
|
||||
"subscriptions.tooltip": "Subskrybuj",
|
||||
"subscriptions.modal.title": "Subksrypcje",
|
||||
"subscriptions.modal.type-frequency": "Rodzaj i częstotliwość subksrypcji",
|
||||
"subscriptions.modal.close": "Zamknij",
|
||||
"subscriptions.modal.delete-info": "Aby usunąć tę subksrypcję przejdź do strony 'Subskrypcje', która znajduje się w profilu użytkownika",
|
||||
"subscriptions.modal.new-subscription-form.type.content": "Zawartość",
|
||||
"subscriptions.modal.new-subscription-form.frequency.D": "Codziennie",
|
||||
"subscriptions.modal.new-subscription-form.frequency.W": "Co tydzień",
|
||||
"subscriptions.modal.new-subscription-form.frequency.M": "Co miesiąc",
|
||||
"subscriptions.modal.new-subscription-form.submit": "Zapisz",
|
||||
"subscriptions.modal.new-subscription-form.processing": "Ładowanie...",
|
||||
"subscriptions.modal.create.success": "Zasubskrybowano {{ type }}",
|
||||
"subscriptions.modal.delete.success": "Subskrypcja została anulowana",
|
||||
"subscriptions.modal.update.success": "Twoja subskrypcja {{ type }} została zaktualizowana",
|
||||
"subscriptions.modal.create.error": "Wystąpił bład podczas tworzenia subskrypcji",
|
||||
"subscriptions.modal.delete.error": "Wystąpił bład podczas usuwania subskrypcji",
|
||||
"subscriptions.modal.update.error": "Wystąpił bład podczas aktualizacji subskrypcji",
|
||||
"subscriptions.table.dso": "Słowo kluczowe",
|
||||
"subscriptions.table.subscription_type": "Typ subskrypcji",
|
||||
"subscriptions.table.subscription_frequency": "Częstotliwość subskrypcji",
|
||||
"subscriptions.table.action": "Akcja",
|
||||
"subscriptions.table.edit": "Edytuj",
|
||||
"subscriptions.table.delete": "Usuń",
|
||||
"subscriptions.table.not-available": "Niedostępne",
|
||||
"subscriptions.table.not-available-message": "Ta pozycja została usunięta lun nie masz do niej dostępu, aby ją wyswietlić",
|
||||
"subscriptions.table.empty.message": "Ta pozycja nie ma w tym momencie żadnych subksrypcji. Aby zasubkrybować i otrzymywać aktualizacje o tym zbiorze lub kolekcji, wybierz przycisk subskrypcji na stronie pozycji.",
|
||||
"vocabulary-treeview.info": "Wybierz słowo kluczowe, aby dodać je do filtra",
|
||||
"supervisedWorkspace.search.results.head": "Pozycje recenzowane",
|
||||
"supervision.search.results.head": "Status zadań: Szkic i redakcja",
|
||||
"workspace-item.delete.breadcrumbs": "Usunięto wersję roboczą",
|
||||
"workspace-item.delete.header": "Usuń wersję roboczą",
|
||||
"workspace-item.delete.button.confirm": "Usuń",
|
||||
"workspace-item.delete.button.cancel": "Anuluj",
|
||||
"workspace-item.delete.notification.success.title": "Usunięto",
|
||||
"workspace-item.delete.title": "Wersja robocza została usunieta",
|
||||
"workspace-item.delete.notification.error.title": "Coś poszło nie tak",
|
||||
"workspace-item.delete.notification.error.content": "Wersja robocza nie może zostać usunieta",
|
||||
"workflow-item.advanced.title": "Zaawansowane workflow",
|
||||
"workflow-item.selectrevieweraction.notification.success.title": "Wybrany recenzent",
|
||||
"workflow-item.selectrevieweraction.notification.success.content": "Recenzent został przypisany",
|
||||
"workflow-item.selectrevieweraction.notification.error.title": "Coś poszło nie tak",
|
||||
"workflow-item.selectrevieweraction.notification.error.content": "Nie udało się wybrać recenzenta dla pozycji",
|
||||
"workflow-item.selectrevieweraction.title": "Wybierz recenzenta",
|
||||
"workflow-item.selectrevieweraction.header": "Wybierz recenzenta",
|
||||
"workflow-item.selectrevieweraction.button.cancel": "Anuluj",
|
||||
"workflow-item.selectrevieweraction.button.confirm": "Zatwierdź",
|
||||
"workflow-item.scorereviewaction.notification.success.title": "Ocena recenzji",
|
||||
"workflow-item.scorereviewaction.notification.success.content": "Ocena tej pozycji została zapisana",
|
||||
"workflow-item.scorereviewaction.notification.error.title": "Coś poszło nie tak",
|
||||
"workflow-item.scorereviewaction.notification.error.content": "Nie można ocenić tej pozycji",
|
||||
"workflow-item.scorereviewaction.title": "Oceń pozycję",
|
||||
"workflow-item.scorereviewaction.header": "Oceń pozycję",
|
||||
"workflow-item.scorereviewaction.button.cancel": "Anuluj",
|
||||
"workflow-item.scorereviewaction.button.confirm": "Potwierdź",
|
||||
"listable-notification-object.default-message": "Ta pozycja nie może być odzyskana",
|
||||
"system-wide-alert-banner.retrieval.error": "Coś poszło nie tak podczas odzyskiwania alertu systemowego",
|
||||
"system-wide-alert-banner.countdown.prefix": "W",
|
||||
"system-wide-alert-banner.countdown.days": "{{days}} dni,",
|
||||
"system-wide-alert-banner.countdown.hours": "{{hours}} godziny",
|
||||
"system-wide-alert-banner.countdown.minutes": "{{minutes}} minut:",
|
||||
"menu.section.system-wide-alert": "Alert systemowy",
|
||||
"system-wide-alert.form.header": "Alert systemowy",
|
||||
"system-wide-alert-form.retrieval.error": "Coś poszło nie tak podczas odzyskiwania alertu systemowego",
|
||||
"system-wide-alert.form.cancel": "Anuluj",
|
||||
"system-wide-alert.form.save": "Zapisz",
|
||||
"system-wide-alert.form.label.active": "AKTYWNE",
|
||||
"system-wide-alert.form.label.inactive": "NIEAKTYWNE",
|
||||
"system-wide-alert.form.error.message": "Alert systemowy musi zawierać wiadomość",
|
||||
"system-wide-alert.form.label.message": "Alert systemowy",
|
||||
"system-wide-alert.form.label.countdownTo.enable": "Wprowadź licznik czasowy",
|
||||
"system-wide-alert.form.label.countdownTo.hint": "Wskazówka: Wpisz wartość licznika czasu. Kiedy licznik jest włączony, alert systemowy zostanie wyświetlony o wybranym czasie. Kiedy odliczanie zostanie zakończone, alert systemowy zostanie wyłączony. Serwer NIE zostanie zatrzymany automatycznie.",
|
||||
"system-wide-alert.form.label.preview": "Podgląd alertu systemowego",
|
||||
"system-wide-alert.form.update.success": "Alert systemowy został zaktualizowany",
|
||||
"system-wide-alert.form.update.error": "Coś poszło nie tak podczas aktualizacji alertu systemowego",
|
||||
"system-wide-alert.form.create.success": "Alert systemowy został utworzony",
|
||||
"system-wide-alert.form.create.error": "Coś poszło nie tak podczas tworzenia alertu systemowego",
|
||||
"admin.system-wide-alert.breadcrumbs": "Alerty systemowe",
|
||||
"admin.system-wide-alert.title": "Alerty systemowe",
|
||||
"item-access-control-title": "Ta strona pozwala na zmianę dostępów metadanych pozycji i plików do nich dołączonych.",
|
||||
"collection-access-control-title": "Ta strona pozwala na zmianę warunków dostępu dla wszystkich pozycji w tej kolekcji. Zmiany mogą być wykonywane zarówno na metadanych pozycji jak i plikach do nich dołączonych.",
|
||||
"community-access-control-title": "Ta strona pozwala na zmianę warunków dostępu dla wszystkich pozycji w każdej kolekcji w tym zbiorze. Zmiany mogą być wykonywane zarówno na metadanych pozycji jak i plikach do nich dołączonych.",
|
||||
"access-control-item-header-toggle": "Metadane pozycji",
|
||||
"access-control-bitstream-header-toggle": "Pliki",
|
||||
"access-control-mode": "Tryb",
|
||||
"access-control-access-conditions": "Warunki dostępu",
|
||||
"access-control-no-access-conditions-warning-message": "W tym momencie żadne warunki dostępu nie zostały określone. Jeśli zadanie zostanie rozpoczęte, obecne warunki dostępu zostaną zastąpione domyślnymi warunkami dostępu z nadrzędnej kolekcji.",
|
||||
"access-control-replace-all": "Zastąp warunki dostępu",
|
||||
"access-control-add-to-existing": "Dodaj do już istniejących",
|
||||
"access-control-limit-to-specific": "Ogranicz zmiany do wybranych plików",
|
||||
"access-control-process-all-bitstreams": "Zaktualizuj wszystkie pliki dla tej pozycji",
|
||||
"access-control-bitstreams-selected": "wybrane pliki",
|
||||
"access-control-cancel": "Anuluj",
|
||||
"access-control-execute": "Wykonaj",
|
||||
"access-control-add-more": "Dodaj więcej",
|
||||
"access-control-select-bitstreams-modal.title": "Wybierz pliki",
|
||||
"access-control-select-bitstreams-modal.no-items": "Brak pozycji do wyświetlenia.",
|
||||
"access-control-select-bitstreams-modal.close": "Zamknij",
|
||||
"access-control-option-label": "Typ warunków dostępu",
|
||||
"access-control-option-note": "Wybierz warunki dostępu, które chcesz przypisać do zaznaczonych pozycji.",
|
||||
"access-control-option-start-date": "Dostęp od",
|
||||
"access-control-option-start-date-note": "Wybierz datę, kiedy wybrane warunki dostępu mają obowiązywać",
|
||||
"access-control-option-end-date": "Dostęp do",
|
||||
"access-control-option-end-date-note": "Wybierz datę, kiedy wybrane warunki dostępu mają obowiązywać",
|
||||
}
|
||||
|
@@ -3972,20 +3972,20 @@
|
||||
// "mydspace.show.workspace": "Your Submissions",
|
||||
"mydspace.show.workspace": "Minhas Submissões",
|
||||
|
||||
// "mydspace.status.archived": "Archived",
|
||||
"mydspace.status.archived": "Arquivado",
|
||||
// "mydspace.status.mydspaceArchived": "Archived",
|
||||
"mydspace.status.mydspaceArchived": "Arquivado",
|
||||
|
||||
// "mydspace.status.validation": "Validation",
|
||||
"mydspace.status.validation": "Validação",
|
||||
// "mydspace.status.mydspaceValidation": "Validation",
|
||||
"mydspace.status.mydspaceValidation": "Validação",
|
||||
|
||||
// "mydspace.status.waiting-for-controller": "Waiting for controller",
|
||||
"mydspace.status.waiting-for-controller": "Esperando pelo controlador",
|
||||
// "mydspace.status.mydspaceWaitingController": "Waiting for controller",
|
||||
"mydspace.status.mydspaceWaitingController": "Esperando pelo controlador",
|
||||
|
||||
// "mydspace.status.workflow": "Workflow",
|
||||
"mydspace.status.workflow": "Fluxo de trabalho",
|
||||
// "mydspace.status.mydspaceWorkflow": "Workflow",
|
||||
"mydspace.status.mydspaceWorkflow": "Fluxo de trabalho",
|
||||
|
||||
// "mydspace.status.workspace": "Workspace",
|
||||
"mydspace.status.workspace": "Espaço de trabalho",
|
||||
// "mydspace.status.mydspaceWorkspace": "Workspace",
|
||||
"mydspace.status.mydspaceWorkspace": "Espaço de trabalho",
|
||||
|
||||
// "mydspace.title": "MyDSpace",
|
||||
"mydspace.title": "MeuDSpace",
|
||||
|
@@ -2054,8 +2054,8 @@
|
||||
// "curation-task.task.vscan.label": "Virus Scan",
|
||||
"curation-task.task.vscan.label": "Scan de vírus",
|
||||
|
||||
// "curation-task.task.register-doi.label": "Register DOI",
|
||||
"curation-task.task.register-doi.label": "Registo DOI",
|
||||
// "curation-task.task.registerdoi.label": "Register DOI",
|
||||
"curation-task.task.registerdoi.label": "Registo DOI",
|
||||
|
||||
// "curation.form.task-select.label": "Task:",
|
||||
"curation.form.task-select.label": "Tarefa:",
|
||||
@@ -7713,20 +7713,20 @@
|
||||
// "browse.metadata.srsc": "Subject Category",
|
||||
"browse.metadata.srsc": "vocabulário controlado (SRSC)",
|
||||
|
||||
// "mydspace.status.archived": "Archived",
|
||||
"mydspace.status.archived": "Depositado",
|
||||
// "mydspace.status.mydspaceArchived": "Archived",
|
||||
"mydspace.status.mydspaceArchived": "Depositado",
|
||||
|
||||
// "mydspace.status.validation": "Validation",
|
||||
"mydspace.status.validation": "Em validação",
|
||||
// "mydspace.status.mydspaceValidation": "Validation",
|
||||
"mydspace.status.mydspaceValidation": "Em validação",
|
||||
|
||||
// "mydspace.status.waiting-for-controller": "Waiting for Controller",
|
||||
"mydspace.status.waiting-for-controller": "Aguarda validador",
|
||||
// "mydspace.status.mydspaceWaitingController": "Waiting for Controller",
|
||||
"mydspace.status.mydspaceWaitingController": "Aguarda validador",
|
||||
|
||||
// "mydspace.status.workflow": "Workflow",
|
||||
"mydspace.status.workflow": "Em fluxo de trabalho",
|
||||
// "mydspace.status.mydspaceWorkflow": "Workflow",
|
||||
"mydspace.status.mydspaceWorkflow": "Em fluxo de trabalho",
|
||||
|
||||
// "mydspace.status.workspace": "Workspace",
|
||||
"mydspace.status.workspace": "Depósito por terminar",
|
||||
// "mydspace.status.mydspaceWorkspace": "Workspace",
|
||||
"mydspace.status.mydspaceWorkspace": "Depósito por terminar",
|
||||
|
||||
// "search.filters.namedresourcetype.Archived": "Archived",
|
||||
"search.filters.namedresourcetype.Archived": "Depositado",
|
||||
|
@@ -3934,20 +3934,20 @@
|
||||
// "mydspace.show.workspace": "Your Submissions",
|
||||
"mydspace.show.workspace": "Dina registreringar",
|
||||
|
||||
// "mydspace.status.archived": "Archived",
|
||||
"mydspace.status.archived": "I arkivet",
|
||||
// "mydspace.status.mydspaceArchived": "Archived",
|
||||
"mydspace.status.mydspaceArchived": "I arkivet",
|
||||
|
||||
// "mydspace.status.validation": "Validation",
|
||||
"mydspace.status.validation": "Validering",
|
||||
// "mydspace.status.mydspaceValidation": "Validation",
|
||||
"mydspace.status.mydspaceValidation": "Validering",
|
||||
|
||||
// "mydspace.status.waiting-for-controller": "Waiting for controller",
|
||||
"mydspace.status.waiting-for-controller": "Väntar på kontrollant",
|
||||
// "mydspace.status.mydspaceWaitingController": "Waiting for controller",
|
||||
"mydspace.status.mydspaceWaitingController": "Väntar på kontrollant",
|
||||
|
||||
// "mydspace.status.workflow": "Workflow",
|
||||
"mydspace.status.workflow": "Arbetsflöde",
|
||||
// "mydspace.status.mydspaceWorkflow": "Workflow",
|
||||
"mydspace.status.mydspaceWorkflow": "Arbetsflöde",
|
||||
|
||||
// "mydspace.status.workspace": "Workspace",
|
||||
"mydspace.status.workspace": "I arbetsflödet",
|
||||
// "mydspace.status.mydspaceWorkspace": "Workspace",
|
||||
"mydspace.status.mydspaceWorkspace": "I arbetsflödet",
|
||||
|
||||
// "mydspace.title": "MyDSpace",
|
||||
"mydspace.title": "Mitt DSpace",
|
||||
|
@@ -4276,25 +4276,25 @@
|
||||
// TODO New key - Add a translation
|
||||
"mydspace.show.workspace": "Your Submissions",
|
||||
|
||||
// "mydspace.status.archived": "Archived",
|
||||
// "mydspace.status.mydspaceArchived": "Archived",
|
||||
// TODO New key - Add a translation
|
||||
"mydspace.status.archived": "Archived",
|
||||
"mydspace.status.mydspaceArchived": "Archived",
|
||||
|
||||
// "mydspace.status.validation": "Validation",
|
||||
// "mydspace.status.mydspaceValidation": "Validation",
|
||||
// TODO New key - Add a translation
|
||||
"mydspace.status.validation": "Validation",
|
||||
"mydspace.status.mydspaceValidation": "Validation",
|
||||
|
||||
// "mydspace.status.waiting-for-controller": "Waiting for controller",
|
||||
// "mydspace.status.mydspaceWaitingController": "Waiting for controller",
|
||||
// TODO New key - Add a translation
|
||||
"mydspace.status.waiting-for-controller": "Waiting for controller",
|
||||
"mydspace.status.mydspaceWaitingController": "Waiting for controller",
|
||||
|
||||
// "mydspace.status.workflow": "Workflow",
|
||||
// "mydspace.status.mydspaceWorkflow": "Workflow",
|
||||
// TODO New key - Add a translation
|
||||
"mydspace.status.workflow": "Workflow",
|
||||
"mydspace.status.mydspaceWorkflow": "Workflow",
|
||||
|
||||
// "mydspace.status.workspace": "Workspace",
|
||||
// "mydspace.status.mydspaceWorkspace": "Workspace",
|
||||
// TODO New key - Add a translation
|
||||
"mydspace.status.workspace": "Workspace",
|
||||
"mydspace.status.mydspaceWorkspace": "Workspace",
|
||||
|
||||
// "mydspace.title": "MyDSpace",
|
||||
// TODO New key - Add a translation
|
||||
|
@@ -3257,20 +3257,20 @@
|
||||
// "mydspace.show.workspace": "Your Submissions",
|
||||
"mydspace.show.workspace": "Gönderimleriniz",
|
||||
|
||||
// "mydspace.status.archived": "Archived",
|
||||
"mydspace.status.archived": "Arşivlendi",
|
||||
// "mydspace.status.mydspaceArchived": "Archived",
|
||||
"mydspace.status.mydspaceArchived": "Arşivlendi",
|
||||
|
||||
// "mydspace.status.validation": "Validation",
|
||||
"mydspace.status.validation": "Doğrulama",
|
||||
// "mydspace.status.mydspaceValidation": "Validation",
|
||||
"mydspace.status.mydspaceValidation": "Doğrulama",
|
||||
|
||||
// "mydspace.status.waiting-for-controller": "Waiting for controller",
|
||||
"mydspace.status.waiting-for-controller": "Kontrolör bekleniyor",
|
||||
// "mydspace.status.mydspaceWaitingController": "Waiting for controller",
|
||||
"mydspace.status.mydspaceWaitingController": "Kontrolör bekleniyor",
|
||||
|
||||
// "mydspace.status.workflow": "Workflow",
|
||||
"mydspace.status.workflow": "İş akışı",
|
||||
// "mydspace.status.mydspaceWorkflow": "Workflow",
|
||||
"mydspace.status.mydspaceWorkflow": "İş akışı",
|
||||
|
||||
// "mydspace.status.workspace": "Workspace",
|
||||
"mydspace.status.workspace": "Çalışma alanı",
|
||||
// "mydspace.status.mydspaceWorkspace": "Workspace",
|
||||
"mydspace.status.mydspaceWorkspace": "Çalışma alanı",
|
||||
|
||||
// "mydspace.title": "MyDSpace",
|
||||
"mydspace.title": "MyDSpace",
|
||||
|
@@ -3383,20 +3383,20 @@
|
||||
// "mydspace.show.workspace": "Your Submissions",
|
||||
"mydspace.show.workspace": "Ваші надіслані документи ",
|
||||
|
||||
// "mydspace.status.archived": "Archived",
|
||||
"mydspace.status.archived": "Заархівовані",
|
||||
// "mydspace.status.mydspaceArchived": "Archived",
|
||||
"mydspace.status.mydspaceArchived": "Заархівовані",
|
||||
|
||||
// "mydspace.status.validation": "Validation",
|
||||
"mydspace.status.validation": "Перевірка",
|
||||
// "mydspace.status.mydspaceValidation": "Validation",
|
||||
"mydspace.status.mydspaceValidation": "Перевірка",
|
||||
|
||||
// "mydspace.status.waiting-for-controller": "Waiting for controller",
|
||||
"mydspace.status.waiting-for-controller": "Чекаємо контролера",
|
||||
// "mydspace.status.mydspaceWaitingController": "Waiting for controller",
|
||||
"mydspace.status.mydspaceWaitingController": "Чекаємо контролера",
|
||||
|
||||
// "mydspace.status.workflow": "Workflow",
|
||||
"mydspace.status.workflow": "Робочий процес",
|
||||
// "mydspace.status.mydspaceWorkflow": "Workflow",
|
||||
"mydspace.status.mydspaceWorkflow": "Робочий процес",
|
||||
|
||||
// "mydspace.status.workspace": "Workspace",
|
||||
"mydspace.status.workspace": "Робоче середовище",
|
||||
// "mydspace.status.mydspaceWorkspace": "Workspace",
|
||||
"mydspace.status.mydspaceWorkspace": "Робоче середовище",
|
||||
|
||||
// "mydspace.title": "MyDSpace",
|
||||
"mydspace.title": "Моє середовище",
|
||||
|
@@ -671,7 +671,7 @@
|
||||
"curation-task.task.citationpage.label": "Tạo trang trích dẫn",
|
||||
"curation-task.task.noop.label": "NOOP",
|
||||
"curation-task.task.profileformats.label": "Định dạng tệp tin",
|
||||
"curation-task.task.register-doi.label": "Đăng ký DOI",
|
||||
"curation-task.task.registerdoi.label": "Đăng ký DOI",
|
||||
"curation-task.task.requiredmetadata.label": "Kiểm tra các trường dữ liệu bắt buộc",
|
||||
"curation-task.task.translate.label": "Bộ dịch của Microsoft",
|
||||
"curation-task.task.vscan.label": "Quét Virus",
|
||||
@@ -1449,11 +1449,11 @@
|
||||
"mydspace.search-form.placeholder": "Tìm kiếm trong trang cá nhân của tôi...",
|
||||
"mydspace.show.workflow": "Tất cả nhiệm vụ",
|
||||
"mydspace.show.workspace": "Tài liệu của tôi",
|
||||
"mydspace.status.archived": "Đã lưu trữ",
|
||||
"mydspace.status.validation": "Đang kiểm tra",
|
||||
"mydspace.status.waiting-for-controller": "Đợi nhận nhiệm vụ",
|
||||
"mydspace.status.workflow": "Đang kiểm duyệt",
|
||||
"mydspace.status.workspace": "Đang biên mục",
|
||||
"mydspace.status.mydspaceArchived": "Đã lưu trữ",
|
||||
"mydspace.status.mydspaceValidation": "Đang kiểm tra",
|
||||
"mydspace.status.mydspaceWaitingController": "Đợi nhận nhiệm vụ",
|
||||
"mydspace.status.mydspaceWorkflow": "Đang kiểm duyệt",
|
||||
"mydspace.status.mydspaceWorkspace": "Đang biên mục",
|
||||
"mydspace.title": "Trang cá nhân",
|
||||
"mydspace.upload.upload-failed": "Có lỗi xảy ra khi tạo tài liệu mới. Vui lòng xác minh nội dung đã tải lên trước khi thử lại.",
|
||||
"mydspace.upload.upload-failed-manyentries": "Không thể xử lý tệp tin. Có quá nhiều mục trong khi hệ thống chỉ cho phép một mục trong tệp tin.",
|
||||
|
@@ -5,7 +5,8 @@ import { environment } from '../environments/environment';
|
||||
import { hasNoValue } from '../app/shared/empty.util';
|
||||
|
||||
import { AppConfig } from './app-config.interface';
|
||||
import { ThemeConfig } from './theme.model';
|
||||
import { ThemeConfig, NamedThemeConfig } from './theme.model';
|
||||
import { BASE_THEME_NAME } from '../app/shared/theme-support/theme.constants';
|
||||
|
||||
/**
|
||||
* Extend Angular environment with app config.
|
||||
@@ -44,7 +45,9 @@ const getDefaultThemeConfig = (): ThemeConfig => {
|
||||
hasNoValue(themeConfig.regex) &&
|
||||
hasNoValue(themeConfig.handle) &&
|
||||
hasNoValue(themeConfig.uuid)
|
||||
);
|
||||
) ?? {
|
||||
name: BASE_THEME_NAME,
|
||||
} as NamedThemeConfig;
|
||||
};
|
||||
|
||||
export {
|
||||
|
@@ -3,9 +3,9 @@ import { FooterComponent as BaseComponent } from '../../../../app/footer/footer.
|
||||
|
||||
@Component({
|
||||
selector: 'ds-footer',
|
||||
// styleUrls: ['footer.component.scss'],
|
||||
// styleUrls: ['./footer.component.scss'],
|
||||
styleUrls: ['../../../../app/footer/footer.component.scss'],
|
||||
// templateUrl: 'footer.component.html'
|
||||
// templateUrl: './footer.component.html'
|
||||
templateUrl: '../../../../app/footer/footer.component.html'
|
||||
})
|
||||
export class FooterComponent extends BaseComponent {
|
||||
|
@@ -6,9 +6,9 @@ import { HeaderNavbarWrapperComponent as BaseComponent } from '../../../../app/h
|
||||
*/
|
||||
@Component({
|
||||
selector: 'ds-header-navbar-wrapper',
|
||||
// styleUrls: ['header-navbar-wrapper.component.scss'],
|
||||
// styleUrls: ['./header-navbar-wrapper.component.scss'],
|
||||
styleUrls: ['../../../../app/header-nav-wrapper/header-navbar-wrapper.component.scss'],
|
||||
// templateUrl: 'header-navbar-wrapper.component.html',
|
||||
// templateUrl: './header-navbar-wrapper.component.html',
|
||||
templateUrl: '../../../../app/header-nav-wrapper/header-navbar-wrapper.component.html',
|
||||
})
|
||||
export class HeaderNavbarWrapperComponent extends BaseComponent {
|
||||
|
@@ -9,9 +9,9 @@ import { fadeInOut, fadeOut } from '../../../../../app/shared/animations/fade';
|
||||
*/
|
||||
@Component({
|
||||
selector: 'ds-auth-nav-menu',
|
||||
// templateUrl: 'auth-nav-menu.component.html',
|
||||
// templateUrl: './auth-nav-menu.component.html',
|
||||
templateUrl: '../../../../../app/shared/auth-nav-menu/auth-nav-menu.component.html',
|
||||
// styleUrls: ['auth-nav-menu.component.scss'],
|
||||
// styleUrls: ['./auth-nav-menu.component.scss'],
|
||||
styleUrls: ['../../../../../app/shared/auth-nav-menu/auth-nav-menu.component.scss'],
|
||||
animations: [fadeInOut, fadeOut]
|
||||
})
|
||||
|
@@ -9,7 +9,7 @@ import { ObjectListComponent as BaseComponent} from '../../../../../app/shared/o
|
||||
selector: 'ds-object-list',
|
||||
// styleUrls: ['./object-list.component.scss'],
|
||||
styleUrls: ['../../../../../app/shared/object-list/object-list.component.scss'],
|
||||
// templateUrl: 'object-list.component.html'
|
||||
// templateUrl: './object-list.component.html'
|
||||
templateUrl: '../../../../../app/shared/object-list/object-list.component.html'
|
||||
})
|
||||
|
||||
|
@@ -3,7 +3,10 @@ import { WorkflowItemSendBackComponent as BaseComponent } from '../../../../../a
|
||||
|
||||
@Component({
|
||||
selector: 'ds-workflow-item-send-back',
|
||||
// styleUrls: ['workflow-item-send-back.component.scss'],
|
||||
// NOTE: the SCSS file for workflow-item-action-page does not have a corresponding file in the original
|
||||
// implementation, so this commented out line below is a stub, here if you
|
||||
// need it, but you probably don't need it.
|
||||
// styleUrls: ['./workflow-item-send-back.component.scss'],
|
||||
// templateUrl: './workflow-item-send-back.component.html'
|
||||
templateUrl: '../../../../../app/workflowitems-edit-page/workflow-item-action-page.component.html'
|
||||
})
|
||||
|
32
yarn.lock
32
yarn.lock
@@ -10114,33 +10114,33 @@ selfsigned@^2.1.1:
|
||||
dependencies:
|
||||
node-forge "^1"
|
||||
|
||||
semver@7.3.8, semver@^7.3.5, semver@^7.3.8:
|
||||
semver@7.3.8:
|
||||
version "7.3.8"
|
||||
resolved "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz"
|
||||
resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798"
|
||||
integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==
|
||||
dependencies:
|
||||
lru-cache "^6.0.0"
|
||||
|
||||
semver@^5.3.0, semver@^5.6.0, semver@^5.7.1:
|
||||
version "5.7.1"
|
||||
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
|
||||
integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
|
||||
version "5.7.2"
|
||||
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8"
|
||||
integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==
|
||||
|
||||
semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0:
|
||||
version "6.3.0"
|
||||
resolved "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz"
|
||||
integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
|
||||
version "6.3.1"
|
||||
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4"
|
||||
integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
|
||||
|
||||
semver@^7.0.0, semver@^7.1.1, semver@^7.3.2, semver@^7.3.4, semver@^7.3.7:
|
||||
version "7.4.0"
|
||||
resolved "https://registry.npmjs.org/semver/-/semver-7.4.0.tgz"
|
||||
integrity sha512-RgOxM8Mw+7Zus0+zcLEUn8+JfoLpj/huFTItQy2hsM4khuC1HYRDp0cU482Ewn/Fcy6bCjufD8vAj7voC66KQw==
|
||||
semver@^7.0.0, semver@^7.1.1, semver@^7.3.2, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7, semver@^7.3.8:
|
||||
version "7.5.4"
|
||||
resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e"
|
||||
integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==
|
||||
dependencies:
|
||||
lru-cache "^6.0.0"
|
||||
|
||||
semver@~7.0.0:
|
||||
version "7.0.0"
|
||||
resolved "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz"
|
||||
resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e"
|
||||
integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==
|
||||
|
||||
send@0.16.2:
|
||||
@@ -11743,9 +11743,9 @@ wildcard@^2.0.0:
|
||||
integrity sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==
|
||||
|
||||
word-wrap@^1.2.3, word-wrap@~1.2.3:
|
||||
version "1.2.3"
|
||||
resolved "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz"
|
||||
integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
|
||||
version "1.2.5"
|
||||
resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz#d2c45c6dd4fbce621a66f136cbe328afd0410b34"
|
||||
integrity sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==
|
||||
|
||||
wrap-ansi@^6.2.0:
|
||||
version "6.2.0"
|
||||
|
Reference in New Issue
Block a user