mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-18 15:33:04 +00:00
Merge branch 'main' into w2p-101108_Angular-15-upgrade
This commit is contained in:
@@ -15,3 +15,6 @@ trim_trailing_whitespace = false
|
|||||||
|
|
||||||
[*.ts]
|
[*.ts]
|
||||||
quote_type = single
|
quote_type = single
|
||||||
|
|
||||||
|
[*.json5]
|
||||||
|
ij_json_keep_blank_lines_in_code = 3
|
||||||
|
@@ -7,7 +7,8 @@
|
|||||||
"eslint-plugin-jsdoc",
|
"eslint-plugin-jsdoc",
|
||||||
"eslint-plugin-deprecation",
|
"eslint-plugin-deprecation",
|
||||||
"unused-imports",
|
"unused-imports",
|
||||||
"eslint-plugin-lodash"
|
"eslint-plugin-lodash",
|
||||||
|
"eslint-plugin-jsonc"
|
||||||
],
|
],
|
||||||
"overrides": [
|
"overrides": [
|
||||||
{
|
{
|
||||||
@@ -224,6 +225,42 @@
|
|||||||
"@angular-eslint/template/no-negated-async": "off",
|
"@angular-eslint/template/no-negated-async": "off",
|
||||||
"@angular-eslint/template/eqeqeq": "off"
|
"@angular-eslint/template/eqeqeq": "off"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"files": [
|
||||||
|
"*.json5"
|
||||||
|
],
|
||||||
|
"extends": [
|
||||||
|
"plugin:jsonc/recommended-with-jsonc"
|
||||||
|
],
|
||||||
|
"rules": {
|
||||||
|
"no-irregular-whitespace": "error",
|
||||||
|
"no-trailing-spaces": "error",
|
||||||
|
"jsonc/comma-dangle": [
|
||||||
|
"error",
|
||||||
|
"always-multiline"
|
||||||
|
],
|
||||||
|
"jsonc/indent": [
|
||||||
|
"error",
|
||||||
|
2
|
||||||
|
],
|
||||||
|
"jsonc/key-spacing": [
|
||||||
|
"error",
|
||||||
|
{
|
||||||
|
"beforeColon": false,
|
||||||
|
"afterColon": true,
|
||||||
|
"mode": "strict"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"jsonc/no-dupe-keys": "off",
|
||||||
|
"jsonc/quotes": [
|
||||||
|
"error",
|
||||||
|
"double",
|
||||||
|
{
|
||||||
|
"avoidEscape": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
50
.github/workflows/build.yml
vendored
50
.github/workflows/build.yml
vendored
@@ -68,7 +68,7 @@ jobs:
|
|||||||
# https://github.com/actions/cache/blob/main/examples.md#node---yarn
|
# https://github.com/actions/cache/blob/main/examples.md#node---yarn
|
||||||
- name: Get Yarn cache directory
|
- name: Get Yarn cache directory
|
||||||
id: yarn-cache-dir-path
|
id: yarn-cache-dir-path
|
||||||
run: echo "::set-output name=dir::$(yarn cache dir)"
|
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
|
||||||
- name: Cache Yarn dependencies
|
- name: Cache Yarn dependencies
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
@@ -93,12 +93,16 @@ jobs:
|
|||||||
- name: Run specs (unit tests)
|
- name: Run specs (unit tests)
|
||||||
run: yarn run test:headless
|
run: yarn run test:headless
|
||||||
|
|
||||||
|
# Upload code coverage report to artifact (for one version of Node only),
|
||||||
|
# so that it can be shared with the 'codecov' job (see below)
|
||||||
# NOTE: Angular CLI only supports code coverage for specs. See https://github.com/angular/angular-cli/issues/6286
|
# NOTE: Angular CLI only supports code coverage for specs. See https://github.com/angular/angular-cli/issues/6286
|
||||||
# Upload coverage reports to Codecov (for one version of Node only)
|
- name: Upload code coverage report to Artifact
|
||||||
# https://github.com/codecov/codecov-action
|
uses: actions/upload-artifact@v3
|
||||||
- name: Upload coverage to Codecov.io
|
if: matrix.node-version == '18.x'
|
||||||
uses: codecov/codecov-action@v3
|
with:
|
||||||
if: matrix.node-version == '16.x'
|
name: dspace-angular coverage report
|
||||||
|
path: 'coverage/dspace-angular/lcov.info'
|
||||||
|
retention-days: 14
|
||||||
|
|
||||||
# Using docker-compose start backend using CI configuration
|
# Using docker-compose start backend using CI configuration
|
||||||
# and load assetstore from a cached copy
|
# and load assetstore from a cached copy
|
||||||
@@ -112,11 +116,10 @@ jobs:
|
|||||||
# https://github.com/cypress-io/github-action
|
# https://github.com/cypress-io/github-action
|
||||||
# (NOTE: to run these e2e tests locally, just use 'ng e2e')
|
# (NOTE: to run these e2e tests locally, just use 'ng e2e')
|
||||||
- name: Run e2e tests (integration tests)
|
- name: Run e2e tests (integration tests)
|
||||||
uses: cypress-io/github-action@v4
|
uses: cypress-io/github-action@v5
|
||||||
with:
|
with:
|
||||||
# Run tests in Chrome, headless mode
|
# Run tests in Chrome, headless mode (default)
|
||||||
browser: chrome
|
browser: chrome
|
||||||
headless: true
|
|
||||||
# Start app before running tests (will be stopped automatically after tests finish)
|
# Start app before running tests (will be stopped automatically after tests finish)
|
||||||
start: yarn run serve:ssr
|
start: yarn run serve:ssr
|
||||||
# Wait for backend & frontend to be available
|
# Wait for backend & frontend to be available
|
||||||
@@ -176,3 +179,32 @@ jobs:
|
|||||||
|
|
||||||
- name: Shutdown Docker containers
|
- name: Shutdown Docker containers
|
||||||
run: docker-compose -f ./docker/docker-compose-ci.yml down
|
run: docker-compose -f ./docker/docker-compose-ci.yml down
|
||||||
|
|
||||||
|
# Codecov upload is a separate job in order to allow us to restart this separate from the entire build/test
|
||||||
|
# job above. This is necessary because Codecov uploads seem to randomly fail at times.
|
||||||
|
# See https://community.codecov.com/t/upload-issues-unable-to-locate-build-via-github-actions-api/3954
|
||||||
|
codecov:
|
||||||
|
# Must run after 'tests' job above
|
||||||
|
needs: tests
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
# Download artifacts from previous 'tests' job
|
||||||
|
- name: Download coverage artifacts
|
||||||
|
uses: actions/download-artifact@v3
|
||||||
|
|
||||||
|
# Now attempt upload to Codecov using its action.
|
||||||
|
# NOTE: We use a retry action to retry the Codecov upload if it fails the first time.
|
||||||
|
#
|
||||||
|
# Retry action: https://github.com/marketplace/actions/retry-action
|
||||||
|
# Codecov action: https://github.com/codecov/codecov-action
|
||||||
|
- name: Upload coverage to Codecov.io
|
||||||
|
uses: Wandalen/wretry.action@v1.0.36
|
||||||
|
with:
|
||||||
|
action: codecov/codecov-action@v3
|
||||||
|
# Try upload 5 times max
|
||||||
|
attempt_limit: 5
|
||||||
|
# Run again in 30 seconds
|
||||||
|
attempt_delay: 30000
|
||||||
|
2
.github/workflows/issue_opened.yml
vendored
2
.github/workflows/issue_opened.yml
vendored
@@ -16,7 +16,7 @@ jobs:
|
|||||||
# Only add to project board if issue is flagged as "needs triage" or has no labels
|
# Only add to project board if issue is flagged as "needs triage" or has no labels
|
||||||
# NOTE: By default we flag new issues as "needs triage" in our issue template
|
# NOTE: By default we flag new issues as "needs triage" in our issue template
|
||||||
if: (contains(github.event.issue.labels.*.name, 'needs triage') || join(github.event.issue.labels.*.name) == '')
|
if: (contains(github.event.issue.labels.*.name, 'needs triage') || join(github.event.issue.labels.*.name) == '')
|
||||||
uses: actions/add-to-project@v0.3.0
|
uses: actions/add-to-project@v0.5.0
|
||||||
# Note, the authentication token below is an ORG level Secret.
|
# Note, the authentication token below is an ORG level Secret.
|
||||||
# It must be created/recreated manually via a personal access token with admin:org, project, public_repo permissions
|
# It must be created/recreated manually via a personal access token with admin:org, project, public_repo permissions
|
||||||
# See: https://docs.github.com/en/actions/configuring-and-managing-workflows/authenticating-with-the-github_token#permissions-for-the-github_token
|
# See: https://docs.github.com/en/actions/configuring-and-managing-workflows/authenticating-with-the-github_token#permissions-for-the-github_token
|
||||||
|
2
.github/workflows/label_merge_conflicts.yml
vendored
2
.github/workflows/label_merge_conflicts.yml
vendored
@@ -23,7 +23,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
# See: https://github.com/prince-chrismc/label-merge-conflicts-action
|
# See: https://github.com/prince-chrismc/label-merge-conflicts-action
|
||||||
- name: Auto-label PRs with merge conflicts
|
- name: Auto-label PRs with merge conflicts
|
||||||
uses: prince-chrismc/label-merge-conflicts-action@v2
|
uses: prince-chrismc/label-merge-conflicts-action@v3
|
||||||
# Add "merge conflict" label if a merge conflict is detected. Remove it when resolved.
|
# Add "merge conflict" label if a merge conflict is detected. Remove it when resolved.
|
||||||
# Note, the authentication token is created automatically
|
# Note, the authentication token is created automatically
|
||||||
# See: https://docs.github.com/en/actions/configuring-and-managing-workflows/authenticating-with-the-github_token
|
# See: https://docs.github.com/en/actions/configuring-and-managing-workflows/authenticating-with-the-github_token
|
||||||
|
15
Dockerfile
15
Dockerfile
@@ -2,20 +2,27 @@
|
|||||||
# See https://github.com/DSpace/dspace-angular/tree/main/docker for usage details
|
# See https://github.com/DSpace/dspace-angular/tree/main/docker for usage details
|
||||||
|
|
||||||
FROM node:18-alpine
|
FROM node:18-alpine
|
||||||
WORKDIR /app
|
|
||||||
ADD . /app/
|
|
||||||
EXPOSE 4000
|
|
||||||
|
|
||||||
# Ensure Python and other build tools are available
|
# Ensure Python and other build tools are available
|
||||||
# These are needed to install some node modules, especially on linux/arm64
|
# These are needed to install some node modules, especially on linux/arm64
|
||||||
RUN apk add --update python3 make g++ && rm -rf /var/cache/apk/*
|
RUN apk add --update python3 make g++ && rm -rf /var/cache/apk/*
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
ADD . /app/
|
||||||
|
EXPOSE 4000
|
||||||
|
|
||||||
# We run yarn install with an increased network timeout (5min) to avoid "ESOCKETTIMEDOUT" errors from hub.docker.com
|
# We run yarn install with an increased network timeout (5min) to avoid "ESOCKETTIMEDOUT" errors from hub.docker.com
|
||||||
# See, for example https://github.com/yarnpkg/yarn/issues/5540
|
# See, for example https://github.com/yarnpkg/yarn/issues/5540
|
||||||
RUN yarn install --network-timeout 300000
|
RUN yarn install --network-timeout 300000
|
||||||
|
|
||||||
|
# When running in dev mode, 4GB of memory is required to build & launch the app.
|
||||||
|
# This default setting can be overridden as needed in your shell, via an env file or in docker-compose.
|
||||||
|
# See Docker environment var precedence: https://docs.docker.com/compose/environment-variables/envvars-precedence/
|
||||||
|
ENV NODE_OPTIONS="--max_old_space_size=4096"
|
||||||
|
|
||||||
# On startup, run in DEVELOPMENT mode (this defaults to live reloading enabled, etc).
|
# On startup, run in DEVELOPMENT mode (this defaults to live reloading enabled, etc).
|
||||||
# Listen / accept connections from all IP addresses.
|
# Listen / accept connections from all IP addresses.
|
||||||
# NOTE: At this time it is only possible to run Docker container in Production mode
|
# NOTE: At this time it is only possible to run Docker container in Production mode
|
||||||
# if you have a public IP. See https://github.com/DSpace/dspace-angular/issues/1485
|
# if you have a public URL. See https://github.com/DSpace/dspace-angular/issues/1485
|
||||||
|
ENV NODE_ENV development
|
||||||
CMD yarn serve --host 0.0.0.0
|
CMD yarn serve --host 0.0.0.0
|
||||||
|
@@ -266,7 +266,8 @@
|
|||||||
"options": {
|
"options": {
|
||||||
"lintFilePatterns": [
|
"lintFilePatterns": [
|
||||||
"src/**/*.ts",
|
"src/**/*.ts",
|
||||||
"src/**/*.html"
|
"src/**/*.html",
|
||||||
|
"src/**/*.json5"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -6,7 +6,20 @@
|
|||||||
If you wish to run DSpace on Docker in production, we recommend building your own Docker images. You are welcome to borrow ideas/concepts from the below images in doing so. But, the below images should not be used "as is" in any production scenario.
|
If you wish to run DSpace on Docker in production, we recommend building your own Docker images. You are welcome to borrow ideas/concepts from the below images in doing so. But, the below images should not be used "as is" in any production scenario.
|
||||||
***
|
***
|
||||||
|
|
||||||
## 'Dockerfile' in root directory
|
## Overview
|
||||||
|
The scripts in this directory can be used to start the DSpace User Interface (frontend) in Docker.
|
||||||
|
Optionally, the backend (REST API) might also be started in Docker.
|
||||||
|
|
||||||
|
For additional options/settings in starting the backend (REST API) in Docker, see the Docker Compose
|
||||||
|
documentation for the backend: https://github.com/DSpace/DSpace/blob/main/dspace/src/main/docker-compose/README.md
|
||||||
|
|
||||||
|
## Root directory
|
||||||
|
|
||||||
|
The root directory of this project contains all the Dockerfiles which may be referenced by
|
||||||
|
the Docker compose scripts in this 'docker' folder.
|
||||||
|
|
||||||
|
### Dockerfile
|
||||||
|
|
||||||
This Dockerfile is used to build a *development* DSpace 7 Angular UI image, published as 'dspace/dspace-angular'
|
This Dockerfile is used to build a *development* DSpace 7 Angular UI image, published as 'dspace/dspace-angular'
|
||||||
|
|
||||||
```
|
```
|
||||||
@@ -20,6 +33,8 @@ 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:dspace-7_x
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Dockerfile.dist
|
||||||
|
|
||||||
The `Dockerfile.dist` is used to generate a *production* build and runtime environment.
|
The `Dockerfile.dist` is used to generate a *production* build and runtime environment.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
@@ -29,7 +44,7 @@ docker build -f Dockerfile.dist -t dspace/dspace-angular:dspace-7_x-dist .
|
|||||||
|
|
||||||
A default/demo version of this image is built *automatically*.
|
A default/demo version of this image is built *automatically*.
|
||||||
|
|
||||||
## docker directory
|
## 'docker' directory
|
||||||
- docker-compose.yml
|
- docker-compose.yml
|
||||||
- Starts DSpace Angular with Docker Compose from the current branch. This file assumes that a DSpace 7 REST instance will also be started in Docker.
|
- Starts DSpace Angular with Docker Compose from the current branch. This file assumes that a DSpace 7 REST instance will also be started in Docker.
|
||||||
- docker-compose-rest.yml
|
- docker-compose-rest.yml
|
||||||
@@ -54,25 +69,41 @@ docker-compose -f docker/docker-compose.yml build
|
|||||||
|
|
||||||
## To start DSpace (REST and Angular) from your branch
|
## To start DSpace (REST and Angular) from your branch
|
||||||
|
|
||||||
|
This command provides a quick way to start both the frontend & backend from this single codebase
|
||||||
```
|
```
|
||||||
docker-compose -p d7 -f docker/docker-compose.yml -f docker/docker-compose-rest.yml up -d
|
docker-compose -p d7 -f docker/docker-compose.yml -f docker/docker-compose-rest.yml up -d
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Keep in mind, you may also start the backend by cloning the 'DSpace/DSpace' GitHub repository separately. See the next section.
|
||||||
|
|
||||||
|
|
||||||
## Run DSpace REST and DSpace Angular from local branches.
|
## Run DSpace REST and DSpace Angular from local branches.
|
||||||
|
|
||||||
|
This section assumes that you have clones *both* the 'DSpace/DSpace' and 'DSpace/dspace-angular' GitHub
|
||||||
|
repositories. When both are available locally, you can spin up both in Docker and have them work together.
|
||||||
|
|
||||||
_The system will be started in 2 steps. Each step shares the same docker network._
|
_The system will be started in 2 steps. Each step shares the same docker network._
|
||||||
|
|
||||||
From DSpace/DSpace (build as needed)
|
From 'DSpace/DSpace' clone (build first as needed):
|
||||||
```
|
```
|
||||||
docker-compose -p d7 up -d
|
docker-compose -p d7 up -d
|
||||||
```
|
```
|
||||||
|
|
||||||
From DSpace/DSpace-angular
|
NOTE: More detailed instructions on starting the backend via Docker can be found in the [Docker Compose instructions for the Backend](https://github.com/DSpace/DSpace/blob/main/dspace/src/main/docker-compose/README.md).
|
||||||
|
|
||||||
|
From 'DSpace/dspace-angular' clone (build first as needed)
|
||||||
```
|
```
|
||||||
docker-compose -p d7 -f docker/docker-compose.yml up -d
|
docker-compose -p d7 -f docker/docker-compose.yml up -d
|
||||||
```
|
```
|
||||||
|
|
||||||
|
At this point, you should be able to access the UI from http://localhost:4000,
|
||||||
|
and the backend at http://localhost:8080/server/
|
||||||
|
|
||||||
## Run DSpace Angular dist build with DSpace Demo site backend
|
## 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/).
|
||||||
|
|
||||||
```
|
```
|
||||||
docker-compose -f docker/docker-compose-dist.yml pull
|
docker-compose -f docker/docker-compose-dist.yml pull
|
||||||
docker-compose -f docker/docker-compose-dist.yml build
|
docker-compose -f docker/docker-compose-dist.yml build
|
||||||
@@ -104,9 +135,10 @@ Load assetstore content and trigger a re-index of the repository
|
|||||||
docker-compose -p d7 -f docker/cli.yml -f docker/cli.assetstore.yml run --rm dspace-cli
|
docker-compose -p d7 -f docker/cli.yml -f docker/cli.assetstore.yml run --rm dspace-cli
|
||||||
```
|
```
|
||||||
|
|
||||||
## End to end testing of the rest api (runs in travis).
|
## End to end testing of the REST API (runs in GitHub Actions CI).
|
||||||
_In this instance, only the REST api runs in Docker using the Entities dataset. Travis will perform CI testing of Angular using Node to drive the tests._
|
_In this instance, only the REST api runs in Docker using the Entities dataset. GitHub Actions will perform CI testing of Angular using Node to drive the tests. See `.github/workflows/build.yml` for more details._
|
||||||
|
|
||||||
|
This command is only really useful for testing our Continuous Integration process.
|
||||||
```
|
```
|
||||||
docker-compose -p d7ci -f docker/docker-compose-travis.yml up -d
|
docker-compose -p d7ci -f docker/docker-compose-ci.yml up -d
|
||||||
```
|
```
|
||||||
|
@@ -19,6 +19,10 @@ services:
|
|||||||
DSPACE_UI_HOST: dspace-angular
|
DSPACE_UI_HOST: dspace-angular
|
||||||
DSPACE_UI_PORT: '4000'
|
DSPACE_UI_PORT: '4000'
|
||||||
DSPACE_UI_NAMESPACE: /
|
DSPACE_UI_NAMESPACE: /
|
||||||
|
# NOTE: When running the UI in production mode (which the -dist image does),
|
||||||
|
# these DSPACE_REST_* variables MUST point at a public, HTTPS URL.
|
||||||
|
# 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_SSL: 'true'
|
||||||
DSPACE_REST_HOST: api7.dspace.org
|
DSPACE_REST_HOST: api7.dspace.org
|
||||||
DSPACE_REST_PORT: 443
|
DSPACE_REST_PORT: 443
|
||||||
|
@@ -39,7 +39,7 @@ services:
|
|||||||
# proxies.trusted.ipranges: This setting is required for a REST API running in Docker to trust requests
|
# 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.
|
# from the host machine. This IP range MUST correspond to the 'dspacenet' subnet defined above.
|
||||||
proxies__P__trusted__P__ipranges: '172.23.0'
|
proxies__P__trusted__P__ipranges: '172.23.0'
|
||||||
image: dspace/dspace:dspace-7_x-test
|
image: "${DOCKER_OWNER:-dspace}/dspace:${DSPACE_VER:-dspace-7_x-test}"
|
||||||
depends_on:
|
depends_on:
|
||||||
- dspacedb
|
- dspacedb
|
||||||
networks:
|
networks:
|
||||||
@@ -82,8 +82,7 @@ services:
|
|||||||
# DSpace Solr container
|
# DSpace Solr container
|
||||||
dspacesolr:
|
dspacesolr:
|
||||||
container_name: dspacesolr
|
container_name: dspacesolr
|
||||||
# Uses official Solr image at https://hub.docker.com/_/solr/
|
image: "${DOCKER_OWNER:-dspace}/dspace-solr:${DSPACE_VER:-dspace-7_x}"
|
||||||
image: solr:8.11-slim
|
|
||||||
# Needs main 'dspace' container to start first to guarantee access to solr_configs
|
# Needs main 'dspace' container to start first to guarantee access to solr_configs
|
||||||
depends_on:
|
depends_on:
|
||||||
- dspace
|
- dspace
|
||||||
@@ -96,28 +95,26 @@ services:
|
|||||||
tty: true
|
tty: true
|
||||||
working_dir: /var/solr/data
|
working_dir: /var/solr/data
|
||||||
volumes:
|
volumes:
|
||||||
# Mount our "solr_configs" volume available under the Solr's configsets folder (in a 'dspace' subfolder)
|
|
||||||
# This copies the Solr configs from main 'dspace' container into 'dspacesolr' via that volume
|
|
||||||
- solr_configs:/opt/solr/server/solr/configsets/dspace
|
|
||||||
# Keep Solr data directory between reboots
|
# Keep Solr data directory between reboots
|
||||||
- solr_data:/var/solr/data
|
- solr_data:/var/solr/data
|
||||||
# Initialize all DSpace Solr cores using the mounted local configsets (see above), then start Solr
|
# Initialize all DSpace Solr cores using the mounted local configsets (see above), then start Solr
|
||||||
# * First, run precreate-core to create the core (if it doesn't yet exist). If exists already, this is a no-op
|
# * First, run precreate-core to create the core (if it doesn't yet exist). If exists already, this is a no-op
|
||||||
# * Second, copy updated configs from mounted configsets to this core. If it already existed, this updates core
|
# * Second, copy configsets to this core:
|
||||||
# to the latest configs. If it's a newly created core, this is a no-op.
|
# Updates to Solr configs require the container to be rebuilt/restarted:
|
||||||
|
# `docker-compose -p d7 -f docker/docker-compose.yml -f docker/docker-compose-rest.yml up -d --build dspacesolr`
|
||||||
entrypoint:
|
entrypoint:
|
||||||
- /bin/bash
|
- /bin/bash
|
||||||
- '-c'
|
- '-c'
|
||||||
- |
|
- |
|
||||||
init-var-solr
|
init-var-solr
|
||||||
precreate-core authority /opt/solr/server/solr/configsets/dspace/authority
|
precreate-core authority /opt/solr/server/solr/configsets/authority
|
||||||
cp -r -u /opt/solr/server/solr/configsets/dspace/authority/* authority
|
cp -r /opt/solr/server/solr/configsets/authority/* authority
|
||||||
precreate-core oai /opt/solr/server/solr/configsets/dspace/oai
|
precreate-core oai /opt/solr/server/solr/configsets/oai
|
||||||
cp -r -u /opt/solr/server/solr/configsets/dspace/oai/* oai
|
cp -r /opt/solr/server/solr/configsets/oai/* oai
|
||||||
precreate-core search /opt/solr/server/solr/configsets/dspace/search
|
precreate-core search /opt/solr/server/solr/configsets/search
|
||||||
cp -r -u /opt/solr/server/solr/configsets/dspace/search/* search
|
cp -r /opt/solr/server/solr/configsets/search/* search
|
||||||
precreate-core statistics /opt/solr/server/solr/configsets/dspace/statistics
|
precreate-core statistics /opt/solr/server/solr/configsets/statistics
|
||||||
cp -r -u /opt/solr/server/solr/configsets/dspace/statistics/* statistics
|
cp -r /opt/solr/server/solr/configsets/statistics/* statistics
|
||||||
exec solr -f
|
exec solr -f
|
||||||
volumes:
|
volumes:
|
||||||
assetstore:
|
assetstore:
|
||||||
|
@@ -170,6 +170,7 @@
|
|||||||
"eslint-plugin-deprecation": "^1.4.1",
|
"eslint-plugin-deprecation": "^1.4.1",
|
||||||
"eslint-plugin-import": "^2.27.5",
|
"eslint-plugin-import": "^2.27.5",
|
||||||
"eslint-plugin-jsdoc": "^39.6.4",
|
"eslint-plugin-jsdoc": "^39.6.4",
|
||||||
|
"eslint-plugin-jsonc": "^2.6.0",
|
||||||
"eslint-plugin-lodash": "^7.4.0",
|
"eslint-plugin-lodash": "^7.4.0",
|
||||||
"eslint-plugin-unused-imports": "^2.0.0",
|
"eslint-plugin-unused-imports": "^2.0.0",
|
||||||
"express-static-gzip": "^2.1.7",
|
"express-static-gzip": "^2.1.7",
|
||||||
|
@@ -97,9 +97,15 @@ export class BatchImportPageComponent {
|
|||||||
this.router.navigateByUrl(getProcessDetailRoute(rd.payload.processId));
|
this.router.navigateByUrl(getProcessDetailRoute(rd.payload.processId));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
const title = this.translate.get('process.new.notification.error.title');
|
if (rd.statusCode === 413) {
|
||||||
const content = this.translate.get('process.new.notification.error.content');
|
const title = this.translate.get('process.new.notification.error.title');
|
||||||
this.notificationsService.error(title, content);
|
const content = this.translate.get('process.new.notification.error.max-upload.content');
|
||||||
|
this.notificationsService.error(title, content);
|
||||||
|
} else {
|
||||||
|
const title = this.translate.get('process.new.notification.error.title');
|
||||||
|
const content = this.translate.get('process.new.notification.error.content');
|
||||||
|
this.notificationsService.error(title, content);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@@ -17,6 +17,7 @@ export const AuthActionTypes = {
|
|||||||
AUTHENTICATED_SUCCESS: type('dspace/auth/AUTHENTICATED_SUCCESS'),
|
AUTHENTICATED_SUCCESS: type('dspace/auth/AUTHENTICATED_SUCCESS'),
|
||||||
CHECK_AUTHENTICATION_TOKEN: type('dspace/auth/CHECK_AUTHENTICATION_TOKEN'),
|
CHECK_AUTHENTICATION_TOKEN: type('dspace/auth/CHECK_AUTHENTICATION_TOKEN'),
|
||||||
CHECK_AUTHENTICATION_TOKEN_COOKIE: type('dspace/auth/CHECK_AUTHENTICATION_TOKEN_COOKIE'),
|
CHECK_AUTHENTICATION_TOKEN_COOKIE: type('dspace/auth/CHECK_AUTHENTICATION_TOKEN_COOKIE'),
|
||||||
|
SET_AUTH_COOKIE_STATUS: type('dspace/auth/SET_AUTH_COOKIE_STATUS'),
|
||||||
RETRIEVE_AUTH_METHODS: type('dspace/auth/RETRIEVE_AUTH_METHODS'),
|
RETRIEVE_AUTH_METHODS: type('dspace/auth/RETRIEVE_AUTH_METHODS'),
|
||||||
RETRIEVE_AUTH_METHODS_SUCCESS: type('dspace/auth/RETRIEVE_AUTH_METHODS_SUCCESS'),
|
RETRIEVE_AUTH_METHODS_SUCCESS: type('dspace/auth/RETRIEVE_AUTH_METHODS_SUCCESS'),
|
||||||
RETRIEVE_AUTH_METHODS_ERROR: type('dspace/auth/RETRIEVE_AUTH_METHODS_ERROR'),
|
RETRIEVE_AUTH_METHODS_ERROR: type('dspace/auth/RETRIEVE_AUTH_METHODS_ERROR'),
|
||||||
@@ -150,6 +151,19 @@ export class CheckAuthenticationTokenCookieAction implements Action {
|
|||||||
public type: string = AuthActionTypes.CHECK_AUTHENTICATION_TOKEN_COOKIE;
|
public type: string = AuthActionTypes.CHECK_AUTHENTICATION_TOKEN_COOKIE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the authentication cookie status to flag an external authentication response.
|
||||||
|
*/
|
||||||
|
export class SetAuthCookieStatus implements Action {
|
||||||
|
public type: string = AuthActionTypes.SET_AUTH_COOKIE_STATUS;
|
||||||
|
|
||||||
|
payload = false;
|
||||||
|
|
||||||
|
constructor(exists: boolean) {
|
||||||
|
this.payload = exists;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sign out.
|
* Sign out.
|
||||||
* @class LogOutAction
|
* @class LogOutAction
|
||||||
@@ -425,6 +439,7 @@ export type AuthActions
|
|||||||
| AuthenticationSuccessAction
|
| AuthenticationSuccessAction
|
||||||
| CheckAuthenticationTokenAction
|
| CheckAuthenticationTokenAction
|
||||||
| CheckAuthenticationTokenCookieAction
|
| CheckAuthenticationTokenCookieAction
|
||||||
|
| SetAuthCookieStatus
|
||||||
| RedirectWhenAuthenticationIsRequiredAction
|
| RedirectWhenAuthenticationIsRequiredAction
|
||||||
| RedirectWhenTokenExpiredAction
|
| RedirectWhenTokenExpiredAction
|
||||||
| AddAuthenticationMessageAction
|
| AddAuthenticationMessageAction
|
||||||
|
@@ -214,12 +214,15 @@ describe('AuthEffects', () => {
|
|||||||
authenticated: true
|
authenticated: true
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
spyOn((authEffects as any).authService, 'setExternalAuthStatus');
|
||||||
actions = hot('--a-', { a: { type: AuthActionTypes.CHECK_AUTHENTICATION_TOKEN_COOKIE } });
|
actions = hot('--a-', { a: { type: AuthActionTypes.CHECK_AUTHENTICATION_TOKEN_COOKIE } });
|
||||||
|
|
||||||
const expected = cold('--b-', { b: new RetrieveTokenAction() });
|
const expected = cold('--b-', { b: new RetrieveTokenAction() });
|
||||||
|
|
||||||
expect(authEffects.checkTokenCookie$).toBeObservable(expected);
|
expect(authEffects.checkTokenCookie$).toBeObservable(expected);
|
||||||
authEffects.checkTokenCookie$.subscribe(() => {
|
authEffects.checkTokenCookie$.subscribe(() => {
|
||||||
|
expect(authServiceStub.setExternalAuthStatus).toHaveBeenCalled();
|
||||||
|
expect(authServiceStub.isExternalAuthentication).toBeTrue();
|
||||||
expect((authEffects as any).authorizationsService.invalidateAuthorizationsRequestCache).toHaveBeenCalled();
|
expect((authEffects as any).authorizationsService.invalidateAuthorizationsRequestCache).toHaveBeenCalled();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@@ -153,6 +153,7 @@ export class AuthEffects {
|
|||||||
return this.authService.checkAuthenticationCookie().pipe(
|
return this.authService.checkAuthenticationCookie().pipe(
|
||||||
map((response: AuthStatus) => {
|
map((response: AuthStatus) => {
|
||||||
if (response.authenticated) {
|
if (response.authenticated) {
|
||||||
|
this.authService.setExternalAuthStatus(true);
|
||||||
this.authorizationsService.invalidateAuthorizationsRequestCache();
|
this.authorizationsService.invalidateAuthorizationsRequestCache();
|
||||||
return new RetrieveTokenAction();
|
return new RetrieveTokenAction();
|
||||||
} else {
|
} else {
|
||||||
|
@@ -8,6 +8,7 @@ import {
|
|||||||
AuthenticationErrorAction,
|
AuthenticationErrorAction,
|
||||||
AuthenticationSuccessAction,
|
AuthenticationSuccessAction,
|
||||||
CheckAuthenticationTokenAction,
|
CheckAuthenticationTokenAction,
|
||||||
|
SetAuthCookieStatus,
|
||||||
CheckAuthenticationTokenCookieAction,
|
CheckAuthenticationTokenCookieAction,
|
||||||
LogOutAction,
|
LogOutAction,
|
||||||
LogOutErrorAction,
|
LogOutErrorAction,
|
||||||
@@ -219,6 +220,28 @@ describe('authReducer', () => {
|
|||||||
expect(newState).toEqual(state);
|
expect(newState).toEqual(state);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('should set the authentication cookie status in response to a SET_AUTH_COOKIE_STATUS action', () => {
|
||||||
|
initialState = {
|
||||||
|
authenticated: true,
|
||||||
|
loaded: false,
|
||||||
|
blocking: false,
|
||||||
|
loading: true,
|
||||||
|
externalAuth: false,
|
||||||
|
idle: false
|
||||||
|
};
|
||||||
|
const action = new SetAuthCookieStatus(true);
|
||||||
|
const newState = authReducer(initialState, action);
|
||||||
|
state = {
|
||||||
|
authenticated: true,
|
||||||
|
loaded: false,
|
||||||
|
blocking: false,
|
||||||
|
loading: true,
|
||||||
|
externalAuth: true,
|
||||||
|
idle: false
|
||||||
|
};
|
||||||
|
expect(newState).toEqual(state);
|
||||||
|
});
|
||||||
|
|
||||||
it('should properly set the state, in response to a LOG_OUT action', () => {
|
it('should properly set the state, in response to a LOG_OUT action', () => {
|
||||||
initialState = {
|
initialState = {
|
||||||
authenticated: true,
|
authenticated: true,
|
||||||
|
@@ -10,7 +10,7 @@ import {
|
|||||||
RedirectWhenTokenExpiredAction,
|
RedirectWhenTokenExpiredAction,
|
||||||
RefreshTokenSuccessAction,
|
RefreshTokenSuccessAction,
|
||||||
RetrieveAuthenticatedEpersonSuccessAction,
|
RetrieveAuthenticatedEpersonSuccessAction,
|
||||||
RetrieveAuthMethodsSuccessAction,
|
RetrieveAuthMethodsSuccessAction, SetAuthCookieStatus,
|
||||||
SetRedirectUrlAction
|
SetRedirectUrlAction
|
||||||
} from './auth.actions';
|
} from './auth.actions';
|
||||||
// import models
|
// import models
|
||||||
@@ -59,6 +59,8 @@ export interface AuthState {
|
|||||||
// all authentication Methods enabled at the backend
|
// all authentication Methods enabled at the backend
|
||||||
authMethods?: AuthMethod[];
|
authMethods?: AuthMethod[];
|
||||||
|
|
||||||
|
externalAuth?: boolean,
|
||||||
|
|
||||||
// true when the current user is idle
|
// true when the current user is idle
|
||||||
idle: boolean;
|
idle: boolean;
|
||||||
|
|
||||||
@@ -73,6 +75,7 @@ const initialState: AuthState = {
|
|||||||
blocking: true,
|
blocking: true,
|
||||||
loading: false,
|
loading: false,
|
||||||
authMethods: [],
|
authMethods: [],
|
||||||
|
externalAuth: false,
|
||||||
idle: false
|
idle: false
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -104,6 +107,11 @@ export function authReducer(state: any = initialState, action: AuthActions): Aut
|
|||||||
loading: true,
|
loading: true,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
case AuthActionTypes.SET_AUTH_COOKIE_STATUS:
|
||||||
|
return Object.assign({}, state, {
|
||||||
|
externalAuth: (action as SetAuthCookieStatus).payload
|
||||||
|
});
|
||||||
|
|
||||||
case AuthActionTypes.AUTHENTICATED_ERROR:
|
case AuthActionTypes.AUTHENTICATED_ERROR:
|
||||||
case AuthActionTypes.RETRIEVE_AUTHENTICATED_EPERSON_ERROR:
|
case AuthActionTypes.RETRIEVE_AUTHENTICATED_EPERSON_ERROR:
|
||||||
return Object.assign({}, state, {
|
return Object.assign({}, state, {
|
||||||
|
@@ -25,7 +25,7 @@ import {
|
|||||||
import { CookieService } from '../services/cookie.service';
|
import { CookieService } from '../services/cookie.service';
|
||||||
import {
|
import {
|
||||||
getAuthenticatedUserId,
|
getAuthenticatedUserId,
|
||||||
getAuthenticationToken,
|
getAuthenticationToken, getExternalAuthCookieStatus,
|
||||||
getRedirectUrl,
|
getRedirectUrl,
|
||||||
isAuthenticated,
|
isAuthenticated,
|
||||||
isAuthenticatedLoaded,
|
isAuthenticatedLoaded,
|
||||||
@@ -36,7 +36,7 @@ import { AppState } from '../../app.reducer';
|
|||||||
import {
|
import {
|
||||||
CheckAuthenticationTokenAction,
|
CheckAuthenticationTokenAction,
|
||||||
RefreshTokenAction,
|
RefreshTokenAction,
|
||||||
ResetAuthenticationMessagesAction,
|
ResetAuthenticationMessagesAction, SetAuthCookieStatus,
|
||||||
SetRedirectUrlAction,
|
SetRedirectUrlAction,
|
||||||
SetUserAsIdleAction,
|
SetUserAsIdleAction,
|
||||||
UnsetUserAsIdleAction
|
UnsetUserAsIdleAction
|
||||||
@@ -156,6 +156,24 @@ export class AuthService {
|
|||||||
return this.store.pipe(select(isAuthenticatedLoaded));
|
return this.store.pipe(select(isAuthenticatedLoaded));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Used to set the external authentication status when authenticating via an
|
||||||
|
* external authentication system (e.g. Shibboleth).
|
||||||
|
* @param external
|
||||||
|
*/
|
||||||
|
public setExternalAuthStatus(external: boolean) {
|
||||||
|
this.store.dispatch(new SetAuthCookieStatus(external));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns true if an external authentication system (e.g. Shibboleth) is being used
|
||||||
|
* for authentication. Returns false otherwise.
|
||||||
|
*/
|
||||||
|
public isExternalAuthentication(): Observable<boolean> {
|
||||||
|
return this.store.pipe(
|
||||||
|
select(getExternalAuthCookieStatus));
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the href link to authenticated user
|
* Returns the href link to authenticated user
|
||||||
* @returns {string}
|
* @returns {string}
|
||||||
|
@@ -116,6 +116,8 @@ const _getRedirectUrl = (state: AuthState) => state.redirectUrl;
|
|||||||
|
|
||||||
const _getAuthenticationMethods = (state: AuthState) => state.authMethods;
|
const _getAuthenticationMethods = (state: AuthState) => state.authMethods;
|
||||||
|
|
||||||
|
const _getExternalAuthCookieStatus = (state: AuthState) => state.externalAuth;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns true if the user is idle.
|
* Returns true if the user is idle.
|
||||||
* @function _isIdle
|
* @function _isIdle
|
||||||
@@ -178,6 +180,16 @@ export const isAuthenticated = createSelector(getAuthState, _isAuthenticated);
|
|||||||
*/
|
*/
|
||||||
export const isAuthenticatedLoaded = createSelector(getAuthState, _isAuthenticatedLoaded);
|
export const isAuthenticatedLoaded = createSelector(getAuthState, _isAuthenticatedLoaded);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the authentication cookie status. Expect to be true when external authentication
|
||||||
|
* is used.
|
||||||
|
* @function getExternalAuthCookieStatus
|
||||||
|
* @param {AuthState} state
|
||||||
|
* @param {any} props
|
||||||
|
* @return {boolean}
|
||||||
|
*/
|
||||||
|
export const getExternalAuthCookieStatus = createSelector(getAuthState, _getExternalAuthCookieStatus);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns true if the authentication request is loading.
|
* Returns true if the authentication request is loading.
|
||||||
* @function isAuthenticationLoading
|
* @function isAuthenticationLoading
|
||||||
|
@@ -176,6 +176,7 @@ import { VocabularyEntryDetailsDataService } from './submission/vocabularies/voc
|
|||||||
import { IdentifierData } from '../shared/object-list/identifier-data/identifier-data.model';
|
import { IdentifierData } from '../shared/object-list/identifier-data/identifier-data.model';
|
||||||
import { Subscription } from '../shared/subscriptions/models/subscription.model';
|
import { Subscription } from '../shared/subscriptions/models/subscription.model';
|
||||||
import { SupervisionOrderDataService } from './supervision-order/supervision-order-data.service';
|
import { SupervisionOrderDataService } from './supervision-order/supervision-order-data.service';
|
||||||
|
import { ItemRequest } from './shared/item-request.model';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* When not in production, endpoint responses can be mocked for testing purposes
|
* When not in production, endpoint responses can be mocked for testing purposes
|
||||||
@@ -369,6 +370,7 @@ export const models =
|
|||||||
AccessStatusObject,
|
AccessStatusObject,
|
||||||
IdentifierData,
|
IdentifierData,
|
||||||
Subscription,
|
Subscription,
|
||||||
|
ItemRequest,
|
||||||
];
|
];
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
|
@@ -246,10 +246,10 @@ export abstract class BaseItemDataService extends IdentifiableDataService<Item>
|
|||||||
* Get the endpoint to move the item
|
* Get the endpoint to move the item
|
||||||
* @param itemId
|
* @param itemId
|
||||||
*/
|
*/
|
||||||
public getMoveItemEndpoint(itemId: string): Observable<string> {
|
public getMoveItemEndpoint(itemId: string, inheritPolicies: boolean): Observable<string> {
|
||||||
return this.halService.getEndpoint(this.linkPath).pipe(
|
return this.halService.getEndpoint(this.linkPath).pipe(
|
||||||
map((endpoint: string) => this.getIDHref(endpoint, itemId)),
|
map((endpoint: string) => this.getIDHref(endpoint, itemId)),
|
||||||
map((endpoint: string) => `${endpoint}/owningCollection`),
|
map((endpoint: string) => `${endpoint}/owningCollection?inheritPolicies=${inheritPolicies}`)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -258,14 +258,14 @@ export abstract class BaseItemDataService extends IdentifiableDataService<Item>
|
|||||||
* @param itemId
|
* @param itemId
|
||||||
* @param collection
|
* @param collection
|
||||||
*/
|
*/
|
||||||
public moveToCollection(itemId: string, collection: Collection): Observable<RemoteData<any>> {
|
public moveToCollection(itemId: string, collection: Collection, inheritPolicies: boolean): Observable<RemoteData<any>> {
|
||||||
const options: HttpOptions = Object.create({});
|
const options: HttpOptions = Object.create({});
|
||||||
let headers = new HttpHeaders();
|
let headers = new HttpHeaders();
|
||||||
headers = headers.append('Content-Type', 'text/uri-list');
|
headers = headers.append('Content-Type', 'text/uri-list');
|
||||||
options.headers = headers;
|
options.headers = headers;
|
||||||
|
|
||||||
const requestId = this.requestService.generateRequestId();
|
const requestId = this.requestService.generateRequestId();
|
||||||
const hrefObs = this.getMoveItemEndpoint(itemId);
|
const hrefObs = this.getMoveItemEndpoint(itemId, inheritPolicies);
|
||||||
|
|
||||||
hrefObs.pipe(
|
hrefObs.pipe(
|
||||||
find((href: string) => hasValue(href)),
|
find((href: string) => hasValue(href)),
|
||||||
|
@@ -7,7 +7,7 @@ import { FooterComponent } from './footer.component';
|
|||||||
*/
|
*/
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'ds-themed-footer',
|
selector: 'ds-themed-footer',
|
||||||
styleUrls: ['footer.component.scss'],
|
styleUrls: [],
|
||||||
templateUrl: '../shared/theme-support/themed.component.html',
|
templateUrl: '../shared/theme-support/themed.component.html',
|
||||||
})
|
})
|
||||||
export class ThemedFooterComponent extends ThemedComponent<FooterComponent> {
|
export class ThemedFooterComponent extends ThemedComponent<FooterComponent> {
|
||||||
@@ -20,6 +20,6 @@ export class ThemedFooterComponent extends ThemedComponent<FooterComponent> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
protected importUnthemedComponent(): Promise<any> {
|
protected importUnthemedComponent(): Promise<any> {
|
||||||
return import(`./footer.component`);
|
return import('./footer.component');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -3,11 +3,11 @@ import { ThemedComponent } from '../shared/theme-support/themed.component';
|
|||||||
import { HeaderNavbarWrapperComponent } from './header-navbar-wrapper.component';
|
import { HeaderNavbarWrapperComponent } from './header-navbar-wrapper.component';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Themed wrapper for BreadcrumbsComponent
|
* Themed wrapper for {@link HeaderNavbarWrapperComponent}
|
||||||
*/
|
*/
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'ds-themed-header-navbar-wrapper',
|
selector: 'ds-themed-header-navbar-wrapper',
|
||||||
styleUrls: ['./themed-header-navbar-wrapper.component.scss'],
|
styleUrls: [],
|
||||||
templateUrl: '../shared/theme-support/themed.component.html',
|
templateUrl: '../shared/theme-support/themed.component.html',
|
||||||
})
|
})
|
||||||
export class ThemedHeaderNavbarWrapperComponent extends ThemedComponent<HeaderNavbarWrapperComponent> {
|
export class ThemedHeaderNavbarWrapperComponent extends ThemedComponent<HeaderNavbarWrapperComponent> {
|
||||||
@@ -20,6 +20,6 @@ export class ThemedHeaderNavbarWrapperComponent extends ThemedComponent<HeaderNa
|
|||||||
}
|
}
|
||||||
|
|
||||||
protected importUnthemedComponent(): Promise<any> {
|
protected importUnthemedComponent(): Promise<any> {
|
||||||
return import(`./header-navbar-wrapper.component`);
|
return import('./header-navbar-wrapper.component');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -8,8 +8,6 @@ import { Component } from '@angular/core';
|
|||||||
templateUrl: '../shared/theme-support/themed.component.html',
|
templateUrl: '../shared/theme-support/themed.component.html',
|
||||||
})
|
})
|
||||||
export class ThemedHomePageComponent extends ThemedComponent<HomePageComponent> {
|
export class ThemedHomePageComponent extends ThemedComponent<HomePageComponent> {
|
||||||
protected inAndOutputNames: (keyof HomePageComponent & keyof this)[];
|
|
||||||
|
|
||||||
|
|
||||||
protected getComponentName(): string {
|
protected getComponentName(): string {
|
||||||
return 'HomePageComponent';
|
return 'HomePageComponent';
|
||||||
|
@@ -134,9 +134,10 @@ describe('ItemMoveComponent', () => {
|
|||||||
});
|
});
|
||||||
comp.selectedCollectionName = 'selected-collection-id';
|
comp.selectedCollectionName = 'selected-collection-id';
|
||||||
comp.selectedCollection = collection1;
|
comp.selectedCollection = collection1;
|
||||||
|
comp.inheritPolicies = false;
|
||||||
comp.moveToCollection();
|
comp.moveToCollection();
|
||||||
|
|
||||||
expect(itemDataService.moveToCollection).toHaveBeenCalledWith('item-id', collection1);
|
expect(itemDataService.moveToCollection).toHaveBeenCalledWith('item-id', collection1, false);
|
||||||
});
|
});
|
||||||
it('should call notificationsService success message on success', () => {
|
it('should call notificationsService success message on success', () => {
|
||||||
comp.moveToCollection();
|
comp.moveToCollection();
|
||||||
|
@@ -104,7 +104,7 @@ export class ItemMoveComponent implements OnInit {
|
|||||||
*/
|
*/
|
||||||
moveToCollection() {
|
moveToCollection() {
|
||||||
this.processing = true;
|
this.processing = true;
|
||||||
const move$ = this.itemDataService.moveToCollection(this.item.id, this.selectedCollection)
|
const move$ = this.itemDataService.moveToCollection(this.item.id, this.selectedCollection, this.inheritPolicies)
|
||||||
.pipe(getFirstCompletedRemoteData());
|
.pipe(getFirstCompletedRemoteData());
|
||||||
|
|
||||||
move$.subscribe((response: RemoteData<any>) => {
|
move$.subscribe((response: RemoteData<any>) => {
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
import { Component, Input, OnInit } from '@angular/core';
|
import { Component, Input, OnChanges, OnInit } from '@angular/core';
|
||||||
import { NgxGalleryImage, NgxGalleryOptions } from '@kolkov/ngx-gallery';
|
import { NgxGalleryImage, NgxGalleryOptions } from '@kolkov/ngx-gallery';
|
||||||
import { MediaViewerItem } from '../../../core/shared/media-viewer-item.model';
|
import { MediaViewerItem } from '../../../core/shared/media-viewer-item.model';
|
||||||
import { NgxGalleryAnimation } from '@kolkov/ngx-gallery';
|
import { NgxGalleryAnimation } from '@kolkov/ngx-gallery';
|
||||||
@@ -13,15 +13,16 @@ import { AuthService } from '../../../core/auth/auth.service';
|
|||||||
templateUrl: './media-viewer-image.component.html',
|
templateUrl: './media-viewer-image.component.html',
|
||||||
styleUrls: ['./media-viewer-image.component.scss'],
|
styleUrls: ['./media-viewer-image.component.scss'],
|
||||||
})
|
})
|
||||||
export class MediaViewerImageComponent implements OnInit {
|
export class MediaViewerImageComponent implements OnChanges, OnInit {
|
||||||
@Input() images: MediaViewerItem[];
|
@Input() images: MediaViewerItem[];
|
||||||
@Input() preview?: boolean;
|
@Input() preview?: boolean;
|
||||||
@Input() image?: string;
|
@Input() image?: string;
|
||||||
|
|
||||||
thumbnailPlaceholder = './assets/images/replacement_image.svg';
|
thumbnailPlaceholder = './assets/images/replacement_image.svg';
|
||||||
|
|
||||||
galleryOptions: NgxGalleryOptions[];
|
galleryOptions: NgxGalleryOptions[] = [];
|
||||||
galleryImages: NgxGalleryImage[];
|
|
||||||
|
galleryImages: NgxGalleryImage[] = [];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether or not the current user is authenticated
|
* Whether or not the current user is authenticated
|
||||||
@@ -33,11 +34,7 @@ export class MediaViewerImageComponent implements OnInit {
|
|||||||
) {
|
) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
ngOnChanges(): void {
|
||||||
* Thi method sets up the gallery settings and data
|
|
||||||
*/
|
|
||||||
ngOnInit(): void {
|
|
||||||
this.isAuthenticated$ = this.authService.isAuthenticated();
|
|
||||||
this.galleryOptions = [
|
this.galleryOptions = [
|
||||||
{
|
{
|
||||||
preview: this.preview !== undefined ? this.preview : true,
|
preview: this.preview !== undefined ? this.preview : true,
|
||||||
@@ -53,7 +50,6 @@ export class MediaViewerImageComponent implements OnInit {
|
|||||||
previewFullscreen: true,
|
previewFullscreen: true,
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
if (this.image) {
|
if (this.image) {
|
||||||
this.galleryImages = [
|
this.galleryImages = [
|
||||||
{
|
{
|
||||||
@@ -67,6 +63,11 @@ export class MediaViewerImageComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ngOnInit(): void {
|
||||||
|
this.isAuthenticated$ = this.authService.isAuthenticated();
|
||||||
|
this.ngOnChanges();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This method convert an array of MediaViewerItem into NgxGalleryImage array
|
* This method convert an array of MediaViewerItem into NgxGalleryImage array
|
||||||
* @param medias input NgxGalleryImage array
|
* @param medias input NgxGalleryImage array
|
||||||
|
@@ -1,23 +1,22 @@
|
|||||||
<video
|
<video
|
||||||
crossorigin="anonymous"
|
crossorigin="anonymous"
|
||||||
#media
|
[src]="medias[currentIndex].bitstream._links.content.href"
|
||||||
[src]="filteredMedias[currentIndex].bitstream._links.content.href"
|
|
||||||
id="singleVideo"
|
id="singleVideo"
|
||||||
[poster]="
|
[poster]="
|
||||||
filteredMedias[currentIndex].thumbnail ||
|
medias[currentIndex].thumbnail ||
|
||||||
replacements[filteredMedias[currentIndex].format]
|
replacements[medias[currentIndex].format]
|
||||||
"
|
"
|
||||||
preload="none"
|
preload="none"
|
||||||
controls
|
controls
|
||||||
>
|
>
|
||||||
<ng-container *ngIf="getMediaCap(filteredMedias[currentIndex].bitstream.name) as capInfos">
|
<ng-container *ngIf="getMediaCap(medias[currentIndex].bitstream.name, captions) as capInfos">
|
||||||
<ng-container *ngFor="let capInfo of capInfos">
|
<ng-container *ngFor="let capInfo of capInfos">
|
||||||
<track [src]="capInfo.src" [label]="capInfo.langLabel" [srclang]="capInfo.srclang" />
|
<track [src]="capInfo.src" [label]="capInfo.langLabel" [srclang]="capInfo.srclang" />
|
||||||
</ng-container>
|
</ng-container>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
|
||||||
</video>
|
</video>
|
||||||
<div class="buttons" *ngIf="filteredMedias?.length > 1">
|
<div class="buttons" *ngIf="medias?.length > 1">
|
||||||
<button
|
<button
|
||||||
class="btn btn-primary previous"
|
class="btn btn-primary previous"
|
||||||
[disabled]="currentIndex === 0"
|
[disabled]="currentIndex === 0"
|
||||||
@@ -28,7 +27,7 @@
|
|||||||
|
|
||||||
<button
|
<button
|
||||||
class="btn btn-primary next"
|
class="btn btn-primary next"
|
||||||
[disabled]="currentIndex === filteredMedias.length - 1"
|
[disabled]="currentIndex === medias.length - 1"
|
||||||
(click)="nextMedia()"
|
(click)="nextMedia()"
|
||||||
>
|
>
|
||||||
{{ "media-viewer.next" | translate }}
|
{{ "media-viewer.next" | translate }}
|
||||||
@@ -44,7 +43,7 @@
|
|||||||
<div ngbDropdownMenu aria-labelledby="dropdownBasic1">
|
<div ngbDropdownMenu aria-labelledby="dropdownBasic1">
|
||||||
<button
|
<button
|
||||||
ngbDropdownItem
|
ngbDropdownItem
|
||||||
*ngFor="let item of filteredMedias; index as indexOfelement"
|
*ngFor="let item of medias; index as indexOfelement"
|
||||||
class="list-element"
|
class="list-element"
|
||||||
(click)="selectedMedia(indexOfelement)"
|
(click)="selectedMedia(indexOfelement)"
|
||||||
>
|
>
|
||||||
|
@@ -83,7 +83,6 @@ describe('MediaViewerVideoComponent', () => {
|
|||||||
fixture = TestBed.createComponent(MediaViewerVideoComponent);
|
fixture = TestBed.createComponent(MediaViewerVideoComponent);
|
||||||
component = fixture.componentInstance;
|
component = fixture.componentInstance;
|
||||||
component.medias = mockMediaViewerItem;
|
component.medias = mockMediaViewerItem;
|
||||||
component.filteredMedias = mockMediaViewerItem;
|
|
||||||
fixture.detectChanges();
|
fixture.detectChanges();
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -94,7 +93,6 @@ describe('MediaViewerVideoComponent', () => {
|
|||||||
describe('should show controller buttons when the having mode then one video', () => {
|
describe('should show controller buttons when the having mode then one video', () => {
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
component.medias = mockMediaViewerItems;
|
component.medias = mockMediaViewerItems;
|
||||||
component.filteredMedias = mockMediaViewerItems;
|
|
||||||
fixture.detectChanges();
|
fixture.detectChanges();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@@ -1,7 +1,8 @@
|
|||||||
import { Component, Input, OnInit } from '@angular/core';
|
import { Component, Input } from '@angular/core';
|
||||||
import { MediaViewerItem } from '../../../core/shared/media-viewer-item.model';
|
import { MediaViewerItem } from '../../../core/shared/media-viewer-item.model';
|
||||||
import { languageHelper } from './language-helper';
|
import { languageHelper } from './language-helper';
|
||||||
import { CaptionInfo} from './caption-info';
|
import { CaptionInfo } from './caption-info';
|
||||||
|
import { Bitstream } from 'src/app/core/shared/bitstream.model';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This component renders a video viewer and playlist for the media viewer
|
* This component renders a video viewer and playlist for the media viewer
|
||||||
@@ -11,12 +12,13 @@ import { CaptionInfo} from './caption-info';
|
|||||||
templateUrl: './media-viewer-video.component.html',
|
templateUrl: './media-viewer-video.component.html',
|
||||||
styleUrls: ['./media-viewer-video.component.scss'],
|
styleUrls: ['./media-viewer-video.component.scss'],
|
||||||
})
|
})
|
||||||
export class MediaViewerVideoComponent implements OnInit {
|
export class MediaViewerVideoComponent {
|
||||||
@Input() medias: MediaViewerItem[];
|
@Input() medias: MediaViewerItem[];
|
||||||
|
|
||||||
filteredMedias: MediaViewerItem[];
|
@Input() captions: Bitstream[] = [];
|
||||||
|
|
||||||
|
isCollapsed = false;
|
||||||
|
|
||||||
isCollapsed: boolean;
|
|
||||||
currentIndex = 0;
|
currentIndex = 0;
|
||||||
|
|
||||||
replacements = {
|
replacements = {
|
||||||
@@ -24,11 +26,6 @@ export class MediaViewerVideoComponent implements OnInit {
|
|||||||
audio: './assets/images/replacement_audio.svg',
|
audio: './assets/images/replacement_audio.svg',
|
||||||
};
|
};
|
||||||
|
|
||||||
ngOnInit() {
|
|
||||||
this.isCollapsed = false;
|
|
||||||
this.filteredMedias = this.medias.filter((media) => media.format === 'audio' || media.format === 'video');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This method check if there is caption file for the media
|
* This method check if there is caption file for the media
|
||||||
* The caption file name is the media name plus "-" following two letter
|
* The caption file name is the media name plus "-" following two letter
|
||||||
@@ -39,29 +36,24 @@ export class MediaViewerVideoComponent implements OnInit {
|
|||||||
* Two letter language code reference
|
* Two letter language code reference
|
||||||
* https://www.w3schools.com/tags/ref_language_codes.asp
|
* https://www.w3schools.com/tags/ref_language_codes.asp
|
||||||
*/
|
*/
|
||||||
getMediaCap(name: string): CaptionInfo[] {
|
getMediaCap(name: string, captions: Bitstream[]): CaptionInfo[] {
|
||||||
let filteredCapMedias: MediaViewerItem[];
|
const capInfos: CaptionInfo[] = [];
|
||||||
let capInfos: CaptionInfo[] = [];
|
const filteredCapMedias: Bitstream[] = captions
|
||||||
filteredCapMedias = this.medias
|
.filter((media: Bitstream) => media.name.substring(0, (media.name.length - 7)).toLowerCase() === name.toLowerCase());
|
||||||
.filter((media) => media.mimetype === 'text/vtt')
|
|
||||||
.filter((media) => media.bitstream.name.substring(0, (media.bitstream.name.length - 7) ).toLowerCase() === name.toLowerCase());
|
|
||||||
|
|
||||||
if (filteredCapMedias) {
|
for (const media of filteredCapMedias) {
|
||||||
filteredCapMedias
|
let srclang: string = media.name.slice(-6, -4).toLowerCase();
|
||||||
.forEach((media, index) => {
|
capInfos.push(new CaptionInfo(
|
||||||
let srclang: string = media.bitstream.name.slice(-6, -4).toLowerCase();
|
media._links.content.href,
|
||||||
capInfos.push(new CaptionInfo(
|
srclang,
|
||||||
media.bitstream._links.content.href,
|
languageHelper[srclang],
|
||||||
srclang,
|
));
|
||||||
languageHelper[srclang]
|
|
||||||
));
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
return capInfos;
|
return capInfos;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This method sets the reviced index into currentIndex
|
* This method sets the received index into currentIndex
|
||||||
* @param index Selected index
|
* @param index Selected index
|
||||||
*/
|
*/
|
||||||
selectedMedia(index: number) {
|
selectedMedia(index: number) {
|
||||||
@@ -69,14 +61,14 @@ export class MediaViewerVideoComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This method increade the number of the currentIndex
|
* This method increases the number of the currentIndex
|
||||||
*/
|
*/
|
||||||
nextMedia() {
|
nextMedia() {
|
||||||
this.currentIndex++;
|
this.currentIndex++;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This method decrese the number of the currentIndex
|
* This method decreases the number of the currentIndex
|
||||||
*/
|
*/
|
||||||
prevMedia() {
|
prevMedia() {
|
||||||
this.currentIndex--;
|
this.currentIndex--;
|
||||||
|
@@ -2,6 +2,7 @@ import { Component, Input } from '@angular/core';
|
|||||||
import { ThemedComponent } from '../../../shared/theme-support/themed.component';
|
import { ThemedComponent } from '../../../shared/theme-support/themed.component';
|
||||||
import { MediaViewerItem } from '../../../core/shared/media-viewer-item.model';
|
import { MediaViewerItem } from '../../../core/shared/media-viewer-item.model';
|
||||||
import { MediaViewerVideoComponent } from './media-viewer-video.component';
|
import { MediaViewerVideoComponent } from './media-viewer-video.component';
|
||||||
|
import { Bitstream } from '../../../core/shared/bitstream.model';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Themed wrapper for {@link MediaViewerVideoComponent}.
|
* Themed wrapper for {@link MediaViewerVideoComponent}.
|
||||||
@@ -15,8 +16,11 @@ export class ThemedMediaViewerVideoComponent extends ThemedComponent<MediaViewer
|
|||||||
|
|
||||||
@Input() medias: MediaViewerItem[];
|
@Input() medias: MediaViewerItem[];
|
||||||
|
|
||||||
|
@Input() captions: Bitstream[];
|
||||||
|
|
||||||
protected inAndOutputNames: (keyof MediaViewerVideoComponent & keyof this)[] = [
|
protected inAndOutputNames: (keyof MediaViewerVideoComponent & keyof this)[] = [
|
||||||
'medias',
|
'medias',
|
||||||
|
'captions',
|
||||||
];
|
];
|
||||||
|
|
||||||
protected getComponentName(): string {
|
protected getComponentName(): string {
|
||||||
|
@@ -5,32 +5,23 @@
|
|||||||
[showMessage]="false"
|
[showMessage]="false"
|
||||||
></ds-themed-loading>
|
></ds-themed-loading>
|
||||||
<div class="media-viewer" *ngIf="!isLoading">
|
<div class="media-viewer" *ngIf="!isLoading">
|
||||||
<ng-container *ngIf="mediaList.length > 0">
|
<ng-container *ngIf="mediaList.length > 0; else showThumbnail">
|
||||||
<ng-container *ngIf="videoOptions">
|
<ng-container *ngVar="mediaOptions.video && ['audio', 'video'].includes(mediaList[0]?.format) as showVideo">
|
||||||
<ng-container
|
<ng-container *ngVar="mediaOptions.image && mediaList[0]?.format === 'image' as showImage">
|
||||||
*ngIf="
|
<ds-themed-media-viewer-video *ngIf="showVideo" [medias]="mediaList" [captions]="captions$ | async"></ds-themed-media-viewer-video>
|
||||||
mediaList[0]?.format === 'video' || mediaList[0]?.format === 'audio'
|
<ds-themed-media-viewer-image *ngIf="showImage" [images]="mediaList"></ds-themed-media-viewer-image>
|
||||||
"
|
<ng-container *ngIf="showImage || showVideo; else showThumbnail"></ng-container>
|
||||||
>
|
|
||||||
<ds-themed-media-viewer-video [medias]="mediaList"></ds-themed-media-viewer-video>
|
|
||||||
</ng-container>
|
</ng-container>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
<ng-container *ngIf="mediaList[0]?.format === 'image'">
|
|
||||||
<ds-themed-media-viewer-image [images]="mediaList"></ds-themed-media-viewer-image>
|
|
||||||
</ng-container>
|
|
||||||
</ng-container>
|
|
||||||
<ng-container
|
|
||||||
*ngIf="
|
|
||||||
((mediaList[0]?.format !== 'image') &&
|
|
||||||
(!videoOptions || mediaList[0]?.format !== 'video') &&
|
|
||||||
(!videoOptions || mediaList[0]?.format !== 'audio')) ||
|
|
||||||
mediaList.length === 0
|
|
||||||
"
|
|
||||||
>
|
|
||||||
<ds-themed-media-viewer-image
|
|
||||||
[image]="mediaList[0]?.thumbnail || thumbnailPlaceholder"
|
|
||||||
[preview]="false"
|
|
||||||
></ds-themed-media-viewer-image>
|
|
||||||
</ng-container>
|
</ng-container>
|
||||||
</div>
|
</div>
|
||||||
|
<ng-template #showThumbnail>
|
||||||
|
<ds-themed-media-viewer-image *ngIf="mediaOptions.image && mediaOptions.video"
|
||||||
|
[image]="(thumbnailsRD$ | async)?.payload?.page[0]?._links.content.href || thumbnailPlaceholder"
|
||||||
|
[preview]="false"
|
||||||
|
></ds-themed-media-viewer-image>
|
||||||
|
<ds-thumbnail *ngIf="!(mediaOptions.image && mediaOptions.video)"
|
||||||
|
[thumbnail]="(thumbnailsRD$ | async)?.payload?.page[0]">
|
||||||
|
</ds-thumbnail>
|
||||||
|
</ng-template>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
@@ -61,7 +61,7 @@ describe('MediaViewerComponent', () => {
|
|||||||
);
|
);
|
||||||
|
|
||||||
beforeEach(waitForAsync(() => {
|
beforeEach(waitForAsync(() => {
|
||||||
TestBed.configureTestingModule({
|
return TestBed.configureTestingModule({
|
||||||
imports: [
|
imports: [
|
||||||
TranslateModule.forRoot({
|
TranslateModule.forRoot({
|
||||||
loader: {
|
loader: {
|
||||||
@@ -94,7 +94,10 @@ describe('MediaViewerComponent', () => {
|
|||||||
describe('when the bitstreams are loading', () => {
|
describe('when the bitstreams are loading', () => {
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
comp.mediaList$.next([mockMediaViewerItem]);
|
comp.mediaList$.next([mockMediaViewerItem]);
|
||||||
comp.videoOptions = true;
|
comp.mediaOptions = {
|
||||||
|
image: true,
|
||||||
|
video: true,
|
||||||
|
};
|
||||||
comp.isLoading = true;
|
comp.isLoading = true;
|
||||||
fixture.detectChanges();
|
fixture.detectChanges();
|
||||||
});
|
});
|
||||||
@@ -118,7 +121,10 @@ describe('MediaViewerComponent', () => {
|
|||||||
describe('when the bitstreams loading is failed', () => {
|
describe('when the bitstreams loading is failed', () => {
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
comp.mediaList$.next([]);
|
comp.mediaList$.next([]);
|
||||||
comp.videoOptions = true;
|
comp.mediaOptions = {
|
||||||
|
image: true,
|
||||||
|
video: true,
|
||||||
|
};
|
||||||
comp.isLoading = false;
|
comp.isLoading = false;
|
||||||
fixture.detectChanges();
|
fixture.detectChanges();
|
||||||
});
|
});
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
import { Component, Input, OnInit } from '@angular/core';
|
import { Component, Input, OnDestroy, OnInit } from '@angular/core';
|
||||||
import { BehaviorSubject, Observable } from 'rxjs';
|
import { BehaviorSubject, Observable } from 'rxjs';
|
||||||
import { filter, take } from 'rxjs/operators';
|
import { filter, take } from 'rxjs/operators';
|
||||||
import { BitstreamDataService } from '../../core/data/bitstream-data.service';
|
import { BitstreamDataService } from '../../core/data/bitstream-data.service';
|
||||||
@@ -11,6 +11,9 @@ import { MediaViewerItem } from '../../core/shared/media-viewer-item.model';
|
|||||||
import { getFirstSucceededRemoteDataPayload } from '../../core/shared/operators';
|
import { getFirstSucceededRemoteDataPayload } from '../../core/shared/operators';
|
||||||
import { hasValue } from '../../shared/empty.util';
|
import { hasValue } from '../../shared/empty.util';
|
||||||
import { followLink } from '../../shared/utils/follow-link-config.model';
|
import { followLink } from '../../shared/utils/follow-link-config.model';
|
||||||
|
import { MediaViewerConfig } from '../../../config/media-viewer-config.interface';
|
||||||
|
import { environment } from '../../../environments/environment';
|
||||||
|
import { Subscription } from 'rxjs/internal/Subscription';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This component renders the media viewers
|
* This component renders the media viewers
|
||||||
@@ -20,51 +23,71 @@ import { followLink } from '../../shared/utils/follow-link-config.model';
|
|||||||
templateUrl: './media-viewer.component.html',
|
templateUrl: './media-viewer.component.html',
|
||||||
styleUrls: ['./media-viewer.component.scss'],
|
styleUrls: ['./media-viewer.component.scss'],
|
||||||
})
|
})
|
||||||
export class MediaViewerComponent implements OnInit {
|
export class MediaViewerComponent implements OnDestroy, OnInit {
|
||||||
@Input() item: Item;
|
@Input() item: Item;
|
||||||
@Input() videoOptions: boolean;
|
|
||||||
|
|
||||||
mediaList$: BehaviorSubject<MediaViewerItem[]>;
|
@Input() mediaOptions: MediaViewerConfig = environment.mediaViewer;
|
||||||
|
|
||||||
isLoading: boolean;
|
mediaList$: BehaviorSubject<MediaViewerItem[]> = new BehaviorSubject([]);
|
||||||
|
|
||||||
|
captions$: BehaviorSubject<Bitstream[]> = new BehaviorSubject([]);
|
||||||
|
|
||||||
|
isLoading = true;
|
||||||
|
|
||||||
thumbnailPlaceholder = './assets/images/replacement_document.svg';
|
thumbnailPlaceholder = './assets/images/replacement_document.svg';
|
||||||
|
|
||||||
constructor(protected bitstreamDataService: BitstreamDataService) {}
|
thumbnailsRD$: Observable<RemoteData<PaginatedList<Bitstream>>>;
|
||||||
|
|
||||||
|
subs: Subscription[] = [];
|
||||||
|
|
||||||
|
constructor(
|
||||||
|
protected bitstreamDataService: BitstreamDataService,
|
||||||
|
) {
|
||||||
|
}
|
||||||
|
|
||||||
|
ngOnDestroy(): void {
|
||||||
|
this.subs.forEach((subscription: Subscription) => subscription.unsubscribe());
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This metod loads all the Bitstreams and Thumbnails and contert it to media item
|
* This method loads all the Bitstreams and Thumbnails and converts it to {@link MediaViewerItem}s
|
||||||
*/
|
*/
|
||||||
ngOnInit(): void {
|
ngOnInit(): void {
|
||||||
this.mediaList$ = new BehaviorSubject([]);
|
const types: string[] = [
|
||||||
this.isLoading = true;
|
...(this.mediaOptions.image ? ['image'] : []),
|
||||||
this.loadRemoteData('ORIGINAL').subscribe((bitstreamsRD) => {
|
...(this.mediaOptions.video ? ['audio', 'video'] : []),
|
||||||
|
];
|
||||||
|
this.thumbnailsRD$ = this.loadRemoteData('THUMBNAIL');
|
||||||
|
this.subs.push(this.loadRemoteData('ORIGINAL').subscribe((bitstreamsRD: RemoteData<PaginatedList<Bitstream>>) => {
|
||||||
if (bitstreamsRD.payload.page.length === 0) {
|
if (bitstreamsRD.payload.page.length === 0) {
|
||||||
this.isLoading = false;
|
this.isLoading = false;
|
||||||
this.mediaList$.next([]);
|
this.mediaList$.next([]);
|
||||||
} else {
|
} else {
|
||||||
this.loadRemoteData('THUMBNAIL').subscribe((thumbnailsRD) => {
|
this.subs.push(this.thumbnailsRD$.subscribe((thumbnailsRD: RemoteData<PaginatedList<Bitstream>>) => {
|
||||||
for (
|
for (
|
||||||
let index = 0;
|
let index = 0;
|
||||||
index < bitstreamsRD.payload.page.length;
|
index < bitstreamsRD.payload.page.length;
|
||||||
index++
|
index++
|
||||||
) {
|
) {
|
||||||
bitstreamsRD.payload.page[index].format
|
this.subs.push(bitstreamsRD.payload.page[index].format
|
||||||
.pipe(getFirstSucceededRemoteDataPayload())
|
.pipe(getFirstSucceededRemoteDataPayload())
|
||||||
.subscribe((format) => {
|
.subscribe((format: BitstreamFormat) => {
|
||||||
const current = this.mediaList$.getValue();
|
|
||||||
const mediaItem = this.createMediaViewerItem(
|
const mediaItem = this.createMediaViewerItem(
|
||||||
bitstreamsRD.payload.page[index],
|
bitstreamsRD.payload.page[index],
|
||||||
format,
|
format,
|
||||||
thumbnailsRD.payload && thumbnailsRD.payload.page[index]
|
thumbnailsRD.payload && thumbnailsRD.payload.page[index]
|
||||||
);
|
);
|
||||||
this.mediaList$.next([...current, mediaItem]);
|
if (types.includes(mediaItem.format)) {
|
||||||
});
|
this.mediaList$.next([...this.mediaList$.getValue(), mediaItem]);
|
||||||
|
} else if (format.mimetype === 'text/vtt') {
|
||||||
|
this.captions$.next([...this.captions$.getValue(), bitstreamsRD.payload.page[index]]);
|
||||||
|
}
|
||||||
|
}));
|
||||||
}
|
}
|
||||||
this.isLoading = false;
|
this.isLoading = false;
|
||||||
});
|
}));
|
||||||
}
|
}
|
||||||
});
|
}));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -94,16 +117,12 @@ export class MediaViewerComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This method create MediaViewerItem from incoming bitstreams
|
* This method creates a {@link MediaViewerItem} from incoming {@link Bitstream}s
|
||||||
* @param original original remote data bitstream
|
* @param original original bitstream
|
||||||
* @param format original bitstream format
|
* @param format original bitstream format
|
||||||
* @param thumbnail trunbnail remote data bitstream
|
* @param thumbnail thumbnail bitstream
|
||||||
*/
|
*/
|
||||||
createMediaViewerItem(
|
createMediaViewerItem(original: Bitstream, format: BitstreamFormat, thumbnail: Bitstream): MediaViewerItem {
|
||||||
original: Bitstream,
|
|
||||||
format: BitstreamFormat,
|
|
||||||
thumbnail: Bitstream
|
|
||||||
): MediaViewerItem {
|
|
||||||
const mediaItem = new MediaViewerItem();
|
const mediaItem = new MediaViewerItem();
|
||||||
mediaItem.bitstream = original;
|
mediaItem.bitstream = original;
|
||||||
mediaItem.format = format.mimetype.split('/')[0];
|
mediaItem.format = format.mimetype.split('/')[0];
|
||||||
|
@@ -2,6 +2,7 @@ import { Component, Input } from '@angular/core';
|
|||||||
import { ThemedComponent } from '../../shared/theme-support/themed.component';
|
import { ThemedComponent } from '../../shared/theme-support/themed.component';
|
||||||
import { MediaViewerComponent } from './media-viewer.component';
|
import { MediaViewerComponent } from './media-viewer.component';
|
||||||
import { Item } from '../../core/shared/item.model';
|
import { Item } from '../../core/shared/item.model';
|
||||||
|
import { MediaViewerConfig } from '../../../config/media-viewer-config.interface';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Themed wrapper for {@link MediaViewerComponent}.
|
* Themed wrapper for {@link MediaViewerComponent}.
|
||||||
@@ -14,11 +15,11 @@ import { Item } from '../../core/shared/item.model';
|
|||||||
export class ThemedMediaViewerComponent extends ThemedComponent<MediaViewerComponent> {
|
export class ThemedMediaViewerComponent extends ThemedComponent<MediaViewerComponent> {
|
||||||
|
|
||||||
@Input() item: Item;
|
@Input() item: Item;
|
||||||
@Input() videoOptions: boolean;
|
@Input() mediaOptions: MediaViewerConfig;
|
||||||
|
|
||||||
protected inAndOutputNames: (keyof MediaViewerComponent & keyof this)[] = [
|
protected inAndOutputNames: (keyof MediaViewerComponent & keyof this)[] = [
|
||||||
'item',
|
'item',
|
||||||
'videoOptions',
|
'mediaOptions',
|
||||||
];
|
];
|
||||||
|
|
||||||
protected getComponentName(): string {
|
protected getComponentName(): string {
|
||||||
|
@@ -15,13 +15,13 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-xs-12 col-md-4">
|
<div class="col-xs-12 col-md-4">
|
||||||
<ng-container *ngIf="!mediaViewer.image">
|
<ng-container *ngIf="!(mediaViewer.image || mediaViewer.video)">
|
||||||
<ds-metadata-field-wrapper [hideIfNoTextContent]="false">
|
<ds-metadata-field-wrapper [hideIfNoTextContent]="false">
|
||||||
<ds-thumbnail [thumbnail]="object?.thumbnail | async"></ds-thumbnail>
|
<ds-thumbnail [thumbnail]="object?.thumbnail | async"></ds-thumbnail>
|
||||||
</ds-metadata-field-wrapper>
|
</ds-metadata-field-wrapper>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
<div *ngIf="mediaViewer.image" class="mb-2">
|
<div *ngIf="mediaViewer.image || mediaViewer.video" class="mb-2">
|
||||||
<ds-themed-media-viewer [item]="object" [videoOptions]="mediaViewer.video"></ds-themed-media-viewer>
|
<ds-themed-media-viewer [item]="object"></ds-themed-media-viewer>
|
||||||
</div>
|
</div>
|
||||||
<ds-themed-item-page-file-section [item]="object"></ds-themed-item-page-file-section>
|
<ds-themed-item-page-file-section [item]="object"></ds-themed-item-page-file-section>
|
||||||
<ds-item-page-date-field [item]="object"></ds-item-page-date-field>
|
<ds-item-page-date-field [item]="object"></ds-item-page-date-field>
|
||||||
|
@@ -16,13 +16,13 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-xs-12 col-md-4">
|
<div class="col-xs-12 col-md-4">
|
||||||
<ng-container *ngIf="!mediaViewer.image">
|
<ng-container *ngIf="!(mediaViewer.image || mediaViewer.video)">
|
||||||
<ds-metadata-field-wrapper [hideIfNoTextContent]="false">
|
<ds-metadata-field-wrapper [hideIfNoTextContent]="false">
|
||||||
<ds-thumbnail [thumbnail]="object?.thumbnail | async"></ds-thumbnail>
|
<ds-thumbnail [thumbnail]="object?.thumbnail | async"></ds-thumbnail>
|
||||||
</ds-metadata-field-wrapper>
|
</ds-metadata-field-wrapper>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
<div *ngIf="mediaViewer.image" class="mb-2">
|
<div *ngIf="mediaViewer.image || mediaViewer.video" class="mb-2">
|
||||||
<ds-themed-media-viewer [item]="object" [videoOptions]="mediaViewer.video"></ds-themed-media-viewer>
|
<ds-themed-media-viewer [item]="object"></ds-themed-media-viewer>
|
||||||
</div>
|
</div>
|
||||||
<ds-themed-item-page-file-section [item]="object"></ds-themed-item-page-file-section>
|
<ds-themed-item-page-file-section [item]="object"></ds-themed-item-page-file-section>
|
||||||
<ds-item-page-date-field [item]="object"></ds-item-page-date-field>
|
<ds-item-page-date-field [item]="object"></ds-item-page-date-field>
|
||||||
|
@@ -19,7 +19,7 @@ export class ThemedMetadataRepresentationListComponent extends ThemedComponent<M
|
|||||||
|
|
||||||
@Input() label: string;
|
@Input() label: string;
|
||||||
|
|
||||||
@Input() incrementBy = 10;
|
@Input() incrementBy: number;
|
||||||
|
|
||||||
protected getComponentName(): string {
|
protected getComponentName(): string {
|
||||||
return 'MetadataRepresentationListComponent';
|
return 'MetadataRepresentationListComponent';
|
||||||
|
@@ -11,7 +11,6 @@ import { MyDSpacePageComponent } from './my-dspace-page.component';
|
|||||||
templateUrl: './../shared/theme-support/themed.component.html'
|
templateUrl: './../shared/theme-support/themed.component.html'
|
||||||
})
|
})
|
||||||
export class ThemedMyDSpacePageComponent extends ThemedComponent<MyDSpacePageComponent> {
|
export class ThemedMyDSpacePageComponent extends ThemedComponent<MyDSpacePageComponent> {
|
||||||
protected inAndOutputNames: (keyof MyDSpacePageComponent & keyof this)[];
|
|
||||||
|
|
||||||
protected getComponentName(): string {
|
protected getComponentName(): string {
|
||||||
return 'MyDSpacePageComponent';
|
return 'MyDSpacePageComponent';
|
||||||
|
@@ -28,19 +28,18 @@ export class ThemedConfigurationSearchPageComponent extends ThemedComponent<Conf
|
|||||||
/**
|
/**
|
||||||
* True when the search component should show results on the current page
|
* True when the search component should show results on the current page
|
||||||
*/
|
*/
|
||||||
@Input() inPlaceSearch = true;
|
@Input() inPlaceSearch: boolean;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether or not the search bar should be visible
|
* Whether or not the search bar should be visible
|
||||||
*/
|
*/
|
||||||
@Input()
|
@Input() searchEnabled: boolean;
|
||||||
searchEnabled = true;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The width of the sidebar (bootstrap columns)
|
* The width of the sidebar (bootstrap columns)
|
||||||
*/
|
*/
|
||||||
@Input()
|
@Input()
|
||||||
sideBarWidth = 3;
|
sideBarWidth: number;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The currently applied configuration (determines title of search)
|
* The currently applied configuration (determines title of search)
|
||||||
@@ -66,7 +65,7 @@ export class ThemedConfigurationSearchPageComponent extends ThemedComponent<Conf
|
|||||||
}
|
}
|
||||||
|
|
||||||
protected importUnthemedComponent(): Promise<any> {
|
protected importUnthemedComponent(): Promise<any> {
|
||||||
return import(`./configuration-search-page.component`);
|
return import('./configuration-search-page.component');
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -11,11 +11,11 @@ export class ThemedCollectionDropdownComponent extends ThemedComponent<Collectio
|
|||||||
|
|
||||||
@Input() entityType: string;
|
@Input() entityType: string;
|
||||||
|
|
||||||
@Output() searchComplete = new EventEmitter<any>();
|
@Output() searchComplete: EventEmitter<any> = new EventEmitter();
|
||||||
|
|
||||||
@Output() theOnlySelectable = new EventEmitter<CollectionListEntry>();
|
@Output() theOnlySelectable: EventEmitter<CollectionListEntry> = new EventEmitter();
|
||||||
|
|
||||||
@Output() selectionChange = new EventEmitter<CollectionListEntry>();
|
@Output() selectionChange = new EventEmitter();
|
||||||
|
|
||||||
protected inAndOutputNames: (keyof CollectionDropdownComponent & keyof this)[] = ['entityType', 'searchComplete', 'theOnlySelectable', 'selectionChange'];
|
protected inAndOutputNames: (keyof CollectionDropdownComponent & keyof this)[] = ['entityType', 'searchComplete', 'theOnlySelectable', 'selectionChange'];
|
||||||
|
|
||||||
|
@@ -9,7 +9,7 @@ import {
|
|||||||
import {
|
import {
|
||||||
DsoEditMenuExpandableSectionComponent
|
DsoEditMenuExpandableSectionComponent
|
||||||
} from '../dso-page/dso-edit-menu/dso-edit-expandable-menu-section/dso-edit-menu-expandable-section.component';
|
} from '../dso-page/dso-edit-menu/dso-edit-expandable-menu-section/dso-edit-menu-expandable-section.component';
|
||||||
import { NgbTooltipModule } from '@ng-bootstrap/ng-bootstrap';
|
import { NgbDropdownModule, NgbTooltipModule } from '@ng-bootstrap/ng-bootstrap';
|
||||||
|
|
||||||
const COMPONENTS = [
|
const COMPONENTS = [
|
||||||
DsoEditMenuComponent,
|
DsoEditMenuComponent,
|
||||||
@@ -25,6 +25,7 @@ const MODULES = [
|
|||||||
RouterModule,
|
RouterModule,
|
||||||
CommonModule,
|
CommonModule,
|
||||||
NgbTooltipModule,
|
NgbTooltipModule,
|
||||||
|
NgbDropdownModule,
|
||||||
];
|
];
|
||||||
const PROVIDERS = [
|
const PROVIDERS = [
|
||||||
|
|
||||||
|
@@ -4,27 +4,14 @@ import { RelationshipOptions } from '../../../models/relationship-options.model'
|
|||||||
import { ListableObject } from '../../../../../object-collection/shared/listable-object.model';
|
import { ListableObject } from '../../../../../object-collection/shared/listable-object.model';
|
||||||
import { Context } from '../../../../../../core/shared/context.model';
|
import { Context } from '../../../../../../core/shared/context.model';
|
||||||
import { Item } from '../../../../../../core/shared/item.model';
|
import { Item } from '../../../../../../core/shared/item.model';
|
||||||
import { SEARCH_CONFIG_SERVICE } from '../../../../../../my-dspace-page/my-dspace-page.component';
|
|
||||||
import { SearchConfigurationService } from '../../../../../../core/shared/search/search-configuration.service';
|
|
||||||
import { Collection } from '../../../../../../core/shared/collection.model';
|
import { Collection } from '../../../../../../core/shared/collection.model';
|
||||||
import { ExternalSource } from '../../../../../../core/shared/external-source.model';
|
import { ExternalSource } from '../../../../../../core/shared/external-source.model';
|
||||||
import { DsDynamicLookupRelationExternalSourceTabComponent } from './dynamic-lookup-relation-external-source-tab.component';
|
import { DsDynamicLookupRelationExternalSourceTabComponent } from './dynamic-lookup-relation-external-source-tab.component';
|
||||||
import { fadeIn, fadeInOut } from '../../../../../animations/fade';
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'ds-themed-dynamic-lookup-relation-external-source-tab',
|
selector: 'ds-themed-dynamic-lookup-relation-external-source-tab',
|
||||||
styleUrls: [],
|
styleUrls: [],
|
||||||
templateUrl: '../../../../../theme-support/themed.component.html',
|
templateUrl: '../../../../../theme-support/themed.component.html',
|
||||||
providers: [
|
|
||||||
{
|
|
||||||
provide: SEARCH_CONFIG_SERVICE,
|
|
||||||
useClass: SearchConfigurationService
|
|
||||||
}
|
|
||||||
],
|
|
||||||
animations: [
|
|
||||||
fadeIn,
|
|
||||||
fadeInOut
|
|
||||||
]
|
|
||||||
})
|
})
|
||||||
export class ThemedDynamicLookupRelationExternalSourceTabComponent extends ThemedComponent<DsDynamicLookupRelationExternalSourceTabComponent> {
|
export class ThemedDynamicLookupRelationExternalSourceTabComponent extends ThemedComponent<DsDynamicLookupRelationExternalSourceTabComponent> {
|
||||||
protected inAndOutputNames: (keyof DsDynamicLookupRelationExternalSourceTabComponent & keyof this)[] = ['label', 'listId',
|
protected inAndOutputNames: (keyof DsDynamicLookupRelationExternalSourceTabComponent & keyof this)[] = ['label', 'listId',
|
||||||
@@ -44,7 +31,7 @@ export class ThemedDynamicLookupRelationExternalSourceTabComponent extends Theme
|
|||||||
|
|
||||||
@Input() repeatable: boolean;
|
@Input() repeatable: boolean;
|
||||||
|
|
||||||
@Output() importedObject: EventEmitter<ListableObject> = new EventEmitter<ListableObject>();
|
@Output() importedObject: EventEmitter<ListableObject> = new EventEmitter();
|
||||||
|
|
||||||
@Input() externalSource: ExternalSource;
|
@Input() externalSource: ExternalSource;
|
||||||
|
|
||||||
|
@@ -10,19 +10,11 @@ import { Item } from '../../../../../../core/shared/item.model';
|
|||||||
import { SearchResult } from '../../../../../search/models/search-result.model';
|
import { SearchResult } from '../../../../../search/models/search-result.model';
|
||||||
import { SearchObjects } from '../../../../../search/models/search-objects.model';
|
import { SearchObjects } from '../../../../../search/models/search-objects.model';
|
||||||
import { DSpaceObject } from '../../../../../../core/shared/dspace-object.model';
|
import { DSpaceObject } from '../../../../../../core/shared/dspace-object.model';
|
||||||
import { SEARCH_CONFIG_SERVICE } from '../../../../../../my-dspace-page/my-dspace-page.component';
|
|
||||||
import { SearchConfigurationService } from '../../../../../../core/shared/search/search-configuration.service';
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'ds-themed-dynamic-lookup-relation-search-tab',
|
selector: 'ds-themed-dynamic-lookup-relation-search-tab',
|
||||||
styleUrls: [],
|
styleUrls: [],
|
||||||
templateUrl: '../../../../../theme-support/themed.component.html',
|
templateUrl: '../../../../../theme-support/themed.component.html',
|
||||||
providers: [
|
|
||||||
{
|
|
||||||
provide: SEARCH_CONFIG_SERVICE,
|
|
||||||
useClass: SearchConfigurationService
|
|
||||||
}
|
|
||||||
]
|
|
||||||
})
|
})
|
||||||
export class ThemedDynamicLookupRelationSearchTabComponent extends ThemedComponent<DsDynamicLookupRelationSearchTabComponent> {
|
export class ThemedDynamicLookupRelationSearchTabComponent extends ThemedComponent<DsDynamicLookupRelationSearchTabComponent> {
|
||||||
protected inAndOutputNames: (keyof DsDynamicLookupRelationSearchTabComponent & keyof this)[] = ['relationship', 'listId',
|
protected inAndOutputNames: (keyof DsDynamicLookupRelationSearchTabComponent & keyof this)[] = ['relationship', 'listId',
|
||||||
@@ -51,11 +43,11 @@ export class ThemedDynamicLookupRelationSearchTabComponent extends ThemedCompone
|
|||||||
|
|
||||||
@Input() isEditRelationship: boolean;
|
@Input() isEditRelationship: boolean;
|
||||||
|
|
||||||
@Output() deselectObject: EventEmitter<ListableObject> = new EventEmitter<ListableObject>();
|
@Output() deselectObject: EventEmitter<ListableObject> = new EventEmitter();
|
||||||
|
|
||||||
@Output() selectObject: EventEmitter<ListableObject> = new EventEmitter<ListableObject>();
|
@Output() selectObject: EventEmitter<ListableObject> = new EventEmitter();
|
||||||
|
|
||||||
@Output() resultFound: EventEmitter<SearchObjects<DSpaceObject>> = new EventEmitter<SearchObjects<DSpaceObject>>();
|
@Output() resultFound: EventEmitter<SearchObjects<DSpaceObject>> = new EventEmitter();
|
||||||
|
|
||||||
protected getComponentName(): string {
|
protected getComponentName(): string {
|
||||||
return 'DsDynamicLookupRelationSearchTabComponent';
|
return 'DsDynamicLookupRelationSearchTabComponent';
|
||||||
|
@@ -14,8 +14,8 @@ import { ThemeService } from '../theme-support/theme.service';
|
|||||||
export class ThemedLoadingComponent extends ThemedComponent<LoadingComponent> {
|
export class ThemedLoadingComponent extends ThemedComponent<LoadingComponent> {
|
||||||
|
|
||||||
@Input() message: string;
|
@Input() message: string;
|
||||||
@Input() showMessage = true;
|
@Input() showMessage: boolean;
|
||||||
@Input() spinner = false;
|
@Input() spinner: boolean;
|
||||||
|
|
||||||
protected inAndOutputNames: (keyof LoadingComponent & keyof this)[] = ['message', 'showMessage', 'spinner'];
|
protected inAndOutputNames: (keyof LoadingComponent & keyof this)[] = ['message', 'showMessage', 'spinner'];
|
||||||
|
|
||||||
|
@@ -1,11 +1,10 @@
|
|||||||
import { ChangeDetectorRef, Component, ComponentFactoryResolver, Input } from '@angular/core';
|
import { Component, Input } from '@angular/core';
|
||||||
import { ThemedComponent } from '../../../theme-support/themed.component';
|
import { ThemedComponent } from '../../../theme-support/themed.component';
|
||||||
import { ItemListPreviewComponent } from './item-list-preview.component';
|
import { ItemListPreviewComponent } from './item-list-preview.component';
|
||||||
import { Item } from '../../../../core/shared/item.model';
|
import { Item } from '../../../../core/shared/item.model';
|
||||||
import { MyDspaceItemStatusType } from '../../../object-collection/shared/mydspace-item-status/my-dspace-item-status-type';
|
import { MyDspaceItemStatusType } from '../../../object-collection/shared/mydspace-item-status/my-dspace-item-status-type';
|
||||||
import { SearchResult } from '../../../search/models/search-result.model';
|
import { SearchResult } from '../../../search/models/search-result.model';
|
||||||
import { WorkflowItem } from 'src/app/core/submission/models/workflowitem.model';
|
import { WorkflowItem } from 'src/app/core/submission/models/workflowitem.model';
|
||||||
import { ThemeService } from 'src/app/shared/theme-support/theme.service';
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Themed wrapper for ItemListPreviewComponent
|
* Themed wrapper for ItemListPreviewComponent
|
||||||
@@ -24,22 +23,10 @@ export class ThemedItemListPreviewComponent extends ThemedComponent<ItemListPrev
|
|||||||
|
|
||||||
@Input() status: MyDspaceItemStatusType;
|
@Input() status: MyDspaceItemStatusType;
|
||||||
|
|
||||||
@Input() showSubmitter = false;
|
@Input() showSubmitter: boolean;
|
||||||
|
|
||||||
@Input() workflowItem: WorkflowItem;
|
@Input() workflowItem: WorkflowItem;
|
||||||
|
|
||||||
constructor(
|
|
||||||
protected resolver: ComponentFactoryResolver,
|
|
||||||
protected cdr: ChangeDetectorRef,
|
|
||||||
protected themeService: ThemeService,
|
|
||||||
) {
|
|
||||||
super(resolver, cdr, themeService);
|
|
||||||
}
|
|
||||||
|
|
||||||
ngOnInit() {
|
|
||||||
super.ngOnInit();
|
|
||||||
}
|
|
||||||
|
|
||||||
protected getComponentName(): string {
|
protected getComponentName(): string {
|
||||||
return 'ItemListPreviewComponent';
|
return 'ItemListPreviewComponent';
|
||||||
}
|
}
|
||||||
|
@@ -1,7 +1,6 @@
|
|||||||
import {Component, EventEmitter, Input, Output} from '@angular/core';
|
import {Component, EventEmitter, Input, Output} from '@angular/core';
|
||||||
import { ObjectListComponent } from './object-list.component';
|
import { ObjectListComponent } from './object-list.component';
|
||||||
import { ThemedComponent } from '../theme-support/themed.component';
|
import { ThemedComponent } from '../theme-support/themed.component';
|
||||||
import {ViewMode} from '../../core/shared/view-mode.model';
|
|
||||||
import {PaginationComponentOptions} from '../pagination/pagination-component-options.model';
|
import {PaginationComponentOptions} from '../pagination/pagination-component-options.model';
|
||||||
import {SortDirection, SortOptions} from '../../core/cache/models/sort-options.model';
|
import {SortDirection, SortOptions} from '../../core/cache/models/sort-options.model';
|
||||||
import {CollectionElementLinkType} from '../object-collection/collection-element-link.type';
|
import {CollectionElementLinkType} from '../object-collection/collection-element-link.type';
|
||||||
@@ -19,10 +18,6 @@ import {ListableObject} from '../object-collection/shared/listable-object.model'
|
|||||||
templateUrl: '../theme-support/themed.component.html',
|
templateUrl: '../theme-support/themed.component.html',
|
||||||
})
|
})
|
||||||
export class ThemedObjectListComponent extends ThemedComponent<ObjectListComponent> {
|
export class ThemedObjectListComponent extends ThemedComponent<ObjectListComponent> {
|
||||||
/**
|
|
||||||
* The view mode of the this component
|
|
||||||
*/
|
|
||||||
viewMode = ViewMode.ListElement;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The current pagination configuration
|
* The current pagination configuration
|
||||||
@@ -37,18 +32,20 @@ export class ThemedObjectListComponent extends ThemedComponent<ObjectListCompone
|
|||||||
/**
|
/**
|
||||||
* Whether or not the list elements have a border
|
* Whether or not the list elements have a border
|
||||||
*/
|
*/
|
||||||
@Input() hasBorder = false;
|
@Input() hasBorder: boolean;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The whether or not the gear is hidden
|
* The whether or not the gear is hidden
|
||||||
*/
|
*/
|
||||||
@Input() hideGear = false;
|
@Input() hideGear: boolean;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether or not the pager is visible when there is only a single page of results
|
* Whether or not the pager is visible when there is only a single page of results
|
||||||
*/
|
*/
|
||||||
@Input() hidePagerWhenSinglePage = true;
|
@Input() hidePagerWhenSinglePage: boolean;
|
||||||
@Input() selectable = false;
|
|
||||||
|
@Input() selectable: boolean;
|
||||||
|
|
||||||
@Input() selectionConfig: { repeatable: boolean, listId: string };
|
@Input() selectionConfig: { repeatable: boolean, listId: string };
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -64,12 +61,12 @@ export class ThemedObjectListComponent extends ThemedComponent<ObjectListCompone
|
|||||||
/**
|
/**
|
||||||
* Option for hiding the pagination detail
|
* Option for hiding the pagination detail
|
||||||
*/
|
*/
|
||||||
@Input() hidePaginationDetail = false;
|
@Input() hidePaginationDetail: boolean;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether or not to add an import button to the object
|
* Whether or not to add an import button to the object
|
||||||
*/
|
*/
|
||||||
@Input() importable = false;
|
@Input() importable: boolean;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Config used for the import button
|
* Config used for the import button
|
||||||
@@ -79,42 +76,24 @@ export class ThemedObjectListComponent extends ThemedComponent<ObjectListCompone
|
|||||||
/**
|
/**
|
||||||
* Whether or not the pagination should be rendered as simple previous and next buttons instead of the normal pagination
|
* Whether or not the pagination should be rendered as simple previous and next buttons instead of the normal pagination
|
||||||
*/
|
*/
|
||||||
@Input() showPaginator = true;
|
@Input() showPaginator: boolean;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Emit when one of the listed object has changed.
|
* Emit when one of the listed object has changed.
|
||||||
*/
|
*/
|
||||||
@Output() contentChange = new EventEmitter<any>();
|
@Output() contentChange: EventEmitter<any> = new EventEmitter();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* If showPaginator is set to true, emit when the previous button is clicked
|
* If showPaginator is set to true, emit when the previous button is clicked
|
||||||
*/
|
*/
|
||||||
@Output() prev = new EventEmitter<boolean>();
|
@Output() prev: EventEmitter<boolean> = new EventEmitter();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* If showPaginator is set to true, emit when the next button is clicked
|
* If showPaginator is set to true, emit when the next button is clicked
|
||||||
*/
|
*/
|
||||||
@Output() next = new EventEmitter<boolean>();
|
@Output() next: EventEmitter<boolean> = new EventEmitter();
|
||||||
|
|
||||||
/**
|
@Input() objects: RemoteData<PaginatedList<ListableObject>>;
|
||||||
* The current listable objects
|
|
||||||
*/
|
|
||||||
private _objects: RemoteData<PaginatedList<ListableObject>>;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Setter for the objects
|
|
||||||
* @param objects The new objects
|
|
||||||
*/
|
|
||||||
@Input() set objects(objects: RemoteData<PaginatedList<ListableObject>>) {
|
|
||||||
this._objects = objects;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Getter to return the current objects
|
|
||||||
*/
|
|
||||||
get objects() {
|
|
||||||
return this._objects;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An event fired when the page is changed.
|
* An event fired when the page is changed.
|
||||||
@@ -123,48 +102,45 @@ export class ThemedObjectListComponent extends ThemedComponent<ObjectListCompone
|
|||||||
@Output() change: EventEmitter<{
|
@Output() change: EventEmitter<{
|
||||||
pagination: PaginationComponentOptions,
|
pagination: PaginationComponentOptions,
|
||||||
sort: SortOptions
|
sort: SortOptions
|
||||||
}> = new EventEmitter<{
|
}> = new EventEmitter();
|
||||||
pagination: PaginationComponentOptions,
|
|
||||||
sort: SortOptions
|
|
||||||
}>();
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An event fired when the page is changed.
|
* An event fired when the page is changed.
|
||||||
* Event's payload equals to the newly selected page.
|
* Event's payload equals to the newly selected page.
|
||||||
*/
|
*/
|
||||||
@Output() pageChange: EventEmitter<number> = new EventEmitter<number>();
|
@Output() pageChange: EventEmitter<number> = new EventEmitter();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An event fired when the page wsize is changed.
|
* An event fired when the page wsize is changed.
|
||||||
* Event's payload equals to the newly selected page size.
|
* Event's payload equals to the newly selected page size.
|
||||||
*/
|
*/
|
||||||
@Output() pageSizeChange: EventEmitter<number> = new EventEmitter<number>();
|
@Output() pageSizeChange: EventEmitter<number> = new EventEmitter();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An event fired when the sort direction is changed.
|
* An event fired when the sort direction is changed.
|
||||||
* Event's payload equals to the newly selected sort direction.
|
* Event's payload equals to the newly selected sort direction.
|
||||||
*/
|
*/
|
||||||
@Output() sortDirectionChange: EventEmitter<SortDirection> = new EventEmitter<SortDirection>();
|
@Output() sortDirectionChange: EventEmitter<SortDirection> = new EventEmitter();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An event fired when on of the pagination parameters changes
|
* An event fired when on of the pagination parameters changes
|
||||||
*/
|
*/
|
||||||
@Output() paginationChange: EventEmitter<any> = new EventEmitter<any>();
|
@Output() paginationChange: EventEmitter<any> = new EventEmitter();
|
||||||
|
|
||||||
@Output() deselectObject: EventEmitter<ListableObject> = new EventEmitter<ListableObject>();
|
@Output() deselectObject: EventEmitter<ListableObject> = new EventEmitter();
|
||||||
|
|
||||||
@Output() selectObject: EventEmitter<ListableObject> = new EventEmitter<ListableObject>();
|
@Output() selectObject: EventEmitter<ListableObject> = new EventEmitter();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Send an import event to the parent component
|
* Send an import event to the parent component
|
||||||
*/
|
*/
|
||||||
@Output() importObject: EventEmitter<ListableObject> = new EventEmitter<ListableObject>();
|
@Output() importObject: EventEmitter<ListableObject> = new EventEmitter();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An event fired when the sort field is changed.
|
* An event fired when the sort field is changed.
|
||||||
* Event's payload equals to the newly selected sort field.
|
* Event's payload equals to the newly selected sort field.
|
||||||
*/
|
*/
|
||||||
@Output() sortFieldChange: EventEmitter<string> = new EventEmitter<string>();
|
@Output() sortFieldChange: EventEmitter<string> = new EventEmitter();
|
||||||
|
|
||||||
inAndOutputNames: (keyof ObjectListComponent & keyof this)[] = [
|
inAndOutputNames: (keyof ObjectListComponent & keyof this)[] = [
|
||||||
'config',
|
'config',
|
||||||
|
@@ -29,7 +29,7 @@ export class ThemedSearchResultsComponent extends ThemedComponent<SearchResultsC
|
|||||||
|
|
||||||
@Input() searchConfig: PaginatedSearchOptions;
|
@Input() searchConfig: PaginatedSearchOptions;
|
||||||
|
|
||||||
@Input() showCsvExport = false;
|
@Input() showCsvExport: boolean;
|
||||||
|
|
||||||
@Input() sortConfig: SortOptions;
|
@Input() sortConfig: SortOptions;
|
||||||
|
|
||||||
@@ -37,21 +37,21 @@ export class ThemedSearchResultsComponent extends ThemedComponent<SearchResultsC
|
|||||||
|
|
||||||
@Input() configuration: string;
|
@Input() configuration: string;
|
||||||
|
|
||||||
@Input() disableHeader = false;
|
@Input() disableHeader: boolean;
|
||||||
|
|
||||||
@Input() selectable = false;
|
@Input() selectable: boolean;
|
||||||
|
|
||||||
@Input() context: Context;
|
@Input() context: Context;
|
||||||
|
|
||||||
@Input() hidePaginationDetail = false;
|
@Input() hidePaginationDetail: boolean;
|
||||||
|
|
||||||
@Input() selectionConfig: SelectionConfig = null;
|
@Input() selectionConfig: SelectionConfig;
|
||||||
|
|
||||||
@Output() contentChange: EventEmitter<ListableObject> = new EventEmitter<ListableObject>();
|
@Output() contentChange: EventEmitter<ListableObject> = new EventEmitter();
|
||||||
|
|
||||||
@Output() deselectObject: EventEmitter<ListableObject> = new EventEmitter<ListableObject>();
|
@Output() deselectObject: EventEmitter<ListableObject> = new EventEmitter();
|
||||||
|
|
||||||
@Output() selectObject: EventEmitter<ListableObject> = new EventEmitter<ListableObject>();
|
@Output() selectObject: EventEmitter<ListableObject> = new EventEmitter();
|
||||||
|
|
||||||
protected getComponentName(): string {
|
protected getComponentName(): string {
|
||||||
return 'SearchResultsComponent';
|
return 'SearchResultsComponent';
|
||||||
|
@@ -136,7 +136,7 @@ export class SearchComponent implements OnInit {
|
|||||||
/**
|
/**
|
||||||
* List of available view mode
|
* List of available view mode
|
||||||
*/
|
*/
|
||||||
@Input() useUniquePageId: false;
|
@Input() useUniquePageId: boolean;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* List of available view mode
|
* List of available view mode
|
||||||
|
@@ -11,7 +11,7 @@ import { DSpaceObject } from '../../core/shared/dspace-object.model';
|
|||||||
import { ListableObject } from '../object-collection/shared/listable-object.model';
|
import { ListableObject } from '../object-collection/shared/listable-object.model';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Themed wrapper for SearchComponent
|
* Themed wrapper for {@link SearchComponent}
|
||||||
*/
|
*/
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'ds-themed-search',
|
selector: 'ds-themed-search',
|
||||||
@@ -21,53 +21,53 @@ import { ListableObject } from '../object-collection/shared/listable-object.mode
|
|||||||
export class ThemedSearchComponent extends ThemedComponent<SearchComponent> {
|
export class ThemedSearchComponent extends ThemedComponent<SearchComponent> {
|
||||||
protected inAndOutputNames: (keyof SearchComponent & keyof this)[] = ['configurationList', 'context', 'configuration', 'fixedFilterQuery', 'useCachedVersionIfAvailable', 'inPlaceSearch', 'linkType', 'paginationId', 'searchEnabled', 'sideBarWidth', 'searchFormPlaceholder', 'selectable', 'selectionConfig', 'showCsvExport', 'showSidebar', 'showViewModes', 'useUniquePageId', 'viewModeList', 'showScopeSelector', 'resultFound', 'deselectObject', 'selectObject', 'trackStatistics', 'query'];
|
protected inAndOutputNames: (keyof SearchComponent & keyof this)[] = ['configurationList', 'context', 'configuration', 'fixedFilterQuery', 'useCachedVersionIfAvailable', 'inPlaceSearch', 'linkType', 'paginationId', 'searchEnabled', 'sideBarWidth', 'searchFormPlaceholder', 'selectable', 'selectionConfig', 'showCsvExport', 'showSidebar', 'showViewModes', 'useUniquePageId', 'viewModeList', 'showScopeSelector', 'resultFound', 'deselectObject', 'selectObject', 'trackStatistics', 'query'];
|
||||||
|
|
||||||
@Input() configurationList: SearchConfigurationOption[] = [];
|
@Input() configurationList: SearchConfigurationOption[];
|
||||||
|
|
||||||
@Input() context: Context = Context.Search;
|
@Input() context: Context;
|
||||||
|
|
||||||
@Input() configuration = 'default';
|
@Input() configuration: string;
|
||||||
|
|
||||||
@Input() fixedFilterQuery: string;
|
@Input() fixedFilterQuery: string;
|
||||||
|
|
||||||
@Input() useCachedVersionIfAvailable = true;
|
@Input() useCachedVersionIfAvailable: boolean;
|
||||||
|
|
||||||
@Input() inPlaceSearch = true;
|
@Input() inPlaceSearch: boolean;
|
||||||
|
|
||||||
@Input() linkType: CollectionElementLinkType;
|
@Input() linkType: CollectionElementLinkType;
|
||||||
|
|
||||||
@Input() paginationId = 'spc';
|
@Input() paginationId: string;
|
||||||
|
|
||||||
@Input() searchEnabled = true;
|
@Input() searchEnabled: boolean;
|
||||||
|
|
||||||
@Input() sideBarWidth = 3;
|
@Input() sideBarWidth: number;
|
||||||
|
|
||||||
@Input() searchFormPlaceholder = 'search.search-form.placeholder';
|
@Input() searchFormPlaceholder: string;
|
||||||
|
|
||||||
@Input() selectable = false;
|
@Input() selectable: boolean;
|
||||||
|
|
||||||
@Input() selectionConfig: SelectionConfig;
|
@Input() selectionConfig: SelectionConfig;
|
||||||
|
|
||||||
@Input() showCsvExport = false;
|
@Input() showCsvExport: boolean;
|
||||||
|
|
||||||
@Input() showSidebar = true;
|
@Input() showSidebar: boolean;
|
||||||
|
|
||||||
@Input() showViewModes = true;
|
@Input() showViewModes: boolean;
|
||||||
|
|
||||||
@Input() useUniquePageId: false;
|
@Input() useUniquePageId: boolean;
|
||||||
|
|
||||||
@Input() viewModeList: ViewMode[];
|
@Input() viewModeList: ViewMode[];
|
||||||
|
|
||||||
@Input() showScopeSelector = true;
|
@Input() showScopeSelector: boolean;
|
||||||
|
|
||||||
@Input() trackStatistics = false;
|
@Input() trackStatistics: boolean;
|
||||||
|
|
||||||
@Input() query: string;
|
@Input() query: string;
|
||||||
|
|
||||||
@Output() resultFound: EventEmitter<SearchObjects<DSpaceObject>> = new EventEmitter<SearchObjects<DSpaceObject>>();
|
@Output() resultFound: EventEmitter<SearchObjects<DSpaceObject>> = new EventEmitter();
|
||||||
|
|
||||||
@Output() deselectObject: EventEmitter<ListableObject> = new EventEmitter<ListableObject>();
|
@Output() deselectObject: EventEmitter<ListableObject> = new EventEmitter();
|
||||||
|
|
||||||
@Output() selectObject: EventEmitter<ListableObject> = new EventEmitter<ListableObject>();
|
@Output() selectObject: EventEmitter<ListableObject> = new EventEmitter();
|
||||||
|
|
||||||
protected getComponentName(): string {
|
protected getComponentName(): string {
|
||||||
return 'SearchComponent';
|
return 'SearchComponent';
|
||||||
|
@@ -17,6 +17,7 @@ export class AuthServiceStub {
|
|||||||
token: AuthTokenInfo = new AuthTokenInfo('token_test');
|
token: AuthTokenInfo = new AuthTokenInfo('token_test');
|
||||||
impersonating: string;
|
impersonating: string;
|
||||||
private _tokenExpired = false;
|
private _tokenExpired = false;
|
||||||
|
private _isExternalAuth = false;
|
||||||
private redirectUrl;
|
private redirectUrl;
|
||||||
|
|
||||||
constructor() {
|
constructor() {
|
||||||
@@ -122,6 +123,13 @@ export class AuthServiceStub {
|
|||||||
checkAuthenticationCookie() {
|
checkAuthenticationCookie() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
setExternalAuthStatus(externalCookie: boolean) {
|
||||||
|
this._isExternalAuth = externalCookie;
|
||||||
|
}
|
||||||
|
|
||||||
|
isExternalAuthentication(): Observable<boolean> {
|
||||||
|
return observableOf(this._isExternalAuth);
|
||||||
|
}
|
||||||
|
|
||||||
retrieveAuthMethodsFromAuthStatus(status: AuthStatus) {
|
retrieveAuthMethodsFromAuthStatus(status: AuthStatus) {
|
||||||
return observableOf(authMethodsMock);
|
return observableOf(authMethodsMock);
|
||||||
|
@@ -208,7 +208,7 @@
|
|||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"admin.registries.bitstream-formats.table.name": "Name",
|
"admin.registries.bitstream-formats.table.name": "Name",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"admin.registries.bitstream-formats.table.id" : "ID",
|
"admin.registries.bitstream-formats.table.id": "ID",
|
||||||
|
|
||||||
// "admin.registries.bitstream-formats.table.return": "Return",
|
// "admin.registries.bitstream-formats.table.return": "Return",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -314,7 +314,7 @@
|
|||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"admin.registries.schema.fields.table.field": "Field",
|
"admin.registries.schema.fields.table.field": "Field",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"admin.registries.schema.fields.table.id" : "ID",
|
"admin.registries.schema.fields.table.id": "ID",
|
||||||
|
|
||||||
// "admin.registries.schema.fields.table.scopenote": "Scope Note",
|
// "admin.registries.schema.fields.table.scopenote": "Scope Note",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -2050,7 +2050,7 @@
|
|||||||
|
|
||||||
// "curation-task.task.checklinks.label": "Check Links in Metadata",
|
// "curation-task.task.checklinks.label": "Check Links in Metadata",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"curation-task.task.checklinks.label": "Check Links in Metadata",
|
"curation-task.task.checklinks.label": "Check Links in Metadata",
|
||||||
|
|
||||||
// "curation-task.task.noop.label": "NOOP",
|
// "curation-task.task.noop.label": "NOOP",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -2305,7 +2305,7 @@
|
|||||||
|
|
||||||
// "footer.link.end-user-agreement":"End User Agreement",
|
// "footer.link.end-user-agreement":"End User Agreement",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"footer.link.end-user-agreement":"End User Agreement",
|
"footer.link.end-user-agreement": "End User Agreement",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -2629,9 +2629,9 @@
|
|||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.bitstreams.upload.bundle.new": "Create bundle",
|
"item.bitstreams.upload.bundle.new": "Create bundle",
|
||||||
|
|
||||||
// "item.bitstreams.upload.bundles.empty": "This item doesn\'t contain any bundles to upload a bitstream to.",
|
// "item.bitstreams.upload.bundles.empty": "This item doesn't contain any bundles to upload a bitstream to.",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.bitstreams.upload.bundles.empty": "This item doesn\'t contain any bundles to upload a bitstream to.",
|
"item.bitstreams.upload.bundles.empty": "This item doesn't contain any bundles to upload a bitstream to.",
|
||||||
|
|
||||||
// "item.bitstreams.upload.cancel": "Cancel",
|
// "item.bitstreams.upload.cancel": "Cancel",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -3370,10 +3370,6 @@
|
|||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.page.description": "Description",
|
"item.page.description": "Description",
|
||||||
|
|
||||||
// "item.page.edit": "Edit this item",
|
|
||||||
// TODO New key - Add a translation
|
|
||||||
"item.page.edit": "Edit this item",
|
|
||||||
|
|
||||||
// "item.page.journal-issn": "Journal ISSN",
|
// "item.page.journal-issn": "Journal ISSN",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.page.journal-issn": "Journal ISSN",
|
"item.page.journal-issn": "Journal ISSN",
|
||||||
@@ -3510,11 +3506,11 @@
|
|||||||
|
|
||||||
// "item.page.filesection.original.bundle" : "Original bundle",
|
// "item.page.filesection.original.bundle" : "Original bundle",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.page.filesection.original.bundle" : "Original bundle",
|
"item.page.filesection.original.bundle": "Original bundle",
|
||||||
|
|
||||||
// "item.page.filesection.license.bundle" : "License bundle",
|
// "item.page.filesection.license.bundle" : "License bundle",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.page.filesection.license.bundle" : "License bundle",
|
"item.page.filesection.license.bundle": "License bundle",
|
||||||
|
|
||||||
// "item.preview.dc.identifier.uri": "Identifier:",
|
// "item.preview.dc.identifier.uri": "Identifier:",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -4566,19 +4562,19 @@
|
|||||||
|
|
||||||
// "process.detail.arguments" : "Arguments",
|
// "process.detail.arguments" : "Arguments",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.arguments" : "Arguments",
|
"process.detail.arguments": "Arguments",
|
||||||
|
|
||||||
// "process.detail.arguments.empty" : "This process doesn't contain any arguments",
|
// "process.detail.arguments.empty" : "This process doesn't contain any arguments",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.arguments.empty" : "This process doesn't contain any arguments",
|
"process.detail.arguments.empty": "This process doesn't contain any arguments",
|
||||||
|
|
||||||
// "process.detail.back" : "Back",
|
// "process.detail.back" : "Back",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.back" : "Back",
|
"process.detail.back": "Back",
|
||||||
|
|
||||||
// "process.detail.output" : "Process Output",
|
// "process.detail.output" : "Process Output",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.output" : "Process Output",
|
"process.detail.output": "Process Output",
|
||||||
|
|
||||||
// "process.detail.logs.button": "Retrieve process output",
|
// "process.detail.logs.button": "Retrieve process output",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -4594,61 +4590,61 @@
|
|||||||
|
|
||||||
// "process.detail.output-files" : "Output Files",
|
// "process.detail.output-files" : "Output Files",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.output-files" : "Output Files",
|
"process.detail.output-files": "Output Files",
|
||||||
|
|
||||||
// "process.detail.output-files.empty" : "This process doesn't contain any output files",
|
// "process.detail.output-files.empty" : "This process doesn't contain any output files",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.output-files.empty" : "This process doesn't contain any output files",
|
"process.detail.output-files.empty": "This process doesn't contain any output files",
|
||||||
|
|
||||||
// "process.detail.script" : "Script",
|
// "process.detail.script" : "Script",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.script" : "Script",
|
"process.detail.script": "Script",
|
||||||
|
|
||||||
// "process.detail.title" : "Process: {{ id }} - {{ name }}",
|
// "process.detail.title" : "Process: {{ id }} - {{ name }}",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.title" : "Process: {{ id }} - {{ name }}",
|
"process.detail.title": "Process: {{ id }} - {{ name }}",
|
||||||
|
|
||||||
// "process.detail.start-time" : "Start time",
|
// "process.detail.start-time" : "Start time",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.start-time" : "Start time",
|
"process.detail.start-time": "Start time",
|
||||||
|
|
||||||
// "process.detail.end-time" : "Finish time",
|
// "process.detail.end-time" : "Finish time",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.end-time" : "Finish time",
|
"process.detail.end-time": "Finish time",
|
||||||
|
|
||||||
// "process.detail.status" : "Status",
|
// "process.detail.status" : "Status",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.status" : "Status",
|
"process.detail.status": "Status",
|
||||||
|
|
||||||
// "process.detail.create" : "Create similar process",
|
// "process.detail.create" : "Create similar process",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.create" : "Create similar process",
|
"process.detail.create": "Create similar process",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// "process.overview.table.finish" : "Finish time",
|
// "process.overview.table.finish" : "Finish time",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.overview.table.finish" : "Finish time",
|
"process.overview.table.finish": "Finish time",
|
||||||
|
|
||||||
// "process.overview.table.id" : "Process ID",
|
// "process.overview.table.id" : "Process ID",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.overview.table.id" : "Process ID",
|
"process.overview.table.id": "Process ID",
|
||||||
|
|
||||||
// "process.overview.table.name" : "Name",
|
// "process.overview.table.name" : "Name",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.overview.table.name" : "Name",
|
"process.overview.table.name": "Name",
|
||||||
|
|
||||||
// "process.overview.table.start" : "Start time",
|
// "process.overview.table.start" : "Start time",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.overview.table.start" : "Start time",
|
"process.overview.table.start": "Start time",
|
||||||
|
|
||||||
// "process.overview.table.status" : "Status",
|
// "process.overview.table.status" : "Status",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.overview.table.status" : "Status",
|
"process.overview.table.status": "Status",
|
||||||
|
|
||||||
// "process.overview.table.user" : "User",
|
// "process.overview.table.user" : "User",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.overview.table.user" : "User",
|
"process.overview.table.user": "User",
|
||||||
|
|
||||||
// "process.overview.title": "Processes Overview",
|
// "process.overview.title": "Processes Overview",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -6263,9 +6259,9 @@
|
|||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Search Results",
|
"submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Search Results",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don\'t you can still use it for this submission.",
|
// "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don't you can still use it for this submission.",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don\'t you can still use it for this submission.",
|
"submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don't you can still use it for this submission.",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant",
|
// "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -6746,7 +6742,7 @@
|
|||||||
|
|
||||||
// "workflow-item.send-back.button.confirm": "Send back"
|
// "workflow-item.send-back.button.confirm": "Send back"
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"workflow-item.send-back.button.confirm": "Send back"
|
"workflow-item.send-back.button.confirm": "Send back",
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -166,7 +166,7 @@
|
|||||||
// "admin.registries.bitstream-formats.table.name": "Name",
|
// "admin.registries.bitstream-formats.table.name": "Name",
|
||||||
"admin.registries.bitstream-formats.table.name": "নাম",
|
"admin.registries.bitstream-formats.table.name": "নাম",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"admin.registries.bitstream-formats.table.id" : "ID",
|
"admin.registries.bitstream-formats.table.id": "ID",
|
||||||
|
|
||||||
// "admin.registries.bitstream-formats.table.return": "Back",
|
// "admin.registries.bitstream-formats.table.return": "Back",
|
||||||
"admin.registries.bitstream-formats.table.return": "পেছনে",
|
"admin.registries.bitstream-formats.table.return": "পেছনে",
|
||||||
@@ -247,7 +247,7 @@
|
|||||||
// "admin.registries.schema.fields.table.field": "Field",
|
// "admin.registries.schema.fields.table.field": "Field",
|
||||||
"admin.registries.schema.fields.table.field": "ক্ষেত্র",
|
"admin.registries.schema.fields.table.field": "ক্ষেত্র",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"admin.registries.schema.fields.table.id" : "ID",
|
"admin.registries.schema.fields.table.id": "ID",
|
||||||
|
|
||||||
// "admin.registries.schema.fields.table.scopenote": "Scope Note",
|
// "admin.registries.schema.fields.table.scopenote": "Scope Note",
|
||||||
"admin.registries.schema.fields.table.scopenote": "স্কোপ নোট",
|
"admin.registries.schema.fields.table.scopenote": "স্কোপ নোট",
|
||||||
@@ -2376,19 +2376,19 @@
|
|||||||
"info.feedback.email-label": "তোমার ইমেইল",
|
"info.feedback.email-label": "তোমার ইমেইল",
|
||||||
|
|
||||||
// "info.feedback.create.success" : "Feedback Sent Successfully!",
|
// "info.feedback.create.success" : "Feedback Sent Successfully!",
|
||||||
"info.feedback.create.success" : "প্রতিক্রিয়া সফলভাবে পাঠানো হয়েছে!",
|
"info.feedback.create.success": "প্রতিক্রিয়া সফলভাবে পাঠানো হয়েছে!",
|
||||||
|
|
||||||
// "info.feedback.error.email.required" : "A valid email address is required",
|
// "info.feedback.error.email.required" : "A valid email address is required",
|
||||||
"info.feedback.error.email.required" : "একটি বৈধ ইমেইল ঠিকানা প্রয়োজন বোধ করা হয়",
|
"info.feedback.error.email.required": "একটি বৈধ ইমেইল ঠিকানা প্রয়োজন বোধ করা হয়",
|
||||||
|
|
||||||
// "info.feedback.error.message.required" : "A comment is required",
|
// "info.feedback.error.message.required" : "A comment is required",
|
||||||
"info.feedback.error.message.required" : "একটি মন্তব্য প্রয়োজন",
|
"info.feedback.error.message.required": "একটি মন্তব্য প্রয়োজন",
|
||||||
|
|
||||||
// "info.feedback.page-label" : "Page",
|
// "info.feedback.page-label" : "Page",
|
||||||
"info.feedback.page-label" : "পৃষ্ঠা",
|
"info.feedback.page-label": "পৃষ্ঠা",
|
||||||
|
|
||||||
// "info.feedback.page_help" : "Tha page related to your feedback",
|
// "info.feedback.page_help" : "Tha page related to your feedback",
|
||||||
"info.feedback.page_help" : "আপনার মতামত সম্পর্কিত পৃষ্ঠা",
|
"info.feedback.page_help": "আপনার মতামত সম্পর্কিত পৃষ্ঠা",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -2425,7 +2425,7 @@
|
|||||||
// "item.bitstreams.upload.bundle.new": "Create bundle",
|
// "item.bitstreams.upload.bundle.new": "Create bundle",
|
||||||
"item.bitstreams.upload.bundle.new": "বান্ডিল তৈরি করুন",
|
"item.bitstreams.upload.bundle.new": "বান্ডিল তৈরি করুন",
|
||||||
|
|
||||||
// "item.bitstreams.upload.bundles.empty": "This item doesn\'t contain any bundles to upload a bitstream to.",
|
// "item.bitstreams.upload.bundles.empty": "This item doesn't contain any bundles to upload a bitstream to.",
|
||||||
"item.bitstreams.upload.bundles.empty": "এই আইটেমটি একটি বিটস্ট্রিম আপলোড করার জন্য কোন bundles থাকে না।",
|
"item.bitstreams.upload.bundles.empty": "এই আইটেমটি একটি বিটস্ট্রিম আপলোড করার জন্য কোন bundles থাকে না।",
|
||||||
|
|
||||||
// "item.bitstreams.upload.cancel": "Cancel",
|
// "item.bitstreams.upload.cancel": "Cancel",
|
||||||
@@ -3113,10 +3113,10 @@
|
|||||||
"item.page.bitstreams.collapse": "ধৈর্য",
|
"item.page.bitstreams.collapse": "ধৈর্য",
|
||||||
|
|
||||||
// "item.page.filesection.original.bundle" : "Original bundle",
|
// "item.page.filesection.original.bundle" : "Original bundle",
|
||||||
"item.page.filesection.original.bundle" : "আসল বান্ডিল",
|
"item.page.filesection.original.bundle": "আসল বান্ডিল",
|
||||||
|
|
||||||
// "item.page.filesection.license.bundle" : "License bundle",
|
// "item.page.filesection.license.bundle" : "License bundle",
|
||||||
"item.page.filesection.license.bundle" : "লাইসেন্স বান্ডিল",
|
"item.page.filesection.license.bundle": "লাইসেন্স বান্ডিল",
|
||||||
|
|
||||||
// "item.page.return": "Back",
|
// "item.page.return": "Back",
|
||||||
"item.page.return": "পেছনে",
|
"item.page.return": "পেছনে",
|
||||||
@@ -3289,13 +3289,13 @@
|
|||||||
"item.version.create.modal.form.summary.placeholder": "নতুন সংস্করণের জন্য সারাংশ সন্নিবেশ করান",
|
"item.version.create.modal.form.summary.placeholder": "নতুন সংস্করণের জন্য সারাংশ সন্নিবেশ করান",
|
||||||
|
|
||||||
// "item.version.create.notification.success" : "New version has been created with version number {{version}}",
|
// "item.version.create.notification.success" : "New version has been created with version number {{version}}",
|
||||||
"item.version.create.notification.success" : "সংস্করণ নম্বর {{version}} দিয়ে নতুন সংস্করণ তৈরি করা হয়েছে",
|
"item.version.create.notification.success": "সংস্করণ নম্বর {{version}} দিয়ে নতুন সংস্করণ তৈরি করা হয়েছে",
|
||||||
|
|
||||||
// "item.version.create.notification.failure" : "New version has not been created",
|
// "item.version.create.notification.failure" : "New version has not been created",
|
||||||
"item.version.create.notification.failure" : "নতুন সংস্করণ তৈরি করা হয়নি",
|
"item.version.create.notification.failure": "নতুন সংস্করণ তৈরি করা হয়নি",
|
||||||
|
|
||||||
// "item.version.create.notification.inProgress" : "A new version cannot be created because there is an inprogress submission in the version history",
|
// "item.version.create.notification.inProgress" : "A new version cannot be created because there is an inprogress submission in the version history",
|
||||||
"item.version.create.notification.inProgress" : "একটি নতুন সংস্করণ তৈরি করা যাবে না কারণ ভার্সন হিস্ট্রিতে একটি জমা ইনপ্রগ্রেসস অবস্থাই রয়েছে",
|
"item.version.create.notification.inProgress": "একটি নতুন সংস্করণ তৈরি করা যাবে না কারণ ভার্সন হিস্ট্রিতে একটি জমা ইনপ্রগ্রেসস অবস্থাই রয়েছে",
|
||||||
|
|
||||||
|
|
||||||
// "item.version.delete.modal.header": "Delete version",
|
// "item.version.delete.modal.header": "Delete version",
|
||||||
@@ -3317,17 +3317,17 @@
|
|||||||
"item.version.delete.modal.button.cancel.tooltip": "এই সংস্করণ মুছে ফেলবেন না",
|
"item.version.delete.modal.button.cancel.tooltip": "এই সংস্করণ মুছে ফেলবেন না",
|
||||||
|
|
||||||
// "item.version.delete.notification.success" : "Version number {{version}} has been deleted",
|
// "item.version.delete.notification.success" : "Version number {{version}} has been deleted",
|
||||||
"item.version.delete.notification.success" : "সংস্করণ নম্বর {{version}} মুছে ফেলা হয়েছে",
|
"item.version.delete.notification.success": "সংস্করণ নম্বর {{version}} মুছে ফেলা হয়েছে",
|
||||||
|
|
||||||
// "item.version.delete.notification.failure" : "Version number {{version}} has not been deleted",
|
// "item.version.delete.notification.failure" : "Version number {{version}} has not been deleted",
|
||||||
"item.version.delete.notification.failure" : "সংস্করণ নম্বর {{version}} মুছে ফেলা হয়নি",
|
"item.version.delete.notification.failure": "সংস্করণ নম্বর {{version}} মুছে ফেলা হয়নি",
|
||||||
|
|
||||||
|
|
||||||
// "item.version.edit.notification.success" : "The summary of version number {{version}} has been changed",
|
// "item.version.edit.notification.success" : "The summary of version number {{version}} has been changed",
|
||||||
"item.version.edit.notification.success" : "সংস্করণ নম্বর {{version}}-এর সারাংশ পরিবর্তন করা হয়েছে",
|
"item.version.edit.notification.success": "সংস্করণ নম্বর {{version}}-এর সারাংশ পরিবর্তন করা হয়েছে",
|
||||||
|
|
||||||
// "item.version.edit.notification.failure" : "The summary of version number {{version}} has not been changed",
|
// "item.version.edit.notification.failure" : "The summary of version number {{version}} has not been changed",
|
||||||
"item.version.edit.notification.failure" : "সংস্করণ নম্বর {{version}}-এর সারাংশ পরিবর্তন করা হয়নি",
|
"item.version.edit.notification.failure": "সংস্করণ নম্বর {{version}}-এর সারাংশ পরিবর্তন করা হয়নি",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -3955,10 +3955,10 @@
|
|||||||
"nav.stop-impersonating": "ই-পারসন ছদ্মবেশী থামান",
|
"nav.stop-impersonating": "ই-পারসন ছদ্মবেশী থামান",
|
||||||
|
|
||||||
// "nav.toggle" : "Toggle navigation",
|
// "nav.toggle" : "Toggle navigation",
|
||||||
"nav.toggle" : "নেভিগেশন টগল করুন",
|
"nav.toggle": "নেভিগেশন টগল করুন",
|
||||||
|
|
||||||
// "nav.user.description" : "User profile bar",
|
// "nav.user.description" : "User profile bar",
|
||||||
"nav.user.description" : "ব্যবহারকারীর প্রোফাইল বার",
|
"nav.user.description": "ব্যবহারকারীর প্রোফাইল বার",
|
||||||
|
|
||||||
// "none.listelement.badge": "Item",
|
// "none.listelement.badge": "Item",
|
||||||
"none.listelement.badge": "আইটেম",
|
"none.listelement.badge": "আইটেম",
|
||||||
@@ -4111,16 +4111,16 @@
|
|||||||
|
|
||||||
|
|
||||||
// "process.detail.arguments" : "Arguments",
|
// "process.detail.arguments" : "Arguments",
|
||||||
"process.detail.arguments" : "যুক্তি",
|
"process.detail.arguments": "যুক্তি",
|
||||||
|
|
||||||
// "process.detail.arguments.empty" : "This process doesn't contain any arguments",
|
// "process.detail.arguments.empty" : "This process doesn't contain any arguments",
|
||||||
"process.detail.arguments.empty" : "এই প্রক্রিয়া কোনো যুক্তি ধারণ করে না",
|
"process.detail.arguments.empty": "এই প্রক্রিয়া কোনো যুক্তি ধারণ করে না",
|
||||||
|
|
||||||
// "process.detail.back" : "Back",
|
// "process.detail.back" : "Back",
|
||||||
"process.detail.back" : "ফিরে যান",
|
"process.detail.back": "ফিরে যান",
|
||||||
|
|
||||||
// "process.detail.output" : "Process Output",
|
// "process.detail.output" : "Process Output",
|
||||||
"process.detail.output" : "প্রসেস আউটপুট",
|
"process.detail.output": "প্রসেস আউটপুট",
|
||||||
|
|
||||||
// "process.detail.logs.button": "Retrieve process output",
|
// "process.detail.logs.button": "Retrieve process output",
|
||||||
"process.detail.logs.button": "প্রক্রিয়া আউটপুট পুনরুদ্ধার",
|
"process.detail.logs.button": "প্রক্রিয়া আউটপুট পুনরুদ্ধার",
|
||||||
@@ -4132,48 +4132,48 @@
|
|||||||
"process.detail.logs.none": "এই প্রক্রিয়া কোন আউটপুট আছে",
|
"process.detail.logs.none": "এই প্রক্রিয়া কোন আউটপুট আছে",
|
||||||
|
|
||||||
// "process.detail.output-files" : "Output Files",
|
// "process.detail.output-files" : "Output Files",
|
||||||
"process.detail.output-files" : "আউটপুট ফাইল",
|
"process.detail.output-files": "আউটপুট ফাইল",
|
||||||
|
|
||||||
// "process.detail.output-files.empty" : "This process doesn't contain any output files",
|
// "process.detail.output-files.empty" : "This process doesn't contain any output files",
|
||||||
"process.detail.output-files.empty" : "এই প্রক্রিয়ায় কোনো আউটপুট ফাইল নেই",
|
"process.detail.output-files.empty": "এই প্রক্রিয়ায় কোনো আউটপুট ফাইল নেই",
|
||||||
|
|
||||||
// "process.detail.script" : "Script",
|
// "process.detail.script" : "Script",
|
||||||
"process.detail.script" : "লিপি",
|
"process.detail.script": "লিপি",
|
||||||
|
|
||||||
// "process.detail.title" : "Process: {{ id }} - {{ name }}",
|
// "process.detail.title" : "Process: {{ id }} - {{ name }}",
|
||||||
"process.detail.title" : "প্রক্রিয়া: {{ id }} - {{ name }}",
|
"process.detail.title": "প্রক্রিয়া: {{ id }} - {{ name }}",
|
||||||
|
|
||||||
// "process.detail.start-time" : "Start time",
|
// "process.detail.start-time" : "Start time",
|
||||||
"process.detail.start-time" : "শুরুর সময়",
|
"process.detail.start-time": "শুরুর সময়",
|
||||||
|
|
||||||
// "process.detail.end-time" : "Finish time",
|
// "process.detail.end-time" : "Finish time",
|
||||||
"process.detail.end-time" : "শেষ সময়",
|
"process.detail.end-time": "শেষ সময়",
|
||||||
|
|
||||||
// "process.detail.status" : "Status",
|
// "process.detail.status" : "Status",
|
||||||
"process.detail.status" : "স্ট্যাটাস",
|
"process.detail.status": "স্ট্যাটাস",
|
||||||
|
|
||||||
// "process.detail.create" : "Create similar process",
|
// "process.detail.create" : "Create similar process",
|
||||||
"process.detail.create" : "অনুরূপ প্রক্রিয়া তৈরি করুন",
|
"process.detail.create": "অনুরূপ প্রক্রিয়া তৈরি করুন",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// "process.overview.table.finish" : "Finish time (UTC)",
|
// "process.overview.table.finish" : "Finish time (UTC)",
|
||||||
"process.overview.table.finish" : "শেষ সময় (UTC)",
|
"process.overview.table.finish": "শেষ সময় (UTC)",
|
||||||
|
|
||||||
// "process.overview.table.id" : "Process ID",
|
// "process.overview.table.id" : "Process ID",
|
||||||
"process.overview.table.id" : "প্রসেস আইডি",
|
"process.overview.table.id": "প্রসেস আইডি",
|
||||||
|
|
||||||
// "process.overview.table.name" : "Name",
|
// "process.overview.table.name" : "Name",
|
||||||
"process.overview.table.name" : "নাম",
|
"process.overview.table.name": "নাম",
|
||||||
|
|
||||||
// "process.overview.table.start" : "Start time (UTC)",
|
// "process.overview.table.start" : "Start time (UTC)",
|
||||||
"process.overview.table.start" : "শুরুর সময় (UTC)",
|
"process.overview.table.start": "শুরুর সময় (UTC)",
|
||||||
|
|
||||||
// "process.overview.table.status" : "Status",
|
// "process.overview.table.status" : "Status",
|
||||||
"process.overview.table.status" : "স্ট্যাটাস",
|
"process.overview.table.status": "স্ট্যাটাস",
|
||||||
|
|
||||||
// "process.overview.table.user" : "User",
|
// "process.overview.table.user" : "User",
|
||||||
"process.overview.table.user" : "বাবহারকারি",
|
"process.overview.table.user": "বাবহারকারি",
|
||||||
|
|
||||||
// "process.overview.title": "Processes Overview",
|
// "process.overview.title": "Processes Overview",
|
||||||
"process.overview.title": "প্রসেসের সংক্ষিপ্ত বিবরণ",
|
"process.overview.title": "প্রসেসের সংক্ষিপ্ত বিবরণ",
|
||||||
@@ -5601,7 +5601,7 @@
|
|||||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Search Results",
|
// "submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Search Results",
|
||||||
"submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "অনুসন্ধানের ফলাফল",
|
"submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "অনুসন্ধানের ফলাফল",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don\'t you can still use it for this submission.",
|
// "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don't you can still use it for this submission.",
|
||||||
"submission.sections.describe.relationship-lookup.name-variant.notification.content": "আপনি এই ব্যক্তির জন্য একটি নাম বৈকল্পিক \"{{ value }}\" হিসাবে সংরক্ষণ করতে চান তাই আপনি এবং অন্যদের ভবিষ্যতের জমা দেওয়ার জন্য এটি পুনঃব্যবহার করতে পারেন? আপনি যদি আপনি এই জমা দেওয়ার জন্য এখনও এটি ব্যবহার করতে পারেন না।",
|
"submission.sections.describe.relationship-lookup.name-variant.notification.content": "আপনি এই ব্যক্তির জন্য একটি নাম বৈকল্পিক \"{{ value }}\" হিসাবে সংরক্ষণ করতে চান তাই আপনি এবং অন্যদের ভবিষ্যতের জমা দেওয়ার জন্য এটি পুনঃব্যবহার করতে পারেন? আপনি যদি আপনি এই জমা দেওয়ার জন্য এখনও এটি ব্যবহার করতে পারেন না।",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant",
|
// "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant",
|
||||||
@@ -6128,7 +6128,7 @@
|
|||||||
"idle-modal.log-out": "প্রস্থান",
|
"idle-modal.log-out": "প্রস্থান",
|
||||||
|
|
||||||
// "idle-modal.extend-session": "Extend session"
|
// "idle-modal.extend-session": "Extend session"
|
||||||
"idle-modal.extend-session": "সেশন প্রসারিত করুন"
|
"idle-modal.extend-session": "সেশন প্রসারিত করুন",
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
File diff suppressed because it is too large
Load Diff
@@ -203,7 +203,7 @@
|
|||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"admin.registries.bitstream-formats.table.name": "Name",
|
"admin.registries.bitstream-formats.table.name": "Name",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"admin.registries.bitstream-formats.table.id" : "ID",
|
"admin.registries.bitstream-formats.table.id": "ID",
|
||||||
|
|
||||||
// "admin.registries.bitstream-formats.table.return": "Return",
|
// "admin.registries.bitstream-formats.table.return": "Return",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -297,7 +297,7 @@
|
|||||||
// "admin.registries.schema.fields.table.field": "Field",
|
// "admin.registries.schema.fields.table.field": "Field",
|
||||||
"admin.registries.schema.fields.table.field": "Pole",
|
"admin.registries.schema.fields.table.field": "Pole",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"admin.registries.schema.fields.table.id" : "ID",
|
"admin.registries.schema.fields.table.id": "ID",
|
||||||
|
|
||||||
// "admin.registries.schema.fields.table.scopenote": "Scope Note",
|
// "admin.registries.schema.fields.table.scopenote": "Scope Note",
|
||||||
"admin.registries.schema.fields.table.scopenote": "Poznámka o rozsahu",
|
"admin.registries.schema.fields.table.scopenote": "Poznámka o rozsahu",
|
||||||
@@ -2021,7 +2021,7 @@
|
|||||||
|
|
||||||
// "curation-task.task.checklinks.label": "Check Links in Metadata",
|
// "curation-task.task.checklinks.label": "Check Links in Metadata",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"curation-task.task.checklinks.label": "Check Links in Metadata",
|
"curation-task.task.checklinks.label": "Check Links in Metadata",
|
||||||
|
|
||||||
// "curation-task.task.noop.label": "NOOP",
|
// "curation-task.task.noop.label": "NOOP",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -2262,7 +2262,7 @@
|
|||||||
|
|
||||||
// "footer.link.end-user-agreement":"End User Agreement",
|
// "footer.link.end-user-agreement":"End User Agreement",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"footer.link.end-user-agreement":"End User Agreement",
|
"footer.link.end-user-agreement": "End User Agreement",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -2569,9 +2569,9 @@
|
|||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.bitstreams.upload.bundle.new": "Create bundle",
|
"item.bitstreams.upload.bundle.new": "Create bundle",
|
||||||
|
|
||||||
// "item.bitstreams.upload.bundles.empty": "This item doesn\'t contain any bundles to upload a bitstream to.",
|
// "item.bitstreams.upload.bundles.empty": "This item doesn't contain any bundles to upload a bitstream to.",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.bitstreams.upload.bundles.empty": "This item doesn\'t contain any bundles to upload a bitstream to.",
|
"item.bitstreams.upload.bundles.empty": "This item doesn't contain any bundles to upload a bitstream to.",
|
||||||
|
|
||||||
// "item.bitstreams.upload.cancel": "Cancel",
|
// "item.bitstreams.upload.cancel": "Cancel",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -3310,10 +3310,6 @@
|
|||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.page.description": "Description",
|
"item.page.description": "Description",
|
||||||
|
|
||||||
// "item.page.edit": "Edit this item",
|
|
||||||
// TODO New key - Add a translation
|
|
||||||
"item.page.edit": "Edit this item",
|
|
||||||
|
|
||||||
// "item.page.journal-issn": "Journal ISSN",
|
// "item.page.journal-issn": "Journal ISSN",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.page.journal-issn": "Journal ISSN",
|
"item.page.journal-issn": "Journal ISSN",
|
||||||
@@ -3441,11 +3437,11 @@
|
|||||||
|
|
||||||
// "item.page.filesection.original.bundle" : "Original bundle",
|
// "item.page.filesection.original.bundle" : "Original bundle",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.page.filesection.original.bundle" : "Original bundle",
|
"item.page.filesection.original.bundle": "Original bundle",
|
||||||
|
|
||||||
// "item.page.filesection.license.bundle" : "License bundle",
|
// "item.page.filesection.license.bundle" : "License bundle",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.page.filesection.license.bundle" : "License bundle",
|
"item.page.filesection.license.bundle": "License bundle",
|
||||||
|
|
||||||
// "item.preview.dc.identifier.uri": "Identifier:",
|
// "item.preview.dc.identifier.uri": "Identifier:",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -4471,19 +4467,19 @@
|
|||||||
|
|
||||||
// "process.detail.arguments" : "Arguments",
|
// "process.detail.arguments" : "Arguments",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.arguments" : "Arguments",
|
"process.detail.arguments": "Arguments",
|
||||||
|
|
||||||
// "process.detail.arguments.empty" : "This process doesn't contain any arguments",
|
// "process.detail.arguments.empty" : "This process doesn't contain any arguments",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.arguments.empty" : "This process doesn't contain any arguments",
|
"process.detail.arguments.empty": "This process doesn't contain any arguments",
|
||||||
|
|
||||||
// "process.detail.back" : "Back",
|
// "process.detail.back" : "Back",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.back" : "Back",
|
"process.detail.back": "Back",
|
||||||
|
|
||||||
// "process.detail.output" : "Process Output",
|
// "process.detail.output" : "Process Output",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.output" : "Process Output",
|
"process.detail.output": "Process Output",
|
||||||
|
|
||||||
// "process.detail.logs.button": "Retrieve process output",
|
// "process.detail.logs.button": "Retrieve process output",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -4499,61 +4495,61 @@
|
|||||||
|
|
||||||
// "process.detail.output-files" : "Output Files",
|
// "process.detail.output-files" : "Output Files",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.output-files" : "Output Files",
|
"process.detail.output-files": "Output Files",
|
||||||
|
|
||||||
// "process.detail.output-files.empty" : "This process doesn't contain any output files",
|
// "process.detail.output-files.empty" : "This process doesn't contain any output files",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.output-files.empty" : "This process doesn't contain any output files",
|
"process.detail.output-files.empty": "This process doesn't contain any output files",
|
||||||
|
|
||||||
// "process.detail.script" : "Script",
|
// "process.detail.script" : "Script",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.script" : "Script",
|
"process.detail.script": "Script",
|
||||||
|
|
||||||
// "process.detail.title" : "Process: {{ id }} - {{ name }}",
|
// "process.detail.title" : "Process: {{ id }} - {{ name }}",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.title" : "Process: {{ id }} - {{ name }}",
|
"process.detail.title": "Process: {{ id }} - {{ name }}",
|
||||||
|
|
||||||
// "process.detail.start-time" : "Start time",
|
// "process.detail.start-time" : "Start time",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.start-time" : "Start time",
|
"process.detail.start-time": "Start time",
|
||||||
|
|
||||||
// "process.detail.end-time" : "Finish time",
|
// "process.detail.end-time" : "Finish time",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.end-time" : "Finish time",
|
"process.detail.end-time": "Finish time",
|
||||||
|
|
||||||
// "process.detail.status" : "Status",
|
// "process.detail.status" : "Status",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.status" : "Status",
|
"process.detail.status": "Status",
|
||||||
|
|
||||||
// "process.detail.create" : "Create similar process",
|
// "process.detail.create" : "Create similar process",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.create" : "Create similar process",
|
"process.detail.create": "Create similar process",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// "process.overview.table.finish" : "Finish time",
|
// "process.overview.table.finish" : "Finish time",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.overview.table.finish" : "Finish time",
|
"process.overview.table.finish": "Finish time",
|
||||||
|
|
||||||
// "process.overview.table.id" : "Process ID",
|
// "process.overview.table.id" : "Process ID",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.overview.table.id" : "Process ID",
|
"process.overview.table.id": "Process ID",
|
||||||
|
|
||||||
// "process.overview.table.name" : "Name",
|
// "process.overview.table.name" : "Name",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.overview.table.name" : "Name",
|
"process.overview.table.name": "Name",
|
||||||
|
|
||||||
// "process.overview.table.start" : "Start time",
|
// "process.overview.table.start" : "Start time",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.overview.table.start" : "Start time",
|
"process.overview.table.start": "Start time",
|
||||||
|
|
||||||
// "process.overview.table.status" : "Status",
|
// "process.overview.table.status" : "Status",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.overview.table.status" : "Status",
|
"process.overview.table.status": "Status",
|
||||||
|
|
||||||
// "process.overview.table.user" : "User",
|
// "process.overview.table.user" : "User",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.overview.table.user" : "User",
|
"process.overview.table.user": "User",
|
||||||
|
|
||||||
// "process.overview.title": "Processes Overview",
|
// "process.overview.title": "Processes Overview",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -6131,9 +6127,9 @@
|
|||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Search Results",
|
"submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Search Results",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don\'t you can still use it for this submission.",
|
// "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don't you can still use it for this submission.",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don\'t you can still use it for this submission.",
|
"submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don't you can still use it for this submission.",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant",
|
// "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -6613,7 +6609,7 @@
|
|||||||
|
|
||||||
// "workflow-item.send-back.button.confirm": "Send back"
|
// "workflow-item.send-back.button.confirm": "Send back"
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"workflow-item.send-back.button.confirm": "Send back"
|
"workflow-item.send-back.button.confirm": "Send back",
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -178,7 +178,7 @@
|
|||||||
// "admin.registries.bitstream-formats.table.name": "Name",
|
// "admin.registries.bitstream-formats.table.name": "Name",
|
||||||
"admin.registries.bitstream-formats.table.name": "Name",
|
"admin.registries.bitstream-formats.table.name": "Name",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"admin.registries.bitstream-formats.table.id" : "ID",
|
"admin.registries.bitstream-formats.table.id": "ID",
|
||||||
|
|
||||||
// "admin.registries.bitstream-formats.table.return": "Return",
|
// "admin.registries.bitstream-formats.table.return": "Return",
|
||||||
"admin.registries.bitstream-formats.table.return": "Zurück",
|
"admin.registries.bitstream-formats.table.return": "Zurück",
|
||||||
@@ -259,7 +259,7 @@
|
|||||||
// "admin.registries.schema.fields.table.field": "Field",
|
// "admin.registries.schema.fields.table.field": "Field",
|
||||||
"admin.registries.schema.fields.table.field": "Feld",
|
"admin.registries.schema.fields.table.field": "Feld",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"admin.registries.schema.fields.table.id" : "ID",
|
"admin.registries.schema.fields.table.id": "ID",
|
||||||
|
|
||||||
// "admin.registries.schema.fields.table.scopenote": "Scope Note",
|
// "admin.registries.schema.fields.table.scopenote": "Scope Note",
|
||||||
"admin.registries.schema.fields.table.scopenote": "Gültigkeitsbereich",
|
"admin.registries.schema.fields.table.scopenote": "Gültigkeitsbereich",
|
||||||
@@ -1692,7 +1692,7 @@
|
|||||||
|
|
||||||
|
|
||||||
// "curation-task.task.checklinks.label": "Check Links in Metadata",
|
// "curation-task.task.checklinks.label": "Check Links in Metadata",
|
||||||
"curation-task.task.checklinks.label": "Links in Metadaten prüfen",
|
"curation-task.task.checklinks.label": "Links in Metadaten prüfen",
|
||||||
|
|
||||||
// "curation-task.task.noop.label": "NOOP",
|
// "curation-task.task.noop.label": "NOOP",
|
||||||
"curation-task.task.noop.label": "NOOP",
|
"curation-task.task.noop.label": "NOOP",
|
||||||
@@ -1833,9 +1833,6 @@
|
|||||||
"confirmation-modal.delete-eperson.confirm": "Löschen",
|
"confirmation-modal.delete-eperson.confirm": "Löschen",
|
||||||
|
|
||||||
|
|
||||||
// "dso-selector.select.collection.head": "Select a collection",
|
|
||||||
"dso-selector.select.collection.head": "Bitte wählen Sie eine Sammlung aus.",
|
|
||||||
|
|
||||||
// "dso.name.untitled": "Untitled",
|
// "dso.name.untitled": "Untitled",
|
||||||
"dso.name.untitled": "Unbenannt",
|
"dso.name.untitled": "Unbenannt",
|
||||||
|
|
||||||
@@ -1937,7 +1934,7 @@
|
|||||||
"footer.link.privacy-policy": "Datenschutzbestimmungen",
|
"footer.link.privacy-policy": "Datenschutzbestimmungen",
|
||||||
|
|
||||||
// "footer.link.end-user-agreement":"End User Agreement",
|
// "footer.link.end-user-agreement":"End User Agreement",
|
||||||
"footer.link.end-user-agreement":"Endnutzervereinbarung",
|
"footer.link.end-user-agreement": "Endnutzervereinbarung",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -2230,7 +2227,7 @@
|
|||||||
// "item.bitstreams.upload.bundle.new": "Create bundle",
|
// "item.bitstreams.upload.bundle.new": "Create bundle",
|
||||||
"item.bitstreams.upload.bundle.new": "Bündel erstellen",
|
"item.bitstreams.upload.bundle.new": "Bündel erstellen",
|
||||||
|
|
||||||
// "item.bitstreams.upload.bundles.empty": "This item doesn\'t contain any bundles to upload a bitstream to.",
|
// "item.bitstreams.upload.bundles.empty": "This item doesn't contain any bundles to upload a bitstream to.",
|
||||||
"item.bitstreams.upload.bundles.empty": "Diesem Item fehlt ein Bundle. Ohne Bundle kann keine Datei hochgeladen werden.",
|
"item.bitstreams.upload.bundles.empty": "Diesem Item fehlt ein Bundle. Ohne Bundle kann keine Datei hochgeladen werden.",
|
||||||
|
|
||||||
// "item.bitstreams.upload.cancel": "Cancel",
|
// "item.bitstreams.upload.cancel": "Cancel",
|
||||||
@@ -2792,9 +2789,6 @@
|
|||||||
// "item.page.description": "Description",
|
// "item.page.description": "Description",
|
||||||
"item.page.description": "Beschreibung",
|
"item.page.description": "Beschreibung",
|
||||||
|
|
||||||
// "item.page.edit": "Edit this item",
|
|
||||||
"item.page.edit": "Dieses Item bearbeiten",
|
|
||||||
|
|
||||||
// "item.page.journal-issn": "Journal ISSN",
|
// "item.page.journal-issn": "Journal ISSN",
|
||||||
"item.page.journal-issn": "ISSN der Zeitschrift",
|
"item.page.journal-issn": "ISSN der Zeitschrift",
|
||||||
|
|
||||||
@@ -2897,10 +2891,10 @@
|
|||||||
"item.page.bitstreams.collapse": "Zuklappen",
|
"item.page.bitstreams.collapse": "Zuklappen",
|
||||||
|
|
||||||
// "item.page.filesection.original.bundle" : "Original bundle",
|
// "item.page.filesection.original.bundle" : "Original bundle",
|
||||||
"item.page.filesection.original.bundle" : "Originalbündel",
|
"item.page.filesection.original.bundle": "Originalbündel",
|
||||||
|
|
||||||
// "item.page.filesection.license.bundle" : "License bundle",
|
// "item.page.filesection.license.bundle" : "License bundle",
|
||||||
"item.page.filesection.license.bundle" : "Lizenzbündel",
|
"item.page.filesection.license.bundle": "Lizenzbündel",
|
||||||
|
|
||||||
// "item.preview.dc.identifier.uri": "Identifier:",
|
// "item.preview.dc.identifier.uri": "Identifier:",
|
||||||
"item.preview.dc.identifier.uri": "Identifikator:",
|
"item.preview.dc.identifier.uri": "Identifikator:",
|
||||||
@@ -3644,12 +3638,6 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
// "process.detail.output": "Process Output",
|
|
||||||
"process.detail.output": "Prozessausgabe (Log)",
|
|
||||||
|
|
||||||
// "process.detail.output-files.empty": "This process doesn't contain any output files",
|
|
||||||
"process.detail.output-files.empty": "Dieser Prozess enthält keine Ausgabedateien.",
|
|
||||||
|
|
||||||
// "process.new.select-parameters": "Parameters",
|
// "process.new.select-parameters": "Parameters",
|
||||||
"process.new.select-parameters": "Parameter",
|
"process.new.select-parameters": "Parameter",
|
||||||
|
|
||||||
@@ -3710,16 +3698,16 @@
|
|||||||
|
|
||||||
|
|
||||||
// "process.detail.arguments" : "Arguments",
|
// "process.detail.arguments" : "Arguments",
|
||||||
"process.detail.arguments" : "Parameter",
|
"process.detail.arguments": "Parameter",
|
||||||
|
|
||||||
// "process.detail.arguments.empty" : "This process doesn't contain any arguments",
|
// "process.detail.arguments.empty" : "This process doesn't contain any arguments",
|
||||||
"process.detail.arguments.empty" : "Dieser Prozess beinhaltet keine Parameter",
|
"process.detail.arguments.empty": "Dieser Prozess beinhaltet keine Parameter",
|
||||||
|
|
||||||
// "process.detail.back" : "Back",
|
// "process.detail.back" : "Back",
|
||||||
"process.detail.back" : "Zurück",
|
"process.detail.back": "Zurück",
|
||||||
|
|
||||||
// "process.detail.output" : "Process Output",
|
// "process.detail.output" : "Process Output",
|
||||||
"process.detail.output" : "Prozessausgabe",
|
"process.detail.output": "Prozessausgabe",
|
||||||
|
|
||||||
// "process.detail.logs.button": "Retrieve process output",
|
// "process.detail.logs.button": "Retrieve process output",
|
||||||
"process.detail.logs.button": "Log anzeigen",
|
"process.detail.logs.button": "Log anzeigen",
|
||||||
@@ -3731,48 +3719,48 @@
|
|||||||
"process.detail.logs.none": "Dieser Prozess gibt nichts aus.",
|
"process.detail.logs.none": "Dieser Prozess gibt nichts aus.",
|
||||||
|
|
||||||
// "process.detail.output-files" : "Output Files",
|
// "process.detail.output-files" : "Output Files",
|
||||||
"process.detail.output-files" : "Ausgabedateien",
|
"process.detail.output-files": "Ausgabedateien",
|
||||||
|
|
||||||
// "process.detail.output-files.empty" : "This process doesn't contain any output files",
|
// "process.detail.output-files.empty" : "This process doesn't contain any output files",
|
||||||
"process.detail.output-files.empty" : "Dieser Prozess enthält keine Ausgabedateien",
|
"process.detail.output-files.empty": "Dieser Prozess enthält keine Ausgabedateien",
|
||||||
|
|
||||||
// "process.detail.script" : "Script",
|
// "process.detail.script" : "Script",
|
||||||
"process.detail.script" : "Skript",
|
"process.detail.script": "Skript",
|
||||||
|
|
||||||
// "process.detail.title" : "Process: {{ id }} - {{ name }}",
|
// "process.detail.title" : "Process: {{ id }} - {{ name }}",
|
||||||
"process.detail.title" : "Prozess: {{ id }} - {{ name }}",
|
"process.detail.title": "Prozess: {{ id }} - {{ name }}",
|
||||||
|
|
||||||
// "process.detail.start-time" : "Start time",
|
// "process.detail.start-time" : "Start time",
|
||||||
"process.detail.start-time" : "Startzeit",
|
"process.detail.start-time": "Startzeit",
|
||||||
|
|
||||||
// "process.detail.end-time" : "Finish time",
|
// "process.detail.end-time" : "Finish time",
|
||||||
"process.detail.end-time" : "Schlusszeit",
|
"process.detail.end-time": "Schlusszeit",
|
||||||
|
|
||||||
// "process.detail.status" : "Status",
|
// "process.detail.status" : "Status",
|
||||||
"process.detail.status" : "Status",
|
"process.detail.status": "Status",
|
||||||
|
|
||||||
// "process.detail.create" : "Create similar process",
|
// "process.detail.create" : "Create similar process",
|
||||||
"process.detail.create" : "Erstelle ähnlichen Prozess",
|
"process.detail.create": "Erstelle ähnlichen Prozess",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// "process.overview.table.finish" : "Finish time",
|
// "process.overview.table.finish" : "Finish time",
|
||||||
"process.overview.table.finish" : "Schlusszeit",
|
"process.overview.table.finish": "Schlusszeit",
|
||||||
|
|
||||||
// "process.overview.table.id" : "Process ID",
|
// "process.overview.table.id" : "Process ID",
|
||||||
"process.overview.table.id" : "Prozess ID",
|
"process.overview.table.id": "Prozess ID",
|
||||||
|
|
||||||
// "process.overview.table.name" : "Name",
|
// "process.overview.table.name" : "Name",
|
||||||
"process.overview.table.name" : "Name",
|
"process.overview.table.name": "Name",
|
||||||
|
|
||||||
// "process.overview.table.start" : "Start time",
|
// "process.overview.table.start" : "Start time",
|
||||||
"process.overview.table.start" : "Startzeit",
|
"process.overview.table.start": "Startzeit",
|
||||||
|
|
||||||
// "process.overview.table.status" : "Status",
|
// "process.overview.table.status" : "Status",
|
||||||
"process.overview.table.status" : "Status",
|
"process.overview.table.status": "Status",
|
||||||
|
|
||||||
// "process.overview.table.user" : "User",
|
// "process.overview.table.user" : "User",
|
||||||
"process.overview.table.user" : "Benutzer:in",
|
"process.overview.table.user": "Benutzer:in",
|
||||||
|
|
||||||
// "process.overview.title": "Processes Overview",
|
// "process.overview.title": "Processes Overview",
|
||||||
"process.overview.title": "Überblick der Prozesse",
|
"process.overview.title": "Überblick der Prozesse",
|
||||||
@@ -5061,7 +5049,7 @@
|
|||||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Search Results",
|
// "submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Search Results",
|
||||||
"submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Suchergebnisse",
|
"submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Suchergebnisse",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don\'t you can still use it for this submission.",
|
// "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don't you can still use it for this submission.",
|
||||||
"submission.sections.describe.relationship-lookup.name-variant.notification.content": "Möchten Sie die Namensvariante \"{{ value }}\" speichern, damit sie bei zukünftigen Veröffentlichungen erneut verwendet werden kann? Sie können die Variante bei dieser Veröffentlichung auch verwenden, ohne sie zu speichern.",
|
"submission.sections.describe.relationship-lookup.name-variant.notification.content": "Möchten Sie die Namensvariante \"{{ value }}\" speichern, damit sie bei zukünftigen Veröffentlichungen erneut verwendet werden kann? Sie können die Variante bei dieser Veröffentlichung auch verwenden, ohne sie zu speichern.",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant",
|
// "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant",
|
||||||
@@ -5465,6 +5453,6 @@
|
|||||||
"workflow-item.send-back.button.cancel": "Abbrechen",
|
"workflow-item.send-back.button.cancel": "Abbrechen",
|
||||||
|
|
||||||
// "workflow-item.send-back.button.confirm": "Send back"
|
// "workflow-item.send-back.button.confirm": "Send back"
|
||||||
"workflow-item.send-back.button.confirm": "Zurücksenden"
|
"workflow-item.send-back.button.confirm": "Zurücksenden",
|
||||||
|
|
||||||
}
|
}
|
||||||
|
File diff suppressed because it is too large
Load Diff
@@ -130,7 +130,7 @@
|
|||||||
"admin.registries.bitstream-formats.table.mimetype": "MIME Type",
|
"admin.registries.bitstream-formats.table.mimetype": "MIME Type",
|
||||||
|
|
||||||
"admin.registries.bitstream-formats.table.name": "Name",
|
"admin.registries.bitstream-formats.table.name": "Name",
|
||||||
"admin.registries.bitstream-formats.table.id" : "ID",
|
"admin.registries.bitstream-formats.table.id": "ID",
|
||||||
|
|
||||||
"admin.registries.bitstream-formats.table.return": "Back",
|
"admin.registries.bitstream-formats.table.return": "Back",
|
||||||
|
|
||||||
@@ -185,7 +185,7 @@
|
|||||||
"admin.registries.schema.fields.table.delete": "Delete selected",
|
"admin.registries.schema.fields.table.delete": "Delete selected",
|
||||||
|
|
||||||
"admin.registries.schema.fields.table.field": "Field",
|
"admin.registries.schema.fields.table.field": "Field",
|
||||||
"admin.registries.schema.fields.table.id" : "ID",
|
"admin.registries.schema.fields.table.id": "ID",
|
||||||
|
|
||||||
"admin.registries.schema.fields.table.scopenote": "Scope Note",
|
"admin.registries.schema.fields.table.scopenote": "Scope Note",
|
||||||
|
|
||||||
@@ -1394,9 +1394,9 @@
|
|||||||
|
|
||||||
"cookies.consent.purpose.sharing": "Sharing",
|
"cookies.consent.purpose.sharing": "Sharing",
|
||||||
|
|
||||||
"curation-task.task.citationpage.label": "Generate Citation Page",
|
"curation-task.task.citationpage.label": "Generate Citation Page",
|
||||||
|
|
||||||
"curation-task.task.checklinks.label": "Check Links in Metadata",
|
"curation-task.task.checklinks.label": "Check Links in Metadata",
|
||||||
|
|
||||||
"curation-task.task.noop.label": "NOOP",
|
"curation-task.task.noop.label": "NOOP",
|
||||||
|
|
||||||
@@ -1530,7 +1530,7 @@
|
|||||||
|
|
||||||
"supervision-group-selector.notification.create.failure.title": "Error",
|
"supervision-group-selector.notification.create.failure.title": "Error",
|
||||||
|
|
||||||
"supervision-group-selector.notification.create.already-existing" : "A supervision order already exists on this item for selected group",
|
"supervision-group-selector.notification.create.already-existing": "A supervision order already exists on this item for selected group",
|
||||||
|
|
||||||
"confirmation-modal.export-metadata.header": "Export metadata for {{ dsoName }}",
|
"confirmation-modal.export-metadata.header": "Export metadata for {{ dsoName }}",
|
||||||
|
|
||||||
@@ -1638,9 +1638,9 @@
|
|||||||
|
|
||||||
"footer.link.privacy-policy": "Privacy policy",
|
"footer.link.privacy-policy": "Privacy policy",
|
||||||
|
|
||||||
"footer.link.end-user-agreement":"End User Agreement",
|
"footer.link.end-user-agreement": "End User Agreement",
|
||||||
|
|
||||||
"footer.link.feedback":"Send Feedback",
|
"footer.link.feedback": "Send Feedback",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1804,11 +1804,11 @@
|
|||||||
|
|
||||||
"health.breadcrumbs": "Health",
|
"health.breadcrumbs": "Health",
|
||||||
|
|
||||||
"health-page.heading" : "Health",
|
"health-page.heading": "Health",
|
||||||
|
|
||||||
"health-page.info-tab" : "Info",
|
"health-page.info-tab": "Info",
|
||||||
|
|
||||||
"health-page.status-tab" : "Status",
|
"health-page.status-tab": "Status",
|
||||||
|
|
||||||
"health-page.error.msg": "The health check service is temporarily unavailable",
|
"health-page.error.msg": "The health check service is temporarily unavailable",
|
||||||
|
|
||||||
@@ -1895,15 +1895,15 @@
|
|||||||
|
|
||||||
"info.feedback.email-label": "Your Email",
|
"info.feedback.email-label": "Your Email",
|
||||||
|
|
||||||
"info.feedback.create.success" : "Feedback Sent Successfully!",
|
"info.feedback.create.success": "Feedback Sent Successfully!",
|
||||||
|
|
||||||
"info.feedback.error.email.required" : "A valid email address is required",
|
"info.feedback.error.email.required": "A valid email address is required",
|
||||||
|
|
||||||
"info.feedback.error.message.required" : "A comment is required",
|
"info.feedback.error.message.required": "A comment is required",
|
||||||
|
|
||||||
"info.feedback.page-label" : "Page",
|
"info.feedback.page-label": "Page",
|
||||||
|
|
||||||
"info.feedback.page_help" : "Tha page related to your feedback",
|
"info.feedback.page_help": "Tha page related to your feedback",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1931,7 +1931,7 @@
|
|||||||
|
|
||||||
"item.bitstreams.upload.bundle.new": "Create bundle",
|
"item.bitstreams.upload.bundle.new": "Create bundle",
|
||||||
|
|
||||||
"item.bitstreams.upload.bundles.empty": "This item doesn\'t contain any bundles to upload a bitstream to.",
|
"item.bitstreams.upload.bundles.empty": "This item doesn't contain any bundles to upload a bitstream to.",
|
||||||
|
|
||||||
"item.bitstreams.upload.cancel": "Cancel",
|
"item.bitstreams.upload.cancel": "Cancel",
|
||||||
|
|
||||||
@@ -2475,9 +2475,9 @@
|
|||||||
|
|
||||||
"item.page.bitstreams.collapse": "Collapse",
|
"item.page.bitstreams.collapse": "Collapse",
|
||||||
|
|
||||||
"item.page.filesection.original.bundle" : "Original bundle",
|
"item.page.filesection.original.bundle": "Original bundle",
|
||||||
|
|
||||||
"item.page.filesection.license.bundle" : "License bundle",
|
"item.page.filesection.license.bundle": "License bundle",
|
||||||
|
|
||||||
"item.page.return": "Back",
|
"item.page.return": "Back",
|
||||||
|
|
||||||
@@ -2507,19 +2507,19 @@
|
|||||||
|
|
||||||
"item.preview.dc.type": "Type:",
|
"item.preview.dc.type": "Type:",
|
||||||
|
|
||||||
"item.preview.oaire.citation.issue" : "Issue",
|
"item.preview.oaire.citation.issue": "Issue",
|
||||||
|
|
||||||
"item.preview.oaire.citation.volume" : "Volume",
|
"item.preview.oaire.citation.volume": "Volume",
|
||||||
|
|
||||||
"item.preview.dc.relation.issn" : "ISSN",
|
"item.preview.dc.relation.issn": "ISSN",
|
||||||
|
|
||||||
"item.preview.dc.identifier.isbn" : "ISBN",
|
"item.preview.dc.identifier.isbn": "ISBN",
|
||||||
|
|
||||||
"item.preview.dc.identifier": "Identifier:",
|
"item.preview.dc.identifier": "Identifier:",
|
||||||
|
|
||||||
"item.preview.dc.relation.ispartof" : "Journal or Serie",
|
"item.preview.dc.relation.ispartof": "Journal or Serie",
|
||||||
|
|
||||||
"item.preview.dc.identifier.doi" : "DOI",
|
"item.preview.dc.identifier.doi": "DOI",
|
||||||
|
|
||||||
"item.preview.person.familyName": "Surname:",
|
"item.preview.person.familyName": "Surname:",
|
||||||
|
|
||||||
@@ -2618,11 +2618,11 @@
|
|||||||
|
|
||||||
"item.version.create.modal.submitted.text": "The new version is being created. This may take some time if the item has a lot of relationships.",
|
"item.version.create.modal.submitted.text": "The new version is being created. This may take some time if the item has a lot of relationships.",
|
||||||
|
|
||||||
"item.version.create.notification.success" : "New version has been created with version number {{version}}",
|
"item.version.create.notification.success": "New version has been created with version number {{version}}",
|
||||||
|
|
||||||
"item.version.create.notification.failure" : "New version has not been created",
|
"item.version.create.notification.failure": "New version has not been created",
|
||||||
|
|
||||||
"item.version.create.notification.inProgress" : "A new version cannot be created because there is an inprogress submission in the version history",
|
"item.version.create.notification.inProgress": "A new version cannot be created because there is an inprogress submission in the version history",
|
||||||
|
|
||||||
|
|
||||||
"item.version.delete.modal.header": "Delete version",
|
"item.version.delete.modal.header": "Delete version",
|
||||||
@@ -2637,14 +2637,14 @@
|
|||||||
|
|
||||||
"item.version.delete.modal.button.cancel.tooltip": "Do not delete this version",
|
"item.version.delete.modal.button.cancel.tooltip": "Do not delete this version",
|
||||||
|
|
||||||
"item.version.delete.notification.success" : "Version number {{version}} has been deleted",
|
"item.version.delete.notification.success": "Version number {{version}} has been deleted",
|
||||||
|
|
||||||
"item.version.delete.notification.failure" : "Version number {{version}} has not been deleted",
|
"item.version.delete.notification.failure": "Version number {{version}} has not been deleted",
|
||||||
|
|
||||||
|
|
||||||
"item.version.edit.notification.success" : "The summary of version number {{version}} has been changed",
|
"item.version.edit.notification.success": "The summary of version number {{version}} has been changed",
|
||||||
|
|
||||||
"item.version.edit.notification.failure" : "The summary of version number {{version}} has not been changed",
|
"item.version.edit.notification.failure": "The summary of version number {{version}} has not been changed",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -3150,11 +3150,11 @@
|
|||||||
|
|
||||||
"nav.stop-impersonating": "Stop impersonating EPerson",
|
"nav.stop-impersonating": "Stop impersonating EPerson",
|
||||||
|
|
||||||
"nav.subscriptions" : "Subscriptions",
|
"nav.subscriptions": "Subscriptions",
|
||||||
|
|
||||||
"nav.toggle" : "Toggle navigation",
|
"nav.toggle": "Toggle navigation",
|
||||||
|
|
||||||
"nav.user.description" : "User profile bar",
|
"nav.user.description": "User profile bar",
|
||||||
|
|
||||||
"none.listelement.badge": "Item",
|
"none.listelement.badge": "Item",
|
||||||
|
|
||||||
@@ -3257,6 +3257,8 @@
|
|||||||
|
|
||||||
"process.new.notification.error.content": "An error occurred while creating this process",
|
"process.new.notification.error.content": "An error occurred while creating this process",
|
||||||
|
|
||||||
|
"process.new.notification.error.max-upload.content": "The file exceeds the maximum upload size",
|
||||||
|
|
||||||
"process.new.header": "Create a new process",
|
"process.new.header": "Create a new process",
|
||||||
|
|
||||||
"process.new.title": "Create a new process",
|
"process.new.title": "Create a new process",
|
||||||
@@ -3265,13 +3267,13 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
"process.detail.arguments" : "Arguments",
|
"process.detail.arguments": "Arguments",
|
||||||
|
|
||||||
"process.detail.arguments.empty" : "This process doesn't contain any arguments",
|
"process.detail.arguments.empty": "This process doesn't contain any arguments",
|
||||||
|
|
||||||
"process.detail.back" : "Back",
|
"process.detail.back": "Back",
|
||||||
|
|
||||||
"process.detail.output" : "Process Output",
|
"process.detail.output": "Process Output",
|
||||||
|
|
||||||
"process.detail.logs.button": "Retrieve process output",
|
"process.detail.logs.button": "Retrieve process output",
|
||||||
|
|
||||||
@@ -3279,21 +3281,21 @@
|
|||||||
|
|
||||||
"process.detail.logs.none": "This process has no output",
|
"process.detail.logs.none": "This process has no output",
|
||||||
|
|
||||||
"process.detail.output-files" : "Output Files",
|
"process.detail.output-files": "Output Files",
|
||||||
|
|
||||||
"process.detail.output-files.empty" : "This process doesn't contain any output files",
|
"process.detail.output-files.empty": "This process doesn't contain any output files",
|
||||||
|
|
||||||
"process.detail.script" : "Script",
|
"process.detail.script": "Script",
|
||||||
|
|
||||||
"process.detail.title" : "Process: {{ id }} - {{ name }}",
|
"process.detail.title": "Process: {{ id }} - {{ name }}",
|
||||||
|
|
||||||
"process.detail.start-time" : "Start time",
|
"process.detail.start-time": "Start time",
|
||||||
|
|
||||||
"process.detail.end-time" : "Finish time",
|
"process.detail.end-time": "Finish time",
|
||||||
|
|
||||||
"process.detail.status" : "Status",
|
"process.detail.status": "Status",
|
||||||
|
|
||||||
"process.detail.create" : "Create similar process",
|
"process.detail.create": "Create similar process",
|
||||||
|
|
||||||
"process.detail.actions": "Actions",
|
"process.detail.actions": "Actions",
|
||||||
|
|
||||||
@@ -3313,17 +3315,17 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
"process.overview.table.finish" : "Finish time (UTC)",
|
"process.overview.table.finish": "Finish time (UTC)",
|
||||||
|
|
||||||
"process.overview.table.id" : "Process ID",
|
"process.overview.table.id": "Process ID",
|
||||||
|
|
||||||
"process.overview.table.name" : "Name",
|
"process.overview.table.name": "Name",
|
||||||
|
|
||||||
"process.overview.table.start" : "Start time (UTC)",
|
"process.overview.table.start": "Start time (UTC)",
|
||||||
|
|
||||||
"process.overview.table.status" : "Status",
|
"process.overview.table.status": "Status",
|
||||||
|
|
||||||
"process.overview.table.user" : "User",
|
"process.overview.table.user": "User",
|
||||||
|
|
||||||
"process.overview.title": "Processes Overview",
|
"process.overview.title": "Processes Overview",
|
||||||
|
|
||||||
@@ -4426,7 +4428,7 @@
|
|||||||
|
|
||||||
"submission.sections.describe.relationship-lookup.selection-tab.title": "Search Results",
|
"submission.sections.describe.relationship-lookup.selection-tab.title": "Search Results",
|
||||||
|
|
||||||
"submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don\'t you can still use it for this submission.",
|
"submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don't you can still use it for this submission.",
|
||||||
|
|
||||||
"submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant",
|
"submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant",
|
||||||
|
|
||||||
@@ -4633,7 +4635,7 @@
|
|||||||
|
|
||||||
"submission.sections.license.required": "You must accept the license",
|
"submission.sections.license.required": "You must accept the license",
|
||||||
|
|
||||||
"submission.sections.license.notgranted": "You must accept the license",
|
"submission.sections.license.notgranted": "You must accept the license",
|
||||||
|
|
||||||
|
|
||||||
"submission.sections.sherpa.publication.information": "Publication information",
|
"submission.sections.sherpa.publication.information": "Publication information",
|
||||||
@@ -5002,7 +5004,7 @@
|
|||||||
|
|
||||||
"idle-modal.extend-session": "Extend session",
|
"idle-modal.extend-session": "Extend session",
|
||||||
|
|
||||||
"researcher.profile.action.processing" : "Processing...",
|
"researcher.profile.action.processing": "Processing...",
|
||||||
|
|
||||||
"researcher.profile.associated": "Researcher profile associated",
|
"researcher.profile.associated": "Researcher profile associated",
|
||||||
|
|
||||||
@@ -5024,27 +5026,27 @@
|
|||||||
|
|
||||||
"researcher.profile.view": "View",
|
"researcher.profile.view": "View",
|
||||||
|
|
||||||
"researcher.profile.private.visibility" : "PRIVATE",
|
"researcher.profile.private.visibility": "PRIVATE",
|
||||||
|
|
||||||
"researcher.profile.public.visibility" : "PUBLIC",
|
"researcher.profile.public.visibility": "PUBLIC",
|
||||||
|
|
||||||
"researcher.profile.status": "Status:",
|
"researcher.profile.status": "Status:",
|
||||||
|
|
||||||
"researcherprofile.claim.not-authorized": "You are not authorized to claim this item. For more details contact the administrator(s).",
|
"researcherprofile.claim.not-authorized": "You are not authorized to claim this item. For more details contact the administrator(s).",
|
||||||
|
|
||||||
"researcherprofile.error.claim.body" : "An error occurred while claiming the profile, please try again later",
|
"researcherprofile.error.claim.body": "An error occurred while claiming the profile, please try again later",
|
||||||
|
|
||||||
"researcherprofile.error.claim.title" : "Error",
|
"researcherprofile.error.claim.title": "Error",
|
||||||
|
|
||||||
"researcherprofile.success.claim.body" : "Profile claimed with success",
|
"researcherprofile.success.claim.body": "Profile claimed with success",
|
||||||
|
|
||||||
"researcherprofile.success.claim.title" : "Success",
|
"researcherprofile.success.claim.title": "Success",
|
||||||
|
|
||||||
"person.page.orcid.create": "Create an ORCID ID",
|
"person.page.orcid.create": "Create an ORCID ID",
|
||||||
|
|
||||||
"person.page.orcid.granted-authorizations": "Granted authorizations",
|
"person.page.orcid.granted-authorizations": "Granted authorizations",
|
||||||
|
|
||||||
"person.page.orcid.grant-authorizations" : "Grant authorizations",
|
"person.page.orcid.grant-authorizations": "Grant authorizations",
|
||||||
|
|
||||||
"person.page.orcid.link": "Connect to ORCID ID",
|
"person.page.orcid.link": "Connect to ORCID ID",
|
||||||
|
|
||||||
@@ -5076,31 +5078,31 @@
|
|||||||
|
|
||||||
"person.page.orcid.save.preference.changes": "Update settings",
|
"person.page.orcid.save.preference.changes": "Update settings",
|
||||||
|
|
||||||
"person.page.orcid.sync-profile.affiliation" : "Affiliation",
|
"person.page.orcid.sync-profile.affiliation": "Affiliation",
|
||||||
|
|
||||||
"person.page.orcid.sync-profile.biographical" : "Biographical data",
|
"person.page.orcid.sync-profile.biographical": "Biographical data",
|
||||||
|
|
||||||
"person.page.orcid.sync-profile.education" : "Education",
|
"person.page.orcid.sync-profile.education": "Education",
|
||||||
|
|
||||||
"person.page.orcid.sync-profile.identifiers" : "Identifiers",
|
"person.page.orcid.sync-profile.identifiers": "Identifiers",
|
||||||
|
|
||||||
"person.page.orcid.sync-fundings.all" : "All fundings",
|
"person.page.orcid.sync-fundings.all": "All fundings",
|
||||||
|
|
||||||
"person.page.orcid.sync-fundings.mine" : "My fundings",
|
"person.page.orcid.sync-fundings.mine": "My fundings",
|
||||||
|
|
||||||
"person.page.orcid.sync-fundings.my_selected" : "Selected fundings",
|
"person.page.orcid.sync-fundings.my_selected": "Selected fundings",
|
||||||
|
|
||||||
"person.page.orcid.sync-fundings.disabled" : "Disabled",
|
"person.page.orcid.sync-fundings.disabled": "Disabled",
|
||||||
|
|
||||||
"person.page.orcid.sync-publications.all" : "All publications",
|
"person.page.orcid.sync-publications.all": "All publications",
|
||||||
|
|
||||||
"person.page.orcid.sync-publications.mine" : "My publications",
|
"person.page.orcid.sync-publications.mine": "My publications",
|
||||||
|
|
||||||
"person.page.orcid.sync-publications.my_selected" : "Selected publications",
|
"person.page.orcid.sync-publications.my_selected": "Selected publications",
|
||||||
|
|
||||||
"person.page.orcid.sync-publications.disabled" : "Disabled",
|
"person.page.orcid.sync-publications.disabled": "Disabled",
|
||||||
|
|
||||||
"person.page.orcid.sync-queue.discard" : "Discard the change and do not synchronize with the ORCID registry",
|
"person.page.orcid.sync-queue.discard": "Discard the change and do not synchronize with the ORCID registry",
|
||||||
|
|
||||||
"person.page.orcid.sync-queue.discard.error": "The discarding of the ORCID queue record failed",
|
"person.page.orcid.sync-queue.discard.error": "The discarding of the ORCID queue record failed",
|
||||||
|
|
||||||
@@ -5108,11 +5110,11 @@
|
|||||||
|
|
||||||
"person.page.orcid.sync-queue.empty-message": "The ORCID queue registry is empty",
|
"person.page.orcid.sync-queue.empty-message": "The ORCID queue registry is empty",
|
||||||
|
|
||||||
"person.page.orcid.sync-queue.table.header.type" : "Type",
|
"person.page.orcid.sync-queue.table.header.type": "Type",
|
||||||
|
|
||||||
"person.page.orcid.sync-queue.table.header.description" : "Description",
|
"person.page.orcid.sync-queue.table.header.description": "Description",
|
||||||
|
|
||||||
"person.page.orcid.sync-queue.table.header.action" : "Action",
|
"person.page.orcid.sync-queue.table.header.action": "Action",
|
||||||
|
|
||||||
"person.page.orcid.sync-queue.description.affiliation": "Affiliations",
|
"person.page.orcid.sync-queue.description.affiliation": "Affiliations",
|
||||||
|
|
||||||
@@ -5156,7 +5158,7 @@
|
|||||||
|
|
||||||
"person.page.orcid.sync-queue.tooltip.researcher_urls": "Researcher url",
|
"person.page.orcid.sync-queue.tooltip.researcher_urls": "Researcher url",
|
||||||
|
|
||||||
"person.page.orcid.sync-queue.send" : "Synchronize with ORCID registry",
|
"person.page.orcid.sync-queue.send": "Synchronize with ORCID registry",
|
||||||
|
|
||||||
"person.page.orcid.sync-queue.send.unauthorized-error.title": "The submission to ORCID failed for missing authorizations.",
|
"person.page.orcid.sync-queue.send.unauthorized-error.title": "The submission to ORCID failed for missing authorizations.",
|
||||||
|
|
||||||
@@ -5192,7 +5194,7 @@
|
|||||||
|
|
||||||
"person.page.orcid.sync-queue.send.validation-error.organization.name-required": "The organization's name is required",
|
"person.page.orcid.sync-queue.send.validation-error.organization.name-required": "The organization's name is required",
|
||||||
|
|
||||||
"person.page.orcid.sync-queue.send.validation-error.publication.date-invalid" : "The publication date must be one year after 1900",
|
"person.page.orcid.sync-queue.send.validation-error.publication.date-invalid": "The publication date must be one year after 1900",
|
||||||
|
|
||||||
"person.page.orcid.sync-queue.send.validation-error.organization.address-required": "The organization to be sent requires an address",
|
"person.page.orcid.sync-queue.send.validation-error.organization.address-required": "The organization to be sent requires an address",
|
||||||
|
|
||||||
|
@@ -195,7 +195,7 @@
|
|||||||
// "admin.registries.bitstream-formats.table.name": "Name",
|
// "admin.registries.bitstream-formats.table.name": "Name",
|
||||||
"admin.registries.bitstream-formats.table.name": "Nombre",
|
"admin.registries.bitstream-formats.table.name": "Nombre",
|
||||||
// "admin.registries.bitstream-formats.table.id" : "ID",
|
// "admin.registries.bitstream-formats.table.id" : "ID",
|
||||||
"admin.registries.bitstream-formats.table.id" : "ID",
|
"admin.registries.bitstream-formats.table.id": "ID",
|
||||||
|
|
||||||
// "admin.registries.bitstream-formats.table.return": "Back",
|
// "admin.registries.bitstream-formats.table.return": "Back",
|
||||||
"admin.registries.bitstream-formats.table.return": "Atrás",
|
"admin.registries.bitstream-formats.table.return": "Atrás",
|
||||||
@@ -276,7 +276,7 @@
|
|||||||
// "admin.registries.schema.fields.table.field": "Field",
|
// "admin.registries.schema.fields.table.field": "Field",
|
||||||
"admin.registries.schema.fields.table.field": "Campo",
|
"admin.registries.schema.fields.table.field": "Campo",
|
||||||
// "admin.registries.schema.fields.table.id" : "ID",
|
// "admin.registries.schema.fields.table.id" : "ID",
|
||||||
"admin.registries.schema.fields.table.id" : "ID",
|
"admin.registries.schema.fields.table.id": "ID",
|
||||||
|
|
||||||
// "admin.registries.schema.fields.table.scopenote": "Scope Note",
|
// "admin.registries.schema.fields.table.scopenote": "Scope Note",
|
||||||
"admin.registries.schema.fields.table.scopenote": "Nota de alcance",
|
"admin.registries.schema.fields.table.scopenote": "Nota de alcance",
|
||||||
@@ -752,8 +752,8 @@
|
|||||||
// "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "To add or remove an EPerson to/from this group, either click the 'Browse All' button or use the search bar below to search for users (use the dropdown to the left of the search bar to choose whether to search by metadata or by email). Then click the plus icon for each user you wish to add in the list below, or the trash can icon for each user you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages. Once you are ready, save your changes by clicking the 'Save' button in the top section.",
|
// "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "To add or remove an EPerson to/from this group, either click the 'Browse All' button or use the search bar below to search for users (use the dropdown to the left of the search bar to choose whether to search by metadata or by email). Then click the plus icon for each user you wish to add in the list below, or the trash can icon for each user you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages. Once you are ready, save your changes by clicking the 'Save' button in the top section.",
|
||||||
"admin.access-control.groups.form.tooltip.editGroup.addEpeople": "Para agregar o remover una persona en este grupo, pulse el botón ‘Examinar todo’ o utilice la barra de búsqueda de abajo para buscar los usuario (Use el desplegable que se encuentra a la derecha de la barra de búsqueda para seleccionar entre buscar por metadato o por correo electrónico). Posteriormente pulse el botón con el icono más por cada usuario que desea agregar a la lista, o el icono de papelera por cada usuario que desea remover. La lista puede contener varias páginas: utilice los controles de paginación debajo de la lista, para navegar a las siguientes páginas. Cuando haya finalizado, guarde sus cambios pulsando el botón ‘Guardar’ ubicado en la parte superior de la sección.",
|
"admin.access-control.groups.form.tooltip.editGroup.addEpeople": "Para agregar o remover una persona en este grupo, pulse el botón ‘Examinar todo’ o utilice la barra de búsqueda de abajo para buscar los usuario (Use el desplegable que se encuentra a la derecha de la barra de búsqueda para seleccionar entre buscar por metadato o por correo electrónico). Posteriormente pulse el botón con el icono más por cada usuario que desea agregar a la lista, o el icono de papelera por cada usuario que desea remover. La lista puede contener varias páginas: utilice los controles de paginación debajo de la lista, para navegar a las siguientes páginas. Cuando haya finalizado, guarde sus cambios pulsando el botón ‘Guardar’ ubicado en la parte superior de la sección.",
|
||||||
|
|
||||||
// "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "To add or remove a Subgroup to/from this group, either click the 'Browse All' button or use the search bar below to search for subgroups. Then click the plus icon for each subgroup you wish to add in the list below, or the trash can icon for each subgroup you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages. Once you are ready, save your changes by clicking the 'Save' button in the top section.",
|
// "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "To add or remove a Subgroup to/from this group, either click the 'Browse All' button or use the search bar below to search for users. Then click the plus icon for each user you wish to add in the list below, or the trash can icon for each user you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages. Once you are ready, save your changes by clicking the 'Save' button in the top section.",
|
||||||
"admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "Para agregar o remover un sub-grupo en este grupo, pulse el botón ‘Examinar todo’ o utilice la barra de búsqueda de abajo para buscar los subgrupos- Posteriormente pulse el botón con el icono más por cada sub-grupo que desea agregar a la lista, o el icono de papelera por cada sub-grupo que desea remover. La lista puede contener varias páginas: utilice los controles de paginación debajo de la lista, para navegar a las siguientes páginas. Cuando haya finalizado, guarde sus cambios pulsando el botón ‘Guardar’ ubicado en la parte superior de la sección.",
|
"admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "Para agregar o remover un sub-grupo en este grupo, pulse el botón 'Examinar todo' o utilice la barra de búsqueda de abajo para buscar los subgrupos- Posteriormente pulse el botón con el icono más por cada sub-grupo que desea agregar a la lista, o el icono de papelera por cada sub-grupo que desea remover. La lista puede contener varias páginas: utilice los controles de paginación debajo de la lista, para navegar a las siguientes páginas. Cuando haya finalizado, guarde sus cambios pulsando el botón ‘Guardar’ ubicado en la parte superior de la sección.",
|
||||||
|
|
||||||
// "admin.search.breadcrumbs": "Administrative Search",
|
// "admin.search.breadcrumbs": "Administrative Search",
|
||||||
"admin.search.breadcrumbs": "Búsqueda administrativa",
|
"admin.search.breadcrumbs": "Búsqueda administrativa",
|
||||||
@@ -1891,12 +1891,10 @@
|
|||||||
|
|
||||||
|
|
||||||
// "comcol-role.edit.scorereviewers.name": "Score Reviewers",
|
// "comcol-role.edit.scorereviewers.name": "Score Reviewers",
|
||||||
// TODO New key - Add a translation
|
"comcol-role.edit.scorereviewers.name": "Revisores de puntuación",
|
||||||
"comcol-role.edit.scorereviewers.name": "Score Reviewers",
|
|
||||||
|
|
||||||
// "comcol-role.edit.scorereviewers.description": "Reviewers are able to give a score to incoming submissions, this will define whether the submission will be rejected or not.",
|
// "comcol-role.edit.scorereviewers.description": "Reviewers are able to give a score to incoming submissions, this will define whether the submission will be rejected or not.",
|
||||||
// TODO New key - Add a translation
|
"comcol-role.edit.scorereviewers.description": "Los revisores pueden dar una puntuación a un envío entrante, esto definirá si el envío será rechazado o no.",
|
||||||
"comcol-role.edit.scorereviewers.description": "Reviewers are able to give a score to incoming submissions, this will define whether the submission will be rejected or not.",
|
|
||||||
|
|
||||||
// "community.form.abstract": "Short Description",
|
// "community.form.abstract": "Short Description",
|
||||||
"community.form.abstract": "Breve descripción",
|
"community.form.abstract": "Breve descripción",
|
||||||
@@ -2062,7 +2060,7 @@
|
|||||||
"cookies.consent.purpose.sharing": "Compartición",
|
"cookies.consent.purpose.sharing": "Compartición",
|
||||||
|
|
||||||
// "curation-task.task.citationpage.label": "Generate Citation Page",
|
// "curation-task.task.citationpage.label": "Generate Citation Page",
|
||||||
"curation-task.task.citationpage.label": "Generar página de cita",
|
"curation-task.task.citationpage.label": "Generar página de cita",
|
||||||
|
|
||||||
// "curation-task.task.checklinks.label": "Check Links in Metadata",
|
// "curation-task.task.checklinks.label": "Check Links in Metadata",
|
||||||
"curation-task.task.checklinks.label": "Comprobar enlaces en metadatos",
|
"curation-task.task.checklinks.label": "Comprobar enlaces en metadatos",
|
||||||
@@ -2262,7 +2260,7 @@
|
|||||||
"supervision-group-selector.notification.create.failure.title": "Error",
|
"supervision-group-selector.notification.create.failure.title": "Error",
|
||||||
|
|
||||||
// "supervision-group-selector.notification.create.already-existing" : "A supervision order already exists on this item for selected group",
|
// "supervision-group-selector.notification.create.already-existing" : "A supervision order already exists on this item for selected group",
|
||||||
"supervision-group-selector.notification.create.already-existing" : "Ya existe una orden de supervisión para este ítem en el grupo selecionado",
|
"supervision-group-selector.notification.create.already-existing": "Ya existe una orden de supervisión para este ítem en el grupo selecionado",
|
||||||
|
|
||||||
// "confirmation-modal.export-metadata.header": "Export metadata for {{ dsoName }}",
|
// "confirmation-modal.export-metadata.header": "Export metadata for {{ dsoName }}",
|
||||||
"confirmation-modal.export-metadata.header": "Exportar metadatos para {{ dsoName }}",
|
"confirmation-modal.export-metadata.header": "Exportar metadatos para {{ dsoName }}",
|
||||||
@@ -2425,7 +2423,7 @@
|
|||||||
"footer.link.end-user-agreement": "Acuerdo de usuario final",
|
"footer.link.end-user-agreement": "Acuerdo de usuario final",
|
||||||
|
|
||||||
// "footer.link.feedback":"Send Feedback",
|
// "footer.link.feedback":"Send Feedback",
|
||||||
"footer.link.feedback":"Enviar Sugerencias",
|
"footer.link.feedback": "Enviar Sugerencias",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -2588,6 +2586,9 @@
|
|||||||
// "form.submit": "Save",
|
// "form.submit": "Save",
|
||||||
"form.submit": "Guardar",
|
"form.submit": "Guardar",
|
||||||
|
|
||||||
|
// "form.create": "Create",
|
||||||
|
"form.create": "Crear",
|
||||||
|
|
||||||
// "form.repeatable.sort.tip": "Drop the item in the new position",
|
// "form.repeatable.sort.tip": "Drop the item in the new position",
|
||||||
"form.repeatable.sort.tip": "Suelte el ítem en la nueva posición",
|
"form.repeatable.sort.tip": "Suelte el ítem en la nueva posición",
|
||||||
|
|
||||||
@@ -2663,13 +2664,13 @@
|
|||||||
"health.breadcrumbs": "Chequeos",
|
"health.breadcrumbs": "Chequeos",
|
||||||
|
|
||||||
// "health-page.heading" : "Health",
|
// "health-page.heading" : "Health",
|
||||||
"health-page.heading" : "Chequeos",
|
"health-page.heading": "Chequeos",
|
||||||
|
|
||||||
// "health-page.info-tab" : "Info",
|
// "health-page.info-tab" : "Info",
|
||||||
"health-page.info-tab" : "Información",
|
"health-page.info-tab": "Información",
|
||||||
|
|
||||||
// "health-page.status-tab" : "Status",
|
// "health-page.status-tab" : "Status",
|
||||||
"health-page.status-tab" : "Estado",
|
"health-page.status-tab": "Estado",
|
||||||
|
|
||||||
// "health-page.error.msg": "The health check service is temporarily unavailable",
|
// "health-page.error.msg": "The health check service is temporarily unavailable",
|
||||||
"health-page.error.msg": "El servicio de comprobación no se encuentra temporalmente disponible",
|
"health-page.error.msg": "El servicio de comprobación no se encuentra temporalmente disponible",
|
||||||
@@ -2798,19 +2799,19 @@
|
|||||||
"info.feedback.email-label": "Su correo electrónico",
|
"info.feedback.email-label": "Su correo electrónico",
|
||||||
|
|
||||||
// "info.feedback.create.success" : "Feedback Sent Successfully!",
|
// "info.feedback.create.success" : "Feedback Sent Successfully!",
|
||||||
"info.feedback.create.success" : "Envío exitoso de sugerencia",
|
"info.feedback.create.success": "Envío exitoso de sugerencia",
|
||||||
|
|
||||||
// "info.feedback.error.email.required" : "A valid email address is required",
|
// "info.feedback.error.email.required" : "A valid email address is required",
|
||||||
"info.feedback.error.email.required" : "se requiere una dirección válida de correo electrónico",
|
"info.feedback.error.email.required": "se requiere una dirección válida de correo electrónico",
|
||||||
|
|
||||||
// "info.feedback.error.message.required" : "A comment is required",
|
// "info.feedback.error.message.required" : "A comment is required",
|
||||||
"info.feedback.error.message.required" : "Se requiere un comentario",
|
"info.feedback.error.message.required": "Se requiere un comentario",
|
||||||
|
|
||||||
// "info.feedback.page-label" : "Page",
|
// "info.feedback.page-label" : "Page",
|
||||||
"info.feedback.page-label" : "Página",
|
"info.feedback.page-label": "Página",
|
||||||
|
|
||||||
// "info.feedback.page_help" : "Tha page related to your feedback",
|
// "info.feedback.page_help" : "Tha page related to your feedback",
|
||||||
"info.feedback.page_help" : "La página relacionada con su sugerencia",
|
"info.feedback.page_help": "La página relacionada con su sugerencia",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -2847,7 +2848,7 @@
|
|||||||
// "item.bitstreams.upload.bundle.new": "Create bundle",
|
// "item.bitstreams.upload.bundle.new": "Create bundle",
|
||||||
"item.bitstreams.upload.bundle.new": "Crear bloque",
|
"item.bitstreams.upload.bundle.new": "Crear bloque",
|
||||||
|
|
||||||
// "item.bitstreams.upload.bundles.empty": "This item doesn\'t contain any bundles to upload a bitstream to.",
|
// "item.bitstreams.upload.bundles.empty": "This item doesn't contain any bundles to upload a bitstream to.",
|
||||||
"item.bitstreams.upload.bundles.empty": "Este ítem no contiene ningún bloque para cargar un archivo.",
|
"item.bitstreams.upload.bundles.empty": "Este ítem no contiene ningún bloque para cargar un archivo.",
|
||||||
|
|
||||||
// "item.bitstreams.upload.cancel": "Cancel",
|
// "item.bitstreams.upload.cancel": "Cancel",
|
||||||
@@ -3547,10 +3548,10 @@
|
|||||||
"workflow-item.search.result.delete-supervision.modal.confirm": "Borrar",
|
"workflow-item.search.result.delete-supervision.modal.confirm": "Borrar",
|
||||||
|
|
||||||
// "workflow-item.search.result.notification.deleted.success": "Successfully deleted supervision order \"{{name}}\"",
|
// "workflow-item.search.result.notification.deleted.success": "Successfully deleted supervision order \"{{name}}\"",
|
||||||
"workflow-item.search.result.notification.deleted.success": "La orden de supervisión \”{{ name }}”\ ha sido borrada exitosamente",
|
"workflow-item.search.result.notification.deleted.success": "La orden de supervisión \"{{ name }}\" ha sido borrada exitosamente",
|
||||||
|
|
||||||
// "workflow-item.search.result.notification.deleted.failure": "Failed to delete supervision order \"{{name}}\"",
|
// "workflow-item.search.result.notification.deleted.failure": "Failed to delete supervision order \"{{name}}\"",
|
||||||
"workflow-item.search.result.notification.deleted.failure": "Error al borrar la orden de supervisión \”{{ name }}\”",
|
"workflow-item.search.result.notification.deleted.failure": "Error al borrar la orden de supervisión \"{{ name }}\"",
|
||||||
|
|
||||||
// "workflow-item.search.result.list.element.supervised-by": "Supervised by:",
|
// "workflow-item.search.result.list.element.supervised-by": "Supervised by:",
|
||||||
"workflow-item.search.result.list.element.supervised-by": "Supervisado por:",
|
"workflow-item.search.result.list.element.supervised-by": "Supervisado por:",
|
||||||
@@ -3699,25 +3700,25 @@
|
|||||||
"item.preview.dc.type": "Tipo:",
|
"item.preview.dc.type": "Tipo:",
|
||||||
|
|
||||||
// "item.preview.oaire.citation.issue" : "Issue",
|
// "item.preview.oaire.citation.issue" : "Issue",
|
||||||
"item.preview.oaire.citation.issue" : "Número",
|
"item.preview.oaire.citation.issue": "Número",
|
||||||
|
|
||||||
// "item.preview.oaire.citation.volume" : "Volume",
|
// "item.preview.oaire.citation.volume" : "Volume",
|
||||||
"item.preview.oaire.citation.volume" : "Volumen",
|
"item.preview.oaire.citation.volume": "Volumen",
|
||||||
|
|
||||||
// "item.preview.dc.relation.issn" : "ISSN",
|
// "item.preview.dc.relation.issn" : "ISSN",
|
||||||
"item.preview.dc.relation.issn" : "ISSN",
|
"item.preview.dc.relation.issn": "ISSN",
|
||||||
|
|
||||||
// "item.preview.dc.identifier.isbn" : "ISBN",
|
// "item.preview.dc.identifier.isbn" : "ISBN",
|
||||||
"item.preview.dc.identifier.isbn" : "ISBN",
|
"item.preview.dc.identifier.isbn": "ISBN",
|
||||||
|
|
||||||
// "item.preview.dc.identifier": "Identifier:",
|
// "item.preview.dc.identifier": "Identifier:",
|
||||||
"item.preview.dc.identifier": "Identificador:",
|
"item.preview.dc.identifier": "Identificador:",
|
||||||
|
|
||||||
// "item.preview.dc.relation.ispartof" : "Journal or Serie",
|
// "item.preview.dc.relation.ispartof" : "Journal or Serie",
|
||||||
"item.preview.dc.relation.ispartof" : "Revista o Serie",
|
"item.preview.dc.relation.ispartof": "Revista o Serie",
|
||||||
|
|
||||||
// "item.preview.dc.identifier.doi" : "DOI",
|
// "item.preview.dc.identifier.doi" : "DOI",
|
||||||
"item.preview.dc.identifier.doi" : "DOI",
|
"item.preview.dc.identifier.doi": "DOI",
|
||||||
|
|
||||||
// "item.preview.person.familyName": "Surname:",
|
// "item.preview.person.familyName": "Surname:",
|
||||||
"item.preview.person.familyName": "Apellido:",
|
"item.preview.person.familyName": "Apellido:",
|
||||||
@@ -3863,13 +3864,13 @@
|
|||||||
"item.version.create.modal.submitted.text": "Se está creando la nueva versión. Si el ítem tiene muchas relaciones, este proceso podría tardar.",
|
"item.version.create.modal.submitted.text": "Se está creando la nueva versión. Si el ítem tiene muchas relaciones, este proceso podría tardar.",
|
||||||
|
|
||||||
// "item.version.create.notification.success" : "New version has been created with version number {{version}}",
|
// "item.version.create.notification.success" : "New version has been created with version number {{version}}",
|
||||||
"item.version.create.notification.success" : "Se ha creado una nueva versión con número {{version}}",
|
"item.version.create.notification.success": "Se ha creado una nueva versión con número {{version}}",
|
||||||
|
|
||||||
// "item.version.create.notification.failure" : "New version has not been created",
|
// "item.version.create.notification.failure" : "New version has not been created",
|
||||||
"item.version.create.notification.failure" : "No se ha creado una nueva versión",
|
"item.version.create.notification.failure": "No se ha creado una nueva versión",
|
||||||
|
|
||||||
// "item.version.create.notification.inProgress" : "A new version cannot be created because there is an inprogress submission in the version history",
|
// "item.version.create.notification.inProgress" : "A new version cannot be created because there is an inprogress submission in the version history",
|
||||||
"item.version.create.notification.inProgress" : "No es posible crear una nueva versión puesto que existe en el historial de versiones un envío pendiente",
|
"item.version.create.notification.inProgress": "No es posible crear una nueva versión puesto que existe en el historial de versiones un envío pendiente",
|
||||||
|
|
||||||
|
|
||||||
// "item.version.delete.modal.header": "Delete version",
|
// "item.version.delete.modal.header": "Delete version",
|
||||||
@@ -3891,17 +3892,17 @@
|
|||||||
"item.version.delete.modal.button.cancel.tooltip": "No borrar esta versión",
|
"item.version.delete.modal.button.cancel.tooltip": "No borrar esta versión",
|
||||||
|
|
||||||
// "item.version.delete.notification.success" : "Version number {{version}} has been deleted",
|
// "item.version.delete.notification.success" : "Version number {{version}} has been deleted",
|
||||||
"item.version.delete.notification.success" : "Se ha borrado la versión número {{version}}",
|
"item.version.delete.notification.success": "Se ha borrado la versión número {{version}}",
|
||||||
|
|
||||||
// "item.version.delete.notification.failure" : "Version number {{version}} has not been deleted",
|
// "item.version.delete.notification.failure" : "Version number {{version}} has not been deleted",
|
||||||
"item.version.delete.notification.failure" : "No se ha borrado la versión número {{version}}",
|
"item.version.delete.notification.failure": "No se ha borrado la versión número {{version}}",
|
||||||
|
|
||||||
|
|
||||||
// "item.version.edit.notification.success" : "The summary of version number {{version}} has been changed",
|
// "item.version.edit.notification.success" : "The summary of version number {{version}} has been changed",
|
||||||
"item.version.edit.notification.success" : "Ha cambiado el resumen de la versión número {{version}}",
|
"item.version.edit.notification.success": "Ha cambiado el resumen de la versión número {{version}}",
|
||||||
|
|
||||||
// "item.version.edit.notification.failure" : "The summary of version number {{version}} has not been changed",
|
// "item.version.edit.notification.failure" : "The summary of version number {{version}} has not been changed",
|
||||||
"item.version.edit.notification.failure" : "No ha cambiado el resumen de la versión número {{version}}",
|
"item.version.edit.notification.failure": "No ha cambiado el resumen de la versión número {{version}}",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -3953,8 +3954,8 @@
|
|||||||
// "itemtemplate.edit.metadata.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button",
|
// "itemtemplate.edit.metadata.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button",
|
||||||
"itemtemplate.edit.metadata.notifications.discarded.content": "Sus cambios fueron descartados. Para recuperar sus cambios pulse el botón 'Deshacer'",
|
"itemtemplate.edit.metadata.notifications.discarded.content": "Sus cambios fueron descartados. Para recuperar sus cambios pulse el botón 'Deshacer'",
|
||||||
|
|
||||||
// "itemtemplate.edit.metadata.notifications.discarded.title": "Changed discarded",
|
// "itemtemplate.edit.metadata.notifications.discarded.title": "Changes discarded",
|
||||||
"itemtemplate.edit.metadata.notifications.discarded.title": "Cambio descartado",
|
"itemtemplate.edit.metadata.notifications.discarded.title": "Cambios descartados",
|
||||||
|
|
||||||
// "itemtemplate.edit.metadata.notifications.error.title": "An error occurred",
|
// "itemtemplate.edit.metadata.notifications.error.title": "An error occurred",
|
||||||
"itemtemplate.edit.metadata.notifications.error.title": "Ocurrió un error",
|
"itemtemplate.edit.metadata.notifications.error.title": "Ocurrió un error",
|
||||||
@@ -3968,8 +3969,8 @@
|
|||||||
// "itemtemplate.edit.metadata.notifications.outdated.content": "The item template you're currently working on has been changed by another user. Your current changes are discarded to prevent conflicts",
|
// "itemtemplate.edit.metadata.notifications.outdated.content": "The item template you're currently working on has been changed by another user. Your current changes are discarded to prevent conflicts",
|
||||||
"itemtemplate.edit.metadata.notifications.outdated.content": "La plantilla de ítem en la que usted esta trabajando actualmente ha sido cambiada por otro usuario. Sus cambios han sido descartados para evitar conflictos",
|
"itemtemplate.edit.metadata.notifications.outdated.content": "La plantilla de ítem en la que usted esta trabajando actualmente ha sido cambiada por otro usuario. Sus cambios han sido descartados para evitar conflictos",
|
||||||
|
|
||||||
// "itemtemplate.edit.metadata.notifications.outdated.title": "Changed outdated",
|
// "itemtemplate.edit.metadata.notifications.outdated.title": "Changes outdated",
|
||||||
"itemtemplate.edit.metadata.notifications.outdated.title": "Cambiado obsoleto",
|
"itemtemplate.edit.metadata.notifications.outdated.title": "Cambios obsoletos",
|
||||||
|
|
||||||
// "itemtemplate.edit.metadata.notifications.saved.content": "Your changes to this item template's metadata were saved.",
|
// "itemtemplate.edit.metadata.notifications.saved.content": "Your changes to this item template's metadata were saved.",
|
||||||
"itemtemplate.edit.metadata.notifications.saved.content": "Sus cambios a los metadatos de esta plantilla de ítem han sido guardados.",
|
"itemtemplate.edit.metadata.notifications.saved.content": "Sus cambios a los metadatos de esta plantilla de ítem han sido guardados.",
|
||||||
@@ -4637,7 +4638,7 @@
|
|||||||
"nav.stop-impersonating": "Dejar de hacerse pasar por usuario",
|
"nav.stop-impersonating": "Dejar de hacerse pasar por usuario",
|
||||||
|
|
||||||
// "nav.subscriptions" : "Subscriptions",
|
// "nav.subscriptions" : "Subscriptions",
|
||||||
"nav.subscriptions" : "Suscripciones",
|
"nav.subscriptions": "Suscripciones",
|
||||||
|
|
||||||
// "nav.toggle" : "Toggle navigation",
|
// "nav.toggle" : "Toggle navigation",
|
||||||
"nav.toggle": "Alternar navegación",
|
"nav.toggle": "Alternar navegación",
|
||||||
@@ -5211,7 +5212,6 @@
|
|||||||
|
|
||||||
// "register-page.registration.google-recaptcha.must-accept-cookies": "In order to register you must accept the <b>Registration and Password recovery</b> (Google reCaptcha) cookies.",
|
// "register-page.registration.google-recaptcha.must-accept-cookies": "In order to register you must accept the <b>Registration and Password recovery</b> (Google reCaptcha) cookies.",
|
||||||
"register-page.registration.google-recaptcha.must-accept-cookies": "Para registrarse debe aceptar las cookies de <b>Registro y recuperación de contraseña</b> (Google reCaptcha).",
|
"register-page.registration.google-recaptcha.must-accept-cookies": "Para registrarse debe aceptar las cookies de <b>Registro y recuperación de contraseña</b> (Google reCaptcha).",
|
||||||
|
|
||||||
// "register-page.registration.error.maildomain": "This email address is not on the list of domains who can register. Allowed domains are {{ domains }}",
|
// "register-page.registration.error.maildomain": "This email address is not on the list of domains who can register. Allowed domains are {{ domains }}",
|
||||||
"register-page.registration.error.maildomain": "Este correo electrónico no esta en la lista de dominios que pueden registrarse. Los dominios permitidos son {{ domains }}",
|
"register-page.registration.error.maildomain": "Este correo electrónico no esta en la lista de dominios que pueden registrarse. Los dominios permitidos son {{ domains }}",
|
||||||
|
|
||||||
@@ -5226,7 +5226,6 @@
|
|||||||
|
|
||||||
// "register-page.registration.google-recaptcha.notification.message.expired": "Verification expired. Please verify again.",
|
// "register-page.registration.google-recaptcha.notification.message.expired": "Verification expired. Please verify again.",
|
||||||
"register-page.registration.google-recaptcha.notification.message.expired": "Verificación caducada. Verifique de nuevo.",
|
"register-page.registration.google-recaptcha.notification.message.expired": "Verificación caducada. Verifique de nuevo.",
|
||||||
|
|
||||||
// "register-page.registration.info.maildomain": "Accounts can be registered for mail addresses of the domains",
|
// "register-page.registration.info.maildomain": "Accounts can be registered for mail addresses of the domains",
|
||||||
"register-page.registration.info.maildomain": "Las cuentas pueden registrarse para las direcciones de correo de los dominios",
|
"register-page.registration.info.maildomain": "Las cuentas pueden registrarse para las direcciones de correo de los dominios",
|
||||||
|
|
||||||
@@ -5943,6 +5942,8 @@
|
|||||||
// "statistics.table.header.views": "Views",
|
// "statistics.table.header.views": "Views",
|
||||||
"statistics.table.header.views": "Visitas",
|
"statistics.table.header.views": "Visitas",
|
||||||
|
|
||||||
|
// "statistics.table.no-name": "(object name could not be loaded)",
|
||||||
|
"statistics.table.no-name": "(el nombre del objeto no pudo ser cargado)",
|
||||||
|
|
||||||
|
|
||||||
// "submission.edit.breadcrumbs": "Edit Submission",
|
// "submission.edit.breadcrumbs": "Edit Submission",
|
||||||
@@ -6531,7 +6532,7 @@
|
|||||||
// "submission.sections.describe.relationship-lookup.selection-tab.title": "Search Results",
|
// "submission.sections.describe.relationship-lookup.selection-tab.title": "Search Results",
|
||||||
"submission.sections.describe.relationship-lookup.selection-tab.title": "Resultados de la búsqueda",
|
"submission.sections.describe.relationship-lookup.selection-tab.title": "Resultados de la búsqueda",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don\'t you can still use it for this submission.",
|
// "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don't you can still use it for this submission.",
|
||||||
"submission.sections.describe.relationship-lookup.name-variant.notification.content": "¿Le gustaría guardar \"{{ value }}\" como una variante de nombre para esta persona para que usted y otros puedan reutilizarlo para envíos futuros? Si no lo hace, aún puede usarlo para este envío.",
|
"submission.sections.describe.relationship-lookup.name-variant.notification.content": "¿Le gustaría guardar \"{{ value }}\" como una variante de nombre para esta persona para que usted y otros puedan reutilizarlo para envíos futuros? Si no lo hace, aún puede usarlo para este envío.",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant",
|
// "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant",
|
||||||
@@ -6842,7 +6843,7 @@
|
|||||||
"submission.sections.license.required": "Debe aceptar la licencia",
|
"submission.sections.license.required": "Debe aceptar la licencia",
|
||||||
|
|
||||||
// "submission.sections.license.notgranted": "You must accept the license",
|
// "submission.sections.license.notgranted": "You must accept the license",
|
||||||
"submission.sections.license.notgranted": "Debe aceptar la licencia",
|
"submission.sections.license.notgranted": "Debe aceptar la licencia",
|
||||||
|
|
||||||
|
|
||||||
// "submission.sections.sherpa.publication.information": "Publication information",
|
// "submission.sections.sherpa.publication.information": "Publication information",
|
||||||
@@ -6936,8 +6937,8 @@
|
|||||||
// "submission.workflow.generic.delete": "Delete",
|
// "submission.workflow.generic.delete": "Delete",
|
||||||
"submission.workflow.generic.delete": "Eliminar",
|
"submission.workflow.generic.delete": "Eliminar",
|
||||||
|
|
||||||
// "submission.workflow.generic.delete-help": "If you would to discard this item, select \"Delete\". You will then be asked to confirm it.",
|
// "submission.workflow.generic.delete-help": "Select this option to discard this item. You will then be asked to confirm it.",
|
||||||
"submission.workflow.generic.delete-help": "Si desea descartar este ítem, seleccione \"Eliminar\". Luego se le pedirá que lo confirme.",
|
"submission.workflow.generic.delete-help": "Seleccione esta opción para descartar este ítem. A contunuación se le pedirá confirmación.",
|
||||||
|
|
||||||
// "submission.workflow.generic.edit": "Edit",
|
// "submission.workflow.generic.edit": "Edit",
|
||||||
"submission.workflow.generic.edit": "Editar",
|
"submission.workflow.generic.edit": "Editar",
|
||||||
@@ -7084,12 +7085,12 @@
|
|||||||
"subscriptions.modal.close": "Cerrar",
|
"subscriptions.modal.close": "Cerrar",
|
||||||
|
|
||||||
// "subscriptions.modal.delete-info": "To remove this subscription, please visit the \"Subscriptions\" page under your user profile",
|
// "subscriptions.modal.delete-info": "To remove this subscription, please visit the \"Subscriptions\" page under your user profile",
|
||||||
"subscriptions.modal.delete-info": "Para eliminar esta suscripción, por favor visite la página \”Suscripciones”\ en su perfil de usuario",
|
"subscriptions.modal.delete-info": "Para eliminar esta suscripción, por favor visite la página \"Suscripciones\" en su perfil de usuario",
|
||||||
|
|
||||||
// "subscriptions.modal.new-subscription-form.type.content": "Content",
|
// "subscriptions.modal.new-subscription-form.type.content": "Content",
|
||||||
"subscriptions.modal.new-subscription-form.type.content": "Contenido",
|
"subscriptions.modal.new-subscription-form.type.content": "Contenido",
|
||||||
|
|
||||||
// "subscriptions.modal.new-subscription-form.frequency.D": "Diario",
|
// "subscriptions.modal.new-subscription-form.frequency.D": "Daily",
|
||||||
"subscriptions.modal.new-subscription-form.frequency.D": "Diario",
|
"subscriptions.modal.new-subscription-form.frequency.D": "Diario",
|
||||||
|
|
||||||
// "subscriptions.modal.new-subscription-form.frequency.W": "Weekly",
|
// "subscriptions.modal.new-subscription-form.frequency.W": "Weekly",
|
||||||
@@ -7345,8 +7346,8 @@
|
|||||||
"workflow-item.selectrevieweraction.button.confirm": "Confirmar",
|
"workflow-item.selectrevieweraction.button.confirm": "Confirmar",
|
||||||
|
|
||||||
|
|
||||||
// "workflow-item.scorereviewaction.notification.success.title": "Revisar evaluación",
|
// "workflow-item.scorereviewaction.notification.success.title": "Rating review",
|
||||||
"workflow-item.scorereviewaction.notification.success.title": "Revisar evaluación",
|
"workflow-item.scorereviewaction.notification.success.title": "Revisión de evaluación",
|
||||||
|
|
||||||
// "workflow-item.scorereviewaction.notification.success.content": "The rating for this item workflow item has been successfully submitted",
|
// "workflow-item.scorereviewaction.notification.success.content": "The rating for this item workflow item has been successfully submitted",
|
||||||
"workflow-item.scorereviewaction.notification.success.content": "La evaluación para este ítem ha sido enviada exitosamente",
|
"workflow-item.scorereviewaction.notification.success.content": "La evaluación para este ítem ha sido enviada exitosamente",
|
||||||
@@ -7382,7 +7383,7 @@
|
|||||||
"idle-modal.extend-session": "Prolongar la sesión",
|
"idle-modal.extend-session": "Prolongar la sesión",
|
||||||
|
|
||||||
// "researcher.profile.action.processing" : "Processing...",
|
// "researcher.profile.action.processing" : "Processing...",
|
||||||
"researcher.profile.action.processing" : "Procesando...",
|
"researcher.profile.action.processing": "Procesando...",
|
||||||
|
|
||||||
// "researcher.profile.associated": "Researcher profile associated",
|
// "researcher.profile.associated": "Researcher profile associated",
|
||||||
"researcher.profile.associated": "Perfil asociado de investigador",
|
"researcher.profile.associated": "Perfil asociado de investigador",
|
||||||
@@ -7415,10 +7416,10 @@
|
|||||||
"researcher.profile.view": "Ver",
|
"researcher.profile.view": "Ver",
|
||||||
|
|
||||||
// "researcher.profile.private.visibility" : "PRIVATE",
|
// "researcher.profile.private.visibility" : "PRIVATE",
|
||||||
"researcher.profile.private.visibility" : "PRIVADO",
|
"researcher.profile.private.visibility": "PRIVADO",
|
||||||
|
|
||||||
// "researcher.profile.public.visibility" : "PUBLIC",
|
// "researcher.profile.public.visibility" : "PUBLIC",
|
||||||
"researcher.profile.public.visibility" : "PÚBLICO",
|
"researcher.profile.public.visibility": "PÚBLICO",
|
||||||
|
|
||||||
// "researcher.profile.status": "Status:",
|
// "researcher.profile.status": "Status:",
|
||||||
"researcher.profile.status": "Estado:",
|
"researcher.profile.status": "Estado:",
|
||||||
@@ -7427,16 +7428,16 @@
|
|||||||
"researcherprofile.claim.not-authorized": "No está autorizado pare reclamar este ítem. Contacte con el administrador para mas detalles.",
|
"researcherprofile.claim.not-authorized": "No está autorizado pare reclamar este ítem. Contacte con el administrador para mas detalles.",
|
||||||
|
|
||||||
// "researcherprofile.error.claim.body" : "An error occurred while claiming the profile, please try again later",
|
// "researcherprofile.error.claim.body" : "An error occurred while claiming the profile, please try again later",
|
||||||
"researcherprofile.error.claim.body" : "Hubo un error reclamando el perfil, por favor, inténtelo mas tarde",
|
"researcherprofile.error.claim.body": "Hubo un error reclamando el perfil, por favor, inténtelo mas tarde",
|
||||||
|
|
||||||
// "researcherprofile.error.claim.title" : "Error",
|
// "researcherprofile.error.claim.title" : "Error",
|
||||||
"researcherprofile.error.claim.title" : "Error",
|
"researcherprofile.error.claim.title": "Error",
|
||||||
|
|
||||||
// "researcherprofile.success.claim.body" : "Profile claimed with success",
|
// "researcherprofile.success.claim.body" : "Profile claimed with success",
|
||||||
"researcherprofile.success.claim.body" : "Perfil reclamado con éxito",
|
"researcherprofile.success.claim.body": "Perfil reclamado con éxito",
|
||||||
|
|
||||||
// "researcherprofile.success.claim.title" : "Success",
|
// "researcherprofile.success.claim.title" : "Success",
|
||||||
"researcherprofile.success.claim.title" : "Éxito",
|
"researcherprofile.success.claim.title": "Éxito",
|
||||||
|
|
||||||
// "person.page.orcid.create": "Create an ORCID ID",
|
// "person.page.orcid.create": "Create an ORCID ID",
|
||||||
"person.page.orcid.create": "Crear un ORCID ID",
|
"person.page.orcid.create": "Crear un ORCID ID",
|
||||||
@@ -7445,7 +7446,7 @@
|
|||||||
"person.page.orcid.granted-authorizations": "Autorizaciones concedidas",
|
"person.page.orcid.granted-authorizations": "Autorizaciones concedidas",
|
||||||
|
|
||||||
// "person.page.orcid.grant-authorizations" : "Grant authorizations",
|
// "person.page.orcid.grant-authorizations" : "Grant authorizations",
|
||||||
"person.page.orcid.grant-authorizations" : "Conceder autorizaciones",
|
"person.page.orcid.grant-authorizations": "Conceder autorizaciones",
|
||||||
|
|
||||||
// "person.page.orcid.link": "Connect to ORCID ID",
|
// "person.page.orcid.link": "Connect to ORCID ID",
|
||||||
"person.page.orcid.link": "Conectar con ORCID ID",
|
"person.page.orcid.link": "Conectar con ORCID ID",
|
||||||
@@ -7493,43 +7494,43 @@
|
|||||||
"person.page.orcid.save.preference.changes": "Actualizar configuración",
|
"person.page.orcid.save.preference.changes": "Actualizar configuración",
|
||||||
|
|
||||||
// "person.page.orcid.sync-profile.affiliation" : "Affiliation",
|
// "person.page.orcid.sync-profile.affiliation" : "Affiliation",
|
||||||
"person.page.orcid.sync-profile.affiliation" : "Afiliación",
|
"person.page.orcid.sync-profile.affiliation": "Afiliación",
|
||||||
|
|
||||||
// "person.page.orcid.sync-profile.biographical" : "Biographical data",
|
// "person.page.orcid.sync-profile.biographical" : "Biographical data",
|
||||||
"person.page.orcid.sync-profile.biographical" : "Biografía",
|
"person.page.orcid.sync-profile.biographical": "Biografía",
|
||||||
|
|
||||||
// "person.page.orcid.sync-profile.education" : "Education",
|
// "person.page.orcid.sync-profile.education" : "Education",
|
||||||
"person.page.orcid.sync-profile.education" : "Grados",
|
"person.page.orcid.sync-profile.education": "Grados",
|
||||||
|
|
||||||
// "person.page.orcid.sync-profile.identifiers" : "Identifiers",
|
// "person.page.orcid.sync-profile.identifiers" : "Identifiers",
|
||||||
"person.page.orcid.sync-profile.identifiers" : "Identificadores",
|
"person.page.orcid.sync-profile.identifiers": "Identificadores",
|
||||||
|
|
||||||
// "person.page.orcid.sync-fundings.all" : "All fundings",
|
// "person.page.orcid.sync-fundings.all" : "All fundings",
|
||||||
"person.page.orcid.sync-fundings.all" : "Todas las financiaciones",
|
"person.page.orcid.sync-fundings.all": "Todas las financiaciones",
|
||||||
|
|
||||||
// "person.page.orcid.sync-fundings.mine" : "My fundings",
|
// "person.page.orcid.sync-fundings.mine" : "My fundings",
|
||||||
"person.page.orcid.sync-fundings.mine" : "Mi financiación",
|
"person.page.orcid.sync-fundings.mine": "Mi financiación",
|
||||||
|
|
||||||
// "person.page.orcid.sync-fundings.my_selected" : "Selected fundings",
|
// "person.page.orcid.sync-fundings.my_selected" : "Selected fundings",
|
||||||
"person.page.orcid.sync-fundings.my_selected" : "Financiaciones seleccionadas",
|
"person.page.orcid.sync-fundings.my_selected": "Financiaciones seleccionadas",
|
||||||
|
|
||||||
// "person.page.orcid.sync-fundings.disabled" : "Disabled",
|
// "person.page.orcid.sync-fundings.disabled" : "Disabled",
|
||||||
"person.page.orcid.sync-fundings.disabled" : "Deshabilitado",
|
"person.page.orcid.sync-fundings.disabled": "Deshabilitado",
|
||||||
|
|
||||||
// "person.page.orcid.sync-publications.all" : "All publications",
|
// "person.page.orcid.sync-publications.all" : "All publications",
|
||||||
"person.page.orcid.sync-publications.all" : "Todas las publicaciones",
|
"person.page.orcid.sync-publications.all": "Todas las publicaciones",
|
||||||
|
|
||||||
// "person.page.orcid.sync-publications.mine" : "My publications",
|
// "person.page.orcid.sync-publications.mine" : "My publications",
|
||||||
"person.page.orcid.sync-publications.mine" : "Mis publicaciones",
|
"person.page.orcid.sync-publications.mine": "Mis publicaciones",
|
||||||
|
|
||||||
// "person.page.orcid.sync-publications.my_selected" : "Selected publications",
|
// "person.page.orcid.sync-publications.my_selected" : "Selected publications",
|
||||||
"person.page.orcid.sync-publications.my_selected" : "Publicaciones seleccionadas",
|
"person.page.orcid.sync-publications.my_selected": "Publicaciones seleccionadas",
|
||||||
|
|
||||||
// "person.page.orcid.sync-publications.disabled" : "Disabled",
|
// "person.page.orcid.sync-publications.disabled" : "Disabled",
|
||||||
"person.page.orcid.sync-publications.disabled" : "Deshabilitado",
|
"person.page.orcid.sync-publications.disabled": "Deshabilitado",
|
||||||
|
|
||||||
// "person.page.orcid.sync-queue.discard" : "Discard the change and do not synchronize with the ORCID registry",
|
// "person.page.orcid.sync-queue.discard" : "Discard the change and do not synchronize with the ORCID registry",
|
||||||
"person.page.orcid.sync-queue.discard" : "Deshechar el cambio y no sincronizar con ORCID",
|
"person.page.orcid.sync-queue.discard": "Deshechar el cambio y no sincronizar con ORCID",
|
||||||
|
|
||||||
// "person.page.orcid.sync-queue.discard.error": "The discarding of the ORCID queue record failed",
|
// "person.page.orcid.sync-queue.discard.error": "The discarding of the ORCID queue record failed",
|
||||||
"person.page.orcid.sync-queue.discard.error": "Falló el borrado del registro ORCID en la cola",
|
"person.page.orcid.sync-queue.discard.error": "Falló el borrado del registro ORCID en la cola",
|
||||||
@@ -7541,13 +7542,13 @@
|
|||||||
"person.page.orcid.sync-queue.empty-message": "La cola del registro de ORCID está vacía",
|
"person.page.orcid.sync-queue.empty-message": "La cola del registro de ORCID está vacía",
|
||||||
|
|
||||||
// "person.page.orcid.sync-queue.table.header.type" : "Type",
|
// "person.page.orcid.sync-queue.table.header.type" : "Type",
|
||||||
"person.page.orcid.sync-queue.table.header.type" : "Tipo",
|
"person.page.orcid.sync-queue.table.header.type": "Tipo",
|
||||||
|
|
||||||
// "person.page.orcid.sync-queue.table.header.description" : "Description",
|
// "person.page.orcid.sync-queue.table.header.description" : "Description",
|
||||||
"person.page.orcid.sync-queue.table.header.description" : "Descripción",
|
"person.page.orcid.sync-queue.table.header.description": "Descripción",
|
||||||
|
|
||||||
// "person.page.orcid.sync-queue.table.header.action" : "Action",
|
// "person.page.orcid.sync-queue.table.header.action" : "Action",
|
||||||
"person.page.orcid.sync-queue.table.header.action" : "Acción",
|
"person.page.orcid.sync-queue.table.header.action": "Acción",
|
||||||
|
|
||||||
// "person.page.orcid.sync-queue.description.affiliation": "Affiliations",
|
// "person.page.orcid.sync-queue.description.affiliation": "Affiliations",
|
||||||
"person.page.orcid.sync-queue.description.affiliation": "Affiliaciones",
|
"person.page.orcid.sync-queue.description.affiliation": "Affiliaciones",
|
||||||
@@ -7613,7 +7614,7 @@
|
|||||||
"person.page.orcid.sync-queue.tooltip.researcher_urls": "URL del investigador",
|
"person.page.orcid.sync-queue.tooltip.researcher_urls": "URL del investigador",
|
||||||
|
|
||||||
// "person.page.orcid.sync-queue.send" : "Synchronize with ORCID registry",
|
// "person.page.orcid.sync-queue.send" : "Synchronize with ORCID registry",
|
||||||
"person.page.orcid.sync-queue.send" : "Sincronizar con el registro ORCID",
|
"person.page.orcid.sync-queue.send": "Sincronizar con el registro ORCID",
|
||||||
|
|
||||||
// "person.page.orcid.sync-queue.send.unauthorized-error.title": "The submission to ORCID failed for missing authorizations.",
|
// "person.page.orcid.sync-queue.send.unauthorized-error.title": "The submission to ORCID failed for missing authorizations.",
|
||||||
"person.page.orcid.sync-queue.send.unauthorized-error.title": "Falló el envío a ORCID debdo a autorización insuficiente.",
|
"person.page.orcid.sync-queue.send.unauthorized-error.title": "Falló el envío a ORCID debdo a autorización insuficiente.",
|
||||||
@@ -7667,7 +7668,7 @@
|
|||||||
"person.page.orcid.sync-queue.send.validation-error.organization.name-required": "Se requiere el nombre de la organización",
|
"person.page.orcid.sync-queue.send.validation-error.organization.name-required": "Se requiere el nombre de la organización",
|
||||||
|
|
||||||
// "person.page.orcid.sync-queue.send.validation-error.publication.date-invalid" : "The publication date must be one year after 1900",
|
// "person.page.orcid.sync-queue.send.validation-error.publication.date-invalid" : "The publication date must be one year after 1900",
|
||||||
"person.page.orcid.sync-queue.send.validation-error.publication.date-invalid" : "la fecha de la publicación debe ser posterior a 1900",
|
"person.page.orcid.sync-queue.send.validation-error.publication.date-invalid": "la fecha de la publicación debe ser posterior a 1900",
|
||||||
|
|
||||||
// "person.page.orcid.sync-queue.send.validation-error.organization.address-required": "The organization to be sent requires an address",
|
// "person.page.orcid.sync-queue.send.validation-error.organization.address-required": "The organization to be sent requires an address",
|
||||||
"person.page.orcid.sync-queue.send.validation-error.organization.address-required": "Se requiere la dirección de la organización",
|
"person.page.orcid.sync-queue.send.validation-error.organization.address-required": "Se requiere la dirección de la organización",
|
||||||
|
@@ -158,7 +158,7 @@
|
|||||||
"admin.registries.bitstream-formats.table.name": "Nimi",
|
"admin.registries.bitstream-formats.table.name": "Nimi",
|
||||||
|
|
||||||
// "admin.registries.bitstream-formats.table.id" : "ID",
|
// "admin.registries.bitstream-formats.table.id" : "ID",
|
||||||
"admin.registries.bitstream-formats.table.id" : "ID",
|
"admin.registries.bitstream-formats.table.id": "ID",
|
||||||
|
|
||||||
// "admin.registries.bitstream-formats.table.return": "Return",
|
// "admin.registries.bitstream-formats.table.return": "Return",
|
||||||
"admin.registries.bitstream-formats.table.return": "Palaa",
|
"admin.registries.bitstream-formats.table.return": "Palaa",
|
||||||
@@ -239,8 +239,8 @@
|
|||||||
// "admin.registries.schema.fields.table.field": "Field",
|
// "admin.registries.schema.fields.table.field": "Field",
|
||||||
"admin.registries.schema.fields.table.field": "Kenttä",
|
"admin.registries.schema.fields.table.field": "Kenttä",
|
||||||
|
|
||||||
// "admin.registries.schema.fields.table.id" : "ID",
|
// "admin.registries.schema.fields.table.id": "ID",
|
||||||
"admin.registries.schema.fields.table.id" : "ID",
|
"admin.registries.schema.fields.table.id": "ID",
|
||||||
|
|
||||||
// "admin.registries.schema.fields.table.scopenote": "Scope Note",
|
// "admin.registries.schema.fields.table.scopenote": "Scope Note",
|
||||||
"admin.registries.schema.fields.table.scopenote": "Soveltamisala",
|
"admin.registries.schema.fields.table.scopenote": "Soveltamisala",
|
||||||
@@ -1562,7 +1562,7 @@
|
|||||||
|
|
||||||
|
|
||||||
// "curation-task.task.checklinks.label": "Check Links in Metadata",
|
// "curation-task.task.checklinks.label": "Check Links in Metadata",
|
||||||
"curation-task.task.checklinks.label": "Tarkista metadatan linkit",
|
"curation-task.task.checklinks.label": "Tarkista metadatan linkit",
|
||||||
|
|
||||||
// "curation-task.task.noop.label": "NOOP",
|
// "curation-task.task.noop.label": "NOOP",
|
||||||
"curation-task.task.noop.label": "Ei toimintaa",
|
"curation-task.task.noop.label": "Ei toimintaa",
|
||||||
@@ -1756,7 +1756,7 @@
|
|||||||
"footer.link.privacy-policy": "Yksilönsuoja",
|
"footer.link.privacy-policy": "Yksilönsuoja",
|
||||||
|
|
||||||
// "footer.link.end-user-agreement":"End User Agreement",
|
// "footer.link.end-user-agreement":"End User Agreement",
|
||||||
"footer.link.end-user-agreement":"Käyttöehdot",
|
"footer.link.end-user-agreement": "Käyttöehdot",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -2006,7 +2006,7 @@
|
|||||||
// "item.bitstreams.upload.bundle.new": "Create bundle",
|
// "item.bitstreams.upload.bundle.new": "Create bundle",
|
||||||
"item.bitstreams.upload.bundle.new": "Luo nippu",
|
"item.bitstreams.upload.bundle.new": "Luo nippu",
|
||||||
|
|
||||||
// "item.bitstreams.upload.bundles.empty": "This item doesn\'t contain any bundles to upload a bitstream to.",
|
// "item.bitstreams.upload.bundles.empty": "This item doesn't contain any bundles to upload a bitstream to.",
|
||||||
"item.bitstreams.upload.bundles.empty": "Tällä tietueella ei ole nippua, johon tiedoston voisi ladata.",
|
"item.bitstreams.upload.bundles.empty": "Tällä tietueella ei ole nippua, johon tiedoston voisi ladata.",
|
||||||
|
|
||||||
// "item.bitstreams.upload.cancel": "Cancel",
|
// "item.bitstreams.upload.cancel": "Cancel",
|
||||||
@@ -2566,9 +2566,6 @@
|
|||||||
// "item.page.description": "Description",
|
// "item.page.description": "Description",
|
||||||
"item.page.description": "Kuvaus",
|
"item.page.description": "Kuvaus",
|
||||||
|
|
||||||
// "item.page.edit": "Edit this item",
|
|
||||||
"item.page.edit": "Muokkaa tietuetta",
|
|
||||||
|
|
||||||
// "item.page.journal-issn": "Journal ISSN",
|
// "item.page.journal-issn": "Journal ISSN",
|
||||||
"item.page.journal-issn": "Kausijulkaisun ISSN",
|
"item.page.journal-issn": "Kausijulkaisun ISSN",
|
||||||
|
|
||||||
@@ -2671,10 +2668,10 @@
|
|||||||
"item.page.bitstreams.collapse": "Sulje",
|
"item.page.bitstreams.collapse": "Sulje",
|
||||||
|
|
||||||
// "item.page.filesection.original.bundle" : "Original bundle",
|
// "item.page.filesection.original.bundle" : "Original bundle",
|
||||||
"item.page.filesection.original.bundle" : "Alkuperäinen nippu",
|
"item.page.filesection.original.bundle": "Alkuperäinen nippu",
|
||||||
|
|
||||||
// "item.page.filesection.license.bundle" : "License bundle",
|
// "item.page.filesection.license.bundle" : "License bundle",
|
||||||
"item.page.filesection.license.bundle" : "Lisenssinippu",
|
"item.page.filesection.license.bundle": "Lisenssinippu",
|
||||||
|
|
||||||
// "item.preview.dc.identifier.uri": "Identifier:",
|
// "item.preview.dc.identifier.uri": "Identifier:",
|
||||||
"item.preview.dc.identifier.uri": "Tunnus:",
|
"item.preview.dc.identifier.uri": "Tunnus:",
|
||||||
@@ -3286,7 +3283,7 @@
|
|||||||
"mydspace.upload.upload-failed": "Virhe uutta työtilaa luotaessa. Tarkista ladattava sisältö ennen kuin yrität uudelleen.",
|
"mydspace.upload.upload-failed": "Virhe uutta työtilaa luotaessa. Tarkista ladattava sisältö ennen kuin yrität uudelleen.",
|
||||||
|
|
||||||
// "mydspace.upload.upload-failed-manyentries": "Unprocessable file. Detected too many entries but allowed only one for file.",
|
// "mydspace.upload.upload-failed-manyentries": "Unprocessable file. Detected too many entries but allowed only one for file.",
|
||||||
"mydspace.upload.upload-failed-manyentries": "Tiedostoa ei voida käsitellä. Vain yksi kohde on sallittu, mutta niitä on useita.",
|
"mydspace.upload.upload-failed-manyentries": "Tiedostoa ei voida käsitellä. Vain yksi kohde on sallittu, mutta niitä on useita.",
|
||||||
|
|
||||||
// "mydspace.upload.upload-failed-moreonefile": "Unprocessable request. Only one file is allowed.",
|
// "mydspace.upload.upload-failed-moreonefile": "Unprocessable request. Only one file is allowed.",
|
||||||
"mydspace.upload.upload-failed-moreonefile": "Pyyntöä ei voida käsitellä. Vain yksi tiedosto sallittu.",
|
"mydspace.upload.upload-failed-moreonefile": "Pyyntöä ei voida käsitellä. Vain yksi tiedosto sallittu.",
|
||||||
@@ -3478,16 +3475,16 @@
|
|||||||
|
|
||||||
|
|
||||||
// "process.detail.arguments" : "Arguments",
|
// "process.detail.arguments" : "Arguments",
|
||||||
"process.detail.arguments" : "Muuttujat",
|
"process.detail.arguments": "Muuttujat",
|
||||||
|
|
||||||
// "process.detail.arguments.empty" : "This process doesn't contain any arguments",
|
// "process.detail.arguments.empty" : "This process doesn't contain any arguments",
|
||||||
"process.detail.arguments.empty" : "Prosessiin ei liity muuttujia",
|
"process.detail.arguments.empty": "Prosessiin ei liity muuttujia",
|
||||||
|
|
||||||
// "process.detail.back" : "Back",
|
// "process.detail.back" : "Back",
|
||||||
"process.detail.back" : "Paluu",
|
"process.detail.back": "Paluu",
|
||||||
|
|
||||||
// "process.detail.output" : "Process Output",
|
// "process.detail.output" : "Process Output",
|
||||||
"process.detail.output" : "Prosessin tulos",
|
"process.detail.output": "Prosessin tulos",
|
||||||
|
|
||||||
// "process.detail.logs.button": "Retrieve process output",
|
// "process.detail.logs.button": "Retrieve process output",
|
||||||
"process.detail.logs.button": "Nouda prosessin tulos",
|
"process.detail.logs.button": "Nouda prosessin tulos",
|
||||||
@@ -3499,48 +3496,48 @@
|
|||||||
"process.detail.logs.none": "Prosessilla ei tulosta",
|
"process.detail.logs.none": "Prosessilla ei tulosta",
|
||||||
|
|
||||||
// "process.detail.output-files" : "Output Files",
|
// "process.detail.output-files" : "Output Files",
|
||||||
"process.detail.output-files" : "Tulostiedostot",
|
"process.detail.output-files": "Tulostiedostot",
|
||||||
|
|
||||||
// "process.detail.output-files.empty" : "This process doesn't contain any output files",
|
// "process.detail.output-files.empty" : "This process doesn't contain any output files",
|
||||||
"process.detail.output-files.empty" : "Prosessilla ei ole tulostiedostoja",
|
"process.detail.output-files.empty": "Prosessilla ei ole tulostiedostoja",
|
||||||
|
|
||||||
// "process.detail.script" : "Script",
|
// "process.detail.script" : "Script",
|
||||||
"process.detail.script" : "Skripti",
|
"process.detail.script": "Skripti",
|
||||||
|
|
||||||
// "process.detail.title" : "Process: {{ id }} - {{ name }}",
|
// "process.detail.title" : "Process: {{ id }} - {{ name }}",
|
||||||
"process.detail.title" : "Prosessi: {{ id }} - {{ name }}",
|
"process.detail.title": "Prosessi: {{ id }} - {{ name }}",
|
||||||
|
|
||||||
// "process.detail.start-time" : "Start time",
|
// "process.detail.start-time" : "Start time",
|
||||||
"process.detail.start-time" : "Aloitusaika",
|
"process.detail.start-time": "Aloitusaika",
|
||||||
|
|
||||||
// "process.detail.end-time" : "Finish time",
|
// "process.detail.end-time" : "Finish time",
|
||||||
"process.detail.end-time" : "Lopetusaika",
|
"process.detail.end-time": "Lopetusaika",
|
||||||
|
|
||||||
// "process.detail.status" : "Status",
|
// "process.detail.status" : "Status",
|
||||||
"process.detail.status" : "Tila",
|
"process.detail.status": "Tila",
|
||||||
|
|
||||||
// "process.detail.create" : "Create similar process",
|
// "process.detail.create" : "Create similar process",
|
||||||
"process.detail.create" : "Luo vastaava prosessi",
|
"process.detail.create": "Luo vastaava prosessi",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// "process.overview.table.finish" : "Finish time",
|
// "process.overview.table.finish" : "Finish time",
|
||||||
"process.overview.table.finish" : "Lopetusaika",
|
"process.overview.table.finish": "Lopetusaika",
|
||||||
|
|
||||||
// "process.overview.table.id" : "Process ID",
|
// "process.overview.table.id" : "Process ID",
|
||||||
"process.overview.table.id" : "Prosessin ID",
|
"process.overview.table.id": "Prosessin ID",
|
||||||
|
|
||||||
// "process.overview.table.name" : "Name",
|
// "process.overview.table.name" : "Name",
|
||||||
"process.overview.table.name" : "Nimi",
|
"process.overview.table.name": "Nimi",
|
||||||
|
|
||||||
// "process.overview.table.start" : "Start time",
|
// "process.overview.table.start" : "Start time",
|
||||||
"process.overview.table.start" : "Aloitusaika",
|
"process.overview.table.start": "Aloitusaika",
|
||||||
|
|
||||||
// "process.overview.table.status" : "Status",
|
// "process.overview.table.status" : "Status",
|
||||||
"process.overview.table.status" : "Tila",
|
"process.overview.table.status": "Tila",
|
||||||
|
|
||||||
// "process.overview.table.user" : "User",
|
// "process.overview.table.user" : "User",
|
||||||
"process.overview.table.user" : "Käyttäjä",
|
"process.overview.table.user": "Käyttäjä",
|
||||||
|
|
||||||
// "process.overview.title": "Processes Overview",
|
// "process.overview.title": "Processes Overview",
|
||||||
"process.overview.title": "Prosessien yleiskatsaukset",
|
"process.overview.title": "Prosessien yleiskatsaukset",
|
||||||
@@ -4768,7 +4765,7 @@
|
|||||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Search Results",
|
// "submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Search Results",
|
||||||
"submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Hakutulokset",
|
"submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Hakutulokset",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don\'t you can still use it for this submission.",
|
// "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don't you can still use it for this submission.",
|
||||||
"submission.sections.describe.relationship-lookup.name-variant.notification.content": "Haluatko tallentaa nimen \"{{ value }}\" käyttäjän vaihtoehtoiseksi nimeksi, jota muutkin voivat käyttää uudelleen myös tulevissa tallennuksissa? Ellet tallenna nimeä, voit silti käyttää sitä tässä tallennuksessa.",
|
"submission.sections.describe.relationship-lookup.name-variant.notification.content": "Haluatko tallentaa nimen \"{{ value }}\" käyttäjän vaihtoehtoiseksi nimeksi, jota muutkin voivat käyttää uudelleen myös tulevissa tallennuksissa? Ellet tallenna nimeä, voit silti käyttää sitä tässä tallennuksessa.",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant",
|
// "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant",
|
||||||
@@ -5136,7 +5133,7 @@
|
|||||||
"workflow-item.send-back.button.cancel": "Peruuta",
|
"workflow-item.send-back.button.cancel": "Peruuta",
|
||||||
|
|
||||||
// "workflow-item.send-back.button.confirm": "Send back"
|
// "workflow-item.send-back.button.confirm": "Send back"
|
||||||
"workflow-item.send-back.button.confirm": "Lähetä takaisin"
|
"workflow-item.send-back.button.confirm": "Lähetä takaisin",
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -177,7 +177,7 @@
|
|||||||
// "admin.registries.bitstream-formats.table.name": "Name",
|
// "admin.registries.bitstream-formats.table.name": "Name",
|
||||||
"admin.registries.bitstream-formats.table.name": "Nom",
|
"admin.registries.bitstream-formats.table.name": "Nom",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"admin.registries.bitstream-formats.table.id" : "ID",
|
"admin.registries.bitstream-formats.table.id": "ID",
|
||||||
|
|
||||||
// "admin.registries.bitstream-formats.table.return": "Back",
|
// "admin.registries.bitstream-formats.table.return": "Back",
|
||||||
"admin.registries.bitstream-formats.table.return": "Retour",
|
"admin.registries.bitstream-formats.table.return": "Retour",
|
||||||
@@ -254,7 +254,7 @@
|
|||||||
// "admin.registries.schema.fields.table.field": "Field",
|
// "admin.registries.schema.fields.table.field": "Field",
|
||||||
"admin.registries.schema.fields.table.field": "Champ",
|
"admin.registries.schema.fields.table.field": "Champ",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"admin.registries.schema.fields.table.id" : "ID",
|
"admin.registries.schema.fields.table.id": "ID",
|
||||||
|
|
||||||
// "admin.registries.schema.fields.table.scopenote": "Scope Note",
|
// "admin.registries.schema.fields.table.scopenote": "Scope Note",
|
||||||
"admin.registries.schema.fields.table.scopenote": "Note d'application",
|
"admin.registries.schema.fields.table.scopenote": "Note d'application",
|
||||||
@@ -904,7 +904,7 @@
|
|||||||
// "bitstream-request-a-copy.header": "Request a copy of the file",
|
// "bitstream-request-a-copy.header": "Request a copy of the file",
|
||||||
"bitstream-request-a-copy.header": "Demander une copie du fichier",
|
"bitstream-request-a-copy.header": "Demander une copie du fichier",
|
||||||
|
|
||||||
// "bitstream-request-a-copy.intro": "Enter the following information to request a copy for the following item: ",
|
// "bitstream-request-a-copy.intro": "Enter the following information to request a copy for the following item: ",
|
||||||
"bitstream-request-a-copy.intro": "Entrer les informations suivantes pour demander une copie de l'élément suivant : ",
|
"bitstream-request-a-copy.intro": "Entrer les informations suivantes pour demander une copie de l'élément suivant : ",
|
||||||
|
|
||||||
// "bitstream-request-a-copy.intro.bitstream.one": "Requesting the following file: ",
|
// "bitstream-request-a-copy.intro.bitstream.one": "Requesting the following file: ",
|
||||||
@@ -1013,7 +1013,7 @@
|
|||||||
"browse.startsWith.choose_year.label": "Choisir l'année de publication",
|
"browse.startsWith.choose_year.label": "Choisir l'année de publication",
|
||||||
|
|
||||||
// "browse.startsWith.jump": "Jump to a point in the index:",
|
// "browse.startsWith.jump": "Jump to a point in the index:",
|
||||||
"browse.startsWith.jump": "Aller directement à une entrée de l'index :",
|
"browse.startsWith.jump": "Aller directement à une entrée de l'index:",
|
||||||
|
|
||||||
// "browse.startsWith.months.april": "April",
|
// "browse.startsWith.months.april": "April",
|
||||||
"browse.startsWith.months.april": "Avril",
|
"browse.startsWith.months.april": "Avril",
|
||||||
@@ -1061,10 +1061,10 @@
|
|||||||
"browse.startsWith.submit": "Valider",
|
"browse.startsWith.submit": "Valider",
|
||||||
|
|
||||||
// "browse.startsWith.type_date": "Or type in a date (year-month) and click 'Browse'",
|
// "browse.startsWith.type_date": "Or type in a date (year-month) and click 'Browse'",
|
||||||
"browse.startsWith.type_date": "Ou saisir une date (année-mois) puis cliquer sur « Parcourir par »",
|
"browse.startsWith.type_date": "Ou saisir une date (année-mois) puis cliquer sur « Parcourir par »",
|
||||||
|
|
||||||
// "browse.startsWith.type_date.label": "Or type in a date (year-month) and click on the Browse button",
|
// "browse.startsWith.type_date.label": "Or type in a date (year-month) and click on the Browse button",
|
||||||
"browse.startsWith.type_date.label": "Ou saisir une date (année-mois) puis cliquer sur le bouton « Parcourir »",
|
"browse.startsWith.type_date.label": "Ou saisir une date (année-mois) puis cliquer sur le bouton « Parcourir »",
|
||||||
|
|
||||||
// "browse.startsWith.type_text": "Type the first few letters and click on the Browse button",
|
// "browse.startsWith.type_text": "Type the first few letters and click on the Browse button",
|
||||||
"browse.startsWith.type_text": "Ou saisir les premières lettres puis cliquer sur le bouton « Parcourir »",
|
"browse.startsWith.type_text": "Ou saisir les premières lettres puis cliquer sur le bouton « Parcourir »",
|
||||||
@@ -1136,7 +1136,7 @@
|
|||||||
"collection.edit.item-mapper.cancel": "Annuler",
|
"collection.edit.item-mapper.cancel": "Annuler",
|
||||||
|
|
||||||
// "collection.edit.item-mapper.collection": "Collection: \"<b>{{name}}</b>\"",
|
// "collection.edit.item-mapper.collection": "Collection: \"<b>{{name}}</b>\"",
|
||||||
"collection.edit.item-mapper.collection": "Collection : « <b>{{name}}</b> »",
|
"collection.edit.item-mapper.collection": "Collection: « <b>{{name}}</b> »",
|
||||||
|
|
||||||
// "collection.edit.item-mapper.confirm": "Map selected items",
|
// "collection.edit.item-mapper.confirm": "Map selected items",
|
||||||
"collection.edit.item-mapper.confirm": "Associer les Items sélectionnés",
|
"collection.edit.item-mapper.confirm": "Associer les Items sélectionnés",
|
||||||
@@ -1231,7 +1231,7 @@
|
|||||||
// "collection.edit.tabs.authorizations.title": "Collection Edit - Authorizations",
|
// "collection.edit.tabs.authorizations.title": "Collection Edit - Authorizations",
|
||||||
"collection.edit.tabs.authorizations.title": "Édition de collection - Autorisations",
|
"collection.edit.tabs.authorizations.title": "Édition de collection - Autorisations",
|
||||||
|
|
||||||
//"collection.edit.item.authorizations.load-bundle-button": "Load more bundles",
|
//"collection.edit.item.authorizations.load-bundle-button": "Load more bundles",
|
||||||
"collection.edit.item.authorizations.load-bundle-button": "Charger plus de Bundles",
|
"collection.edit.item.authorizations.load-bundle-button": "Charger plus de Bundles",
|
||||||
|
|
||||||
//"collection.edit.item.authorizations.load-more-button": "Load more",
|
//"collection.edit.item.authorizations.load-more-button": "Load more",
|
||||||
@@ -1783,7 +1783,7 @@
|
|||||||
"cookies.consent.purpose.statistical": "Statistique",
|
"cookies.consent.purpose.statistical": "Statistique",
|
||||||
|
|
||||||
// "curation-task.task.checklinks.label": "Check Links in Metadata",
|
// "curation-task.task.checklinks.label": "Check Links in Metadata",
|
||||||
"curation-task.task.checklinks.label": "Vérification des liens dans les métadonnées",
|
"curation-task.task.checklinks.label": "Vérification des liens dans les métadonnées",
|
||||||
|
|
||||||
// "curation-task.task.noop.label": "NOOP",
|
// "curation-task.task.noop.label": "NOOP",
|
||||||
"curation-task.task.noop.label": "NOOP",
|
"curation-task.task.noop.label": "NOOP",
|
||||||
@@ -1975,7 +1975,7 @@
|
|||||||
"error.sub-communities": "Erreur lors de la récupération des sous-communautés",
|
"error.sub-communities": "Erreur lors de la récupération des sous-communautés",
|
||||||
|
|
||||||
// "error.submission.sections.init-form-error": "An error occurred during section initialize, please check your input-form configuration. Details are below : <br> <br>",
|
// "error.submission.sections.init-form-error": "An error occurred during section initialize, please check your input-form configuration. Details are below : <br> <br>",
|
||||||
"error.submission.sections.init-form-error": "Une erreur s'est produite dans la section d'initialisation, veuillez vérifier la configuration de votre formulaire de dépôt. Plus de détails sont disponibles ci-dessous : <br> <br>",
|
"error.submission.sections.init-form-error": "Une erreur s'est produite dans la section d'initialisation, veuillez vérifier la configuration de votre formulaire de dépôt. Plus de détails sont disponibles ci-dessous: <br> <br>",
|
||||||
|
|
||||||
// "error.top-level-communities": "Error fetching top-level communities",
|
// "error.top-level-communities": "Error fetching top-level communities",
|
||||||
"error.top-level-communities": "Erreur lors de la récupération des communautés de 1er niveau",
|
"error.top-level-communities": "Erreur lors de la récupération des communautés de 1er niveau",
|
||||||
@@ -2020,7 +2020,7 @@
|
|||||||
"footer.link.privacy-policy": "Politique de protection de la vie privée",
|
"footer.link.privacy-policy": "Politique de protection de la vie privée",
|
||||||
|
|
||||||
// "footer.link.end-user-agreement":"End User Agreement",
|
// "footer.link.end-user-agreement":"End User Agreement",
|
||||||
"footer.link.end-user-agreement":"Licence de l'utilisateur final",
|
"footer.link.end-user-agreement": "Licence de l'utilisateur final",
|
||||||
|
|
||||||
// "footer.link.feedback":"Send Feedback",
|
// "footer.link.feedback":"Send Feedback",
|
||||||
"footer.link.feedback": "Envoyer un commentaire",
|
"footer.link.feedback": "Envoyer un commentaire",
|
||||||
@@ -2335,7 +2335,7 @@
|
|||||||
"info.feedback.error.message.required": "Un contenu est requis",
|
"info.feedback.error.message.required": "Un contenu est requis",
|
||||||
|
|
||||||
// "info.feedback.page-label": "Page",
|
// "info.feedback.page-label": "Page",
|
||||||
"info.feedback.page-label": "Page",
|
"info.feedback.page-label": "Page",
|
||||||
|
|
||||||
// "info.feedback.page_help": "The page related to your feedback",
|
// "info.feedback.page_help": "The page related to your feedback",
|
||||||
"info.feedback.page_help": "La page relative à vos commentaires",
|
"info.feedback.page_help": "La page relative à vos commentaires",
|
||||||
@@ -2367,7 +2367,7 @@
|
|||||||
// "item.bitstreams.upload.bundle.new": "Create bundle",
|
// "item.bitstreams.upload.bundle.new": "Create bundle",
|
||||||
"item.bitstreams.upload.bundle.new": "Créer un Bundle",
|
"item.bitstreams.upload.bundle.new": "Créer un Bundle",
|
||||||
|
|
||||||
// "item.bitstreams.upload.bundles.empty": "This item doesn\'t contain any bundles to upload a bitstream to.",
|
// "item.bitstreams.upload.bundles.empty": "This item doesn't contain any bundles to upload a bitstream to.",
|
||||||
"item.bitstreams.upload.bundles.empty": "Il n'existe pas, au niveau de cet Item, de Bundle dans lequel un Bitstream pourrait être téléchargé.",
|
"item.bitstreams.upload.bundles.empty": "Il n'existe pas, au niveau de cet Item, de Bundle dans lequel un Bitstream pourrait être téléchargé.",
|
||||||
|
|
||||||
// "item.bitstreams.upload.cancel": "Cancel",
|
// "item.bitstreams.upload.cancel": "Cancel",
|
||||||
@@ -2488,7 +2488,7 @@
|
|||||||
"item.edit.delete.confirm": "Supprimer",
|
"item.edit.delete.confirm": "Supprimer",
|
||||||
|
|
||||||
// "item.edit.delete.description": "Are you sure this item should be completely deleted? Caution: At present, no tombstone would be left.",
|
// "item.edit.delete.description": "Are you sure this item should be completely deleted? Caution: At present, no tombstone would be left.",
|
||||||
"item.edit.delete.description": "Êtes-vous certain(e) de vouloir complètement supprimer cet Item ? Attention, il n'y aura pas de retour en arrière possible.",
|
"item.edit.delete.description": "Êtes-vous certain(e) de vouloir complètement supprimer cet Item? Attention, il n'y aura pas de retour en arrière possible.",
|
||||||
|
|
||||||
// "item.edit.delete.error": "An error occurred while deleting the item",
|
// "item.edit.delete.error": "An error occurred while deleting the item",
|
||||||
"item.edit.delete.error": "Une erreur s'est produite lors de la suppression de l'Item",
|
"item.edit.delete.error": "Une erreur s'est produite lors de la suppression de l'Item",
|
||||||
@@ -2533,7 +2533,7 @@
|
|||||||
"item.edit.identifiers.doi.status.UPDATE_RESERVED": "Réservé (en attente)",
|
"item.edit.identifiers.doi.status.UPDATE_RESERVED": "Réservé (en attente)",
|
||||||
|
|
||||||
// "item.edit.identifiers.doi.status.UPDATE_REGISTERED": "Registered (update queued)",
|
// "item.edit.identifiers.doi.status.UPDATE_REGISTERED": "Registered (update queued)",
|
||||||
"item.edit.identifiers.doi.status.UPDATE_REGISTERED": "Inscrit (en attente)",
|
"item.edit.identifiers.doi.status.UPDATE_REGISTERED": "Inscrit (en attente)",
|
||||||
|
|
||||||
// "item.edit.identifiers.doi.status.UPDATE_BEFORE_REGISTRATION": "Queued for update and registration",
|
// "item.edit.identifiers.doi.status.UPDATE_BEFORE_REGISTRATION": "Queued for update and registration",
|
||||||
"item.edit.identifiers.doi.status.UPDATE_BEFORE_REGISTRATION": "En attente pour la mise à jour et l'inscription",
|
"item.edit.identifiers.doi.status.UPDATE_BEFORE_REGISTRATION": "En attente pour la mise à jour et l'inscription",
|
||||||
@@ -2566,13 +2566,13 @@
|
|||||||
"item.edit.register-doi.confirm": "Confirmer",
|
"item.edit.register-doi.confirm": "Confirmer",
|
||||||
|
|
||||||
// "item.edit.register-doi.cancel": "Cancel",
|
// "item.edit.register-doi.cancel": "Cancel",
|
||||||
"item.edit.register-doi.cancel": "Annuler",
|
"item.edit.register-doi.cancel": "Annuler",
|
||||||
|
|
||||||
// "item.edit.register-doi.success": "DOI queued for registration successfully.",
|
// "item.edit.register-doi.success": "DOI queued for registration successfully.",
|
||||||
"item.edit.register-doi.success": "DOI mis en attente pour l'inscription.",
|
"item.edit.register-doi.success": "DOI mis en attente pour l'inscription.",
|
||||||
|
|
||||||
// "item.edit.register-doi.error": "Error registering DOI",
|
// "item.edit.register-doi.error": "Error registering DOI",
|
||||||
"item.edit.register-doi.error": "Erreur lors de l'inscription du DOI",
|
"item.edit.register-doi.error": "Erreur lors de l'inscription du DOI",
|
||||||
|
|
||||||
// "item.edit.register-doi.to-update": "The following DOI has already been minted and will be queued for registration online",
|
// "item.edit.register-doi.to-update": "The following DOI has already been minted and will be queued for registration online",
|
||||||
"item.edit.register-doi.to-update": "Le DOI suivant a déjà été généré et sera mis en attente pour être inscrit",
|
"item.edit.register-doi.to-update": "Le DOI suivant a déjà été généré et sera mis en attente pour être inscrit",
|
||||||
@@ -2757,7 +2757,7 @@
|
|||||||
"item.edit.private.confirm": "Définir comme privé",
|
"item.edit.private.confirm": "Définir comme privé",
|
||||||
|
|
||||||
// "item.edit.private.description": "Are you sure this item should be made private in the archive?",
|
// "item.edit.private.description": "Are you sure this item should be made private in the archive?",
|
||||||
"item.edit.private.description": "Êtes-vous certain(e) de vouloir définir cet Item comme privé ?",
|
"item.edit.private.description": "Êtes-vous certain(e) de vouloir définir cet Item comme privé?",
|
||||||
|
|
||||||
// "item.edit.private.error": "An error occurred while making the item private",
|
// "item.edit.private.error": "An error occurred while making the item private",
|
||||||
"item.edit.private.error": "Une erreur s'est produite lors de la privatisation de l'Item",
|
"item.edit.private.error": "Une erreur s'est produite lors de la privatisation de l'Item",
|
||||||
@@ -2775,7 +2775,7 @@
|
|||||||
"item.edit.public.confirm": "Définir comme public",
|
"item.edit.public.confirm": "Définir comme public",
|
||||||
|
|
||||||
// "item.edit.public.description": "Are you sure this item should be made public in the archive?",
|
// "item.edit.public.description": "Are you sure this item should be made public in the archive?",
|
||||||
"item.edit.public.description": "Êtes-vous certain(e) de vouloir définir cet Item comme public ?",
|
"item.edit.public.description": "Êtes-vous certain(e) de vouloir définir cet Item comme public?",
|
||||||
|
|
||||||
// "item.edit.public.error": "An error occurred while making the item public",
|
// "item.edit.public.error": "An error occurred while making the item public",
|
||||||
"item.edit.public.error": "Une erreur s'est produite lors de la définition de l'Item en tant qu'Item public",
|
"item.edit.public.error": "Une erreur s'est produite lors de la définition de l'Item en tant qu'Item public",
|
||||||
@@ -2793,7 +2793,7 @@
|
|||||||
"item.edit.reinstate.confirm": "Réintégrer",
|
"item.edit.reinstate.confirm": "Réintégrer",
|
||||||
|
|
||||||
// "item.edit.reinstate.description": "Are you sure this item should be reinstated to the archive?",
|
// "item.edit.reinstate.description": "Are you sure this item should be reinstated to the archive?",
|
||||||
"item.edit.reinstate.description": "Êtes-vous certain(e) de vouloir réintégrer cet Item ?",
|
"item.edit.reinstate.description": "Êtes-vous certain(e) de vouloir réintégrer cet Item?",
|
||||||
|
|
||||||
// "item.edit.reinstate.error": "An error occurred while reinstating the item",
|
// "item.edit.reinstate.error": "An error occurred while reinstating the item",
|
||||||
"item.edit.reinstate.error": "Une erreur s'est produite lors de la réintégration de l'Item",
|
"item.edit.reinstate.error": "Une erreur s'est produite lors de la réintégration de l'Item",
|
||||||
@@ -2970,7 +2970,7 @@
|
|||||||
"item.edit.withdraw.confirm": "Retirer",
|
"item.edit.withdraw.confirm": "Retirer",
|
||||||
|
|
||||||
// "item.edit.withdraw.description": "Are you sure this item should be withdrawn from the archive?",
|
// "item.edit.withdraw.description": "Are you sure this item should be withdrawn from the archive?",
|
||||||
"item.edit.withdraw.description": "Êtes-vous certain que cet Item doit être retiré du dépôt ?",
|
"item.edit.withdraw.description": "Êtes-vous certain que cet Item doit être retiré du dépôt?",
|
||||||
|
|
||||||
// "item.edit.withdraw.error": "An error occurred while withdrawing the item",
|
// "item.edit.withdraw.error": "An error occurred while withdrawing the item",
|
||||||
"item.edit.withdraw.error": "Une erreur s'est produite lors du retrait de l'Item",
|
"item.edit.withdraw.error": "Une erreur s'est produite lors du retrait de l'Item",
|
||||||
@@ -3043,19 +3043,19 @@
|
|||||||
"item.page.files": "Fichiers",
|
"item.page.files": "Fichiers",
|
||||||
|
|
||||||
// "item.page.filesection.description": "Description:",
|
// "item.page.filesection.description": "Description:",
|
||||||
"item.page.filesection.description": "Description :",
|
"item.page.filesection.description": "Description:",
|
||||||
|
|
||||||
// "item.page.filesection.download": "Download",
|
// "item.page.filesection.download": "Download",
|
||||||
"item.page.filesection.download": "Télécharger",
|
"item.page.filesection.download": "Télécharger",
|
||||||
|
|
||||||
// "item.page.filesection.format": "Format:",
|
// "item.page.filesection.format": "Format:",
|
||||||
"item.page.filesection.format": "Format :",
|
"item.page.filesection.format": "Format:",
|
||||||
|
|
||||||
// "item.page.filesection.name": "Name:",
|
// "item.page.filesection.name": "Name:",
|
||||||
"item.page.filesection.name": "Nom :",
|
"item.page.filesection.name": "Nom:",
|
||||||
|
|
||||||
// "item.page.filesection.size": "Size:",
|
// "item.page.filesection.size": "Size:",
|
||||||
"item.page.filesection.size": "Taille :",
|
"item.page.filesection.size": "Taille:",
|
||||||
|
|
||||||
// "item.page.journal.search.title": "Articles in this journal",
|
// "item.page.journal.search.title": "Articles in this journal",
|
||||||
"item.page.journal.search.title": "Articles dans cette revue",
|
"item.page.journal.search.title": "Articles dans cette revue",
|
||||||
@@ -3102,7 +3102,7 @@
|
|||||||
// "item.page.filesection.original.bundle": "Original bundle",
|
// "item.page.filesection.original.bundle": "Original bundle",
|
||||||
"item.page.filesection.original.bundle": "Bundle original",
|
"item.page.filesection.original.bundle": "Bundle original",
|
||||||
|
|
||||||
// "item.page.filesection.license.bundle": "License bundle",
|
// "item.page.filesection.license.bundle": "License bundle",
|
||||||
"item.page.filesection.license.bundle": "Bundle de license",
|
"item.page.filesection.license.bundle": "Bundle de license",
|
||||||
|
|
||||||
// "item.page.return": "Back",
|
// "item.page.return": "Back",
|
||||||
@@ -3328,7 +3328,7 @@
|
|||||||
"journal.page.publisher": "Éditeur",
|
"journal.page.publisher": "Éditeur",
|
||||||
|
|
||||||
// "journal.page.titleprefix": "Journal: ",
|
// "journal.page.titleprefix": "Journal: ",
|
||||||
"journal.page.titleprefix": "Revue : ",
|
"journal.page.titleprefix": "Revue: ",
|
||||||
|
|
||||||
// "journal.search.results.head": "Journal Search Results",
|
// "journal.search.results.head": "Journal Search Results",
|
||||||
"journal.search.results.head": "Résultats de recherche de revues",
|
"journal.search.results.head": "Résultats de recherche de revues",
|
||||||
@@ -3361,7 +3361,7 @@
|
|||||||
"journalissue.page.number": "Nombre",
|
"journalissue.page.number": "Nombre",
|
||||||
|
|
||||||
// "journalissue.page.titleprefix": "Journal Issue: ",
|
// "journalissue.page.titleprefix": "Journal Issue: ",
|
||||||
"journalissue.page.titleprefix": "Numéro de revue : ",
|
"journalissue.page.titleprefix": "Numéro de revue: ",
|
||||||
|
|
||||||
// "journalvolume.listelement.badge": "Journal Volume",
|
// "journalvolume.listelement.badge": "Journal Volume",
|
||||||
"journalvolume.listelement.badge": "Volume de la revue",
|
"journalvolume.listelement.badge": "Volume de la revue",
|
||||||
@@ -3376,7 +3376,7 @@
|
|||||||
"journalvolume.page.issuedate": "Date de publication",
|
"journalvolume.page.issuedate": "Date de publication",
|
||||||
|
|
||||||
// "journalvolume.page.titleprefix": "Journal Volume: ",
|
// "journalvolume.page.titleprefix": "Journal Volume: ",
|
||||||
"journalvolume.page.titleprefix": "Volume de la revue : ",
|
"journalvolume.page.titleprefix": "Volume de la revue: ",
|
||||||
|
|
||||||
// "journalvolume.page.volume": "Volume",
|
// "journalvolume.page.volume": "Volume",
|
||||||
"journalvolume.page.volume": "Volume",
|
"journalvolume.page.volume": "Volume",
|
||||||
@@ -3472,13 +3472,13 @@
|
|||||||
"login.form.email": "Adresse électronique",
|
"login.form.email": "Adresse électronique",
|
||||||
|
|
||||||
// "login.form.forgot-password": "Have you forgotten your password?",
|
// "login.form.forgot-password": "Have you forgotten your password?",
|
||||||
"login.form.forgot-password": "Mot de passe oublié ?",
|
"login.form.forgot-password": "Mot de passe oublié?",
|
||||||
|
|
||||||
// "login.form.header": "Please log in to DSpace",
|
// "login.form.header": "Please log in to DSpace",
|
||||||
"login.form.header": "Se connecter à DSpace",
|
"login.form.header": "Se connecter à DSpace",
|
||||||
|
|
||||||
// "login.form.new-user": "New user? Click here to register.",
|
// "login.form.new-user": "New user? Click here to register.",
|
||||||
"login.form.new-user": "Pas encore de compte ? Cliquer ici pour vous enregistrer.",
|
"login.form.new-user": "Pas encore de compte? Cliquer ici pour vous enregistrer.",
|
||||||
|
|
||||||
// "login.form.or-divider": "or",
|
// "login.form.or-divider": "or",
|
||||||
"login.form.or-divider": "ou",
|
"login.form.or-divider": "ou",
|
||||||
@@ -3892,7 +3892,7 @@
|
|||||||
"nav.stop-impersonating": "Retour à votre propre EPerson",
|
"nav.stop-impersonating": "Retour à votre propre EPerson",
|
||||||
|
|
||||||
//"nav.subscriptions" : "Subscriptions",
|
//"nav.subscriptions" : "Subscriptions",
|
||||||
"nav.subscriptions" : "Abonnements",
|
"nav.subscriptions": "Abonnements",
|
||||||
|
|
||||||
// "nav.toggle": "Toggle navigation",
|
// "nav.toggle": "Toggle navigation",
|
||||||
"nav.toggle": "Basculer la navigation",
|
"nav.toggle": "Basculer la navigation",
|
||||||
@@ -3925,7 +3925,7 @@
|
|||||||
"orgunit.page.id": "ID",
|
"orgunit.page.id": "ID",
|
||||||
|
|
||||||
// "orgunit.page.titleprefix": "Organizational Unit: ",
|
// "orgunit.page.titleprefix": "Organizational Unit: ",
|
||||||
"orgunit.page.titleprefix": "Structure Organisationnelle : ",
|
"orgunit.page.titleprefix": "Structure Organisationnelle: ",
|
||||||
|
|
||||||
// "pagination.options.description": "Pagination options",
|
// "pagination.options.description": "Pagination options",
|
||||||
"pagination.options.description": "Options de pagination",
|
"pagination.options.description": "Options de pagination",
|
||||||
@@ -4113,8 +4113,8 @@
|
|||||||
// "process.overview.new": "New",
|
// "process.overview.new": "New",
|
||||||
"process.overview.new": "Nouveau",
|
"process.overview.new": "Nouveau",
|
||||||
|
|
||||||
// "process.overview.table.actions": "Actions",
|
// "process.overview.table.actions": "Actions",
|
||||||
"process.overview.table.actions": "Actions",
|
"process.overview.table.actions": "Actions",
|
||||||
|
|
||||||
// "process.overview.delete": "Delete {{count}} processes",
|
// "process.overview.delete": "Delete {{count}} processes",
|
||||||
"process.overview.delete": "Supprimer {{count}} processus",
|
"process.overview.delete": "Supprimer {{count}} processus",
|
||||||
@@ -4251,7 +4251,7 @@
|
|||||||
"project.page.status": "Statut",
|
"project.page.status": "Statut",
|
||||||
|
|
||||||
// "project.page.titleprefix": "Research Project: ",
|
// "project.page.titleprefix": "Research Project: ",
|
||||||
"project.page.titleprefix": "Projet de recherche : ",
|
"project.page.titleprefix": "Projet de recherche: ",
|
||||||
|
|
||||||
// "project.search.results.head": "Project Search Results",
|
// "project.search.results.head": "Project Search Results",
|
||||||
"project.search.results.head": "Résultats de recherche de projets",
|
"project.search.results.head": "Résultats de recherche de projets",
|
||||||
@@ -4275,7 +4275,7 @@
|
|||||||
"publication.page.publisher": "Éditeur",
|
"publication.page.publisher": "Éditeur",
|
||||||
|
|
||||||
// "publication.page.titleprefix": "Publication: ",
|
// "publication.page.titleprefix": "Publication: ",
|
||||||
"publication.page.titleprefix": "Publication : ",
|
"publication.page.titleprefix": "Publication: ",
|
||||||
|
|
||||||
// "publication.page.volume-title": "Volume Title",
|
// "publication.page.volume-title": "Volume Title",
|
||||||
"publication.page.volume-title": "Titre du volume",
|
"publication.page.volume-title": "Titre du volume",
|
||||||
@@ -4932,7 +4932,7 @@
|
|||||||
"search.results.head": "Résultats de recherche",
|
"search.results.head": "Résultats de recherche",
|
||||||
|
|
||||||
// "search.results.no-results": "Your search returned no results. Having trouble finding what you're looking for? Try putting",
|
// "search.results.no-results": "Your search returned no results. Having trouble finding what you're looking for? Try putting",
|
||||||
"search.results.no-results": "Votre recherche n'a retourné aucun résultat. Vous n'arrivez pas à trouver ce que vous recherchez ? Essayez de mettre",
|
"search.results.no-results": "Votre recherche n'a retourné aucun résultat. Vous n'arrivez pas à trouver ce que vous recherchez? Essayez de mettre",
|
||||||
|
|
||||||
// "search.results.no-results-link": "quotes around it",
|
// "search.results.no-results-link": "quotes around it",
|
||||||
"search.results.no-results-link": "des guillemets avant et après les termes recherchés",
|
"search.results.no-results-link": "des guillemets avant et après les termes recherchés",
|
||||||
@@ -4947,7 +4947,7 @@
|
|||||||
"default.search.results.head": "Résultats de recherche",
|
"default.search.results.head": "Résultats de recherche",
|
||||||
|
|
||||||
// "default-relationships.search.results.head": "Search Results",
|
// "default-relationships.search.results.head": "Search Results",
|
||||||
"default-relationships.search.results.head": "Résultats de recherche",
|
"default-relationships.search.results.head": "Résultats de recherche",
|
||||||
|
|
||||||
// "search.sidebar.close": "Back to results",
|
// "search.sidebar.close": "Back to results",
|
||||||
"search.sidebar.close": "Retour aux résultats",
|
"search.sidebar.close": "Retour aux résultats",
|
||||||
@@ -5067,7 +5067,7 @@
|
|||||||
"submission.general.discard.confirm.cancel": "Annuler",
|
"submission.general.discard.confirm.cancel": "Annuler",
|
||||||
|
|
||||||
// "submission.general.discard.confirm.info": "This operation can't be undone. Are you sure?",
|
// "submission.general.discard.confirm.info": "This operation can't be undone. Are you sure?",
|
||||||
"submission.general.discard.confirm.info": "L'annulation est irréversible, les données de la soumission en cours seront perdues. Êtes-vous certain(e) ?",
|
"submission.general.discard.confirm.info": "L'annulation est irréversible, les données de la soumission en cours seront perdues. Êtes-vous certain(e)?",
|
||||||
|
|
||||||
// "submission.general.discard.confirm.submit": "Yes, I'm sure",
|
// "submission.general.discard.confirm.submit": "Yes, I'm sure",
|
||||||
"submission.general.discard.confirm.submit": "Oui, je suis certain(e)",
|
"submission.general.discard.confirm.submit": "Oui, je suis certain(e)",
|
||||||
@@ -5141,7 +5141,7 @@
|
|||||||
// "submission.import-external.source.arxiv": "arXiv",
|
// "submission.import-external.source.arxiv": "arXiv",
|
||||||
"submission.import-external.source.arxiv": "arXiv",
|
"submission.import-external.source.arxiv": "arXiv",
|
||||||
|
|
||||||
// "submission.import-external.source.ads": "NASA/ADS",
|
// "submission.import-external.source.ads": "NASA/ADS",
|
||||||
"submission.import-external.source.ads": "NASA/ADS",
|
"submission.import-external.source.ads": "NASA/ADS",
|
||||||
|
|
||||||
// "submission.import-external.source.cinii": "CiNii",
|
// "submission.import-external.source.cinii": "CiNii",
|
||||||
@@ -5166,7 +5166,7 @@
|
|||||||
"submission.import-external.source.wos": "Web Of Science",
|
"submission.import-external.source.wos": "Web Of Science",
|
||||||
|
|
||||||
// "submission.import-external.source.orcidWorks": "ORCID",
|
// "submission.import-external.source.orcidWorks": "ORCID",
|
||||||
"submission.import-external.source.orcidWorks": "ORCID",
|
"submission.import-external.source.orcidWorks": "ORCID",
|
||||||
|
|
||||||
//"submission.import-external.source.epo": "European Patent Office (EPO)",
|
//"submission.import-external.source.epo": "European Patent Office (EPO)",
|
||||||
"submission.import-external.source.epo": "Office Européen des brevets (OEB)",
|
"submission.import-external.source.epo": "Office Européen des brevets (OEB)",
|
||||||
@@ -5567,7 +5567,7 @@
|
|||||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Search Results",
|
// "submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Search Results",
|
||||||
"submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Résultats de recherche",
|
"submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Résultats de recherche",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don\'t you can still use it for this submission.",
|
// "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don't you can still use it for this submission.",
|
||||||
"submission.sections.describe.relationship-lookup.name-variant.notification.content": "Souhaitez-vous sauvegarder \"{{ value }}\" en tant que nom alternatif pour cette personne afin que vous ou un autre utilisateur puisse l'utiliser pour de futures soumissions ? Si vous ne le souhaitez pas, vous pouvez tout de même l'utiliser pour cette soumission.",
|
"submission.sections.describe.relationship-lookup.name-variant.notification.content": "Souhaitez-vous sauvegarder \"{{ value }}\" en tant que nom alternatif pour cette personne afin que vous ou un autre utilisateur puisse l'utiliser pour de futures soumissions ? Si vous ne le souhaitez pas, vous pouvez tout de même l'utiliser pour cette soumission.",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant",
|
// "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant",
|
||||||
@@ -5700,7 +5700,7 @@
|
|||||||
"submission.sections.upload.delete.confirm.cancel": "Annuler",
|
"submission.sections.upload.delete.confirm.cancel": "Annuler",
|
||||||
|
|
||||||
// "submission.sections.upload.delete.confirm.info": "This operation can't be undone. Are you sure?",
|
// "submission.sections.upload.delete.confirm.info": "This operation can't be undone. Are you sure?",
|
||||||
"submission.sections.upload.delete.confirm.info": "Cette opération est irréversible. Êtes-vous certain(e) ?",
|
"submission.sections.upload.delete.confirm.info": "Cette opération est irréversible. Êtes-vous certain(e)?",
|
||||||
|
|
||||||
// "submission.sections.upload.delete.confirm.submit": "Yes, I'm sure",
|
// "submission.sections.upload.delete.confirm.submit": "Yes, I'm sure",
|
||||||
"submission.sections.upload.delete.confirm.submit": "Oui, je suis certain(e)",
|
"submission.sections.upload.delete.confirm.submit": "Oui, je suis certain(e)",
|
||||||
@@ -5760,10 +5760,10 @@
|
|||||||
"submission.sections.upload.form.until-placeholder": "Jusqu'au",
|
"submission.sections.upload.form.until-placeholder": "Jusqu'au",
|
||||||
|
|
||||||
// "submission.sections.upload.header.policy.default.nolist": "Uploaded files in the {{collectionName}} collection will be accessible according to the following group(s):",
|
// "submission.sections.upload.header.policy.default.nolist": "Uploaded files in the {{collectionName}} collection will be accessible according to the following group(s):",
|
||||||
"submission.sections.upload.header.policy.default.nolist": "Les fichiers téléchargés dans la collection {{collectionName}} seront accessibles au(x) groupe(s) suivant(s) :",
|
"submission.sections.upload.header.policy.default.nolist": "Les fichiers téléchargés dans la collection {{collectionName}} seront accessibles au(x) groupe(s) suivant(s):",
|
||||||
|
|
||||||
// "submission.sections.upload.header.policy.default.withlist": "Please note that uploaded files in the {{collectionName}} collection will be accessible, in addition to what is explicitly decided for the single file, with the following group(s):",
|
// "submission.sections.upload.header.policy.default.withlist": "Please note that uploaded files in the {{collectionName}} collection will be accessible, in addition to what is explicitly decided for the single file, with the following group(s):",
|
||||||
"submission.sections.upload.header.policy.default.withlist": "Veuillez noter que, en complément des accès spécifiquement accordés pour le fichier, les fichiers téléchargés dans la collection {{collectionName}} seront accessibles par défaut au(x) groupe(s) suivant(s) :",
|
"submission.sections.upload.header.policy.default.withlist": "Veuillez noter que, en complément des accès spécifiquement accordés pour le fichier, les fichiers téléchargés dans la collection {{collectionName}} seront accessibles par défaut au(x) groupe(s) suivant(s):",
|
||||||
|
|
||||||
// "submission.sections.upload.info": "Here you will find all the files currently in the item. You can update the file metadata and access conditions or <strong>upload additional files by dragging & dropping them anywhere on the page.</strong>",
|
// "submission.sections.upload.info": "Here you will find all the files currently in the item. You can update the file metadata and access conditions or <strong>upload additional files by dragging & dropping them anywhere on the page.</strong>",
|
||||||
"submission.sections.upload.info": "Vous trouverez ici tous les fichiers actuellement associés à l'Item. Vous pouvez éditer les métadonnés et les niveaux d'accès de ce(s) fichier(s) ou <strong>télécharger des fichiers complémentaires simplement en les glissant n'importe où sur cette page</strong>",
|
"submission.sections.upload.info": "Vous trouverez ici tous les fichiers actuellement associés à l'Item. Vous pouvez éditer les métadonnés et les niveaux d'accès de ce(s) fichier(s) ou <strong>télécharger des fichiers complémentaires simplement en les glissant n'importe où sur cette page</strong>",
|
||||||
@@ -5839,7 +5839,7 @@
|
|||||||
"submission.sections.license.required": "Vous devez accepter la licence",
|
"submission.sections.license.required": "Vous devez accepter la licence",
|
||||||
|
|
||||||
// "submission.sections.license.notgranted": "You must accept the license",
|
// "submission.sections.license.notgranted": "You must accept the license",
|
||||||
"submission.sections.license.notgranted": "Vous devez accepter la licence",
|
"submission.sections.license.notgranted": "Vous devez accepter la licence",
|
||||||
|
|
||||||
// "submission.sections.sherpa.publication.information": "Publication information",
|
// "submission.sections.sherpa.publication.information": "Publication information",
|
||||||
"submission.sections.sherpa.publication.information": "Information sur la publication",
|
"submission.sections.sherpa.publication.information": "Information sur la publication",
|
||||||
@@ -5851,7 +5851,7 @@
|
|||||||
"submission.sections.sherpa.publication.information.issns": "ISSNs",
|
"submission.sections.sherpa.publication.information.issns": "ISSNs",
|
||||||
|
|
||||||
// "submission.sections.sherpa.publication.information.url": "URL",
|
// "submission.sections.sherpa.publication.information.url": "URL",
|
||||||
"submission.sections.sherpa.publication.information.url": "URL",
|
"submission.sections.sherpa.publication.information.url": "URL",
|
||||||
|
|
||||||
// "submission.sections.sherpa.publication.information.publishers": "Publisher",
|
// "submission.sections.sherpa.publication.information.publishers": "Publisher",
|
||||||
"submission.sections.sherpa.publication.information.publishers": "Éditeur",
|
"submission.sections.sherpa.publication.information.publishers": "Éditeur",
|
||||||
@@ -6159,7 +6159,7 @@
|
|||||||
// "workflow-item.send-back.button.confirm": "Send back",
|
// "workflow-item.send-back.button.confirm": "Send back",
|
||||||
"workflow-item.send-back.button.confirm": "Renvoyer",
|
"workflow-item.send-back.button.confirm": "Renvoyer",
|
||||||
|
|
||||||
// "workflow-item.view.breadcrumbs": "Workflow View",
|
// "workflow-item.view.breadcrumbs": "Workflow View",
|
||||||
"workflow-item.view.breadcrumbs": "Vue d'ensemble du Workflow",
|
"workflow-item.view.breadcrumbs": "Vue d'ensemble du Workflow",
|
||||||
|
|
||||||
// "workspace-item.view.breadcrumbs": "Workspace View",
|
// "workspace-item.view.breadcrumbs": "Workspace View",
|
||||||
@@ -6182,17 +6182,17 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
// "system-wide-alert-banner.retrieval.error": "Something went wrong retrieving the system-wide alert banner",
|
// "system-wide-alert-banner.retrieval.error": "Something went wrong retrieving the system-wide alert banner",
|
||||||
"system-wide-alert-banner.retrieval.error": "Une erreur s'est produite lors de la récupération de la bannière du message d'avertissement",
|
"system-wide-alert-banner.retrieval.error": "Une erreur s'est produite lors de la récupération de la bannière du message d'avertissement",
|
||||||
|
|
||||||
//"system-wide-alert-banner.countdown.prefix": "In",
|
//"system-wide-alert-banner.countdown.prefix": "In",
|
||||||
"system-wide-alert-banner.countdown.prefix": "Dans",
|
"system-wide-alert-banner.countdown.prefix": "Dans",
|
||||||
|
|
||||||
// "system-wide-alert-banner.countdown.days": "{{days}} day(s),",
|
// "system-wide-alert-banner.countdown.days": "{{days}} day(s),",
|
||||||
"system-wide-alert-banner.countdown.days": "{{days}} jour(s),",
|
"system-wide-alert-banner.countdown.days": "{{days}} jour(s),",
|
||||||
|
|
||||||
// "system-wide-alert-banner.countdown.hours": "{{hours}} hour(s) and",
|
// "system-wide-alert-banner.countdown.hours": "{{hours}} hour(s) and",
|
||||||
"system-wide-alert-banner.countdown.hours": "{{hours}} heure(s) et",
|
"system-wide-alert-banner.countdown.hours": "{{hours}} heure(s) et",
|
||||||
|
|
||||||
// "system-wide-alert-banner.countdown.minutes": "{{minutes}} minute(s):",
|
// "system-wide-alert-banner.countdown.minutes": "{{minutes}} minute(s):",
|
||||||
"system-wide-alert-banner.countdown.minutes": "{{minutes}} minute(s):",
|
"system-wide-alert-banner.countdown.minutes": "{{minutes}} minute(s):",
|
||||||
@@ -6203,7 +6203,7 @@
|
|||||||
"menu.section.system-wide-alert": "Messages d'avertissement",
|
"menu.section.system-wide-alert": "Messages d'avertissement",
|
||||||
|
|
||||||
// "system-wide-alert.form.header": "System-wide Alert",
|
// "system-wide-alert.form.header": "System-wide Alert",
|
||||||
"system-wide-alert.form.header": "Messages d'avertissement",
|
"system-wide-alert.form.header": "Messages d'avertissement",
|
||||||
|
|
||||||
// "system-wide-alert-form.retrieval.error": "Something went wrong retrieving the system-wide alert",
|
// "system-wide-alert-form.retrieval.error": "Something went wrong retrieving the system-wide alert",
|
||||||
"system-wide-alert-form.retrieval.error": "Une erreur s'est produite lors de la récupération de la bannière du message d'avertissement",
|
"system-wide-alert-form.retrieval.error": "Une erreur s'est produite lors de la récupération de la bannière du message d'avertissement",
|
||||||
@@ -6213,13 +6213,13 @@
|
|||||||
|
|
||||||
|
|
||||||
//"system-wide-alert.form.save": "Save",
|
//"system-wide-alert.form.save": "Save",
|
||||||
"system-wide-alert.form.save": "Sauvegarder",
|
"system-wide-alert.form.save": "Sauvegarder",
|
||||||
|
|
||||||
//"system-wide-alert.form.label.active": "ACTIVE",
|
//"system-wide-alert.form.label.active": "ACTIVE",
|
||||||
"system-wide-alert.form.label.active": "ACTIF",
|
"system-wide-alert.form.label.active": "ACTIF",
|
||||||
|
|
||||||
//"system-wide-alert.form.label.inactive": "INACTIVE",
|
//"system-wide-alert.form.label.inactive": "INACTIVE",
|
||||||
"system-wide-alert.form.label.inactive": "INACTIF",
|
"system-wide-alert.form.label.inactive": "INACTIF",
|
||||||
|
|
||||||
//"system-wide-alert.form.error.message": "The system wide alert must have a message",
|
//"system-wide-alert.form.error.message": "The system wide alert must have a message",
|
||||||
"system-wide-alert.form.error.message": "Le message d'avertissement ne peut pas être vide",
|
"system-wide-alert.form.error.message": "Le message d'avertissement ne peut pas être vide",
|
||||||
@@ -6233,7 +6233,7 @@
|
|||||||
//"system-wide-alert.form.label.countdownTo.hint": "Hint: Set a countdown timer. When enabled, a date can be set in the future and the system-wide alert banner will perform a countdown to the set date. When this timer ends, it will disappear from the alert. The server will NOT be automatically stopped.",
|
//"system-wide-alert.form.label.countdownTo.hint": "Hint: Set a countdown timer. When enabled, a date can be set in the future and the system-wide alert banner will perform a countdown to the set date. When this timer ends, it will disappear from the alert. The server will NOT be automatically stopped.",
|
||||||
"system-wide-alert.form.label.countdownTo.hint": "Lorsque cette option est activée, il est possible de fixer une date dans le futur et la bannière du message d'avertissement effectuera un compte à rebours jusqu'à la date fixée. À la fin du compte à rebours, le message d'avertissement disparaîtra mais le serveur ne sera pas arrêté automatiquement.",
|
"system-wide-alert.form.label.countdownTo.hint": "Lorsque cette option est activée, il est possible de fixer une date dans le futur et la bannière du message d'avertissement effectuera un compte à rebours jusqu'à la date fixée. À la fin du compte à rebours, le message d'avertissement disparaîtra mais le serveur ne sera pas arrêté automatiquement.",
|
||||||
|
|
||||||
//"system-wide-alert.form.label.preview": "System-wide alert preview",
|
//"system-wide-alert.form.label.preview": "System-wide alert preview",
|
||||||
"system-wide-alert.form.label.preview": "Aperçu du message d'avertissement",
|
"system-wide-alert.form.label.preview": "Aperçu du message d'avertissement",
|
||||||
|
|
||||||
//"system-wide-alert.form.update.success": "The system-wide alert was successfully updated",
|
//"system-wide-alert.form.update.success": "The system-wide alert was successfully updated",
|
||||||
|
File diff suppressed because it is too large
Load Diff
@@ -4531,6 +4531,6 @@
|
|||||||
|
|
||||||
"workspace-item.view.title": "कार्यक्षेत्र दृश्य",
|
"workspace-item.view.title": "कार्यक्षेत्र दृश्य",
|
||||||
|
|
||||||
"workspace.search.results.head": "आपकी प्रस्तुतियाँ"
|
"workspace.search.results.head": "आपकी प्रस्तुतियाँ",
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -196,7 +196,7 @@
|
|||||||
// "admin.registries.bitstream-formats.table.name": "Name",
|
// "admin.registries.bitstream-formats.table.name": "Name",
|
||||||
"admin.registries.bitstream-formats.table.name": "Név",
|
"admin.registries.bitstream-formats.table.name": "Név",
|
||||||
// "admin.registries.bitstream-formats.table.id" : "ID",
|
// "admin.registries.bitstream-formats.table.id" : "ID",
|
||||||
"admin.registries.bitstream-formats.table.id" : "ID",
|
"admin.registries.bitstream-formats.table.id": "ID",
|
||||||
|
|
||||||
// "admin.registries.bitstream-formats.table.return": "Back",
|
// "admin.registries.bitstream-formats.table.return": "Back",
|
||||||
"admin.registries.bitstream-formats.table.return": "Vissza",
|
"admin.registries.bitstream-formats.table.return": "Vissza",
|
||||||
@@ -277,7 +277,7 @@
|
|||||||
// "admin.registries.schema.fields.table.field": "Field",
|
// "admin.registries.schema.fields.table.field": "Field",
|
||||||
"admin.registries.schema.fields.table.field": "Mező",
|
"admin.registries.schema.fields.table.field": "Mező",
|
||||||
// "admin.registries.schema.fields.table.id" : "ID",
|
// "admin.registries.schema.fields.table.id" : "ID",
|
||||||
"admin.registries.schema.fields.table.id" : "ID",
|
"admin.registries.schema.fields.table.id": "ID",
|
||||||
|
|
||||||
// "admin.registries.schema.fields.table.scopenote": "Scope Note",
|
// "admin.registries.schema.fields.table.scopenote": "Scope Note",
|
||||||
"admin.registries.schema.fields.table.scopenote": "Cél megjegyzés",
|
"admin.registries.schema.fields.table.scopenote": "Cél megjegyzés",
|
||||||
@@ -2208,10 +2208,10 @@
|
|||||||
|
|
||||||
// "curation-task.task.citationpage.label": "Generate Citation Page",
|
// "curation-task.task.citationpage.label": "Generate Citation Page",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"curation-task.task.citationpage.label": "Generate Citation Page",
|
"curation-task.task.citationpage.label": "Generate Citation Page",
|
||||||
|
|
||||||
// "curation-task.task.checklinks.label": "Check Links in Metadata",
|
// "curation-task.task.checklinks.label": "Check Links in Metadata",
|
||||||
"curation-task.task.checklinks.label": "Hivatkozások ellenőrzése a metaadatokban",
|
"curation-task.task.checklinks.label": "Hivatkozások ellenőrzése a metaadatokban",
|
||||||
|
|
||||||
// "curation-task.task.noop.label": "NOOP",
|
// "curation-task.task.noop.label": "NOOP",
|
||||||
"curation-task.task.noop.label": "NOOP",
|
"curation-task.task.noop.label": "NOOP",
|
||||||
@@ -2443,7 +2443,7 @@
|
|||||||
|
|
||||||
// "supervision-group-selector.notification.create.already-existing" : "A supervision order already exists on this item for selected group",
|
// "supervision-group-selector.notification.create.already-existing" : "A supervision order already exists on this item for selected group",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"supervision-group-selector.notification.create.already-existing" : "A supervision order already exists on this item for selected group",
|
"supervision-group-selector.notification.create.already-existing": "A supervision order already exists on this item for selected group",
|
||||||
|
|
||||||
// "confirmation-modal.export-metadata.header": "Export metadata for {{ dsoName }}",
|
// "confirmation-modal.export-metadata.header": "Export metadata for {{ dsoName }}",
|
||||||
"confirmation-modal.export-metadata.header": "Metaadat exportálásának célja {{ dsoName }}",
|
"confirmation-modal.export-metadata.header": "Metaadat exportálásának célja {{ dsoName }}",
|
||||||
@@ -2621,10 +2621,10 @@
|
|||||||
"footer.link.privacy-policy": "Adatvédelmi nyilatkozat",
|
"footer.link.privacy-policy": "Adatvédelmi nyilatkozat",
|
||||||
|
|
||||||
// "footer.link.end-user-agreement":"End User Agreement",
|
// "footer.link.end-user-agreement":"End User Agreement",
|
||||||
"footer.link.end-user-agreement":"Felhasználói feltételek",
|
"footer.link.end-user-agreement": "Felhasználói feltételek",
|
||||||
|
|
||||||
// "footer.link.feedback":"Send Feedback",
|
// "footer.link.feedback":"Send Feedback",
|
||||||
"footer.link.feedback":"Visszajelzés küldése",
|
"footer.link.feedback": "Visszajelzés küldése",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -2889,15 +2889,15 @@
|
|||||||
|
|
||||||
// "health-page.heading" : "Health",
|
// "health-page.heading" : "Health",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"health-page.heading" : "Health",
|
"health-page.heading": "Health",
|
||||||
|
|
||||||
// "health-page.info-tab" : "Info",
|
// "health-page.info-tab" : "Info",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"health-page.info-tab" : "Info",
|
"health-page.info-tab": "Info",
|
||||||
|
|
||||||
// "health-page.status-tab" : "Status",
|
// "health-page.status-tab" : "Status",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"health-page.status-tab" : "Status",
|
"health-page.status-tab": "Status",
|
||||||
|
|
||||||
// "health-page.error.msg": "The health check service is temporarily unavailable",
|
// "health-page.error.msg": "The health check service is temporarily unavailable",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -3046,23 +3046,23 @@
|
|||||||
|
|
||||||
// "info.feedback.create.success" : "Feedback Sent Successfully!",
|
// "info.feedback.create.success" : "Feedback Sent Successfully!",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"info.feedback.create.success" : "Feedback Sent Successfully!",
|
"info.feedback.create.success": "Feedback Sent Successfully!",
|
||||||
|
|
||||||
// "info.feedback.error.email.required" : "A valid email address is required",
|
// "info.feedback.error.email.required" : "A valid email address is required",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"info.feedback.error.email.required" : "A valid email address is required",
|
"info.feedback.error.email.required": "A valid email address is required",
|
||||||
|
|
||||||
// "info.feedback.error.message.required" : "A comment is required",
|
// "info.feedback.error.message.required" : "A comment is required",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"info.feedback.error.message.required" : "A comment is required",
|
"info.feedback.error.message.required": "A comment is required",
|
||||||
|
|
||||||
// "info.feedback.page-label" : "Page",
|
// "info.feedback.page-label" : "Page",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"info.feedback.page-label" : "Page",
|
"info.feedback.page-label": "Page",
|
||||||
|
|
||||||
// "info.feedback.page_help" : "Tha page related to your feedback",
|
// "info.feedback.page_help" : "Tha page related to your feedback",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"info.feedback.page_help" : "Tha page related to your feedback",
|
"info.feedback.page_help": "Tha page related to your feedback",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -3966,10 +3966,10 @@
|
|||||||
"item.page.bitstreams.collapse": "Bezár",
|
"item.page.bitstreams.collapse": "Bezár",
|
||||||
|
|
||||||
// "item.page.filesection.original.bundle" : "Original bundle",
|
// "item.page.filesection.original.bundle" : "Original bundle",
|
||||||
"item.page.filesection.original.bundle" : "Eredeti csomag",
|
"item.page.filesection.original.bundle": "Eredeti csomag",
|
||||||
|
|
||||||
// "item.page.filesection.license.bundle" : "License bundle",
|
// "item.page.filesection.license.bundle" : "License bundle",
|
||||||
"item.page.filesection.license.bundle" : "Licenccsomag",
|
"item.page.filesection.license.bundle": "Licenccsomag",
|
||||||
|
|
||||||
// "item.page.return": "Back",
|
// "item.page.return": "Back",
|
||||||
"item.page.return": "Vissza",
|
"item.page.return": "Vissza",
|
||||||
@@ -4020,19 +4020,19 @@
|
|||||||
|
|
||||||
// "item.preview.oaire.citation.issue" : "Issue",
|
// "item.preview.oaire.citation.issue" : "Issue",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.preview.oaire.citation.issue" : "Issue",
|
"item.preview.oaire.citation.issue": "Issue",
|
||||||
|
|
||||||
// "item.preview.oaire.citation.volume" : "Volume",
|
// "item.preview.oaire.citation.volume" : "Volume",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.preview.oaire.citation.volume" : "Volume",
|
"item.preview.oaire.citation.volume": "Volume",
|
||||||
|
|
||||||
// "item.preview.dc.relation.issn" : "ISSN",
|
// "item.preview.dc.relation.issn" : "ISSN",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.preview.dc.relation.issn" : "ISSN",
|
"item.preview.dc.relation.issn": "ISSN",
|
||||||
|
|
||||||
// "item.preview.dc.identifier.isbn" : "ISBN",
|
// "item.preview.dc.identifier.isbn" : "ISBN",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.preview.dc.identifier.isbn" : "ISBN",
|
"item.preview.dc.identifier.isbn": "ISBN",
|
||||||
|
|
||||||
// "item.preview.dc.identifier": "Identifier:",
|
// "item.preview.dc.identifier": "Identifier:",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -4040,11 +4040,11 @@
|
|||||||
|
|
||||||
// "item.preview.dc.relation.ispartof" : "Journal or Serie",
|
// "item.preview.dc.relation.ispartof" : "Journal or Serie",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.preview.dc.relation.ispartof" : "Journal or Serie",
|
"item.preview.dc.relation.ispartof": "Journal or Serie",
|
||||||
|
|
||||||
// "item.preview.dc.identifier.doi" : "DOI",
|
// "item.preview.dc.identifier.doi" : "DOI",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.preview.dc.identifier.doi" : "DOI",
|
"item.preview.dc.identifier.doi": "DOI",
|
||||||
|
|
||||||
// "item.preview.person.familyName": "Surname:",
|
// "item.preview.person.familyName": "Surname:",
|
||||||
"item.preview.person.familyName": "Keresztnév:",
|
"item.preview.person.familyName": "Keresztnév:",
|
||||||
@@ -4220,15 +4220,15 @@
|
|||||||
|
|
||||||
// "item.version.create.notification.success" : "New version has been created with version number {{version}}",
|
// "item.version.create.notification.success" : "New version has been created with version number {{version}}",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.version.create.notification.success" : "New version has been created with version number {{version}}",
|
"item.version.create.notification.success": "New version has been created with version number {{version}}",
|
||||||
|
|
||||||
// "item.version.create.notification.failure" : "New version has not been created",
|
// "item.version.create.notification.failure" : "New version has not been created",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.version.create.notification.failure" : "New version has not been created",
|
"item.version.create.notification.failure": "New version has not been created",
|
||||||
|
|
||||||
// "item.version.create.notification.inProgress" : "A new version cannot be created because there is an inprogress submission in the version history",
|
// "item.version.create.notification.inProgress" : "A new version cannot be created because there is an inprogress submission in the version history",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.version.create.notification.inProgress" : "A new version cannot be created because there is an inprogress submission in the version history",
|
"item.version.create.notification.inProgress": "A new version cannot be created because there is an inprogress submission in the version history",
|
||||||
|
|
||||||
|
|
||||||
// "item.version.delete.modal.header": "Delete version",
|
// "item.version.delete.modal.header": "Delete version",
|
||||||
@@ -4257,20 +4257,20 @@
|
|||||||
|
|
||||||
// "item.version.delete.notification.success" : "Version number {{version}} has been deleted",
|
// "item.version.delete.notification.success" : "Version number {{version}} has been deleted",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.version.delete.notification.success" : "Version number {{version}} has been deleted",
|
"item.version.delete.notification.success": "Version number {{version}} has been deleted",
|
||||||
|
|
||||||
// "item.version.delete.notification.failure" : "Version number {{version}} has not been deleted",
|
// "item.version.delete.notification.failure" : "Version number {{version}} has not been deleted",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.version.delete.notification.failure" : "Version number {{version}} has not been deleted",
|
"item.version.delete.notification.failure": "Version number {{version}} has not been deleted",
|
||||||
|
|
||||||
|
|
||||||
// "item.version.edit.notification.success" : "The summary of version number {{version}} has been changed",
|
// "item.version.edit.notification.success" : "The summary of version number {{version}} has been changed",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.version.edit.notification.success" : "The summary of version number {{version}} has been changed",
|
"item.version.edit.notification.success": "The summary of version number {{version}} has been changed",
|
||||||
|
|
||||||
// "item.version.edit.notification.failure" : "The summary of version number {{version}} has not been changed",
|
// "item.version.edit.notification.failure" : "The summary of version number {{version}} has not been changed",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.version.edit.notification.failure" : "The summary of version number {{version}} has not been changed",
|
"item.version.edit.notification.failure": "The summary of version number {{version}} has not been changed",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -5065,15 +5065,15 @@
|
|||||||
|
|
||||||
// "nav.subscriptions" : "Subscriptions",
|
// "nav.subscriptions" : "Subscriptions",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"nav.subscriptions" : "Subscriptions",
|
"nav.subscriptions": "Subscriptions",
|
||||||
|
|
||||||
// "nav.toggle" : "Toggle navigation",
|
// "nav.toggle" : "Toggle navigation",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"nav.toggle" : "Toggle navigation",
|
"nav.toggle": "Toggle navigation",
|
||||||
|
|
||||||
// "nav.user.description" : "User profile bar",
|
// "nav.user.description" : "User profile bar",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"nav.user.description" : "User profile bar",
|
"nav.user.description": "User profile bar",
|
||||||
|
|
||||||
// "none.listelement.badge": "Item",
|
// "none.listelement.badge": "Item",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -5241,16 +5241,16 @@
|
|||||||
|
|
||||||
|
|
||||||
// "process.detail.arguments" : "Arguments",
|
// "process.detail.arguments" : "Arguments",
|
||||||
"process.detail.arguments" : "Érvek",
|
"process.detail.arguments": "Érvek",
|
||||||
|
|
||||||
// "process.detail.arguments.empty" : "This process doesn't contain any arguments",
|
// "process.detail.arguments.empty" : "This process doesn't contain any arguments",
|
||||||
"process.detail.arguments.empty" : "Ez a folyamat nem tartalmaz érveket",
|
"process.detail.arguments.empty": "Ez a folyamat nem tartalmaz érveket",
|
||||||
|
|
||||||
// "process.detail.back" : "Back",
|
// "process.detail.back" : "Back",
|
||||||
"process.detail.back" : "Vissza",
|
"process.detail.back": "Vissza",
|
||||||
|
|
||||||
// "process.detail.output" : "Process Output",
|
// "process.detail.output" : "Process Output",
|
||||||
"process.detail.output" : "Folyamat eredménye",
|
"process.detail.output": "Folyamat eredménye",
|
||||||
|
|
||||||
// "process.detail.logs.button": "Retrieve process output",
|
// "process.detail.logs.button": "Retrieve process output",
|
||||||
"process.detail.logs.button": "Folyamatkimenet lekérése",
|
"process.detail.logs.button": "Folyamatkimenet lekérése",
|
||||||
@@ -5262,28 +5262,28 @@
|
|||||||
"process.detail.logs.none": "Ennek a folyamatnak nincs kimenete",
|
"process.detail.logs.none": "Ennek a folyamatnak nincs kimenete",
|
||||||
|
|
||||||
// "process.detail.output-files" : "Output Files",
|
// "process.detail.output-files" : "Output Files",
|
||||||
"process.detail.output-files" : "Kimeneti fájlok",
|
"process.detail.output-files": "Kimeneti fájlok",
|
||||||
|
|
||||||
// "process.detail.output-files.empty" : "This process doesn't contain any output files",
|
// "process.detail.output-files.empty" : "This process doesn't contain any output files",
|
||||||
"process.detail.output-files.empty" : "Ennek a folyamatnak nincsenek kimeneti fájljai",
|
"process.detail.output-files.empty": "Ennek a folyamatnak nincsenek kimeneti fájljai",
|
||||||
|
|
||||||
// "process.detail.script" : "Script",
|
// "process.detail.script" : "Script",
|
||||||
"process.detail.script" : "Szkript",
|
"process.detail.script": "Szkript",
|
||||||
|
|
||||||
// "process.detail.title" : "Process: {{ id }} - {{ name }}",
|
// "process.detail.title" : "Process: {{ id }} - {{ name }}",
|
||||||
"process.detail.title" : "Folyamat: {{ id }} - {{ name }}",
|
"process.detail.title": "Folyamat: {{ id }} - {{ name }}",
|
||||||
|
|
||||||
// "process.detail.start-time" : "Start time",
|
// "process.detail.start-time" : "Start time",
|
||||||
"process.detail.start-time" : "Kezdési idő",
|
"process.detail.start-time": "Kezdési idő",
|
||||||
|
|
||||||
// "process.detail.end-time" : "Finish time",
|
// "process.detail.end-time" : "Finish time",
|
||||||
"process.detail.end-time" : "Végzési idő",
|
"process.detail.end-time": "Végzési idő",
|
||||||
|
|
||||||
// "process.detail.status" : "Status",
|
// "process.detail.status" : "Status",
|
||||||
"process.detail.status" : "Állapot",
|
"process.detail.status": "Állapot",
|
||||||
|
|
||||||
// "process.detail.create" : "Create similar process",
|
// "process.detail.create" : "Create similar process",
|
||||||
"process.detail.create" : "Hasonló folyamat létrehozása",
|
"process.detail.create": "Hasonló folyamat létrehozása",
|
||||||
|
|
||||||
// "process.detail.actions": "Actions",
|
// "process.detail.actions": "Actions",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -5321,23 +5321,23 @@
|
|||||||
|
|
||||||
// "process.overview.table.finish" : "Finish time (UTC)",
|
// "process.overview.table.finish" : "Finish time (UTC)",
|
||||||
// TODO Source message changed - Revise the translation
|
// TODO Source message changed - Revise the translation
|
||||||
"process.overview.table.finish" : "Végzési idő",
|
"process.overview.table.finish": "Végzési idő",
|
||||||
|
|
||||||
// "process.overview.table.id" : "Process ID",
|
// "process.overview.table.id" : "Process ID",
|
||||||
"process.overview.table.id" : "Folyamat ID",
|
"process.overview.table.id": "Folyamat ID",
|
||||||
|
|
||||||
// "process.overview.table.name" : "Name",
|
// "process.overview.table.name" : "Name",
|
||||||
"process.overview.table.name" : "Név",
|
"process.overview.table.name": "Név",
|
||||||
|
|
||||||
// "process.overview.table.start" : "Start time (UTC)",
|
// "process.overview.table.start" : "Start time (UTC)",
|
||||||
// TODO Source message changed - Revise the translation
|
// TODO Source message changed - Revise the translation
|
||||||
"process.overview.table.start" : "Kezdési idő",
|
"process.overview.table.start": "Kezdési idő",
|
||||||
|
|
||||||
// "process.overview.table.status" : "Status",
|
// "process.overview.table.status" : "Status",
|
||||||
"process.overview.table.status" : "Állapot",
|
"process.overview.table.status": "Állapot",
|
||||||
|
|
||||||
// "process.overview.table.user" : "User",
|
// "process.overview.table.user" : "User",
|
||||||
"process.overview.table.user" : "Felhasználó",
|
"process.overview.table.user": "Felhasználó",
|
||||||
|
|
||||||
// "process.overview.title": "Processes Overview",
|
// "process.overview.title": "Processes Overview",
|
||||||
"process.overview.title": "Folyaamt áttekintő",
|
"process.overview.title": "Folyaamt áttekintő",
|
||||||
@@ -7476,7 +7476,7 @@
|
|||||||
|
|
||||||
// "submission.sections.license.notgranted": "You must accept the license",
|
// "submission.sections.license.notgranted": "You must accept the license",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"submission.sections.license.notgranted": "You must accept the license",
|
"submission.sections.license.notgranted": "You must accept the license",
|
||||||
|
|
||||||
|
|
||||||
// "submission.sections.sherpa.publication.information": "Publication information",
|
// "submission.sections.sherpa.publication.information": "Publication information",
|
||||||
@@ -8124,7 +8124,7 @@
|
|||||||
|
|
||||||
// "researcher.profile.action.processing" : "Processing...",
|
// "researcher.profile.action.processing" : "Processing...",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"researcher.profile.action.processing" : "Processing...",
|
"researcher.profile.action.processing": "Processing...",
|
||||||
|
|
||||||
// "researcher.profile.associated": "Researcher profile associated",
|
// "researcher.profile.associated": "Researcher profile associated",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -8168,11 +8168,11 @@
|
|||||||
|
|
||||||
// "researcher.profile.private.visibility" : "PRIVATE",
|
// "researcher.profile.private.visibility" : "PRIVATE",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"researcher.profile.private.visibility" : "PRIVATE",
|
"researcher.profile.private.visibility": "PRIVATE",
|
||||||
|
|
||||||
// "researcher.profile.public.visibility" : "PUBLIC",
|
// "researcher.profile.public.visibility" : "PUBLIC",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"researcher.profile.public.visibility" : "PUBLIC",
|
"researcher.profile.public.visibility": "PUBLIC",
|
||||||
|
|
||||||
// "researcher.profile.status": "Status:",
|
// "researcher.profile.status": "Status:",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -8184,19 +8184,19 @@
|
|||||||
|
|
||||||
// "researcherprofile.error.claim.body" : "An error occurred while claiming the profile, please try again later",
|
// "researcherprofile.error.claim.body" : "An error occurred while claiming the profile, please try again later",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"researcherprofile.error.claim.body" : "An error occurred while claiming the profile, please try again later",
|
"researcherprofile.error.claim.body": "An error occurred while claiming the profile, please try again later",
|
||||||
|
|
||||||
// "researcherprofile.error.claim.title" : "Error",
|
// "researcherprofile.error.claim.title" : "Error",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"researcherprofile.error.claim.title" : "Error",
|
"researcherprofile.error.claim.title": "Error",
|
||||||
|
|
||||||
// "researcherprofile.success.claim.body" : "Profile claimed with success",
|
// "researcherprofile.success.claim.body" : "Profile claimed with success",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"researcherprofile.success.claim.body" : "Profile claimed with success",
|
"researcherprofile.success.claim.body": "Profile claimed with success",
|
||||||
|
|
||||||
// "researcherprofile.success.claim.title" : "Success",
|
// "researcherprofile.success.claim.title" : "Success",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"researcherprofile.success.claim.title" : "Success",
|
"researcherprofile.success.claim.title": "Success",
|
||||||
|
|
||||||
// "person.page.orcid.create": "Create an ORCID ID",
|
// "person.page.orcid.create": "Create an ORCID ID",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -8208,7 +8208,7 @@
|
|||||||
|
|
||||||
// "person.page.orcid.grant-authorizations" : "Grant authorizations",
|
// "person.page.orcid.grant-authorizations" : "Grant authorizations",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"person.page.orcid.grant-authorizations" : "Grant authorizations",
|
"person.page.orcid.grant-authorizations": "Grant authorizations",
|
||||||
|
|
||||||
// "person.page.orcid.link": "Connect to ORCID ID",
|
// "person.page.orcid.link": "Connect to ORCID ID",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -8272,55 +8272,55 @@
|
|||||||
|
|
||||||
// "person.page.orcid.sync-profile.affiliation" : "Affiliation",
|
// "person.page.orcid.sync-profile.affiliation" : "Affiliation",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"person.page.orcid.sync-profile.affiliation" : "Affiliation",
|
"person.page.orcid.sync-profile.affiliation": "Affiliation",
|
||||||
|
|
||||||
// "person.page.orcid.sync-profile.biographical" : "Biographical data",
|
// "person.page.orcid.sync-profile.biographical" : "Biographical data",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"person.page.orcid.sync-profile.biographical" : "Biographical data",
|
"person.page.orcid.sync-profile.biographical": "Biographical data",
|
||||||
|
|
||||||
// "person.page.orcid.sync-profile.education" : "Education",
|
// "person.page.orcid.sync-profile.education" : "Education",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"person.page.orcid.sync-profile.education" : "Education",
|
"person.page.orcid.sync-profile.education": "Education",
|
||||||
|
|
||||||
// "person.page.orcid.sync-profile.identifiers" : "Identifiers",
|
// "person.page.orcid.sync-profile.identifiers" : "Identifiers",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"person.page.orcid.sync-profile.identifiers" : "Identifiers",
|
"person.page.orcid.sync-profile.identifiers": "Identifiers",
|
||||||
|
|
||||||
// "person.page.orcid.sync-fundings.all" : "All fundings",
|
// "person.page.orcid.sync-fundings.all" : "All fundings",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"person.page.orcid.sync-fundings.all" : "All fundings",
|
"person.page.orcid.sync-fundings.all": "All fundings",
|
||||||
|
|
||||||
// "person.page.orcid.sync-fundings.mine" : "My fundings",
|
// "person.page.orcid.sync-fundings.mine" : "My fundings",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"person.page.orcid.sync-fundings.mine" : "My fundings",
|
"person.page.orcid.sync-fundings.mine": "My fundings",
|
||||||
|
|
||||||
// "person.page.orcid.sync-fundings.my_selected" : "Selected fundings",
|
// "person.page.orcid.sync-fundings.my_selected" : "Selected fundings",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"person.page.orcid.sync-fundings.my_selected" : "Selected fundings",
|
"person.page.orcid.sync-fundings.my_selected": "Selected fundings",
|
||||||
|
|
||||||
// "person.page.orcid.sync-fundings.disabled" : "Disabled",
|
// "person.page.orcid.sync-fundings.disabled" : "Disabled",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"person.page.orcid.sync-fundings.disabled" : "Disabled",
|
"person.page.orcid.sync-fundings.disabled": "Disabled",
|
||||||
|
|
||||||
// "person.page.orcid.sync-publications.all" : "All publications",
|
// "person.page.orcid.sync-publications.all" : "All publications",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"person.page.orcid.sync-publications.all" : "All publications",
|
"person.page.orcid.sync-publications.all": "All publications",
|
||||||
|
|
||||||
// "person.page.orcid.sync-publications.mine" : "My publications",
|
// "person.page.orcid.sync-publications.mine" : "My publications",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"person.page.orcid.sync-publications.mine" : "My publications",
|
"person.page.orcid.sync-publications.mine": "My publications",
|
||||||
|
|
||||||
// "person.page.orcid.sync-publications.my_selected" : "Selected publications",
|
// "person.page.orcid.sync-publications.my_selected" : "Selected publications",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"person.page.orcid.sync-publications.my_selected" : "Selected publications",
|
"person.page.orcid.sync-publications.my_selected": "Selected publications",
|
||||||
|
|
||||||
// "person.page.orcid.sync-publications.disabled" : "Disabled",
|
// "person.page.orcid.sync-publications.disabled" : "Disabled",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"person.page.orcid.sync-publications.disabled" : "Disabled",
|
"person.page.orcid.sync-publications.disabled": "Disabled",
|
||||||
|
|
||||||
// "person.page.orcid.sync-queue.discard" : "Discard the change and do not synchronize with the ORCID registry",
|
// "person.page.orcid.sync-queue.discard" : "Discard the change and do not synchronize with the ORCID registry",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"person.page.orcid.sync-queue.discard" : "Discard the change and do not synchronize with the ORCID registry",
|
"person.page.orcid.sync-queue.discard": "Discard the change and do not synchronize with the ORCID registry",
|
||||||
|
|
||||||
// "person.page.orcid.sync-queue.discard.error": "The discarding of the ORCID queue record failed",
|
// "person.page.orcid.sync-queue.discard.error": "The discarding of the ORCID queue record failed",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -8336,15 +8336,15 @@
|
|||||||
|
|
||||||
// "person.page.orcid.sync-queue.table.header.type" : "Type",
|
// "person.page.orcid.sync-queue.table.header.type" : "Type",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"person.page.orcid.sync-queue.table.header.type" : "Type",
|
"person.page.orcid.sync-queue.table.header.type": "Type",
|
||||||
|
|
||||||
// "person.page.orcid.sync-queue.table.header.description" : "Description",
|
// "person.page.orcid.sync-queue.table.header.description" : "Description",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"person.page.orcid.sync-queue.table.header.description" : "Description",
|
"person.page.orcid.sync-queue.table.header.description": "Description",
|
||||||
|
|
||||||
// "person.page.orcid.sync-queue.table.header.action" : "Action",
|
// "person.page.orcid.sync-queue.table.header.action" : "Action",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"person.page.orcid.sync-queue.table.header.action" : "Action",
|
"person.page.orcid.sync-queue.table.header.action": "Action",
|
||||||
|
|
||||||
// "person.page.orcid.sync-queue.description.affiliation": "Affiliations",
|
// "person.page.orcid.sync-queue.description.affiliation": "Affiliations",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -8432,7 +8432,7 @@
|
|||||||
|
|
||||||
// "person.page.orcid.sync-queue.send" : "Synchronize with ORCID registry",
|
// "person.page.orcid.sync-queue.send" : "Synchronize with ORCID registry",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"person.page.orcid.sync-queue.send" : "Synchronize with ORCID registry",
|
"person.page.orcid.sync-queue.send": "Synchronize with ORCID registry",
|
||||||
|
|
||||||
// "person.page.orcid.sync-queue.send.unauthorized-error.title": "The submission to ORCID failed for missing authorizations.",
|
// "person.page.orcid.sync-queue.send.unauthorized-error.title": "The submission to ORCID failed for missing authorizations.",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -8504,7 +8504,7 @@
|
|||||||
|
|
||||||
// "person.page.orcid.sync-queue.send.validation-error.publication.date-invalid" : "The publication date must be one year after 1900",
|
// "person.page.orcid.sync-queue.send.validation-error.publication.date-invalid" : "The publication date must be one year after 1900",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"person.page.orcid.sync-queue.send.validation-error.publication.date-invalid" : "The publication date must be one year after 1900",
|
"person.page.orcid.sync-queue.send.validation-error.publication.date-invalid": "The publication date must be one year after 1900",
|
||||||
|
|
||||||
// "person.page.orcid.sync-queue.send.validation-error.organization.address-required": "The organization to be sent requires an address",
|
// "person.page.orcid.sync-queue.send.validation-error.organization.address-required": "The organization to be sent requires an address",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
|
@@ -208,7 +208,7 @@
|
|||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"admin.registries.bitstream-formats.table.name": "Name",
|
"admin.registries.bitstream-formats.table.name": "Name",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"admin.registries.bitstream-formats.table.id" : "ID",
|
"admin.registries.bitstream-formats.table.id": "ID",
|
||||||
|
|
||||||
// "admin.registries.bitstream-formats.table.return": "Return",
|
// "admin.registries.bitstream-formats.table.return": "Return",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -314,7 +314,7 @@
|
|||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"admin.registries.schema.fields.table.field": "Field",
|
"admin.registries.schema.fields.table.field": "Field",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"admin.registries.schema.fields.table.id" : "ID",
|
"admin.registries.schema.fields.table.id": "ID",
|
||||||
|
|
||||||
// "admin.registries.schema.fields.table.scopenote": "Scope Note",
|
// "admin.registries.schema.fields.table.scopenote": "Scope Note",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -2050,7 +2050,7 @@
|
|||||||
|
|
||||||
// "curation-task.task.checklinks.label": "Check Links in Metadata",
|
// "curation-task.task.checklinks.label": "Check Links in Metadata",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"curation-task.task.checklinks.label": "Check Links in Metadata",
|
"curation-task.task.checklinks.label": "Check Links in Metadata",
|
||||||
|
|
||||||
// "curation-task.task.noop.label": "NOOP",
|
// "curation-task.task.noop.label": "NOOP",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -2305,7 +2305,7 @@
|
|||||||
|
|
||||||
// "footer.link.end-user-agreement":"End User Agreement",
|
// "footer.link.end-user-agreement":"End User Agreement",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"footer.link.end-user-agreement":"End User Agreement",
|
"footer.link.end-user-agreement": "End User Agreement",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -2629,9 +2629,9 @@
|
|||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.bitstreams.upload.bundle.new": "Create bundle",
|
"item.bitstreams.upload.bundle.new": "Create bundle",
|
||||||
|
|
||||||
// "item.bitstreams.upload.bundles.empty": "This item doesn\'t contain any bundles to upload a bitstream to.",
|
// "item.bitstreams.upload.bundles.empty": "This item doesn't contain any bundles to upload a bitstream to.",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.bitstreams.upload.bundles.empty": "This item doesn\'t contain any bundles to upload a bitstream to.",
|
"item.bitstreams.upload.bundles.empty": "This item doesn't contain any bundles to upload a bitstream to.",
|
||||||
|
|
||||||
// "item.bitstreams.upload.cancel": "Cancel",
|
// "item.bitstreams.upload.cancel": "Cancel",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -3370,10 +3370,6 @@
|
|||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.page.description": "Description",
|
"item.page.description": "Description",
|
||||||
|
|
||||||
// "item.page.edit": "Edit this item",
|
|
||||||
// TODO New key - Add a translation
|
|
||||||
"item.page.edit": "Edit this item",
|
|
||||||
|
|
||||||
// "item.page.journal-issn": "Journal ISSN",
|
// "item.page.journal-issn": "Journal ISSN",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.page.journal-issn": "Journal ISSN",
|
"item.page.journal-issn": "Journal ISSN",
|
||||||
@@ -3510,11 +3506,11 @@
|
|||||||
|
|
||||||
// "item.page.filesection.original.bundle" : "Original bundle",
|
// "item.page.filesection.original.bundle" : "Original bundle",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.page.filesection.original.bundle" : "Original bundle",
|
"item.page.filesection.original.bundle": "Original bundle",
|
||||||
|
|
||||||
// "item.page.filesection.license.bundle" : "License bundle",
|
// "item.page.filesection.license.bundle" : "License bundle",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.page.filesection.license.bundle" : "License bundle",
|
"item.page.filesection.license.bundle": "License bundle",
|
||||||
|
|
||||||
// "item.preview.dc.identifier.uri": "Identifier:",
|
// "item.preview.dc.identifier.uri": "Identifier:",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -4566,19 +4562,19 @@
|
|||||||
|
|
||||||
// "process.detail.arguments" : "Arguments",
|
// "process.detail.arguments" : "Arguments",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.arguments" : "Arguments",
|
"process.detail.arguments": "Arguments",
|
||||||
|
|
||||||
// "process.detail.arguments.empty" : "This process doesn't contain any arguments",
|
// "process.detail.arguments.empty" : "This process doesn't contain any arguments",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.arguments.empty" : "This process doesn't contain any arguments",
|
"process.detail.arguments.empty": "This process doesn't contain any arguments",
|
||||||
|
|
||||||
// "process.detail.back" : "Back",
|
// "process.detail.back" : "Back",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.back" : "Back",
|
"process.detail.back": "Back",
|
||||||
|
|
||||||
// "process.detail.output" : "Process Output",
|
// "process.detail.output" : "Process Output",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.output" : "Process Output",
|
"process.detail.output": "Process Output",
|
||||||
|
|
||||||
// "process.detail.logs.button": "Retrieve process output",
|
// "process.detail.logs.button": "Retrieve process output",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -4594,61 +4590,61 @@
|
|||||||
|
|
||||||
// "process.detail.output-files" : "Output Files",
|
// "process.detail.output-files" : "Output Files",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.output-files" : "Output Files",
|
"process.detail.output-files": "Output Files",
|
||||||
|
|
||||||
// "process.detail.output-files.empty" : "This process doesn't contain any output files",
|
// "process.detail.output-files.empty" : "This process doesn't contain any output files",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.output-files.empty" : "This process doesn't contain any output files",
|
"process.detail.output-files.empty": "This process doesn't contain any output files",
|
||||||
|
|
||||||
// "process.detail.script" : "Script",
|
// "process.detail.script" : "Script",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.script" : "Script",
|
"process.detail.script": "Script",
|
||||||
|
|
||||||
// "process.detail.title" : "Process: {{ id }} - {{ name }}",
|
// "process.detail.title" : "Process: {{ id }} - {{ name }}",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.title" : "Process: {{ id }} - {{ name }}",
|
"process.detail.title": "Process: {{ id }} - {{ name }}",
|
||||||
|
|
||||||
// "process.detail.start-time" : "Start time",
|
// "process.detail.start-time" : "Start time",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.start-time" : "Start time",
|
"process.detail.start-time": "Start time",
|
||||||
|
|
||||||
// "process.detail.end-time" : "Finish time",
|
// "process.detail.end-time" : "Finish time",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.end-time" : "Finish time",
|
"process.detail.end-time": "Finish time",
|
||||||
|
|
||||||
// "process.detail.status" : "Status",
|
// "process.detail.status" : "Status",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.status" : "Status",
|
"process.detail.status": "Status",
|
||||||
|
|
||||||
// "process.detail.create" : "Create similar process",
|
// "process.detail.create" : "Create similar process",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.create" : "Create similar process",
|
"process.detail.create": "Create similar process",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// "process.overview.table.finish" : "Finish time",
|
// "process.overview.table.finish" : "Finish time",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.overview.table.finish" : "Finish time",
|
"process.overview.table.finish": "Finish time",
|
||||||
|
|
||||||
// "process.overview.table.id" : "Process ID",
|
// "process.overview.table.id" : "Process ID",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.overview.table.id" : "Process ID",
|
"process.overview.table.id": "Process ID",
|
||||||
|
|
||||||
// "process.overview.table.name" : "Name",
|
// "process.overview.table.name" : "Name",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.overview.table.name" : "Name",
|
"process.overview.table.name": "Name",
|
||||||
|
|
||||||
// "process.overview.table.start" : "Start time",
|
// "process.overview.table.start" : "Start time",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.overview.table.start" : "Start time",
|
"process.overview.table.start": "Start time",
|
||||||
|
|
||||||
// "process.overview.table.status" : "Status",
|
// "process.overview.table.status" : "Status",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.overview.table.status" : "Status",
|
"process.overview.table.status": "Status",
|
||||||
|
|
||||||
// "process.overview.table.user" : "User",
|
// "process.overview.table.user" : "User",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.overview.table.user" : "User",
|
"process.overview.table.user": "User",
|
||||||
|
|
||||||
// "process.overview.title": "Processes Overview",
|
// "process.overview.title": "Processes Overview",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -6263,9 +6259,9 @@
|
|||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Search Results",
|
"submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Search Results",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don\'t you can still use it for this submission.",
|
// "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don't you can still use it for this submission.",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don\'t you can still use it for this submission.",
|
"submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don't you can still use it for this submission.",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant",
|
// "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -6746,7 +6742,7 @@
|
|||||||
|
|
||||||
// "workflow-item.send-back.button.confirm": "Send back"
|
// "workflow-item.send-back.button.confirm": "Send back"
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"workflow-item.send-back.button.confirm": "Send back"
|
"workflow-item.send-back.button.confirm": "Send back",
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
File diff suppressed because it is too large
Load Diff
@@ -169,7 +169,7 @@
|
|||||||
// "admin.registries.bitstream-formats.table.name": "Name",
|
// "admin.registries.bitstream-formats.table.name": "Name",
|
||||||
"admin.registries.bitstream-formats.table.name": "Nosaukums",
|
"admin.registries.bitstream-formats.table.name": "Nosaukums",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"admin.registries.bitstream-formats.table.id" : "ID",
|
"admin.registries.bitstream-formats.table.id": "ID",
|
||||||
|
|
||||||
// "admin.registries.bitstream-formats.table.return": "Return",
|
// "admin.registries.bitstream-formats.table.return": "Return",
|
||||||
"admin.registries.bitstream-formats.table.return": "Atgriezties",
|
"admin.registries.bitstream-formats.table.return": "Atgriezties",
|
||||||
@@ -252,7 +252,7 @@
|
|||||||
// "admin.registries.schema.fields.table.field": "Field",
|
// "admin.registries.schema.fields.table.field": "Field",
|
||||||
"admin.registries.schema.fields.table.field": "Lauks",
|
"admin.registries.schema.fields.table.field": "Lauks",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"admin.registries.schema.fields.table.id" : "ID",
|
"admin.registries.schema.fields.table.id": "ID",
|
||||||
|
|
||||||
// "admin.registries.schema.fields.table.scopenote": "Scope Note",
|
// "admin.registries.schema.fields.table.scopenote": "Scope Note",
|
||||||
"admin.registries.schema.fields.table.scopenote": "Jomas Piezīme",
|
"admin.registries.schema.fields.table.scopenote": "Jomas Piezīme",
|
||||||
@@ -1680,7 +1680,7 @@
|
|||||||
|
|
||||||
// "curation-task.task.checklinks.label": "Check Links in Metadata",
|
// "curation-task.task.checklinks.label": "Check Links in Metadata",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"curation-task.task.checklinks.label": "Check Links in Metadata",
|
"curation-task.task.checklinks.label": "Check Links in Metadata",
|
||||||
|
|
||||||
// "curation-task.task.noop.label": "NOOP",
|
// "curation-task.task.noop.label": "NOOP",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -1903,7 +1903,7 @@
|
|||||||
|
|
||||||
// "footer.link.end-user-agreement":"End User Agreement",
|
// "footer.link.end-user-agreement":"End User Agreement",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"footer.link.end-user-agreement":"End User Agreement",
|
"footer.link.end-user-agreement": "End User Agreement",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -2196,7 +2196,7 @@
|
|||||||
// "item.bitstreams.upload.bundle.new": "Create bundle",
|
// "item.bitstreams.upload.bundle.new": "Create bundle",
|
||||||
"item.bitstreams.upload.bundle.new": "Izveidot kopienu",
|
"item.bitstreams.upload.bundle.new": "Izveidot kopienu",
|
||||||
|
|
||||||
// "item.bitstreams.upload.bundles.empty": "This item doesn\'t contain any bundles to upload a bitstream to.",
|
// "item.bitstreams.upload.bundles.empty": "This item doesn't contain any bundles to upload a bitstream to.",
|
||||||
"item.bitstreams.upload.bundles.empty": "Materiālā nav neviena kopiena ko augšupielādēt bitu straumē.",
|
"item.bitstreams.upload.bundles.empty": "Materiālā nav neviena kopiena ko augšupielādēt bitu straumē.",
|
||||||
|
|
||||||
// "item.bitstreams.upload.cancel": "Cancel",
|
// "item.bitstreams.upload.cancel": "Cancel",
|
||||||
@@ -2768,10 +2768,6 @@
|
|||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.page.description": "Description",
|
"item.page.description": "Description",
|
||||||
|
|
||||||
// "item.page.edit": "Edit this item",
|
|
||||||
// TODO New key - Add a translation
|
|
||||||
"item.page.edit": "Edit this item",
|
|
||||||
|
|
||||||
// "item.page.journal-issn": "Journal ISSN",
|
// "item.page.journal-issn": "Journal ISSN",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.page.journal-issn": "Journal ISSN",
|
"item.page.journal-issn": "Journal ISSN",
|
||||||
@@ -2885,11 +2881,11 @@
|
|||||||
|
|
||||||
// "item.page.filesection.original.bundle" : "Original bundle",
|
// "item.page.filesection.original.bundle" : "Original bundle",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.page.filesection.original.bundle" : "Original bundle",
|
"item.page.filesection.original.bundle": "Original bundle",
|
||||||
|
|
||||||
// "item.page.filesection.license.bundle" : "License bundle",
|
// "item.page.filesection.license.bundle" : "License bundle",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.page.filesection.license.bundle" : "License bundle",
|
"item.page.filesection.license.bundle": "License bundle",
|
||||||
|
|
||||||
// "item.preview.dc.identifier.uri": "Identifier:",
|
// "item.preview.dc.identifier.uri": "Identifier:",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -3739,19 +3735,19 @@
|
|||||||
|
|
||||||
// "process.detail.arguments" : "Arguments",
|
// "process.detail.arguments" : "Arguments",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.arguments" : "Arguments",
|
"process.detail.arguments": "Arguments",
|
||||||
|
|
||||||
// "process.detail.arguments.empty" : "This process doesn't contain any arguments",
|
// "process.detail.arguments.empty" : "This process doesn't contain any arguments",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.arguments.empty" : "This process doesn't contain any arguments",
|
"process.detail.arguments.empty": "This process doesn't contain any arguments",
|
||||||
|
|
||||||
// "process.detail.back" : "Back",
|
// "process.detail.back" : "Back",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.back" : "Back",
|
"process.detail.back": "Back",
|
||||||
|
|
||||||
// "process.detail.output" : "Process Output",
|
// "process.detail.output" : "Process Output",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.output" : "Process Output",
|
"process.detail.output": "Process Output",
|
||||||
|
|
||||||
// "process.detail.logs.button": "Retrieve process output",
|
// "process.detail.logs.button": "Retrieve process output",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -3767,61 +3763,61 @@
|
|||||||
|
|
||||||
// "process.detail.output-files" : "Output Files",
|
// "process.detail.output-files" : "Output Files",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.output-files" : "Output Files",
|
"process.detail.output-files": "Output Files",
|
||||||
|
|
||||||
// "process.detail.output-files.empty" : "This process doesn't contain any output files",
|
// "process.detail.output-files.empty" : "This process doesn't contain any output files",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.output-files.empty" : "This process doesn't contain any output files",
|
"process.detail.output-files.empty": "This process doesn't contain any output files",
|
||||||
|
|
||||||
// "process.detail.script" : "Script",
|
// "process.detail.script" : "Script",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.script" : "Script",
|
"process.detail.script": "Script",
|
||||||
|
|
||||||
// "process.detail.title" : "Process: {{ id }} - {{ name }}",
|
// "process.detail.title" : "Process: {{ id }} - {{ name }}",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.title" : "Process: {{ id }} - {{ name }}",
|
"process.detail.title": "Process: {{ id }} - {{ name }}",
|
||||||
|
|
||||||
// "process.detail.start-time" : "Start time",
|
// "process.detail.start-time" : "Start time",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.start-time" : "Start time",
|
"process.detail.start-time": "Start time",
|
||||||
|
|
||||||
// "process.detail.end-time" : "Finish time",
|
// "process.detail.end-time" : "Finish time",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.end-time" : "Finish time",
|
"process.detail.end-time": "Finish time",
|
||||||
|
|
||||||
// "process.detail.status" : "Status",
|
// "process.detail.status" : "Status",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.status" : "Status",
|
"process.detail.status": "Status",
|
||||||
|
|
||||||
// "process.detail.create" : "Create similar process",
|
// "process.detail.create" : "Create similar process",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.create" : "Create similar process",
|
"process.detail.create": "Create similar process",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// "process.overview.table.finish" : "Finish time",
|
// "process.overview.table.finish" : "Finish time",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.overview.table.finish" : "Finish time",
|
"process.overview.table.finish": "Finish time",
|
||||||
|
|
||||||
// "process.overview.table.id" : "Process ID",
|
// "process.overview.table.id" : "Process ID",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.overview.table.id" : "Process ID",
|
"process.overview.table.id": "Process ID",
|
||||||
|
|
||||||
// "process.overview.table.name" : "Name",
|
// "process.overview.table.name" : "Name",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.overview.table.name" : "Name",
|
"process.overview.table.name": "Name",
|
||||||
|
|
||||||
// "process.overview.table.start" : "Start time",
|
// "process.overview.table.start" : "Start time",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.overview.table.start" : "Start time",
|
"process.overview.table.start": "Start time",
|
||||||
|
|
||||||
// "process.overview.table.status" : "Status",
|
// "process.overview.table.status" : "Status",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.overview.table.status" : "Status",
|
"process.overview.table.status": "Status",
|
||||||
|
|
||||||
// "process.overview.table.user" : "User",
|
// "process.overview.table.user" : "User",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.overview.table.user" : "User",
|
"process.overview.table.user": "User",
|
||||||
|
|
||||||
// "process.overview.title": "Processes Overview",
|
// "process.overview.title": "Processes Overview",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -5221,7 +5217,7 @@
|
|||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Search Results",
|
"submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Search Results",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don\'t you can still use it for this submission.",
|
// "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don't you can still use it for this submission.",
|
||||||
"submission.sections.describe.relationship-lookup.name-variant.notification.content": "Vai vēlaties saglabāt \"{{ value }}\" kā vārda variantu šai personai, lai jūs un citi varētu to izmantot turpmākai iesniegšanai? Ja nē, jūs joprojām varat to izmantot šai iesniegšanai.",
|
"submission.sections.describe.relationship-lookup.name-variant.notification.content": "Vai vēlaties saglabāt \"{{ value }}\" kā vārda variantu šai personai, lai jūs un citi varētu to izmantot turpmākai iesniegšanai? Ja nē, jūs joprojām varat to izmantot šai iesniegšanai.",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant",
|
// "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant",
|
||||||
@@ -5624,7 +5620,7 @@
|
|||||||
|
|
||||||
// "workflow-item.send-back.button.confirm": "Send back"
|
// "workflow-item.send-back.button.confirm": "Send back"
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"workflow-item.send-back.button.confirm": "Send back"
|
"workflow-item.send-back.button.confirm": "Send back",
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -170,7 +170,7 @@
|
|||||||
// "admin.registries.bitstream-formats.table.name": "Name",
|
// "admin.registries.bitstream-formats.table.name": "Name",
|
||||||
"admin.registries.bitstream-formats.table.name": "Naam",
|
"admin.registries.bitstream-formats.table.name": "Naam",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"admin.registries.bitstream-formats.table.id" : "ID",
|
"admin.registries.bitstream-formats.table.id": "ID",
|
||||||
|
|
||||||
// "admin.registries.bitstream-formats.table.return": "Return",
|
// "admin.registries.bitstream-formats.table.return": "Return",
|
||||||
"admin.registries.bitstream-formats.table.return": "Terug",
|
"admin.registries.bitstream-formats.table.return": "Terug",
|
||||||
@@ -253,7 +253,7 @@
|
|||||||
// "admin.registries.schema.fields.table.field": "Field",
|
// "admin.registries.schema.fields.table.field": "Field",
|
||||||
"admin.registries.schema.fields.table.field": "Veld",
|
"admin.registries.schema.fields.table.field": "Veld",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"admin.registries.schema.fields.table.id" : "ID",
|
"admin.registries.schema.fields.table.id": "ID",
|
||||||
|
|
||||||
// "admin.registries.schema.fields.table.scopenote": "Scope Note",
|
// "admin.registries.schema.fields.table.scopenote": "Scope Note",
|
||||||
"admin.registries.schema.fields.table.scopenote": "Opmerking over bereik",
|
"admin.registries.schema.fields.table.scopenote": "Opmerking over bereik",
|
||||||
@@ -1872,7 +1872,7 @@
|
|||||||
|
|
||||||
// "curation-task.task.checklinks.label": "Check Links in Metadata",
|
// "curation-task.task.checklinks.label": "Check Links in Metadata",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"curation-task.task.checklinks.label": "Check Links in Metadata",
|
"curation-task.task.checklinks.label": "Check Links in Metadata",
|
||||||
|
|
||||||
// "curation-task.task.noop.label": "NOOP",
|
// "curation-task.task.noop.label": "NOOP",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -2097,7 +2097,7 @@
|
|||||||
|
|
||||||
// "footer.link.end-user-agreement":"End User Agreement",
|
// "footer.link.end-user-agreement":"End User Agreement",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"footer.link.end-user-agreement":"End User Agreement",
|
"footer.link.end-user-agreement": "End User Agreement",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -2397,9 +2397,9 @@
|
|||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.bitstreams.upload.bundle.new": "Create bundle",
|
"item.bitstreams.upload.bundle.new": "Create bundle",
|
||||||
|
|
||||||
// "item.bitstreams.upload.bundles.empty": "This item doesn\'t contain any bundles to upload a bitstream to.",
|
// "item.bitstreams.upload.bundles.empty": "This item doesn't contain any bundles to upload a bitstream to.",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.bitstreams.upload.bundles.empty": "This item doesn\'t contain any bundles to upload a bitstream to.",
|
"item.bitstreams.upload.bundles.empty": "This item doesn't contain any bundles to upload a bitstream to.",
|
||||||
|
|
||||||
// "item.bitstreams.upload.cancel": "Cancel",
|
// "item.bitstreams.upload.cancel": "Cancel",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -3015,10 +3015,6 @@
|
|||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.page.description": "Description",
|
"item.page.description": "Description",
|
||||||
|
|
||||||
// "item.page.edit": "Edit this item",
|
|
||||||
// TODO New key - Add a translation
|
|
||||||
"item.page.edit": "Edit this item",
|
|
||||||
|
|
||||||
// "item.page.journal-issn": "Journal ISSN",
|
// "item.page.journal-issn": "Journal ISSN",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.page.journal-issn": "Journal ISSN",
|
"item.page.journal-issn": "Journal ISSN",
|
||||||
@@ -3138,11 +3134,11 @@
|
|||||||
|
|
||||||
// "item.page.filesection.original.bundle" : "Original bundle",
|
// "item.page.filesection.original.bundle" : "Original bundle",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.page.filesection.original.bundle" : "Original bundle",
|
"item.page.filesection.original.bundle": "Original bundle",
|
||||||
|
|
||||||
// "item.page.filesection.license.bundle" : "License bundle",
|
// "item.page.filesection.license.bundle" : "License bundle",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.page.filesection.license.bundle" : "License bundle",
|
"item.page.filesection.license.bundle": "License bundle",
|
||||||
|
|
||||||
// "item.preview.dc.identifier.uri": "Identifier:",
|
// "item.preview.dc.identifier.uri": "Identifier:",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -4012,19 +4008,19 @@
|
|||||||
|
|
||||||
// "process.detail.arguments" : "Arguments",
|
// "process.detail.arguments" : "Arguments",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.arguments" : "Arguments",
|
"process.detail.arguments": "Arguments",
|
||||||
|
|
||||||
// "process.detail.arguments.empty" : "This process doesn't contain any arguments",
|
// "process.detail.arguments.empty" : "This process doesn't contain any arguments",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.arguments.empty" : "This process doesn't contain any arguments",
|
"process.detail.arguments.empty": "This process doesn't contain any arguments",
|
||||||
|
|
||||||
// "process.detail.back" : "Back",
|
// "process.detail.back" : "Back",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.back" : "Back",
|
"process.detail.back": "Back",
|
||||||
|
|
||||||
// "process.detail.output" : "Process Output",
|
// "process.detail.output" : "Process Output",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.output" : "Process Output",
|
"process.detail.output": "Process Output",
|
||||||
|
|
||||||
// "process.detail.logs.button": "Retrieve process output",
|
// "process.detail.logs.button": "Retrieve process output",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -4040,61 +4036,61 @@
|
|||||||
|
|
||||||
// "process.detail.output-files" : "Output Files",
|
// "process.detail.output-files" : "Output Files",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.output-files" : "Output Files",
|
"process.detail.output-files": "Output Files",
|
||||||
|
|
||||||
// "process.detail.output-files.empty" : "This process doesn't contain any output files",
|
// "process.detail.output-files.empty" : "This process doesn't contain any output files",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.output-files.empty" : "This process doesn't contain any output files",
|
"process.detail.output-files.empty": "This process doesn't contain any output files",
|
||||||
|
|
||||||
// "process.detail.script" : "Script",
|
// "process.detail.script" : "Script",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.script" : "Script",
|
"process.detail.script": "Script",
|
||||||
|
|
||||||
// "process.detail.title" : "Process: {{ id }} - {{ name }}",
|
// "process.detail.title" : "Process: {{ id }} - {{ name }}",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.title" : "Process: {{ id }} - {{ name }}",
|
"process.detail.title": "Process: {{ id }} - {{ name }}",
|
||||||
|
|
||||||
// "process.detail.start-time" : "Start time",
|
// "process.detail.start-time" : "Start time",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.start-time" : "Start time",
|
"process.detail.start-time": "Start time",
|
||||||
|
|
||||||
// "process.detail.end-time" : "Finish time",
|
// "process.detail.end-time" : "Finish time",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.end-time" : "Finish time",
|
"process.detail.end-time": "Finish time",
|
||||||
|
|
||||||
// "process.detail.status" : "Status",
|
// "process.detail.status" : "Status",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.status" : "Status",
|
"process.detail.status": "Status",
|
||||||
|
|
||||||
// "process.detail.create" : "Create similar process",
|
// "process.detail.create" : "Create similar process",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.create" : "Create similar process",
|
"process.detail.create": "Create similar process",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// "process.overview.table.finish" : "Finish time",
|
// "process.overview.table.finish" : "Finish time",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.overview.table.finish" : "Finish time",
|
"process.overview.table.finish": "Finish time",
|
||||||
|
|
||||||
// "process.overview.table.id" : "Process ID",
|
// "process.overview.table.id" : "Process ID",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.overview.table.id" : "Process ID",
|
"process.overview.table.id": "Process ID",
|
||||||
|
|
||||||
// "process.overview.table.name" : "Name",
|
// "process.overview.table.name" : "Name",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.overview.table.name" : "Name",
|
"process.overview.table.name": "Name",
|
||||||
|
|
||||||
// "process.overview.table.start" : "Start time",
|
// "process.overview.table.start" : "Start time",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.overview.table.start" : "Start time",
|
"process.overview.table.start": "Start time",
|
||||||
|
|
||||||
// "process.overview.table.status" : "Status",
|
// "process.overview.table.status" : "Status",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.overview.table.status" : "Status",
|
"process.overview.table.status": "Status",
|
||||||
|
|
||||||
// "process.overview.table.user" : "User",
|
// "process.overview.table.user" : "User",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.overview.table.user" : "User",
|
"process.overview.table.user": "User",
|
||||||
|
|
||||||
// "process.overview.title": "Processes Overview",
|
// "process.overview.title": "Processes Overview",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -5591,9 +5587,9 @@
|
|||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Search Results",
|
"submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Search Results",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don\'t you can still use it for this submission.",
|
// "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don't you can still use it for this submission.",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don\'t you can still use it for this submission.",
|
"submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don't you can still use it for this submission.",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant",
|
// "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -6001,7 +5997,7 @@
|
|||||||
|
|
||||||
// "workflow-item.send-back.button.confirm": "Send back"
|
// "workflow-item.send-back.button.confirm": "Send back"
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"workflow-item.send-back.button.confirm": "Send back"
|
"workflow-item.send-back.button.confirm": "Send back",
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
File diff suppressed because it is too large
Load Diff
@@ -56,7 +56,7 @@
|
|||||||
"access-status.embargo.listelement.badge": "Embargo",
|
"access-status.embargo.listelement.badge": "Embargo",
|
||||||
|
|
||||||
// "access-status.metadata.only.listelement.badge": "Metadata only",
|
// "access-status.metadata.only.listelement.badge": "Metadata only",
|
||||||
"access-status.metadata.only.listelement.badge": "Somente Metadadados",
|
"access-status.metadata.only.listelement.badge": "Somente Metadadados",
|
||||||
|
|
||||||
// "access-status.open.access.listelement.badge": "Open Access",
|
// "access-status.open.access.listelement.badge": "Open Access",
|
||||||
"access-status.open.access.listelement.badge": "Acesso aberto (Open Access)",
|
"access-status.open.access.listelement.badge": "Acesso aberto (Open Access)",
|
||||||
@@ -70,18 +70,6 @@
|
|||||||
// "admin.curation-tasks.breadcrumbs": "System curation tasks",
|
// "admin.curation-tasks.breadcrumbs": "System curation tasks",
|
||||||
"admin.curation-tasks.breadcrumbs": "Tarefas de Curadoria do Sistema",
|
"admin.curation-tasks.breadcrumbs": "Tarefas de Curadoria do Sistema",
|
||||||
|
|
||||||
// "admin.curation-tasks.title": "System curation tasks",
|
|
||||||
"admin.curation-tasks.title": "Tarefas de Curadoria do Sistema",
|
|
||||||
|
|
||||||
// "admin.curation-tasks.header": "System curation tasks",
|
|
||||||
"admin.curation-tasks.header": "Tarefas de Curadoria do Sistema",
|
|
||||||
|
|
||||||
// "admin.registries.bitstream-formats.breadcrumbs": "Format registry",
|
|
||||||
"admin.registries.bitstream-formats.breadcrumbs": "Formatar registro",
|
|
||||||
|
|
||||||
// "admin.registries.bitstream-formats.create.breadcrumbs": "Bitstream format",
|
|
||||||
"admin.registries.bitstream-formats.create.breadcrumbs": "Formatar Bitstream",
|
|
||||||
|
|
||||||
// "admin.curation-tasks.title": "System curation tasks",
|
// "admin.curation-tasks.title": "System curation tasks",
|
||||||
"admin.curation-tasks.title": "Tarefas de curadoria do sistema",
|
"admin.curation-tasks.title": "Tarefas de curadoria do sistema",
|
||||||
|
|
||||||
@@ -206,7 +194,7 @@
|
|||||||
"admin.registries.bitstream-formats.table.name": "Nome",
|
"admin.registries.bitstream-formats.table.name": "Nome",
|
||||||
|
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"admin.registries.bitstream-formats.table.id" : "ID",
|
"admin.registries.bitstream-formats.table.id": "ID",
|
||||||
|
|
||||||
// "admin.registries.bitstream-formats.table.return": "Back",
|
// "admin.registries.bitstream-formats.table.return": "Back",
|
||||||
"admin.registries.bitstream-formats.table.return": "Voltar",
|
"admin.registries.bitstream-formats.table.return": "Voltar",
|
||||||
@@ -1841,10 +1829,10 @@
|
|||||||
"cookies.consent.purpose.statistical": "Estatística",
|
"cookies.consent.purpose.statistical": "Estatística",
|
||||||
|
|
||||||
// "curation-task.task.citationpage.label": "Generate Citation Page",
|
// "curation-task.task.citationpage.label": "Generate Citation Page",
|
||||||
"curation-task.task.citationpage.label": "Gerar página de citação",
|
"curation-task.task.citationpage.label": "Gerar página de citação",
|
||||||
|
|
||||||
// "curation-task.task.checklinks.label": "Check Links in Metadata",
|
// "curation-task.task.checklinks.label": "Check Links in Metadata",
|
||||||
"curation-task.task.checklinks.label": "Verificar links em metadados",
|
"curation-task.task.checklinks.label": "Verificar links em metadados",
|
||||||
|
|
||||||
// "curation-task.task.noop.label": "NOOP",
|
// "curation-task.task.noop.label": "NOOP",
|
||||||
"curation-task.task.noop.label": "NOOP",
|
"curation-task.task.noop.label": "NOOP",
|
||||||
@@ -2126,10 +2114,10 @@
|
|||||||
"footer.link.privacy-policy": "Política de Privacidade",
|
"footer.link.privacy-policy": "Política de Privacidade",
|
||||||
|
|
||||||
// "footer.link.end-user-agreement":"End User Agreement",
|
// "footer.link.end-user-agreement":"End User Agreement",
|
||||||
"footer.link.end-user-agreement":"Termos de Uso",
|
"footer.link.end-user-agreement": "Termos de Uso",
|
||||||
|
|
||||||
// "footer.link.feedback":"Send Feedback",
|
// "footer.link.feedback":"Send Feedback",
|
||||||
"footer.link.feedback":"Enviar uma Sugestão",
|
"footer.link.feedback": "Enviar uma Sugestão",
|
||||||
|
|
||||||
// "forgot-email.form.header": "Forgot Password",
|
// "forgot-email.form.header": "Forgot Password",
|
||||||
"forgot-email.form.header": "Esqueci a Senha",
|
"forgot-email.form.header": "Esqueci a Senha",
|
||||||
@@ -2358,13 +2346,13 @@
|
|||||||
"health.breadcrumbs": "Saúde",
|
"health.breadcrumbs": "Saúde",
|
||||||
|
|
||||||
// "health-page.heading" : "Health",
|
// "health-page.heading" : "Health",
|
||||||
"health-page.heading" : "Saúde",
|
"health-page.heading": "Saúde",
|
||||||
|
|
||||||
// "health-page.info-tab" : "Info",
|
// "health-page.info-tab" : "Info",
|
||||||
"health-page.info-tab" : "Informação",
|
"health-page.info-tab": "Informação",
|
||||||
|
|
||||||
// "health-page.status-tab" : "Status",
|
// "health-page.status-tab" : "Status",
|
||||||
"health-page.status-tab" : "Status",
|
"health-page.status-tab": "Status",
|
||||||
|
|
||||||
// "health-page.error.msg": "The health check service is temporarily unavailable",
|
// "health-page.error.msg": "The health check service is temporarily unavailable",
|
||||||
"health-page.error.msg": "O serviço de verificação de integridade está temporariamente indisponível",
|
"health-page.error.msg": "O serviço de verificação de integridade está temporariamente indisponível",
|
||||||
@@ -2490,19 +2478,19 @@
|
|||||||
"info.feedback.email-label": "Seu Email",
|
"info.feedback.email-label": "Seu Email",
|
||||||
|
|
||||||
// "info.feedback.create.success" : "Feedback Sent Successfully!",
|
// "info.feedback.create.success" : "Feedback Sent Successfully!",
|
||||||
"info.feedback.create.success" : "Sugestão Enviada com Sucesso!",
|
"info.feedback.create.success": "Sugestão Enviada com Sucesso!",
|
||||||
|
|
||||||
// "info.feedback.error.email.required" : "A valid email address is required",
|
// "info.feedback.error.email.required" : "A valid email address is required",
|
||||||
"info.feedback.error.email.required" : "Um endereço de email válido é requerido",
|
"info.feedback.error.email.required": "Um endereço de email válido é requerido",
|
||||||
|
|
||||||
// "info.feedback.error.message.required" : "A comment is required",
|
// "info.feedback.error.message.required" : "A comment is required",
|
||||||
"info.feedback.error.message.required" : "Um comentário é requerido",
|
"info.feedback.error.message.required": "Um comentário é requerido",
|
||||||
|
|
||||||
// "info.feedback.page-label" : "Page",
|
// "info.feedback.page-label" : "Page",
|
||||||
"info.feedback.page-label" : "Página",
|
"info.feedback.page-label": "Página",
|
||||||
|
|
||||||
// "info.feedback.page_help" : "Tha page related to your feedback",
|
// "info.feedback.page_help" : "Tha page related to your feedback",
|
||||||
"info.feedback.page_help" : "A página relacionada a sua sugestão",
|
"info.feedback.page_help": "A página relacionada a sua sugestão",
|
||||||
|
|
||||||
// "item.alerts.private": "This item is non-discoverable",
|
// "item.alerts.private": "This item is non-discoverable",
|
||||||
"item.alerts.private": "Este item é privado",
|
"item.alerts.private": "Este item é privado",
|
||||||
@@ -2531,7 +2519,7 @@
|
|||||||
// "item.bitstreams.upload.bundle.new": "Create bundle",
|
// "item.bitstreams.upload.bundle.new": "Create bundle",
|
||||||
"item.bitstreams.upload.bundle.new": "Criar pacote",
|
"item.bitstreams.upload.bundle.new": "Criar pacote",
|
||||||
|
|
||||||
// "item.bitstreams.upload.bundles.empty": "This item doesn\'t contain any bundles to upload a bitstream to.",
|
// "item.bitstreams.upload.bundles.empty": "This item doesn't contain any bundles to upload a bitstream to.",
|
||||||
"item.bitstreams.upload.bundles.empty": "Este item não possui um pacote para poder receber o bitstream.",
|
"item.bitstreams.upload.bundles.empty": "Este item não possui um pacote para poder receber o bitstream.",
|
||||||
|
|
||||||
// "item.bitstreams.upload.cancel": "Cancel",
|
// "item.bitstreams.upload.cancel": "Cancel",
|
||||||
@@ -3208,10 +3196,10 @@
|
|||||||
"item.page.bitstreams.collapse": "Fechar",
|
"item.page.bitstreams.collapse": "Fechar",
|
||||||
|
|
||||||
// "item.page.filesection.original.bundle" : "Original bundle",
|
// "item.page.filesection.original.bundle" : "Original bundle",
|
||||||
"item.page.filesection.original.bundle" : "Pacote Original",
|
"item.page.filesection.original.bundle": "Pacote Original",
|
||||||
|
|
||||||
// "item.page.filesection.license.bundle" : "License bundle",
|
// "item.page.filesection.license.bundle" : "License bundle",
|
||||||
"item.page.filesection.license.bundle" : "Licença do Pacote",
|
"item.page.filesection.license.bundle": "Licença do Pacote",
|
||||||
|
|
||||||
// "item.page.return": "Back",
|
// "item.page.return": "Back",
|
||||||
"item.page.return": "Voltar",
|
"item.page.return": "Voltar",
|
||||||
@@ -3256,25 +3244,25 @@
|
|||||||
"item.preview.dc.type": "Tipo:",
|
"item.preview.dc.type": "Tipo:",
|
||||||
|
|
||||||
// "item.preview.oaire.citation.issue" : "Issue",
|
// "item.preview.oaire.citation.issue" : "Issue",
|
||||||
"item.preview.oaire.citation.issue" : "Questão",
|
"item.preview.oaire.citation.issue": "Questão",
|
||||||
|
|
||||||
// "item.preview.oaire.citation.volume" : "Volume",
|
// "item.preview.oaire.citation.volume" : "Volume",
|
||||||
"item.preview.oaire.citation.volume" : "Volume",
|
"item.preview.oaire.citation.volume": "Volume",
|
||||||
|
|
||||||
// "item.preview.dc.relation.issn" : "ISSN",
|
// "item.preview.dc.relation.issn" : "ISSN",
|
||||||
"item.preview.dc.relation.issn" : "ISSN",
|
"item.preview.dc.relation.issn": "ISSN",
|
||||||
|
|
||||||
// "item.preview.dc.identifier.isbn" : "ISBN",
|
// "item.preview.dc.identifier.isbn" : "ISBN",
|
||||||
"item.preview.dc.identifier.isbn" : "ISBN",
|
"item.preview.dc.identifier.isbn": "ISBN",
|
||||||
|
|
||||||
// "item.preview.dc.identifier": "Identifier:",
|
// "item.preview.dc.identifier": "Identifier:",
|
||||||
"item.preview.dc.identifier": "Identificador:",
|
"item.preview.dc.identifier": "Identificador:",
|
||||||
|
|
||||||
// "item.preview.dc.relation.ispartof" : "Journal or Serie",
|
// "item.preview.dc.relation.ispartof" : "Journal or Serie",
|
||||||
"item.preview.dc.relation.ispartof" : "Revista ou Série",
|
"item.preview.dc.relation.ispartof": "Revista ou Série",
|
||||||
|
|
||||||
// "item.preview.dc.identifier.doi" : "DOI",
|
// "item.preview.dc.identifier.doi" : "DOI",
|
||||||
"item.preview.dc.identifier.doi" : "DOI",
|
"item.preview.dc.identifier.doi": "DOI",
|
||||||
|
|
||||||
// "item.preview.person.familyName": "Surname:",
|
// "item.preview.person.familyName": "Surname:",
|
||||||
"item.preview.person.familyName": "Sobrenome:",
|
"item.preview.person.familyName": "Sobrenome:",
|
||||||
@@ -3415,13 +3403,13 @@
|
|||||||
"item.version.create.modal.submitted.text": "A nova versão está sendo criada. Isso pode levar algum tempo se o item tiver muitos relacionamentos.",
|
"item.version.create.modal.submitted.text": "A nova versão está sendo criada. Isso pode levar algum tempo se o item tiver muitos relacionamentos.",
|
||||||
|
|
||||||
// "item.version.create.notification.success" : "New version has been created with version number {{version}}",
|
// "item.version.create.notification.success" : "New version has been created with version number {{version}}",
|
||||||
"item.version.create.notification.success" : "Uma nova versão foi criada com o número de versão {{version}}",
|
"item.version.create.notification.success": "Uma nova versão foi criada com o número de versão {{version}}",
|
||||||
|
|
||||||
// "item.version.create.notification.failure" : "New version has not been created",
|
// "item.version.create.notification.failure" : "New version has not been created",
|
||||||
"item.version.create.notification.failure" : "A nova versão não foi criada",
|
"item.version.create.notification.failure": "A nova versão não foi criada",
|
||||||
|
|
||||||
// "item.version.create.notification.inProgress" : "A new version cannot be created because there is an inprogress submission in the version history",
|
// "item.version.create.notification.inProgress" : "A new version cannot be created because there is an inprogress submission in the version history",
|
||||||
"item.version.create.notification.inProgress" : "Não é possível criar uma nova versão porque há uma submissão em andamento no histórico de versões",
|
"item.version.create.notification.inProgress": "Não é possível criar uma nova versão porque há uma submissão em andamento no histórico de versões",
|
||||||
|
|
||||||
// "item.version.delete.modal.header": "Delete version",
|
// "item.version.delete.modal.header": "Delete version",
|
||||||
"item.version.delete.modal.header": "Apagar versão",
|
"item.version.delete.modal.header": "Apagar versão",
|
||||||
@@ -3442,16 +3430,16 @@
|
|||||||
"item.version.delete.modal.button.cancel.tooltip": "Não apague esta versão",
|
"item.version.delete.modal.button.cancel.tooltip": "Não apague esta versão",
|
||||||
|
|
||||||
// "item.version.delete.notification.success" : "Version number {{version}} has been deleted",
|
// "item.version.delete.notification.success" : "Version number {{version}} has been deleted",
|
||||||
"item.version.delete.notification.success" : "Versão número {{version}} foi apagada",
|
"item.version.delete.notification.success": "Versão número {{version}} foi apagada",
|
||||||
|
|
||||||
// "item.version.delete.notification.failure" : "Version number {{version}} has not been deleted",
|
// "item.version.delete.notification.failure" : "Version number {{version}} has not been deleted",
|
||||||
"item.version.delete.notification.failure" : "Versão número {{version}} não foi apagada",
|
"item.version.delete.notification.failure": "Versão número {{version}} não foi apagada",
|
||||||
|
|
||||||
// "item.version.edit.notification.success" : "The summary of version number {{version}} has been changed",
|
// "item.version.edit.notification.success" : "The summary of version number {{version}} has been changed",
|
||||||
"item.version.edit.notification.success" : "O resumo da versão número {{version}} foi alterado",
|
"item.version.edit.notification.success": "O resumo da versão número {{version}} foi alterado",
|
||||||
|
|
||||||
// "item.version.edit.notification.failure" : "The summary of version number {{version}} has not been changed",
|
// "item.version.edit.notification.failure" : "The summary of version number {{version}} has not been changed",
|
||||||
"item.version.edit.notification.failure" : "O resumo da versão número {{version}} não foi alterado",
|
"item.version.edit.notification.failure": "O resumo da versão número {{version}} não foi alterado",
|
||||||
|
|
||||||
// "journal.listelement.badge": "Journal",
|
// "journal.listelement.badge": "Journal",
|
||||||
"journal.listelement.badge": "Revista",
|
"journal.listelement.badge": "Revista",
|
||||||
@@ -4057,10 +4045,10 @@
|
|||||||
"nav.stop-impersonating": "Deixar de assumir o papel do EPerson",
|
"nav.stop-impersonating": "Deixar de assumir o papel do EPerson",
|
||||||
|
|
||||||
// "nav.toggle" : "Toggle navigation",
|
// "nav.toggle" : "Toggle navigation",
|
||||||
"nav.toggle" : "Alternar navegação",
|
"nav.toggle": "Alternar navegação",
|
||||||
|
|
||||||
// "nav.user.description" : "User profile bar",
|
// "nav.user.description" : "User profile bar",
|
||||||
"nav.user.description" : "Barra de perfil do usuário",
|
"nav.user.description": "Barra de perfil do usuário",
|
||||||
|
|
||||||
// "none.listelement.badge": "Item",
|
// "none.listelement.badge": "Item",
|
||||||
"none.listelement.badge": "Item",
|
"none.listelement.badge": "Item",
|
||||||
@@ -4211,16 +4199,16 @@
|
|||||||
"process.new.breadcrumbs": "Criar novo processo",
|
"process.new.breadcrumbs": "Criar novo processo",
|
||||||
|
|
||||||
// "process.detail.arguments" : "Arguments",
|
// "process.detail.arguments" : "Arguments",
|
||||||
"process.detail.arguments" : "Argumentos",
|
"process.detail.arguments": "Argumentos",
|
||||||
|
|
||||||
// "process.detail.arguments.empty" : "This process doesn't contain any arguments",
|
// "process.detail.arguments.empty" : "This process doesn't contain any arguments",
|
||||||
"process.detail.arguments.empty" : "Este processo não contêm nenhum argumento",
|
"process.detail.arguments.empty": "Este processo não contêm nenhum argumento",
|
||||||
|
|
||||||
// "process.detail.back" : "Back",
|
// "process.detail.back" : "Back",
|
||||||
"process.detail.back" : "Voltar",
|
"process.detail.back": "Voltar",
|
||||||
|
|
||||||
// "process.detail.output" : "Process Output",
|
// "process.detail.output" : "Process Output",
|
||||||
"process.detail.output" : "Saída do Processo",
|
"process.detail.output": "Saída do Processo",
|
||||||
|
|
||||||
// "process.detail.logs.button": "Retrieve process output",
|
// "process.detail.logs.button": "Retrieve process output",
|
||||||
"process.detail.logs.button": "Recuperar a saída do processo",
|
"process.detail.logs.button": "Recuperar a saída do processo",
|
||||||
@@ -4232,28 +4220,28 @@
|
|||||||
"process.detail.logs.none": "Este processo não tem saída",
|
"process.detail.logs.none": "Este processo não tem saída",
|
||||||
|
|
||||||
// "process.detail.output-files" : "Output Files",
|
// "process.detail.output-files" : "Output Files",
|
||||||
"process.detail.output-files" : "Arquivos de saída",
|
"process.detail.output-files": "Arquivos de saída",
|
||||||
|
|
||||||
// "process.detail.output-files.empty" : "This process doesn't contain any output files",
|
// "process.detail.output-files.empty" : "This process doesn't contain any output files",
|
||||||
"process.detail.output-files.empty" : "Este processo não contém nenhum arquivo de saída",
|
"process.detail.output-files.empty": "Este processo não contém nenhum arquivo de saída",
|
||||||
|
|
||||||
// "process.detail.script" : "Script",
|
// "process.detail.script" : "Script",
|
||||||
"process.detail.script" : "Script",
|
"process.detail.script": "Script",
|
||||||
|
|
||||||
// "process.detail.title" : "Process: {{ id }} - {{ name }}",
|
// "process.detail.title" : "Process: {{ id }} - {{ name }}",
|
||||||
"process.detail.title" : "Processo: {{ id }} - {{ name }}",
|
"process.detail.title": "Processo: {{ id }} - {{ name }}",
|
||||||
|
|
||||||
// "process.detail.start-time" : "Start time",
|
// "process.detail.start-time" : "Start time",
|
||||||
"process.detail.start-time" : "Hora de Início",
|
"process.detail.start-time": "Hora de Início",
|
||||||
|
|
||||||
// "process.detail.end-time" : "Finish time",
|
// "process.detail.end-time" : "Finish time",
|
||||||
"process.detail.end-time" : "Hora de Fim",
|
"process.detail.end-time": "Hora de Fim",
|
||||||
|
|
||||||
// "process.detail.status" : "Status",
|
// "process.detail.status" : "Status",
|
||||||
"process.detail.status" : "Status",
|
"process.detail.status": "Status",
|
||||||
|
|
||||||
// "process.detail.create" : "Create similar process",
|
// "process.detail.create" : "Create similar process",
|
||||||
"process.detail.create" : "Criar processo similar",
|
"process.detail.create": "Criar processo similar",
|
||||||
|
|
||||||
// "process.detail.actions": "Actions",
|
// "process.detail.actions": "Actions",
|
||||||
"process.detail.actions": "Ações",
|
"process.detail.actions": "Ações",
|
||||||
@@ -4280,22 +4268,22 @@
|
|||||||
"process.detail.delete.error": "Algo deu errado ao excluir o processo",
|
"process.detail.delete.error": "Algo deu errado ao excluir o processo",
|
||||||
|
|
||||||
// "process.overview.table.finish" : "Finish time (UTC)",
|
// "process.overview.table.finish" : "Finish time (UTC)",
|
||||||
"process.overview.table.finish" : "Hora de Fim (UTC)",
|
"process.overview.table.finish": "Hora de Fim (UTC)",
|
||||||
|
|
||||||
// "process.overview.table.id" : "Process ID",
|
// "process.overview.table.id" : "Process ID",
|
||||||
"process.overview.table.id" : "ID do Processo",
|
"process.overview.table.id": "ID do Processo",
|
||||||
|
|
||||||
// "process.overview.table.name" : "Name",
|
// "process.overview.table.name" : "Name",
|
||||||
"process.overview.table.name" : "Nome",
|
"process.overview.table.name": "Nome",
|
||||||
|
|
||||||
// "process.overview.table.start" : "Start time (UTC)",
|
// "process.overview.table.start" : "Start time (UTC)",
|
||||||
"process.overview.table.start" : "Hora de Início (UTC)",
|
"process.overview.table.start": "Hora de Início (UTC)",
|
||||||
|
|
||||||
// "process.overview.table.status" : "Status",
|
// "process.overview.table.status" : "Status",
|
||||||
"process.overview.table.status" : "Status",
|
"process.overview.table.status": "Status",
|
||||||
|
|
||||||
// "process.overview.table.user" : "User",
|
// "process.overview.table.user" : "User",
|
||||||
"process.overview.table.user" : "Usuário",
|
"process.overview.table.user": "Usuário",
|
||||||
|
|
||||||
// "process.overview.title": "Processes Overview",
|
// "process.overview.title": "Processes Overview",
|
||||||
"process.overview.title": "Visão geral dos processos",
|
"process.overview.title": "Visão geral dos processos",
|
||||||
@@ -5850,7 +5838,7 @@
|
|||||||
// "submission.sections.describe.relationship-lookup.selection-tab.title": "Search Results",
|
// "submission.sections.describe.relationship-lookup.selection-tab.title": "Search Results",
|
||||||
"submission.sections.describe.relationship-lookup.selection-tab.title": "Resultados da pesquisa",
|
"submission.sections.describe.relationship-lookup.selection-tab.title": "Resultados da pesquisa",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don\'t you can still use it for this submission.",
|
// "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don't you can still use it for this submission.",
|
||||||
"submission.sections.describe.relationship-lookup.name-variant.notification.content": "Você gostaria de salvar \"{{ value }}\" como uma variante de nome para esta pessoa para que você e outros possam reutilizá-lo para futuras submissões? Se você não fizer isso, ainda poderá usá-lo para esta submissão.",
|
"submission.sections.describe.relationship-lookup.name-variant.notification.content": "Você gostaria de salvar \"{{ value }}\" como uma variante de nome para esta pessoa para que você e outros possam reutilizá-lo para futuras submissões? Se você não fizer isso, ainda poderá usá-lo para esta submissão.",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant",
|
// "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant",
|
||||||
@@ -6140,7 +6128,7 @@
|
|||||||
"submission.sections.license.required": "Você deve aceitar a licença",
|
"submission.sections.license.required": "Você deve aceitar a licença",
|
||||||
|
|
||||||
// "submission.sections.license.notgranted": "You must accept the license",
|
// "submission.sections.license.notgranted": "You must accept the license",
|
||||||
"submission.sections.license.notgranted": "Você deve aceitar a licença",
|
"submission.sections.license.notgranted": "Você deve aceitar a licença",
|
||||||
|
|
||||||
|
|
||||||
// "submission.sections.sherpa.publication.information": "Publication information",
|
// "submission.sections.sherpa.publication.information": "Publication information",
|
||||||
@@ -6471,7 +6459,7 @@
|
|||||||
"idle-modal.extend-session": "Estender sessão",
|
"idle-modal.extend-session": "Estender sessão",
|
||||||
|
|
||||||
// "researcher.profile.action.processing" : "Processing...",
|
// "researcher.profile.action.processing" : "Processing...",
|
||||||
"researcher.profile.action.processing" : "Processando...",
|
"researcher.profile.action.processing": "Processando...",
|
||||||
|
|
||||||
// "researcher.profile.associated": "Researcher profile associated",
|
// "researcher.profile.associated": "Researcher profile associated",
|
||||||
"researcher.profile.associated": "Perfil do pesquisador associado",
|
"researcher.profile.associated": "Perfil do pesquisador associado",
|
||||||
@@ -6504,10 +6492,10 @@
|
|||||||
"researcher.profile.view": "Ver",
|
"researcher.profile.view": "Ver",
|
||||||
|
|
||||||
// "researcher.profile.private.visibility" : "PRIVATE",
|
// "researcher.profile.private.visibility" : "PRIVATE",
|
||||||
"researcher.profile.private.visibility" : "PRIVADO",
|
"researcher.profile.private.visibility": "PRIVADO",
|
||||||
|
|
||||||
// "researcher.profile.public.visibility" : "PUBLIC",
|
// "researcher.profile.public.visibility" : "PUBLIC",
|
||||||
"researcher.profile.public.visibility" : "PÚBLICO",
|
"researcher.profile.public.visibility": "PÚBLICO",
|
||||||
|
|
||||||
// "researcher.profile.status": "Status:",
|
// "researcher.profile.status": "Status:",
|
||||||
"researcher.profile.status": "Status:",
|
"researcher.profile.status": "Status:",
|
||||||
@@ -6516,16 +6504,16 @@
|
|||||||
"researcherprofile.claim.not-authorized": "Você não está autorizado a reivindicar este item. Para mais detalhes, entre em contato com o(s) administrador(es)",
|
"researcherprofile.claim.not-authorized": "Você não está autorizado a reivindicar este item. Para mais detalhes, entre em contato com o(s) administrador(es)",
|
||||||
|
|
||||||
// "researcherprofile.error.claim.body" : "An error occurred while claiming the profile, please try again later",
|
// "researcherprofile.error.claim.body" : "An error occurred while claiming the profile, please try again later",
|
||||||
"researcherprofile.error.claim.body" : "Ocorreu um erro ao reivindicar o perfil, tente novamente mais tarde",
|
"researcherprofile.error.claim.body": "Ocorreu um erro ao reivindicar o perfil, tente novamente mais tarde",
|
||||||
|
|
||||||
// "researcherprofile.error.claim.title" : "Error",
|
// "researcherprofile.error.claim.title" : "Error",
|
||||||
"researcherprofile.error.claim.title" : "Erro",
|
"researcherprofile.error.claim.title": "Erro",
|
||||||
|
|
||||||
// "researcherprofile.success.claim.body" : "Profile claimed with success",
|
// "researcherprofile.success.claim.body" : "Profile claimed with success",
|
||||||
"researcherprofile.success.claim.body" : "Perfil reivindicado com sucesso",
|
"researcherprofile.success.claim.body": "Perfil reivindicado com sucesso",
|
||||||
|
|
||||||
// "researcherprofile.success.claim.title" : "Success",
|
// "researcherprofile.success.claim.title" : "Success",
|
||||||
"researcherprofile.success.claim.title" : "Successo",
|
"researcherprofile.success.claim.title": "Successo",
|
||||||
|
|
||||||
// "person.page.orcid.create": "Create an ORCID ID",
|
// "person.page.orcid.create": "Create an ORCID ID",
|
||||||
"person.page.orcid.create": "Criar um ORCID ID",
|
"person.page.orcid.create": "Criar um ORCID ID",
|
||||||
@@ -6534,7 +6522,7 @@
|
|||||||
"person.page.orcid.granted-authorizations": "Autorizações concedidas",
|
"person.page.orcid.granted-authorizations": "Autorizações concedidas",
|
||||||
|
|
||||||
// "person.page.orcid.grant-authorizations" : "Grant authorizations",
|
// "person.page.orcid.grant-authorizations" : "Grant authorizations",
|
||||||
"person.page.orcid.grant-authorizations" : "Conceder autorizações",
|
"person.page.orcid.grant-authorizations": "Conceder autorizações",
|
||||||
|
|
||||||
// "person.page.orcid.link": "Connect to ORCID ID",
|
// "person.page.orcid.link": "Connect to ORCID ID",
|
||||||
"person.page.orcid.link": "Conectar ao ORCID ID",
|
"person.page.orcid.link": "Conectar ao ORCID ID",
|
||||||
@@ -6582,43 +6570,43 @@
|
|||||||
"person.page.orcid.save.preference.changes": "Atualizar configurações",
|
"person.page.orcid.save.preference.changes": "Atualizar configurações",
|
||||||
|
|
||||||
// "person.page.orcid.sync-profile.affiliation" : "Affiliation",
|
// "person.page.orcid.sync-profile.affiliation" : "Affiliation",
|
||||||
"person.page.orcid.sync-profile.affiliation" : "Afiliação",
|
"person.page.orcid.sync-profile.affiliation": "Afiliação",
|
||||||
|
|
||||||
// "person.page.orcid.sync-profile.biographical" : "Biographical data",
|
// "person.page.orcid.sync-profile.biographical" : "Biographical data",
|
||||||
"person.page.orcid.sync-profile.biographical" : "Dados biográficos",
|
"person.page.orcid.sync-profile.biographical": "Dados biográficos",
|
||||||
|
|
||||||
// "person.page.orcid.sync-profile.education" : "Education",
|
// "person.page.orcid.sync-profile.education" : "Education",
|
||||||
"person.page.orcid.sync-profile.education" : "Educação",
|
"person.page.orcid.sync-profile.education": "Educação",
|
||||||
|
|
||||||
// "person.page.orcid.sync-profile.identifiers" : "Identifiers",
|
// "person.page.orcid.sync-profile.identifiers" : "Identifiers",
|
||||||
"person.page.orcid.sync-profile.identifiers" : "Identificadores",
|
"person.page.orcid.sync-profile.identifiers": "Identificadores",
|
||||||
|
|
||||||
// "person.page.orcid.sync-fundings.all" : "All fundings",
|
// "person.page.orcid.sync-fundings.all" : "All fundings",
|
||||||
"person.page.orcid.sync-fundings.all" : "Todos financiamentos",
|
"person.page.orcid.sync-fundings.all": "Todos financiamentos",
|
||||||
|
|
||||||
// "person.page.orcid.sync-fundings.mine" : "My fundings",
|
// "person.page.orcid.sync-fundings.mine" : "My fundings",
|
||||||
"person.page.orcid.sync-fundings.mine" : "Meus financiamentos",
|
"person.page.orcid.sync-fundings.mine": "Meus financiamentos",
|
||||||
|
|
||||||
// "person.page.orcid.sync-fundings.my_selected" : "Selected fundings",
|
// "person.page.orcid.sync-fundings.my_selected" : "Selected fundings",
|
||||||
"person.page.orcid.sync-fundings.my_selected" : "Financiamentos selecionados",
|
"person.page.orcid.sync-fundings.my_selected": "Financiamentos selecionados",
|
||||||
|
|
||||||
// "person.page.orcid.sync-fundings.disabled" : "Disabled",
|
// "person.page.orcid.sync-fundings.disabled" : "Disabled",
|
||||||
"person.page.orcid.sync-fundings.disabled" : "Desabilitado",
|
"person.page.orcid.sync-fundings.disabled": "Desabilitado",
|
||||||
|
|
||||||
// "person.page.orcid.sync-publications.all" : "All publications",
|
// "person.page.orcid.sync-publications.all" : "All publications",
|
||||||
"person.page.orcid.sync-publications.all" : "Todas publicações",
|
"person.page.orcid.sync-publications.all": "Todas publicações",
|
||||||
|
|
||||||
// "person.page.orcid.sync-publications.mine" : "My publications",
|
// "person.page.orcid.sync-publications.mine" : "My publications",
|
||||||
"person.page.orcid.sync-publications.mine" : "Minhas publicações",
|
"person.page.orcid.sync-publications.mine": "Minhas publicações",
|
||||||
|
|
||||||
// "person.page.orcid.sync-publications.my_selected" : "Selected publications",
|
// "person.page.orcid.sync-publications.my_selected" : "Selected publications",
|
||||||
"person.page.orcid.sync-publications.my_selected" : "Publicações selecionadas",
|
"person.page.orcid.sync-publications.my_selected": "Publicações selecionadas",
|
||||||
|
|
||||||
// "person.page.orcid.sync-publications.disabled" : "Disabled",
|
// "person.page.orcid.sync-publications.disabled" : "Disabled",
|
||||||
"person.page.orcid.sync-publications.disabled" : "Desabilitado",
|
"person.page.orcid.sync-publications.disabled": "Desabilitado",
|
||||||
|
|
||||||
// "person.page.orcid.sync-queue.discard" : "Discard the change and do not synchronize with the ORCID registry",
|
// "person.page.orcid.sync-queue.discard" : "Discard the change and do not synchronize with the ORCID registry",
|
||||||
"person.page.orcid.sync-queue.discard" : "Descarte a alteração e não sincronize com o registro ORCID",
|
"person.page.orcid.sync-queue.discard": "Descarte a alteração e não sincronize com o registro ORCID",
|
||||||
|
|
||||||
// "person.page.orcid.sync-queue.discard.error": "The discarding of the ORCID queue record failed",
|
// "person.page.orcid.sync-queue.discard.error": "The discarding of the ORCID queue record failed",
|
||||||
"person.page.orcid.sync-queue.discard.error": "Falha ao descartar o registro da fila ORCID",
|
"person.page.orcid.sync-queue.discard.error": "Falha ao descartar o registro da fila ORCID",
|
||||||
@@ -6630,13 +6618,13 @@
|
|||||||
"person.page.orcid.sync-queue.empty-message": "O registro da fila ORCID está vazio",
|
"person.page.orcid.sync-queue.empty-message": "O registro da fila ORCID está vazio",
|
||||||
|
|
||||||
// "person.page.orcid.sync-queue.table.header.type" : "Type",
|
// "person.page.orcid.sync-queue.table.header.type" : "Type",
|
||||||
"person.page.orcid.sync-queue.table.header.type" : "Tipo",
|
"person.page.orcid.sync-queue.table.header.type": "Tipo",
|
||||||
|
|
||||||
// "person.page.orcid.sync-queue.table.header.description" : "Description",
|
// "person.page.orcid.sync-queue.table.header.description" : "Description",
|
||||||
"person.page.orcid.sync-queue.table.header.description" : "Descrição",
|
"person.page.orcid.sync-queue.table.header.description": "Descrição",
|
||||||
|
|
||||||
// "person.page.orcid.sync-queue.table.header.action" : "Action",
|
// "person.page.orcid.sync-queue.table.header.action" : "Action",
|
||||||
"person.page.orcid.sync-queue.table.header.action" : "Ação",
|
"person.page.orcid.sync-queue.table.header.action": "Ação",
|
||||||
|
|
||||||
// "person.page.orcid.sync-queue.description.affiliation": "Affiliations",
|
// "person.page.orcid.sync-queue.description.affiliation": "Affiliations",
|
||||||
"person.page.orcid.sync-queue.description.affiliation": "Afiliação",
|
"person.page.orcid.sync-queue.description.affiliation": "Afiliação",
|
||||||
@@ -6702,7 +6690,7 @@
|
|||||||
"person.page.orcid.sync-queue.tooltip.researcher_urls": "URL do pesquisador",
|
"person.page.orcid.sync-queue.tooltip.researcher_urls": "URL do pesquisador",
|
||||||
|
|
||||||
// "person.page.orcid.sync-queue.send" : "Synchronize with ORCID registry",
|
// "person.page.orcid.sync-queue.send" : "Synchronize with ORCID registry",
|
||||||
"person.page.orcid.sync-queue.send" : "Sincronize com o registro ORCID",
|
"person.page.orcid.sync-queue.send": "Sincronize com o registro ORCID",
|
||||||
|
|
||||||
// "person.page.orcid.sync-queue.send.unauthorized-error.title": "The submission to ORCID failed for missing authorizations.",
|
// "person.page.orcid.sync-queue.send.unauthorized-error.title": "The submission to ORCID failed for missing authorizations.",
|
||||||
"person.page.orcid.sync-queue.send.unauthorized-error.title": "A submissão ao ORCID falhou por falta de autorizações.",
|
"person.page.orcid.sync-queue.send.unauthorized-error.title": "A submissão ao ORCID falhou por falta de autorizações.",
|
||||||
@@ -6756,7 +6744,7 @@
|
|||||||
"person.page.orcid.sync-queue.send.validation-error.organization.name-required": "O nome da organização é obrigatório",
|
"person.page.orcid.sync-queue.send.validation-error.organization.name-required": "O nome da organização é obrigatório",
|
||||||
|
|
||||||
// "person.page.orcid.sync-queue.send.validation-error.publication.date-invalid" : "The publication date must be one year after 1900",
|
// "person.page.orcid.sync-queue.send.validation-error.publication.date-invalid" : "The publication date must be one year after 1900",
|
||||||
"person.page.orcid.sync-queue.send.validation-error.publication.date-invalid" : "A data de publicação deve ser um ano após 1900",
|
"person.page.orcid.sync-queue.send.validation-error.publication.date-invalid": "A data de publicação deve ser um ano após 1900",
|
||||||
|
|
||||||
// "person.page.orcid.sync-queue.send.validation-error.organization.address-required": "The organization to be sent requires an address",
|
// "person.page.orcid.sync-queue.send.validation-error.organization.address-required": "The organization to be sent requires an address",
|
||||||
"person.page.orcid.sync-queue.send.validation-error.organization.address-required": "O endereço da organização a ser enviado exige uma endereço",
|
"person.page.orcid.sync-queue.send.validation-error.organization.address-required": "O endereço da organização a ser enviado exige uma endereço",
|
||||||
|
@@ -1,93 +1,93 @@
|
|||||||
{
|
{
|
||||||
|
|
||||||
// NOTE 1 - Doesn't exist on en_EN
|
// NOTE 1 - Doesn't exist on en_EN
|
||||||
|
|
||||||
// "repository.title.prefixDSpace": "DSpace ::",
|
// "repository.title.prefixDSpace": "DSpace ::",
|
||||||
"repository.title.prefixDSpace": "DSpace ::",
|
"repository.title.prefixDSpace": "DSpace ::",
|
||||||
|
|
||||||
// "collection.edit.item-mapper-search-form.placeholder": "Search Item to Map...",
|
// "collection.edit.item-mapper-search-form.placeholder": "Search Item to Map...",
|
||||||
"collection.edit.item-mapper-search-form.placeholder": "Pesquisar Item a Mapear...",
|
"collection.edit.item-mapper-search-form.placeholder": "Pesquisar Item a Mapear...",
|
||||||
|
|
||||||
// "idle.modal.header":"Your Session is About to Expire!",
|
// "idle.modal.header":"Your Session is About to Expire!",
|
||||||
"idle.modal.header":"A sua sessão está prestes a expirar!",
|
"idle.modal.header": "A sua sessão está prestes a expirar!",
|
||||||
|
|
||||||
// "idle.modal.info":"Your session is about to expire, would you like to logout or continue the session?",
|
// "idle.modal.info":"Your session is about to expire, would you like to logout or continue the session?",
|
||||||
"idle.modal.info":"A sua sessão está prestes a expirar, pretende sair ou continuar a sessão?",
|
"idle.modal.info": "A sua sessão está prestes a expirar, pretende sair ou continuar a sessão?",
|
||||||
|
|
||||||
// "idle.modal.log-out":"Logout",
|
// "idle.modal.log-out":"Logout",
|
||||||
"idle.modal.log-out":"Sair",
|
"idle.modal.log-out": "Sair",
|
||||||
|
|
||||||
// "idle.modal.extend-session":"Continue Session",
|
// "idle.modal.extend-session":"Continue Session",
|
||||||
"idle.modal.extend-session":"Continuar a Sessão",
|
"idle.modal.extend-session": "Continuar a Sessão",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// NOTE 2 - Add to other languages - needed for OpenAIRE compliance - relations between entities
|
// NOTE 2 - Add to other languages - needed for OpenAIRE compliance - relations between entities
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.added.new-entity": "New Entity Added!",
|
// "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.added.new-entity": "New Entity Added!",
|
||||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.added.new-entity": "Nova Entidade Adicionada!",
|
"submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.added.new-entity": "Nova Entidade Adicionada!",
|
||||||
|
|
||||||
// "item.preview.project.funder.name": "Funder",
|
// "item.preview.project.funder.name": "Funder",
|
||||||
"item.preview.project.funder.name": "Financiador",
|
"item.preview.project.funder.name": "Financiador",
|
||||||
|
|
||||||
// "item.preview.project.funder.identifier": "Funder Identifier",
|
// "item.preview.project.funder.identifier": "Funder Identifier",
|
||||||
"item.preview.project.funder.identifier": "Identificador do Financiador",
|
"item.preview.project.funder.identifier": "Identificador do Financiador",
|
||||||
|
|
||||||
// "item.preview.oaire.awardNumber": "Funding ID",
|
// "item.preview.oaire.awardNumber": "Funding ID",
|
||||||
"item.preview.oaire.awardNumber": "ID de Financiamento",
|
"item.preview.oaire.awardNumber": "ID de Financiamento",
|
||||||
|
|
||||||
// "item.preview.dc.title.alternative": "Acronym",
|
// "item.preview.dc.title.alternative": "Acronym",
|
||||||
"item.preview.dc.title.alternative": "Acrónimo",
|
"item.preview.dc.title.alternative": "Acrónimo",
|
||||||
|
|
||||||
// "item.preview.dc.coverage.spatial": "Jurisdiction",
|
// "item.preview.dc.coverage.spatial": "Jurisdiction",
|
||||||
"item.preview.dc.coverage.spatial": "Jurisdição",
|
"item.preview.dc.coverage.spatial": "Jurisdição",
|
||||||
|
|
||||||
// "item.preview.oaire.fundingStream": "Funding Stream",
|
// "item.preview.oaire.fundingStream": "Funding Stream",
|
||||||
"item.preview.oaire.fundingStream": "Linha de Financiamento",
|
"item.preview.oaire.fundingStream": "Linha de Financiamento",
|
||||||
|
|
||||||
// "submission.import-external.source.openAIREFunding": "Funding OpenAIRE API",
|
// "submission.import-external.source.openAIREFunding": "Funding OpenAIRE API",
|
||||||
"submission.import-external.source.openAIREFunding": "Financiamento API OpenAIRE",
|
"submission.import-external.source.openAIREFunding": "Financiamento API OpenAIRE",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.external-source.import-button-title.isProjectOfPublication": "Project",
|
// "submission.sections.describe.relationship-lookup.external-source.import-button-title.isProjectOfPublication": "Project",
|
||||||
"submission.sections.describe.relationship-lookup.external-source.import-button-title.isProjectOfPublication": "Projeto",
|
"submission.sections.describe.relationship-lookup.external-source.import-button-title.isProjectOfPublication": "Projeto",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.title": "Project",
|
// "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.title": "Project",
|
||||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.title": "Projeto",
|
"submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.title": "Projeto",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openAIREFunding": "Funding OpenAIRE API",
|
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openAIREFunding": "Funding OpenAIRE API",
|
||||||
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.openAIREFunding": "Financiamento API OpenAIRE",
|
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.openAIREFunding": "Financiamento API OpenAIRE",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.openAIREFunding": "Funding OpenAIRE API",
|
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.openAIREFunding": "Funding OpenAIRE API",
|
||||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.openAIREFunding": "Financiamento API OpenAIRE",
|
"submission.sections.describe.relationship-lookup.search-tab.tab-title.openAIREFunding": "Financiamento API OpenAIRE",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.openAIREFunding": "Funding OpenAIRE API",
|
// "submission.sections.describe.relationship-lookup.selection-tab.title.openAIREFunding": "Funding OpenAIRE API",
|
||||||
"submission.sections.describe.relationship-lookup.selection-tab.title.openAIREFunding": "Financiamento API OpenAIRE",
|
"submission.sections.describe.relationship-lookup.selection-tab.title.openAIREFunding": "Financiamento API OpenAIRE",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.isProjectOfPublication": "Projeto",
|
// "submission.sections.describe.relationship-lookup.selection-tab.title.isProjectOfPublication": "Projeto",
|
||||||
"submission.sections.describe.relationship-lookup.selection-tab.title.isProjectOfPublication": "Projeto",
|
"submission.sections.describe.relationship-lookup.selection-tab.title.isProjectOfPublication": "Projeto",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.isProjectOfPublication": "Projects",
|
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.isProjectOfPublication": "Projects",
|
||||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.isProjectOfPublication": "Projetos",
|
"submission.sections.describe.relationship-lookup.search-tab.tab-title.isProjectOfPublication": "Projetos",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.title.isProjectOfPublication": "Projects",
|
// "submission.sections.describe.relationship-lookup.title.isProjectOfPublication": "Projects",
|
||||||
"submission.sections.describe.relationship-lookup.title.isProjectOfPublication": "Projetos",
|
"submission.sections.describe.relationship-lookup.title.isProjectOfPublication": "Projetos",
|
||||||
|
|
||||||
// "relationships.isContributorOf.OrgUnit": "Contributor (Organizational Unit)",
|
// "relationships.isContributorOf.OrgUnit": "Contributor (Organizational Unit)",
|
||||||
"relationships.isContributorOf.OrgUnit": "Contribuidor (Unidade organizacional)",
|
"relationships.isContributorOf.OrgUnit": "Contribuidor (Unidade organizacional)",
|
||||||
|
|
||||||
// "relationships.isContributorOf.Person": "Contributor",
|
// "relationships.isContributorOf.Person": "Contributor",
|
||||||
"relationships.isContributorOf.Person": "Contribuidor",
|
"relationships.isContributorOf.Person": "Contribuidor",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "Funder of the Project",
|
// "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "Funder of the Project",
|
||||||
"submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "Financiador de Projeto",
|
"submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "Financiador de Projeto",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfProject": "Funder of the Project",
|
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfProject": "Funder of the Project",
|
||||||
"submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfProject": "Financiador de Projeto",
|
"submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfProject": "Financiador de Projeto",
|
||||||
|
|
||||||
// "relationships.isFundingAgencyOf.OrgUnit": "Funder",
|
// "relationships.isFundingAgencyOf.OrgUnit": "Funder",
|
||||||
"relationships.isFundingAgencyOf.OrgUnit": "Financiador",
|
"relationships.isFundingAgencyOf.OrgUnit": "Financiador",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -96,125 +96,125 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
// Other strings
|
// Other strings
|
||||||
|
|
||||||
//"submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "Search...",
|
//"submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "Search...",
|
||||||
"submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "Pesquisar...",
|
"submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "Pesquisar...",
|
||||||
|
|
||||||
// "submission.general.info.saved": "Saved",
|
// "submission.general.info.saved": "Saved",
|
||||||
"submission.general.info.saved": "Informação Guardada",
|
"submission.general.info.saved": "Informação Guardada",
|
||||||
|
|
||||||
// "bitstream.edit.authorizations.link": "Edit bitstream's Policies",
|
// "bitstream.edit.authorizations.link": "Edit bitstream's Policies",
|
||||||
"bitstream.edit.authorizations.link": "Editar Polítcas de Ficheiros",
|
"bitstream.edit.authorizations.link": "Editar Polítcas de Ficheiros",
|
||||||
|
|
||||||
// "bitstream.edit.return": "Back",
|
// "bitstream.edit.return": "Back",
|
||||||
"bitstream.edit.return": "Voltar",
|
"bitstream.edit.return": "Voltar",
|
||||||
|
|
||||||
// "submission.edit.breadcrumbs": "Edit Submission",
|
// "submission.edit.breadcrumbs": "Edit Submission",
|
||||||
"submission.edit.breadcrumbs": "Editar Submissão",
|
"submission.edit.breadcrumbs": "Editar Submissão",
|
||||||
|
|
||||||
// "search.filters.filter.subject.label": "Search subject",
|
// "search.filters.filter.subject.label": "Search subject",
|
||||||
"search.filters.filter.subject.label": "Pesquisar Assunto",
|
"search.filters.filter.subject.label": "Pesquisar Assunto",
|
||||||
|
|
||||||
// "search.filters.filter.entityType.label": "Search item type",
|
// "search.filters.filter.entityType.label": "Search item type",
|
||||||
"search.filters.filter.entityType.label": "Pesquisar Tipo",
|
"search.filters.filter.entityType.label": "Pesquisar Tipo",
|
||||||
|
|
||||||
// "search.filters.filter.author.label": "Search author name",
|
// "search.filters.filter.author.label": "Search author name",
|
||||||
"search.filters.filter.author.label": "Pesquisar Autor",
|
"search.filters.filter.author.label": "Pesquisar Autor",
|
||||||
|
|
||||||
// "sorting.dc.date.accessioned.ASC": "Accessioned Date Ascending",
|
// "sorting.dc.date.accessioned.ASC": "Accessioned Date Ascending",
|
||||||
"sorting.dc.date.accessioned.ASC": "Data de Disponibilização Ascendente",
|
"sorting.dc.date.accessioned.ASC": "Data de Disponibilização Ascendente",
|
||||||
|
|
||||||
// "sorting.dc.date.accessioned.DESC": "Accessioned Date Descending",
|
// "sorting.dc.date.accessioned.DESC": "Accessioned Date Descending",
|
||||||
"sorting.dc.date.accessioned.DESC": "Data de Disponibilização Descendente",
|
"sorting.dc.date.accessioned.DESC": "Data de Disponibilização Descendente",
|
||||||
|
|
||||||
// "search.search-form.placeholder": "Search the repository ...",
|
// "search.search-form.placeholder": "Search the repository ...",
|
||||||
"search.search-form.placeholder": "Pesquisar ...",
|
"search.search-form.placeholder": "Pesquisar ...",
|
||||||
|
|
||||||
// "item.edit.item-mapper.search-form.placeholder": "Search collections...",
|
// "item.edit.item-mapper.search-form.placeholder": "Search collections...",
|
||||||
"item.edit.item-mapper.search-form.placeholder": "Pesquisar coleções...",
|
"item.edit.item-mapper.search-form.placeholder": "Pesquisar coleções...",
|
||||||
|
|
||||||
// "item.edit.return": "Back",
|
// "item.edit.return": "Back",
|
||||||
"item.edit.return": "Voltar",
|
"item.edit.return": "Voltar",
|
||||||
|
|
||||||
// "repository.title.prefix": "DSpace Angular :: ",
|
// "repository.title.prefix": "DSpace Angular :: ",
|
||||||
"repository.title.prefix": "DSpace ::",
|
"repository.title.prefix": "DSpace ::",
|
||||||
|
|
||||||
|
|
||||||
// "thumbnail.person.placeholder": "No Profile Picture Available",
|
// "thumbnail.person.placeholder": "No Profile Picture Available",
|
||||||
"thumbnail.person.placeholder": "Sem Fotografia de Perfil",
|
"thumbnail.person.placeholder": "Sem Fotografia de Perfil",
|
||||||
|
|
||||||
// "admin.access-control.groups.breadcrumbs": "Groups",
|
// "admin.access-control.groups.breadcrumbs": "Groups",
|
||||||
"admin.access-control.groups.breadcrumbs": "Grupos",
|
"admin.access-control.groups.breadcrumbs": "Grupos",
|
||||||
|
|
||||||
// "admin.access-control.groups.search.placeholder": "Search groups...",
|
// "admin.access-control.groups.search.placeholder": "Search groups...",
|
||||||
"admin.access-control.groups.search.placeholder": "Pesquisar Grupos...",
|
"admin.access-control.groups.search.placeholder": "Pesquisar Grupos...",
|
||||||
|
|
||||||
// "admin.access-control.epeople.breadcrumbs": "EPeople",
|
// "admin.access-control.epeople.breadcrumbs": "EPeople",
|
||||||
"admin.access-control.epeople.breadcrumbs": "Utilizador",
|
"admin.access-control.epeople.breadcrumbs": "Utilizador",
|
||||||
|
|
||||||
// "admin.access-control.epeople.search.placeholder": "Search people...",
|
// "admin.access-control.epeople.search.placeholder": "Search people...",
|
||||||
"admin.access-control.epeople.search.placeholder": "Pesquisar Utilizadores...",
|
"admin.access-control.epeople.search.placeholder": "Pesquisar Utilizadores...",
|
||||||
|
|
||||||
// "admin.access-control.epeople.form.return": "Back",
|
// "admin.access-control.epeople.form.return": "Back",
|
||||||
"admin.access-control.epeople.form.return": "Voltar",
|
"admin.access-control.epeople.form.return": "Voltar",
|
||||||
|
|
||||||
// "submission.submit.breadcrumbs": "New submission",
|
// "submission.submit.breadcrumbs": "New submission",
|
||||||
"submission.submit.breadcrumbs": "Nova Submissão",
|
"submission.submit.breadcrumbs": "Nova Submissão",
|
||||||
|
|
||||||
// "search.filters.filter.namedresourcetype.label": "Search status",
|
// "search.filters.filter.namedresourcetype.label": "Search status",
|
||||||
"search.filters.filter.namedresourcetype.label": "Pesquisar Estado",
|
"search.filters.filter.namedresourcetype.label": "Pesquisar Estado",
|
||||||
|
|
||||||
// "sorting.dc.date.issued.ASC": "Date Issued Ascending",
|
// "sorting.dc.date.issued.ASC": "Date Issued Ascending",
|
||||||
"sorting.dc.date.issued.ASC": "Data de Publicação Ascendente",
|
"sorting.dc.date.issued.ASC": "Data de Publicação Ascendente",
|
||||||
|
|
||||||
// "sorting.dc.date.issued.DESC": "Date Issued Descending",
|
// "sorting.dc.date.issued.DESC": "Date Issued Descending",
|
||||||
"sorting.dc.date.issued.DESC": "Data de Publicação Descendente",
|
"sorting.dc.date.issued.DESC": "Data de Publicação Descendente",
|
||||||
|
|
||||||
// "sorting.score.ASC": "Least Relevant",
|
// "sorting.score.ASC": "Least Relevant",
|
||||||
"sorting.score.ASC": "Menos Relevante",
|
"sorting.score.ASC": "Menos Relevante",
|
||||||
|
|
||||||
// "search.filters.filter.dateIssued.min.label": "Start",
|
// "search.filters.filter.dateIssued.min.label": "Start",
|
||||||
"search.filters.filter.dateIssued.min.label": "Início",
|
"search.filters.filter.dateIssued.min.label": "Início",
|
||||||
|
|
||||||
// "search.filters.filter.dateIssued.max.label": "End",
|
// "search.filters.filter.dateIssued.max.label": "End",
|
||||||
"search.filters.filter.dateIssued.max.label": "Fim",
|
"search.filters.filter.dateIssued.max.label": "Fim",
|
||||||
|
|
||||||
// "search.filters.search.submit": "Submit",
|
// "search.filters.search.submit": "Submit",
|
||||||
"search.filters.search.submit": "Enviar",
|
"search.filters.search.submit": "Enviar",
|
||||||
|
|
||||||
// "default.search.results.head": "Search Results",
|
// "default.search.results.head": "Search Results",
|
||||||
"default.search.results.head": "Resultados da Pesquisa",
|
"default.search.results.head": "Resultados da Pesquisa",
|
||||||
|
|
||||||
// "communityList.breadcrumbs": "Community List",
|
// "communityList.breadcrumbs": "Community List",
|
||||||
"communityList.breadcrumbs": "Lista de Comunidades",
|
"communityList.breadcrumbs": "Lista de Comunidades",
|
||||||
|
|
||||||
// "browse.previous.button": "Previous",
|
// "browse.previous.button": "Previous",
|
||||||
"browse.previous.button": "Anterior",
|
"browse.previous.button": "Anterior",
|
||||||
|
|
||||||
// "browse.next.button": "Next",
|
// "browse.next.button": "Next",
|
||||||
"browse.next.button": "Próximo",
|
"browse.next.button": "Próximo",
|
||||||
|
|
||||||
// "pagination.options.description": "Pagination options",
|
// "pagination.options.description": "Pagination options",
|
||||||
"pagination.options.description": "Opções de Paginação",
|
"pagination.options.description": "Opções de Paginação",
|
||||||
|
|
||||||
// "mydspace.breadcrumbs": "MyDSpace",
|
// "mydspace.breadcrumbs": "MyDSpace",
|
||||||
"mydspace.breadcrumbs": "Área Pessoal",
|
"mydspace.breadcrumbs": "Área Pessoal",
|
||||||
|
|
||||||
// "thumbnail.default.placeholder": "No Thumbnail Available",
|
// "thumbnail.default.placeholder": "No Thumbnail Available",
|
||||||
"thumbnail.default.placeholder": "Sem Miniatura",
|
"thumbnail.default.placeholder": "Sem Miniatura",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.search-tab.search-form.placeholder": "Search...",
|
// "submission.sections.describe.relationship-lookup.search-tab.search-form.placeholder": "Search...",
|
||||||
"submission.sections.describe.relationship-lookup.search-tab.search-form.placeholder": "Pesquisar ...",
|
"submission.sections.describe.relationship-lookup.search-tab.search-form.placeholder": "Pesquisar ...",
|
||||||
|
|
||||||
// "home.search-form.placeholder": "Search the repository ...",
|
// "home.search-form.placeholder": "Search the repository ...",
|
||||||
"home.search-form.placeholder": "Pesquisar ...",
|
"home.search-form.placeholder": "Pesquisar ...",
|
||||||
|
|
||||||
// "mydspace.search-form.placeholder": "Search in mydspace...",
|
// "mydspace.search-form.placeholder": "Search in mydspace...",
|
||||||
"mydspace.search-form.placeholder": "Pesquisar na Área Pessoal ...",
|
"mydspace.search-form.placeholder": "Pesquisar na Área Pessoal ...",
|
||||||
|
|
||||||
|
|
||||||
// OLD strings
|
// OLD strings
|
||||||
|
|
||||||
// "401.help": "You're not authorized to access this page. You can use the button below to get back to the home page.",
|
// "401.help": "You're not authorized to access this page. You can use the button below to get back to the home page.",
|
||||||
"401.help": "Não está autorizado a aceder a esta página. Use o botão abaixo para regressar à página inicial.",
|
"401.help": "Não está autorizado a aceder a esta página. Use o botão abaixo para regressar à página inicial.",
|
||||||
@@ -223,7 +223,7 @@
|
|||||||
"401.link.home-page": "Regresso à página inicial",
|
"401.link.home-page": "Regresso à página inicial",
|
||||||
|
|
||||||
// "401.unauthorized": "unauthorized",
|
// "401.unauthorized": "unauthorized",
|
||||||
"401.unauthorized": "Não Autorizado",
|
"401.unauthorized": "Não Autorizado",
|
||||||
|
|
||||||
// "403.help": "You don't have permission to access this page. You can use the button below to get back to the home page.",
|
// "403.help": "You don't have permission to access this page. You can use the button below to get back to the home page.",
|
||||||
"403.help": "Não está autorizado a aceder a esta página. Use o botão abaixo para regressar à página inicial.",
|
"403.help": "Não está autorizado a aceder a esta página. Use o botão abaixo para regressar à página inicial.",
|
||||||
@@ -369,7 +369,7 @@
|
|||||||
// "admin.registries.bitstream-formats.table.name": "Name",
|
// "admin.registries.bitstream-formats.table.name": "Name",
|
||||||
"admin.registries.bitstream-formats.table.name": "Nome",
|
"admin.registries.bitstream-formats.table.name": "Nome",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"admin.registries.bitstream-formats.table.id" : "ID",
|
"admin.registries.bitstream-formats.table.id": "ID",
|
||||||
|
|
||||||
// "admin.registries.bitstream-formats.table.return": "Return",
|
// "admin.registries.bitstream-formats.table.return": "Return",
|
||||||
"admin.registries.bitstream-formats.table.return": "Voltar",
|
"admin.registries.bitstream-formats.table.return": "Voltar",
|
||||||
@@ -446,7 +446,7 @@
|
|||||||
// "admin.registries.schema.fields.table.field": "Field",
|
// "admin.registries.schema.fields.table.field": "Field",
|
||||||
"admin.registries.schema.fields.table.field": "Campo",
|
"admin.registries.schema.fields.table.field": "Campo",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"admin.registries.schema.fields.table.id" : "ID",
|
"admin.registries.schema.fields.table.id": "ID",
|
||||||
|
|
||||||
// "admin.registries.schema.fields.table.scopenote": "Scope Note",
|
// "admin.registries.schema.fields.table.scopenote": "Scope Note",
|
||||||
"admin.registries.schema.fields.table.scopenote": "Descrição",
|
"admin.registries.schema.fields.table.scopenote": "Descrição",
|
||||||
@@ -1768,7 +1768,7 @@
|
|||||||
|
|
||||||
|
|
||||||
// "curation-task.task.checklinks.label": "Check Links in Metadata",
|
// "curation-task.task.checklinks.label": "Check Links in Metadata",
|
||||||
"curation-task.task.checklinks.label": "Verifica ligações nos metadados",
|
"curation-task.task.checklinks.label": "Verifica ligações nos metadados",
|
||||||
|
|
||||||
// "curation-task.task.noop.label": "NOOP",
|
// "curation-task.task.noop.label": "NOOP",
|
||||||
"curation-task.task.noop.label": "NOOP",
|
"curation-task.task.noop.label": "NOOP",
|
||||||
@@ -1962,7 +1962,7 @@
|
|||||||
"footer.link.privacy-policy": "Política de Privacidade",
|
"footer.link.privacy-policy": "Política de Privacidade",
|
||||||
|
|
||||||
// "footer.link.end-user-agreement":"End User Agreement",
|
// "footer.link.end-user-agreement":"End User Agreement",
|
||||||
"footer.link.end-user-agreement":"Termos de uso",
|
"footer.link.end-user-agreement": "Termos de uso",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -2159,7 +2159,7 @@
|
|||||||
"info.end-user-agreement.buttons.save": "Guardar",
|
"info.end-user-agreement.buttons.save": "Guardar",
|
||||||
|
|
||||||
// "info.end-user-agreement.head": "End User Agreement",
|
// "info.end-user-agreement.head": "End User Agreement",
|
||||||
"info.end-user-agreement.head": "Termos de Uso",
|
"info.end-user-agreement.head": "Termos de Uso",
|
||||||
|
|
||||||
// "info.end-user-agreement.title": "End User Agreement",
|
// "info.end-user-agreement.title": "End User Agreement",
|
||||||
"info.end-user-agreement.title": "Termos de Uso",
|
"info.end-user-agreement.title": "Termos de Uso",
|
||||||
@@ -2208,7 +2208,7 @@
|
|||||||
// "item.bitstreams.upload.bundle.new": "Create bundle",
|
// "item.bitstreams.upload.bundle.new": "Create bundle",
|
||||||
"item.bitstreams.upload.bundle.new": "Criar um pacote",
|
"item.bitstreams.upload.bundle.new": "Criar um pacote",
|
||||||
|
|
||||||
// "item.bitstreams.upload.bundles.empty": "This item doesn\'t contain any bundles to upload a bitstream to.",
|
// "item.bitstreams.upload.bundles.empty": "This item doesn't contain any bundles to upload a bitstream to.",
|
||||||
"item.bitstreams.upload.bundles.empty": "Este item não possui um pacote para poder receber os ficheiros.",
|
"item.bitstreams.upload.bundles.empty": "Este item não possui um pacote para poder receber os ficheiros.",
|
||||||
|
|
||||||
// "item.bitstreams.upload.cancel": "Cancel",
|
// "item.bitstreams.upload.cancel": "Cancel",
|
||||||
@@ -2770,9 +2770,6 @@
|
|||||||
// "item.page.description": "Description",
|
// "item.page.description": "Description",
|
||||||
"item.page.description": "Descrição",
|
"item.page.description": "Descrição",
|
||||||
|
|
||||||
// "item.page.edit": "Edit this item",
|
|
||||||
"item.page.edit": "Editar este item",
|
|
||||||
|
|
||||||
// "item.page.journal-issn": "Journal ISSN",
|
// "item.page.journal-issn": "Journal ISSN",
|
||||||
"item.page.journal-issn": "ISSN da Revista",
|
"item.page.journal-issn": "ISSN da Revista",
|
||||||
|
|
||||||
@@ -2875,10 +2872,10 @@
|
|||||||
"item.page.bitstreams.collapse": "Fechar",
|
"item.page.bitstreams.collapse": "Fechar",
|
||||||
|
|
||||||
// "item.page.filesection.original.bundle" : "Original bundle",
|
// "item.page.filesection.original.bundle" : "Original bundle",
|
||||||
"item.page.filesection.original.bundle" : "Principais",
|
"item.page.filesection.original.bundle": "Principais",
|
||||||
|
|
||||||
// "item.page.filesection.license.bundle" : "License bundle",
|
// "item.page.filesection.license.bundle" : "License bundle",
|
||||||
"item.page.filesection.license.bundle" : "Licença",
|
"item.page.filesection.license.bundle": "Licença",
|
||||||
|
|
||||||
// "item.preview.dc.identifier.uri": "Identifier:",
|
// "item.preview.dc.identifier.uri": "Identifier:",
|
||||||
"item.preview.dc.identifier.uri": "Identificador:",
|
"item.preview.dc.identifier.uri": "Identificador:",
|
||||||
@@ -3681,16 +3678,16 @@
|
|||||||
|
|
||||||
|
|
||||||
// "process.detail.arguments" : "Arguments",
|
// "process.detail.arguments" : "Arguments",
|
||||||
"process.detail.arguments" : "Argumentos",
|
"process.detail.arguments": "Argumentos",
|
||||||
|
|
||||||
// "process.detail.arguments.empty" : "This process doesn't contain any arguments",
|
// "process.detail.arguments.empty" : "This process doesn't contain any arguments",
|
||||||
"process.detail.arguments.empty" : "Este processo não contém argumentos",
|
"process.detail.arguments.empty": "Este processo não contém argumentos",
|
||||||
|
|
||||||
// "process.detail.back" : "Back",
|
// "process.detail.back" : "Back",
|
||||||
"process.detail.back" : "Voltar",
|
"process.detail.back": "Voltar",
|
||||||
|
|
||||||
// "process.detail.output" : "Process Output",
|
// "process.detail.output" : "Process Output",
|
||||||
"process.detail.output" : "Output do Processo",
|
"process.detail.output": "Output do Processo",
|
||||||
|
|
||||||
// "process.detail.logs.button": "Retrieve process output",
|
// "process.detail.logs.button": "Retrieve process output",
|
||||||
"process.detail.logs.button": "Recuperar output do processo",
|
"process.detail.logs.button": "Recuperar output do processo",
|
||||||
@@ -3702,48 +3699,48 @@
|
|||||||
"process.detail.logs.none": "Este processo não tem output",
|
"process.detail.logs.none": "Este processo não tem output",
|
||||||
|
|
||||||
// "process.detail.output-files" : "Output Files",
|
// "process.detail.output-files" : "Output Files",
|
||||||
"process.detail.output-files" : "Ficheiros do Output",
|
"process.detail.output-files": "Ficheiros do Output",
|
||||||
|
|
||||||
// "process.detail.output-files.empty" : "This process doesn't contain any output files",
|
// "process.detail.output-files.empty" : "This process doesn't contain any output files",
|
||||||
"process.detail.output-files.empty" : "Este processo não possui nenhum ficheiro de output",
|
"process.detail.output-files.empty": "Este processo não possui nenhum ficheiro de output",
|
||||||
|
|
||||||
// "process.detail.script" : "Script",
|
// "process.detail.script" : "Script",
|
||||||
"process.detail.script" : "Script",
|
"process.detail.script": "Script",
|
||||||
|
|
||||||
// "process.detail.title" : "Process: {{ id }} - {{ name }}",
|
// "process.detail.title" : "Process: {{ id }} - {{ name }}",
|
||||||
"process.detail.title" : "Processo: {{ id }} - {{ name }}",
|
"process.detail.title": "Processo: {{ id }} - {{ name }}",
|
||||||
|
|
||||||
// "process.detail.start-time" : "Start time",
|
// "process.detail.start-time" : "Start time",
|
||||||
"process.detail.start-time" : "Início",
|
"process.detail.start-time": "Início",
|
||||||
|
|
||||||
// "process.detail.end-time" : "Finish time",
|
// "process.detail.end-time" : "Finish time",
|
||||||
"process.detail.end-time" : "Fim",
|
"process.detail.end-time": "Fim",
|
||||||
|
|
||||||
// "process.detail.status" : "Status",
|
// "process.detail.status" : "Status",
|
||||||
"process.detail.status" : "Estado",
|
"process.detail.status": "Estado",
|
||||||
|
|
||||||
// "process.detail.create" : "Create similar process",
|
// "process.detail.create" : "Create similar process",
|
||||||
"process.detail.create" : "Criar processo similar",
|
"process.detail.create": "Criar processo similar",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// "process.overview.table.finish" : "Finish time",
|
// "process.overview.table.finish" : "Finish time",
|
||||||
"process.overview.table.finish" : "Tempo de término",
|
"process.overview.table.finish": "Tempo de término",
|
||||||
|
|
||||||
// "process.overview.table.id" : "Process ID",
|
// "process.overview.table.id" : "Process ID",
|
||||||
"process.overview.table.id" : "ID do Processo",
|
"process.overview.table.id": "ID do Processo",
|
||||||
|
|
||||||
// "process.overview.table.name" : "Name",
|
// "process.overview.table.name" : "Name",
|
||||||
"process.overview.table.name" : "Nome",
|
"process.overview.table.name": "Nome",
|
||||||
|
|
||||||
// "process.overview.table.start" : "Start time",
|
// "process.overview.table.start" : "Start time",
|
||||||
"process.overview.table.start" : "Início",
|
"process.overview.table.start": "Início",
|
||||||
|
|
||||||
// "process.overview.table.status" : "Status",
|
// "process.overview.table.status" : "Status",
|
||||||
"process.overview.table.status" : "Estado",
|
"process.overview.table.status": "Estado",
|
||||||
|
|
||||||
// "process.overview.table.user" : "User",
|
// "process.overview.table.user" : "User",
|
||||||
"process.overview.table.user" : "Utilizador",
|
"process.overview.table.user": "Utilizador",
|
||||||
|
|
||||||
// "process.overview.title": "Processes Overview",
|
// "process.overview.title": "Processes Overview",
|
||||||
"process.overview.title": "Resumo dos Processos",
|
"process.overview.title": "Resumo dos Processos",
|
||||||
@@ -4969,7 +4966,7 @@
|
|||||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Search Results",
|
// "submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Search Results",
|
||||||
"submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Resultados da Pesquisa",
|
"submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Resultados da Pesquisa",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don\'t you can still use it for this submission.",
|
// "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don't you can still use it for this submission.",
|
||||||
"submission.sections.describe.relationship-lookup.name-variant.notification.content": "Pretende guardar \"{{ value }}\" como um nome alternativo para esta pessoa permitindo a sua reutilização por outros em futuras submissões? Se não, pode usar apenas nesta submissão.",
|
"submission.sections.describe.relationship-lookup.name-variant.notification.content": "Pretende guardar \"{{ value }}\" como um nome alternativo para esta pessoa permitindo a sua reutilização por outros em futuras submissões? Se não, pode usar apenas nesta submissão.",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant",
|
// "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant",
|
||||||
@@ -5338,7 +5335,7 @@
|
|||||||
"workflow-item.send-back.button.cancel": "Cancelar",
|
"workflow-item.send-back.button.cancel": "Cancelar",
|
||||||
|
|
||||||
// "workflow-item.send-back.button.confirm": "Send back"
|
// "workflow-item.send-back.button.confirm": "Send back"
|
||||||
"workflow-item.send-back.button.confirm": "Devolver"
|
"workflow-item.send-back.button.confirm": "Devolver",
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -169,7 +169,7 @@
|
|||||||
// "admin.registries.bitstream-formats.table.name": "Name",
|
// "admin.registries.bitstream-formats.table.name": "Name",
|
||||||
"admin.registries.bitstream-formats.table.name": "Namn",
|
"admin.registries.bitstream-formats.table.name": "Namn",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"admin.registries.bitstream-formats.table.id" : "ID",
|
"admin.registries.bitstream-formats.table.id": "ID",
|
||||||
|
|
||||||
// "admin.registries.bitstream-formats.table.return": "Back",
|
// "admin.registries.bitstream-formats.table.return": "Back",
|
||||||
"admin.registries.bitstream-formats.table.return": "Tillbaka",
|
"admin.registries.bitstream-formats.table.return": "Tillbaka",
|
||||||
@@ -248,7 +248,7 @@
|
|||||||
// "admin.registries.schema.fields.table.field": "Field",
|
// "admin.registries.schema.fields.table.field": "Field",
|
||||||
"admin.registries.schema.fields.table.field": "Fält",
|
"admin.registries.schema.fields.table.field": "Fält",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"admin.registries.schema.fields.table.id" : "ID",
|
"admin.registries.schema.fields.table.id": "ID",
|
||||||
|
|
||||||
// "admin.registries.schema.fields.table.scopenote": "Scope Note",
|
// "admin.registries.schema.fields.table.scopenote": "Scope Note",
|
||||||
"admin.registries.schema.fields.table.scopenote": "Anmärkning (scope note)",
|
"admin.registries.schema.fields.table.scopenote": "Anmärkning (scope note)",
|
||||||
@@ -1017,7 +1017,7 @@
|
|||||||
// "pagination.previous.button": "Föregående",
|
// "pagination.previous.button": "Föregående",
|
||||||
"pagination.previous.button": "Föregående",
|
"pagination.previous.button": "Föregående",
|
||||||
|
|
||||||
// "browse.startsWith.choose_start": "(Choose start)",
|
// "browse.startsWith.choose_start": "(Choose start)",
|
||||||
"browse.startsWith.choose_start": "(Välj startdatum)",
|
"browse.startsWith.choose_start": "(Välj startdatum)",
|
||||||
|
|
||||||
// "browse.startsWith.choose_year": "(Välj årtal)",
|
// "browse.startsWith.choose_year": "(Välj årtal)",
|
||||||
@@ -1092,7 +1092,7 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
// "collection.create.head": "Create a Collection",
|
// "collection.create.head": "Create a Collection",
|
||||||
"collection.create.head": "Skapa samling",
|
"collection.create.head": "Skapa samling",
|
||||||
|
|
||||||
// "collection.create.notifications.success": "Successfully created the Collection",
|
// "collection.create.notifications.success": "Successfully created the Collection",
|
||||||
@@ -1418,7 +1418,7 @@
|
|||||||
"collection.select.table.title": "Titel",
|
"collection.select.table.title": "Titel",
|
||||||
|
|
||||||
|
|
||||||
// "collection.source.controls.head": "Harvest Controls",
|
// "collection.source.controls.head": "Harvest Controls",
|
||||||
"collection.source.controls.head": "Inställningar för höstning",
|
"collection.source.controls.head": "Inställningar för höstning",
|
||||||
|
|
||||||
// "collection.source.controls.test.submit.error": "Something went wrong with initiating the testing of the settings",
|
// "collection.source.controls.test.submit.error": "Something went wrong with initiating the testing of the settings",
|
||||||
@@ -1833,7 +1833,7 @@
|
|||||||
|
|
||||||
|
|
||||||
// "curation-task.task.checklinks.label": "Check Links in Metadata",
|
// "curation-task.task.checklinks.label": "Check Links in Metadata",
|
||||||
"curation-task.task.checklinks.label": "Kontrollera länkar i metadata",
|
"curation-task.task.checklinks.label": "Kontrollera länkar i metadata",
|
||||||
|
|
||||||
// "curation-task.task.noop.label": "NOOP",
|
// "curation-task.task.noop.label": "NOOP",
|
||||||
"curation-task.task.noop.label": "NOOP",
|
"curation-task.task.noop.label": "NOOP",
|
||||||
@@ -1961,7 +1961,7 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
// "confirmation-modal.export-metadata.header": "Export metadata for {{ dsoName }}",
|
// "confirmation-modal.export-metadata.header": "Export metadata for {{ dsoName }}",
|
||||||
"confirmation-modal.export-metadata.header": "Exportera metadata från {{ dsoName }}",
|
"confirmation-modal.export-metadata.header": "Exportera metadata från {{ dsoName }}",
|
||||||
|
|
||||||
// "confirmation-modal.export-metadata.info": "Are you sure you want to export metadata for {{ dsoName }}",
|
// "confirmation-modal.export-metadata.info": "Are you sure you want to export metadata for {{ dsoName }}",
|
||||||
@@ -2084,10 +2084,10 @@
|
|||||||
|
|
||||||
// "footer.link.end-user-agreement":"End User Agreement",
|
// "footer.link.end-user-agreement":"End User Agreement",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"footer.link.end-user-agreement":"End User Agreement",
|
"footer.link.end-user-agreement": "End User Agreement",
|
||||||
|
|
||||||
// "footer.link.feedback":"Send Feedback",
|
// "footer.link.feedback":"Send Feedback",
|
||||||
"footer.link.feedback":"Skicka feedback",
|
"footer.link.feedback": "Skicka feedback",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -2404,19 +2404,19 @@
|
|||||||
"info.feedback.email-label": "Din e-postadress",
|
"info.feedback.email-label": "Din e-postadress",
|
||||||
|
|
||||||
// "info.feedback.create.success" : "Feedback Sent Successfully!",
|
// "info.feedback.create.success" : "Feedback Sent Successfully!",
|
||||||
"info.feedback.create.success" : "Feedback har skickats!",
|
"info.feedback.create.success": "Feedback har skickats!",
|
||||||
|
|
||||||
// "info.feedback.error.email.required" : "A valid email address is required",
|
// "info.feedback.error.email.required" : "A valid email address is required",
|
||||||
"info.feedback.error.email.required" : "Du måste ange en giltig e-postadress",
|
"info.feedback.error.email.required": "Du måste ange en giltig e-postadress",
|
||||||
|
|
||||||
// "info.feedback.error.message.required" : "A comment is required",
|
// "info.feedback.error.message.required" : "A comment is required",
|
||||||
"info.feedback.error.message.required" : "Du måste skriva en kommentar",
|
"info.feedback.error.message.required": "Du måste skriva en kommentar",
|
||||||
|
|
||||||
// "info.feedback.page-label" : "Page",
|
// "info.feedback.page-label" : "Page",
|
||||||
"info.feedback.page-label" : "Sida",
|
"info.feedback.page-label": "Sida",
|
||||||
|
|
||||||
// "info.feedback.page_help" : "Tha page related to your feedback",
|
// "info.feedback.page_help" : "Tha page related to your feedback",
|
||||||
"info.feedback.page_help" : "Den är sidan är relaterad till din feedback",
|
"info.feedback.page_help": "Den är sidan är relaterad till din feedback",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -2453,7 +2453,7 @@
|
|||||||
// "item.bitstreams.upload.bundle.new": "Create bundle",
|
// "item.bitstreams.upload.bundle.new": "Create bundle",
|
||||||
"item.bitstreams.upload.bundle.new": "Skapa bunt",
|
"item.bitstreams.upload.bundle.new": "Skapa bunt",
|
||||||
|
|
||||||
// "item.bitstreams.upload.bundles.empty": "This item doesn\'t contain any bundles to upload a bitstream to.",
|
// "item.bitstreams.upload.bundles.empty": "This item doesn't contain any bundles to upload a bitstream to.",
|
||||||
"item.bitstreams.upload.bundles.empty": "Denna post innehåller inga buntar som man kan ladda upp filer i.",
|
"item.bitstreams.upload.bundles.empty": "Denna post innehåller inga buntar som man kan ladda upp filer i.",
|
||||||
|
|
||||||
// "item.bitstreams.upload.cancel": "Cancel",
|
// "item.bitstreams.upload.cancel": "Cancel",
|
||||||
@@ -2743,7 +2743,7 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
// "item.edit.move.cancel": "Back",
|
// "item.edit.move.cancel": "Back",
|
||||||
"item.edit.move.cancel": "Tillbaka",
|
"item.edit.move.cancel": "Tillbaka",
|
||||||
|
|
||||||
// "item.edit.move.save-button": "Save",
|
// "item.edit.move.save-button": "Save",
|
||||||
@@ -3142,11 +3142,11 @@
|
|||||||
|
|
||||||
// "item.page.filesection.original.bundle" : "Original bundle",
|
// "item.page.filesection.original.bundle" : "Original bundle",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.page.filesection.original.bundle" : "Original bundle",
|
"item.page.filesection.original.bundle": "Original bundle",
|
||||||
|
|
||||||
// "item.page.filesection.license.bundle" : "License bundle",
|
// "item.page.filesection.license.bundle" : "License bundle",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.page.filesection.license.bundle" : "License bundle",
|
"item.page.filesection.license.bundle": "License bundle",
|
||||||
|
|
||||||
// "item.page.return": "Back",
|
// "item.page.return": "Back",
|
||||||
"item.page.return": "Tillbaka",
|
"item.page.return": "Tillbaka",
|
||||||
@@ -3321,14 +3321,14 @@
|
|||||||
"item.version.create.modal.form.summary.placeholder": "Lägg till sammanfattning av den nya versionen",
|
"item.version.create.modal.form.summary.placeholder": "Lägg till sammanfattning av den nya versionen",
|
||||||
|
|
||||||
// "item.version.create.notification.success" : "New version has been created with version number {{version}}",
|
// "item.version.create.notification.success" : "New version has been created with version number {{version}}",
|
||||||
"item.version.create.notification.success" : "En ny version med nummer {{version}} har skapats",
|
"item.version.create.notification.success": "En ny version med nummer {{version}} har skapats",
|
||||||
|
|
||||||
// "item.version.create.notification.failure" : "New version has not been created",
|
// "item.version.create.notification.failure" : "New version has not been created",
|
||||||
"item.version.create.notification.failure" : "Ny version har inte skapats",
|
"item.version.create.notification.failure": "Ny version har inte skapats",
|
||||||
|
|
||||||
// "item.version.create.notification.inProgress" : "A new version cannot be created because there is an inprogress submission in the version history",
|
// "item.version.create.notification.inProgress" : "A new version cannot be created because there is an inprogress submission in the version history",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.version.create.notification.inProgress" : "A new version cannot be created because there is an inprogress submission in the version history",
|
"item.version.create.notification.inProgress": "A new version cannot be created because there is an inprogress submission in the version history",
|
||||||
|
|
||||||
|
|
||||||
// "item.version.delete.modal.header": "Delete version",
|
// "item.version.delete.modal.header": "Delete version",
|
||||||
@@ -3350,17 +3350,17 @@
|
|||||||
"item.version.delete.modal.button.cancel.tooltip": "Radera inte denna version",
|
"item.version.delete.modal.button.cancel.tooltip": "Radera inte denna version",
|
||||||
|
|
||||||
// "item.version.delete.notification.success" : "Version number {{version}} has been deleted",
|
// "item.version.delete.notification.success" : "Version number {{version}} has been deleted",
|
||||||
"item.version.delete.notification.success" : "Version {{version}} har raderats",
|
"item.version.delete.notification.success": "Version {{version}} har raderats",
|
||||||
|
|
||||||
// "item.version.delete.notification.failure" : "Version number {{version}} has not been deleted",
|
// "item.version.delete.notification.failure" : "Version number {{version}} has not been deleted",
|
||||||
"item.version.delete.notification.failure" : "Version {{version}} har inte raderats",
|
"item.version.delete.notification.failure": "Version {{version}} har inte raderats",
|
||||||
|
|
||||||
|
|
||||||
// "item.version.edit.notification.success" : "The summary of version number {{version}} has been changed",
|
// "item.version.edit.notification.success" : "The summary of version number {{version}} has been changed",
|
||||||
"item.version.edit.notification.success" : "Sammanfattningen av version {{version}} har ändrats",
|
"item.version.edit.notification.success": "Sammanfattningen av version {{version}} har ändrats",
|
||||||
|
|
||||||
// "item.version.edit.notification.failure" : "The summary of version number {{version}} has not been changed",
|
// "item.version.edit.notification.failure" : "The summary of version number {{version}} has not been changed",
|
||||||
"item.version.edit.notification.failure" : "Sammanfattningen av version {{version}} har inte ändrats",
|
"item.version.edit.notification.failure": "Sammanfattningen av version {{version}} har inte ändrats",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -3757,7 +3757,7 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
// "menu.section.new": "New",
|
// "menu.section.new": "New",
|
||||||
"menu.section.new": "Ny",
|
"menu.section.new": "Ny",
|
||||||
|
|
||||||
// "menu.section.new_collection": "Collection",
|
// "menu.section.new_collection": "Collection",
|
||||||
@@ -4013,11 +4013,11 @@
|
|||||||
|
|
||||||
// "nav.toggle" : "Toggle navigation",
|
// "nav.toggle" : "Toggle navigation",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"nav.toggle" : "Toggle navigation",
|
"nav.toggle": "Toggle navigation",
|
||||||
|
|
||||||
// "nav.user.description" : "User profile bar",
|
// "nav.user.description" : "User profile bar",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"nav.user.description" : "User profile bar",
|
"nav.user.description": "User profile bar",
|
||||||
|
|
||||||
// "none.listelement.badge": "Item",
|
// "none.listelement.badge": "Item",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -4203,19 +4203,19 @@
|
|||||||
|
|
||||||
// "process.detail.arguments" : "Arguments",
|
// "process.detail.arguments" : "Arguments",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.arguments" : "Arguments",
|
"process.detail.arguments": "Arguments",
|
||||||
|
|
||||||
// "process.detail.arguments.empty" : "This process doesn't contain any arguments",
|
// "process.detail.arguments.empty" : "This process doesn't contain any arguments",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.arguments.empty" : "This process doesn't contain any arguments",
|
"process.detail.arguments.empty": "This process doesn't contain any arguments",
|
||||||
|
|
||||||
// "process.detail.back" : "Back",
|
// "process.detail.back" : "Back",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.back" : "Back",
|
"process.detail.back": "Back",
|
||||||
|
|
||||||
// "process.detail.output" : "Process Output",
|
// "process.detail.output" : "Process Output",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.output" : "Process Output",
|
"process.detail.output": "Process Output",
|
||||||
|
|
||||||
// "process.detail.logs.button": "Retrieve process output",
|
// "process.detail.logs.button": "Retrieve process output",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -4231,54 +4231,54 @@
|
|||||||
|
|
||||||
// "process.detail.output-files" : "Output Files",
|
// "process.detail.output-files" : "Output Files",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.output-files" : "Output Files",
|
"process.detail.output-files": "Output Files",
|
||||||
|
|
||||||
// "process.detail.output-files.empty" : "This process doesn't contain any output files",
|
// "process.detail.output-files.empty" : "This process doesn't contain any output files",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.output-files.empty" : "This process doesn't contain any output files",
|
"process.detail.output-files.empty": "This process doesn't contain any output files",
|
||||||
|
|
||||||
// "process.detail.script" : "Script",
|
// "process.detail.script" : "Script",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.script" : "Script",
|
"process.detail.script": "Script",
|
||||||
|
|
||||||
// "process.detail.title" : "Process: {{ id }} - {{ name }}",
|
// "process.detail.title" : "Process: {{ id }} - {{ name }}",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.title" : "Process: {{ id }} - {{ name }}",
|
"process.detail.title": "Process: {{ id }} - {{ name }}",
|
||||||
|
|
||||||
// "process.detail.start-time" : "Start time",
|
// "process.detail.start-time" : "Start time",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.start-time" : "Start time",
|
"process.detail.start-time": "Start time",
|
||||||
|
|
||||||
// "process.detail.end-time" : "Finish time",
|
// "process.detail.end-time" : "Finish time",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.end-time" : "Finish time",
|
"process.detail.end-time": "Finish time",
|
||||||
|
|
||||||
// "process.detail.status" : "Status",
|
// "process.detail.status" : "Status",
|
||||||
"process.detail.status" : "Status",
|
"process.detail.status": "Status",
|
||||||
|
|
||||||
// "process.detail.create" : "Create similar process",
|
// "process.detail.create" : "Create similar process",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.create" : "Create similar process",
|
"process.detail.create": "Create similar process",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// "process.overview.table.finish" : "Finish time (UTC)",
|
// "process.overview.table.finish" : "Finish time (UTC)",
|
||||||
"process.overview.table.finish" : "Sluttid (UTC)",
|
"process.overview.table.finish": "Sluttid (UTC)",
|
||||||
|
|
||||||
// "process.overview.table.id" : "Process ID",
|
// "process.overview.table.id" : "Process ID",
|
||||||
"process.overview.table.id" : "Process ID",
|
"process.overview.table.id": "Process ID",
|
||||||
|
|
||||||
// "process.overview.table.name" : "Name",
|
// "process.overview.table.name" : "Name",
|
||||||
"process.overview.table.name" : "Namn",
|
"process.overview.table.name": "Namn",
|
||||||
|
|
||||||
// "process.overview.table.start" : "Start time (UTC)",
|
// "process.overview.table.start" : "Start time (UTC)",
|
||||||
"process.overview.table.start" : "Starttid (UTC)",
|
"process.overview.table.start": "Starttid (UTC)",
|
||||||
|
|
||||||
// "process.overview.table.status" : "Status",
|
// "process.overview.table.status" : "Status",
|
||||||
"process.overview.table.status" : "Status",
|
"process.overview.table.status": "Status",
|
||||||
|
|
||||||
// "process.overview.table.user" : "User",
|
// "process.overview.table.user" : "User",
|
||||||
"process.overview.table.user" : "Användare",
|
"process.overview.table.user": "Användare",
|
||||||
|
|
||||||
// "process.overview.title": "Processes Overview",
|
// "process.overview.title": "Processes Overview",
|
||||||
"process.overview.title": "Processer översikt",
|
"process.overview.title": "Processer översikt",
|
||||||
@@ -4570,7 +4570,7 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
// "relationships.add.error.relationship-type.content": "No suitable match could be found for relationship type {{ type }} between the two items",
|
// "relationships.add.error.relationship-type.content": "No suitable match could be found for relationship type {{ type }} between the two items",
|
||||||
"relationships.add.error.relationship-type.content": "Det gick inte att hitta något som matchade relationstyp {{ type }} mellan dessa poster",
|
"relationships.add.error.relationship-type.content": "Det gick inte att hitta något som matchade relationstyp {{ type }} mellan dessa poster",
|
||||||
|
|
||||||
// "relationships.add.error.server.content": "The server returned an error",
|
// "relationships.add.error.server.content": "The server returned an error",
|
||||||
@@ -5752,7 +5752,7 @@
|
|||||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Search Results",
|
// "submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Search Results",
|
||||||
"submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Sökresultat",
|
"submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Sökresultat",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don\'t you can still use it for this submission.",
|
// "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don't you can still use it for this submission.",
|
||||||
"submission.sections.describe.relationship-lookup.name-variant.notification.content": "Vill du spara \"{{ value }}\" som en namnvariation för denna person? Om inte så kan du fortfarande använda det i detta bidrag.",
|
"submission.sections.describe.relationship-lookup.name-variant.notification.content": "Vill du spara \"{{ value }}\" som en namnvariation för denna person? Om inte så kan du fortfarande använda det i detta bidrag.",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant",
|
// "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant",
|
||||||
@@ -6116,7 +6116,7 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
// "thumbnail.default.alt": "Thumbnail Image",
|
// "thumbnail.default.alt": "Thumbnail Image",
|
||||||
"thumbnail.default.alt": "Bild (thumbnail)",
|
"thumbnail.default.alt": "Bild (thumbnail)",
|
||||||
|
|
||||||
// "thumbnail.default.placeholder": "No Thumbnail Available",
|
// "thumbnail.default.placeholder": "No Thumbnail Available",
|
||||||
@@ -6281,6 +6281,6 @@
|
|||||||
"idle-modal.log-out": "Logga ut",
|
"idle-modal.log-out": "Logga ut",
|
||||||
|
|
||||||
// "idle-modal.extend-session": "Extend session"
|
// "idle-modal.extend-session": "Extend session"
|
||||||
"idle-modal.extend-session": "Fortsätt"
|
"idle-modal.extend-session": "Fortsätt",
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -208,7 +208,7 @@
|
|||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"admin.registries.bitstream-formats.table.name": "Name",
|
"admin.registries.bitstream-formats.table.name": "Name",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"admin.registries.bitstream-formats.table.id" : "ID",
|
"admin.registries.bitstream-formats.table.id": "ID",
|
||||||
|
|
||||||
// "admin.registries.bitstream-formats.table.return": "Return",
|
// "admin.registries.bitstream-formats.table.return": "Return",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -314,7 +314,7 @@
|
|||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"admin.registries.schema.fields.table.field": "Field",
|
"admin.registries.schema.fields.table.field": "Field",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"admin.registries.schema.fields.table.id" : "ID",
|
"admin.registries.schema.fields.table.id": "ID",
|
||||||
|
|
||||||
// "admin.registries.schema.fields.table.scopenote": "Scope Note",
|
// "admin.registries.schema.fields.table.scopenote": "Scope Note",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -2050,7 +2050,7 @@
|
|||||||
|
|
||||||
// "curation-task.task.checklinks.label": "Check Links in Metadata",
|
// "curation-task.task.checklinks.label": "Check Links in Metadata",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"curation-task.task.checklinks.label": "Check Links in Metadata",
|
"curation-task.task.checklinks.label": "Check Links in Metadata",
|
||||||
|
|
||||||
// "curation-task.task.noop.label": "NOOP",
|
// "curation-task.task.noop.label": "NOOP",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -2305,7 +2305,7 @@
|
|||||||
|
|
||||||
// "footer.link.end-user-agreement":"End User Agreement",
|
// "footer.link.end-user-agreement":"End User Agreement",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"footer.link.end-user-agreement":"End User Agreement",
|
"footer.link.end-user-agreement": "End User Agreement",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -2629,9 +2629,9 @@
|
|||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.bitstreams.upload.bundle.new": "Create bundle",
|
"item.bitstreams.upload.bundle.new": "Create bundle",
|
||||||
|
|
||||||
// "item.bitstreams.upload.bundles.empty": "This item doesn\'t contain any bundles to upload a bitstream to.",
|
// "item.bitstreams.upload.bundles.empty": "This item doesn't contain any bundles to upload a bitstream to.",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.bitstreams.upload.bundles.empty": "This item doesn\'t contain any bundles to upload a bitstream to.",
|
"item.bitstreams.upload.bundles.empty": "This item doesn't contain any bundles to upload a bitstream to.",
|
||||||
|
|
||||||
// "item.bitstreams.upload.cancel": "Cancel",
|
// "item.bitstreams.upload.cancel": "Cancel",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -3370,10 +3370,6 @@
|
|||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.page.description": "Description",
|
"item.page.description": "Description",
|
||||||
|
|
||||||
// "item.page.edit": "Edit this item",
|
|
||||||
// TODO New key - Add a translation
|
|
||||||
"item.page.edit": "Edit this item",
|
|
||||||
|
|
||||||
// "item.page.journal-issn": "Journal ISSN",
|
// "item.page.journal-issn": "Journal ISSN",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.page.journal-issn": "Journal ISSN",
|
"item.page.journal-issn": "Journal ISSN",
|
||||||
@@ -3510,11 +3506,11 @@
|
|||||||
|
|
||||||
// "item.page.filesection.original.bundle" : "Original bundle",
|
// "item.page.filesection.original.bundle" : "Original bundle",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.page.filesection.original.bundle" : "Original bundle",
|
"item.page.filesection.original.bundle": "Original bundle",
|
||||||
|
|
||||||
// "item.page.filesection.license.bundle" : "License bundle",
|
// "item.page.filesection.license.bundle" : "License bundle",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"item.page.filesection.license.bundle" : "License bundle",
|
"item.page.filesection.license.bundle": "License bundle",
|
||||||
|
|
||||||
// "item.preview.dc.identifier.uri": "Identifier:",
|
// "item.preview.dc.identifier.uri": "Identifier:",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -4566,19 +4562,19 @@
|
|||||||
|
|
||||||
// "process.detail.arguments" : "Arguments",
|
// "process.detail.arguments" : "Arguments",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.arguments" : "Arguments",
|
"process.detail.arguments": "Arguments",
|
||||||
|
|
||||||
// "process.detail.arguments.empty" : "This process doesn't contain any arguments",
|
// "process.detail.arguments.empty" : "This process doesn't contain any arguments",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.arguments.empty" : "This process doesn't contain any arguments",
|
"process.detail.arguments.empty": "This process doesn't contain any arguments",
|
||||||
|
|
||||||
// "process.detail.back" : "Back",
|
// "process.detail.back" : "Back",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.back" : "Back",
|
"process.detail.back": "Back",
|
||||||
|
|
||||||
// "process.detail.output" : "Process Output",
|
// "process.detail.output" : "Process Output",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.output" : "Process Output",
|
"process.detail.output": "Process Output",
|
||||||
|
|
||||||
// "process.detail.logs.button": "Retrieve process output",
|
// "process.detail.logs.button": "Retrieve process output",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -4594,61 +4590,61 @@
|
|||||||
|
|
||||||
// "process.detail.output-files" : "Output Files",
|
// "process.detail.output-files" : "Output Files",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.output-files" : "Output Files",
|
"process.detail.output-files": "Output Files",
|
||||||
|
|
||||||
// "process.detail.output-files.empty" : "This process doesn't contain any output files",
|
// "process.detail.output-files.empty" : "This process doesn't contain any output files",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.output-files.empty" : "This process doesn't contain any output files",
|
"process.detail.output-files.empty": "This process doesn't contain any output files",
|
||||||
|
|
||||||
// "process.detail.script" : "Script",
|
// "process.detail.script" : "Script",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.script" : "Script",
|
"process.detail.script": "Script",
|
||||||
|
|
||||||
// "process.detail.title" : "Process: {{ id }} - {{ name }}",
|
// "process.detail.title" : "Process: {{ id }} - {{ name }}",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.title" : "Process: {{ id }} - {{ name }}",
|
"process.detail.title": "Process: {{ id }} - {{ name }}",
|
||||||
|
|
||||||
// "process.detail.start-time" : "Start time",
|
// "process.detail.start-time" : "Start time",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.start-time" : "Start time",
|
"process.detail.start-time": "Start time",
|
||||||
|
|
||||||
// "process.detail.end-time" : "Finish time",
|
// "process.detail.end-time" : "Finish time",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.end-time" : "Finish time",
|
"process.detail.end-time": "Finish time",
|
||||||
|
|
||||||
// "process.detail.status" : "Status",
|
// "process.detail.status" : "Status",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.status" : "Status",
|
"process.detail.status": "Status",
|
||||||
|
|
||||||
// "process.detail.create" : "Create similar process",
|
// "process.detail.create" : "Create similar process",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.detail.create" : "Create similar process",
|
"process.detail.create": "Create similar process",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// "process.overview.table.finish" : "Finish time",
|
// "process.overview.table.finish" : "Finish time",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.overview.table.finish" : "Finish time",
|
"process.overview.table.finish": "Finish time",
|
||||||
|
|
||||||
// "process.overview.table.id" : "Process ID",
|
// "process.overview.table.id" : "Process ID",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.overview.table.id" : "Process ID",
|
"process.overview.table.id": "Process ID",
|
||||||
|
|
||||||
// "process.overview.table.name" : "Name",
|
// "process.overview.table.name" : "Name",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.overview.table.name" : "Name",
|
"process.overview.table.name": "Name",
|
||||||
|
|
||||||
// "process.overview.table.start" : "Start time",
|
// "process.overview.table.start" : "Start time",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.overview.table.start" : "Start time",
|
"process.overview.table.start": "Start time",
|
||||||
|
|
||||||
// "process.overview.table.status" : "Status",
|
// "process.overview.table.status" : "Status",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.overview.table.status" : "Status",
|
"process.overview.table.status": "Status",
|
||||||
|
|
||||||
// "process.overview.table.user" : "User",
|
// "process.overview.table.user" : "User",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"process.overview.table.user" : "User",
|
"process.overview.table.user": "User",
|
||||||
|
|
||||||
// "process.overview.title": "Processes Overview",
|
// "process.overview.title": "Processes Overview",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -6263,9 +6259,9 @@
|
|||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Search Results",
|
"submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Search Results",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don\'t you can still use it for this submission.",
|
// "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don't you can still use it for this submission.",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don\'t you can still use it for this submission.",
|
"submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don't you can still use it for this submission.",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant",
|
// "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -6746,7 +6742,7 @@
|
|||||||
|
|
||||||
// "workflow-item.send-back.button.confirm": "Send back"
|
// "workflow-item.send-back.button.confirm": "Send back"
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"workflow-item.send-back.button.confirm": "Send back"
|
"workflow-item.send-back.button.confirm": "Send back",
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -157,7 +157,7 @@
|
|||||||
// "admin.registries.bitstream-formats.table.name": "Name",
|
// "admin.registries.bitstream-formats.table.name": "Name",
|
||||||
"admin.registries.bitstream-formats.table.name": "İsim",
|
"admin.registries.bitstream-formats.table.name": "İsim",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"admin.registries.bitstream-formats.table.id" : "ID",
|
"admin.registries.bitstream-formats.table.id": "ID",
|
||||||
|
|
||||||
// "admin.registries.bitstream-formats.table.return": "Return",
|
// "admin.registries.bitstream-formats.table.return": "Return",
|
||||||
"admin.registries.bitstream-formats.table.return": "Geri Dön",
|
"admin.registries.bitstream-formats.table.return": "Geri Dön",
|
||||||
@@ -238,7 +238,7 @@
|
|||||||
// "admin.registries.schema.fields.table.field": "Field",
|
// "admin.registries.schema.fields.table.field": "Field",
|
||||||
"admin.registries.schema.fields.table.field": "Alan",
|
"admin.registries.schema.fields.table.field": "Alan",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"admin.registries.schema.fields.table.id" : "ID",
|
"admin.registries.schema.fields.table.id": "ID",
|
||||||
|
|
||||||
// "admin.registries.schema.fields.table.scopenote": "Scope Note",
|
// "admin.registries.schema.fields.table.scopenote": "Scope Note",
|
||||||
"admin.registries.schema.fields.table.scopenote": "Kapsam Notu",
|
"admin.registries.schema.fields.table.scopenote": "Kapsam Notu",
|
||||||
@@ -769,7 +769,7 @@
|
|||||||
"bitstream.edit.form.description.label": "Açıklama",
|
"bitstream.edit.form.description.label": "Açıklama",
|
||||||
|
|
||||||
// "bitstream.edit.form.embargo.hint": "The first day from which access is allowed. <b>This date cannot be modified on this form.</b> To set an embargo date for a bitstream, go to the <i>Item Status</i> tab, click <i>Authorizations...</i>, create or edit the bitstream's <i>READ</i> policy, and set the <i>Start Date</i> as desired.",
|
// "bitstream.edit.form.embargo.hint": "The first day from which access is allowed. <b>This date cannot be modified on this form.</b> To set an embargo date for a bitstream, go to the <i>Item Status</i> tab, click <i>Authorizations...</i>, create or edit the bitstream's <i>READ</i> policy, and set the <i>Start Date</i> as desired.",
|
||||||
"bitstream.edit.form.embargo.hint": "Erişime izin verilen ilk gün. <b>Bu tarih bu formda değiştirilemez.</b> Bir bitstream için bir ambargo tarihi ayarlamak için <i>Öğe Durumu</i> sekmesine gidin, <i>Yetkiler...</i>'i tıklayın., bitstreamın <i>OKU</i> politikasını oluşturun veya düzenleyin ve <i>Başlangıç Tarihi</i>'ni istediğiniz gibi ayarlayın.",
|
"bitstream.edit.form.embargo.hint": "Erişime izin verilen ilk gün. <b>Bu tarih bu formda değiştirilemez.</b> Bir bitstream için bir ambargo tarihi ayarlamak için <i>Öğe Durumu</i> sekmesine gidin, <i>Yetkiler...</i>'i tıklayın., bitstreamın <i>OKU</i> politikasını oluşturun veya düzenleyin ve <i>Başlangıç Tarihi</i>'ni istediğiniz gibi ayarlayın.",
|
||||||
|
|
||||||
// "bitstream.edit.form.embargo.label": "Embargo until specific date",
|
// "bitstream.edit.form.embargo.label": "Embargo until specific date",
|
||||||
"bitstream.edit.form.embargo.label": "Belirli bir tarihe kadar ambargo",
|
"bitstream.edit.form.embargo.label": "Belirli bir tarihe kadar ambargo",
|
||||||
@@ -1560,7 +1560,7 @@
|
|||||||
|
|
||||||
|
|
||||||
// "curation-task.task.checklinks.label": "Check Links in Metadata",
|
// "curation-task.task.checklinks.label": "Check Links in Metadata",
|
||||||
"curation-task.task.checklinks.label": "Metadatalardaki Bağlantıları Kontrol Et",
|
"curation-task.task.checklinks.label": "Metadatalardaki Bağlantıları Kontrol Et",
|
||||||
|
|
||||||
// "curation-task.task.noop.label": "NOOP",
|
// "curation-task.task.noop.label": "NOOP",
|
||||||
"curation-task.task.noop.label": "NOOP",
|
"curation-task.task.noop.label": "NOOP",
|
||||||
@@ -1754,7 +1754,7 @@
|
|||||||
"footer.link.privacy-policy": "Gizlilik Politikası",
|
"footer.link.privacy-policy": "Gizlilik Politikası",
|
||||||
|
|
||||||
// "footer.link.end-user-agreement":"End User Agreement",
|
// "footer.link.end-user-agreement":"End User Agreement",
|
||||||
"footer.link.end-user-agreement":"Son Kullanıcı Sözleşmesi",
|
"footer.link.end-user-agreement": "Son Kullanıcı Sözleşmesi",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -2004,7 +2004,7 @@
|
|||||||
// "item.bitstreams.upload.bundle.new": "Create bundle",
|
// "item.bitstreams.upload.bundle.new": "Create bundle",
|
||||||
"item.bitstreams.upload.bundle.new": "Paket oluştur",
|
"item.bitstreams.upload.bundle.new": "Paket oluştur",
|
||||||
|
|
||||||
// "item.bitstreams.upload.bundles.empty": "This item doesn\'t contain any bundles to upload a bitstream to.",
|
// "item.bitstreams.upload.bundles.empty": "This item doesn't contain any bundles to upload a bitstream to.",
|
||||||
"item.bitstreams.upload.bundles.empty": "Bu öğe, bir bitstream yüklemek için herhangi bir paket içermiyor.",
|
"item.bitstreams.upload.bundles.empty": "Bu öğe, bir bitstream yüklemek için herhangi bir paket içermiyor.",
|
||||||
|
|
||||||
// "item.bitstreams.upload.cancel": "Cancel",
|
// "item.bitstreams.upload.cancel": "Cancel",
|
||||||
@@ -2566,9 +2566,6 @@
|
|||||||
// "item.page.description": "Description",
|
// "item.page.description": "Description",
|
||||||
"item.page.description": "Açıklama",
|
"item.page.description": "Açıklama",
|
||||||
|
|
||||||
// "item.page.edit": "Edit this item",
|
|
||||||
"item.page.edit": "Bu ögeyi düzenle",
|
|
||||||
|
|
||||||
// "item.page.journal-issn": "Journal ISSN",
|
// "item.page.journal-issn": "Journal ISSN",
|
||||||
"item.page.journal-issn": "Süreli Yayın ISSN",
|
"item.page.journal-issn": "Süreli Yayın ISSN",
|
||||||
|
|
||||||
@@ -2670,10 +2667,10 @@
|
|||||||
"item.page.bitstreams.collapse": "Daralt",
|
"item.page.bitstreams.collapse": "Daralt",
|
||||||
|
|
||||||
// "item.page.filesection.original.bundle" : "Original bundle",
|
// "item.page.filesection.original.bundle" : "Original bundle",
|
||||||
"item.page.filesection.original.bundle" : "Orijinal seri",
|
"item.page.filesection.original.bundle": "Orijinal seri",
|
||||||
|
|
||||||
// "item.page.filesection.license.bundle" : "License bundle",
|
// "item.page.filesection.license.bundle" : "License bundle",
|
||||||
"item.page.filesection.license.bundle" : "Lisanslı seri",
|
"item.page.filesection.license.bundle": "Lisanslı seri",
|
||||||
|
|
||||||
// "item.preview.dc.identifier.uri": "Identifier:",
|
// "item.preview.dc.identifier.uri": "Identifier:",
|
||||||
"item.preview.dc.identifier.uri": "Belirteç:",
|
"item.preview.dc.identifier.uri": "Belirteç:",
|
||||||
@@ -3477,16 +3474,16 @@
|
|||||||
|
|
||||||
|
|
||||||
// "process.detail.arguments" : "Arguments",
|
// "process.detail.arguments" : "Arguments",
|
||||||
"process.detail.arguments" : "Argümanlar",
|
"process.detail.arguments": "Argümanlar",
|
||||||
|
|
||||||
// "process.detail.arguments.empty" : "This process doesn't contain any arguments",
|
// "process.detail.arguments.empty" : "This process doesn't contain any arguments",
|
||||||
"process.detail.arguments.empty" : "Bu süreç herhangi bir argüman içermiyor",
|
"process.detail.arguments.empty": "Bu süreç herhangi bir argüman içermiyor",
|
||||||
|
|
||||||
// "process.detail.back" : "Back",
|
// "process.detail.back" : "Back",
|
||||||
"process.detail.back" : "Geri",
|
"process.detail.back": "Geri",
|
||||||
|
|
||||||
// "process.detail.output" : "Process Output",
|
// "process.detail.output" : "Process Output",
|
||||||
"process.detail.output" : "Süreç Çıktısı",
|
"process.detail.output": "Süreç Çıktısı",
|
||||||
|
|
||||||
// "process.detail.logs.button": "Retrieve process output",
|
// "process.detail.logs.button": "Retrieve process output",
|
||||||
"process.detail.logs.button": "Süreç çıktısını geri al",
|
"process.detail.logs.button": "Süreç çıktısını geri al",
|
||||||
@@ -3498,48 +3495,48 @@
|
|||||||
"process.detail.logs.none": "Bu sürecin çıktısı yok",
|
"process.detail.logs.none": "Bu sürecin çıktısı yok",
|
||||||
|
|
||||||
// "process.detail.output-files" : "Output Files",
|
// "process.detail.output-files" : "Output Files",
|
||||||
"process.detail.output-files" : "Çıktı dosyaları",
|
"process.detail.output-files": "Çıktı dosyaları",
|
||||||
|
|
||||||
// "process.detail.output-files.empty" : "This process doesn't contain any output files",
|
// "process.detail.output-files.empty" : "This process doesn't contain any output files",
|
||||||
"process.detail.output-files.empty" : "Bu süreç herhangi bir çıktı dosyası içermiyor",
|
"process.detail.output-files.empty": "Bu süreç herhangi bir çıktı dosyası içermiyor",
|
||||||
|
|
||||||
// "process.detail.script" : "Script",
|
// "process.detail.script" : "Script",
|
||||||
"process.detail.script" : "Betik",
|
"process.detail.script": "Betik",
|
||||||
|
|
||||||
// "process.detail.title" : "Process: {{ id }} - {{ name }}",
|
// "process.detail.title" : "Process: {{ id }} - {{ name }}",
|
||||||
"process.detail.title" : "Süreç: {{ id }} - {{ name }}",
|
"process.detail.title": "Süreç: {{ id }} - {{ name }}",
|
||||||
|
|
||||||
// "process.detail.start-time" : "Start time",
|
// "process.detail.start-time" : "Start time",
|
||||||
"process.detail.start-time" : "Başlangıç saati",
|
"process.detail.start-time": "Başlangıç saati",
|
||||||
|
|
||||||
// "process.detail.end-time" : "Finish time",
|
// "process.detail.end-time" : "Finish time",
|
||||||
"process.detail.end-time" : "Bitiş zamanı",
|
"process.detail.end-time": "Bitiş zamanı",
|
||||||
|
|
||||||
// "process.detail.status" : "Status",
|
// "process.detail.status" : "Status",
|
||||||
"process.detail.status" : "Durum",
|
"process.detail.status": "Durum",
|
||||||
|
|
||||||
// "process.detail.create" : "Create similar process",
|
// "process.detail.create" : "Create similar process",
|
||||||
"process.detail.create" : "Benzer süreç oluştur",
|
"process.detail.create": "Benzer süreç oluştur",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// "process.overview.table.finish" : "Finish time",
|
// "process.overview.table.finish" : "Finish time",
|
||||||
"process.overview.table.finish" : "Bitiş zamanı",
|
"process.overview.table.finish": "Bitiş zamanı",
|
||||||
|
|
||||||
// "process.overview.table.id" : "Process ID",
|
// "process.overview.table.id" : "Process ID",
|
||||||
"process.overview.table.id" : "Süreç kimliği",
|
"process.overview.table.id": "Süreç kimliği",
|
||||||
|
|
||||||
// "process.overview.table.name" : "Name",
|
// "process.overview.table.name" : "Name",
|
||||||
"process.overview.table.name" : "Ad",
|
"process.overview.table.name": "Ad",
|
||||||
|
|
||||||
// "process.overview.table.start" : "Start time",
|
// "process.overview.table.start" : "Start time",
|
||||||
"process.overview.table.start" : "Başlangıç zamanı",
|
"process.overview.table.start": "Başlangıç zamanı",
|
||||||
|
|
||||||
// "process.overview.table.status" : "Status",
|
// "process.overview.table.status" : "Status",
|
||||||
"process.overview.table.status" : "Durum",
|
"process.overview.table.status": "Durum",
|
||||||
|
|
||||||
// "process.overview.table.user" : "User",
|
// "process.overview.table.user" : "User",
|
||||||
"process.overview.table.user" : "Kullanıcı",
|
"process.overview.table.user": "Kullanıcı",
|
||||||
|
|
||||||
// "process.overview.title": "Processes Overview",
|
// "process.overview.title": "Processes Overview",
|
||||||
"process.overview.title": "Süreçlere Genel Bakış",
|
"process.overview.title": "Süreçlere Genel Bakış",
|
||||||
@@ -4757,7 +4754,7 @@
|
|||||||
// "submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Search Results",
|
// "submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Search Results",
|
||||||
"submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Sonuçları Ara",
|
"submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Sonuçları Ara",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don\'t you can still use it for this submission.",
|
// "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don't you can still use it for this submission.",
|
||||||
"submission.sections.describe.relationship-lookup.name-variant.notification.content": "Bu kişi için \"{{ value }}\" ilerideki gönderilerde kullanılabilmek için Yeni İsim olarak kaydedilsin mi? Bunu yapmazsanız, yine de bu gönderim için kullanabilirsiniz .",
|
"submission.sections.describe.relationship-lookup.name-variant.notification.content": "Bu kişi için \"{{ value }}\" ilerideki gönderilerde kullanılabilmek için Yeni İsim olarak kaydedilsin mi? Bunu yapmazsanız, yine de bu gönderim için kullanabilirsiniz .",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant",
|
// "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant",
|
||||||
@@ -5126,6 +5123,6 @@
|
|||||||
"workflow-item.send-back.button.cancel": "İptal",
|
"workflow-item.send-back.button.cancel": "İptal",
|
||||||
|
|
||||||
// "workflow-item.send-back.button.confirm": "Send back"
|
// "workflow-item.send-back.button.confirm": "Send back"
|
||||||
"workflow-item.send-back.button.confirm": "Geri Gönder"
|
"workflow-item.send-back.button.confirm": "Geri Gönder",
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -1260,32 +1260,32 @@
|
|||||||
"collection.listelement.badge": "Зібрання",
|
"collection.listelement.badge": "Зібрання",
|
||||||
|
|
||||||
|
|
||||||
//"home.recent-submissions.head": "Recent Submissions",
|
//"home.recent-submissions.head": "Recent Submissions",
|
||||||
"home.recent-submissions.head": "Нові надходження",
|
"home.recent-submissions.head": "Нові надходження",
|
||||||
|
|
||||||
|
|
||||||
//"thumbnail.default.alt": "Thumbnail Image",
|
//"thumbnail.default.alt": "Thumbnail Image",
|
||||||
"thumbnail.default.alt": "Ескіз",
|
"thumbnail.default.alt": "Ескіз",
|
||||||
|
|
||||||
// "thumbnail.default.placeholder": "No Thumbnail Available",
|
// "thumbnail.default.placeholder": "No Thumbnail Available",
|
||||||
"thumbnail.default.placeholder": "Ескіз недоступний",
|
"thumbnail.default.placeholder": "Ескіз недоступний",
|
||||||
|
|
||||||
// "thumbnail.project.alt": "Project Logo",
|
// "thumbnail.project.alt": "Project Logo",
|
||||||
"thumbnail.project.alt": "Логотип проекту",
|
"thumbnail.project.alt": "Логотип проекту",
|
||||||
|
|
||||||
// TODO "thumbnail.project.placeholder": "Project Placeholder Image",
|
// TODO "thumbnail.project.placeholder": "Project Placeholder Image",
|
||||||
"thumbnail.project.placeholder": "Project Placeholder Image",
|
"thumbnail.project.placeholder": "Project Placeholder Image",
|
||||||
|
|
||||||
// "thumbnail.orgunit.alt": "OrgUnit Logo",
|
// "thumbnail.orgunit.alt": "OrgUnit Logo",
|
||||||
"thumbnail.orgunit.alt": "Логотип організації",
|
"thumbnail.orgunit.alt": "Логотип організації",
|
||||||
|
|
||||||
"thumbnail.orgunit.placeholder": "OrgUnit Placeholder Image",
|
"thumbnail.orgunit.placeholder": "OrgUnit Placeholder Image",
|
||||||
|
|
||||||
// "thumbnail.person.alt": "Profile Picture",
|
// "thumbnail.person.alt": "Profile Picture",
|
||||||
"thumbnail.person.alt": "Зображення профілю",
|
"thumbnail.person.alt": "Зображення профілю",
|
||||||
|
|
||||||
// "thumbnail.person.placeholder": "No Profile Picture Available",
|
// "thumbnail.person.placeholder": "No Profile Picture Available",
|
||||||
"thumbnail.person.placeholder": "Зображення профілю відсутне",
|
"thumbnail.person.placeholder": "Зображення профілю відсутне",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1594,64 +1594,64 @@
|
|||||||
|
|
||||||
|
|
||||||
// "cookies.consent.accept-all": "Accept all",
|
// "cookies.consent.accept-all": "Accept all",
|
||||||
"cookies.consent.accept-all": "Прийняти все",
|
"cookies.consent.accept-all": "Прийняти все",
|
||||||
|
|
||||||
// "cookies.consent.accept-selected": "Accept selected",
|
// "cookies.consent.accept-selected": "Accept selected",
|
||||||
"cookies.consent.accept-selected": "Прийняти вибране",
|
"cookies.consent.accept-selected": "Прийняти вибране",
|
||||||
|
|
||||||
// "cookies.consent.app.opt-out.description": "This app is loaded by default (but you can opt out)",
|
// "cookies.consent.app.opt-out.description": "This app is loaded by default (but you can opt out)",
|
||||||
"cookies.consent.app.opt-out.description": "Цей додаток був завантажений по замовчуванню. Але Ви можете відмовитись від нього",
|
"cookies.consent.app.opt-out.description": "Цей додаток був завантажений по замовчуванню. Але Ви можете відмовитись від нього",
|
||||||
|
|
||||||
// "cookies.consent.app.opt-out.title": "(opt-out)",
|
// "cookies.consent.app.opt-out.title": "(opt-out)",
|
||||||
"cookies.consent.app.opt-out.title": "(відмовитись)",
|
"cookies.consent.app.opt-out.title": "(відмовитись)",
|
||||||
|
|
||||||
// "cookies.consent.app.purpose": "purpose",
|
// "cookies.consent.app.purpose": "purpose",
|
||||||
"cookies.consent.app.purpose": "ціль",
|
"cookies.consent.app.purpose": "ціль",
|
||||||
|
|
||||||
// "cookies.consent.app.required.description": "This application is always required",
|
// "cookies.consent.app.required.description": "This application is always required",
|
||||||
"cookies.consent.app.required.description": "Цей додаток завжди потрібний",
|
"cookies.consent.app.required.description": "Цей додаток завжди потрібний",
|
||||||
|
|
||||||
// "cookies.consent.app.required.title": "(always required)",
|
// "cookies.consent.app.required.title": "(always required)",
|
||||||
"cookies.consent.app.required.title": "(завжди потрібний)",
|
"cookies.consent.app.required.title": "(завжди потрібний)",
|
||||||
|
|
||||||
// "cookies.consent.update": "There were changes since your last visit, please update your consent.",
|
// "cookies.consent.update": "There were changes since your last visit, please update your consent.",
|
||||||
"cookies.consent.update": "З часу вашого останнього відвідування відбулися зміни, підтвердьте це.",
|
"cookies.consent.update": "З часу вашого останнього відвідування відбулися зміни, підтвердьте це.",
|
||||||
|
|
||||||
// "cookies.consent.close": "Close",
|
// "cookies.consent.close": "Close",
|
||||||
"cookies.consent.close": "Закрити",
|
"cookies.consent.close": "Закрити",
|
||||||
|
|
||||||
// "cookies.consent.decline": "Decline",
|
// "cookies.consent.decline": "Decline",
|
||||||
"cookies.consent.decline": "Відхилити",
|
"cookies.consent.decline": "Відхилити",
|
||||||
|
|
||||||
// "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: <strong>Authentication, Preferences, Acknowledgement and Statistics</strong>. <br/> To learn more, please read our {privacyPolicy}.",
|
// "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: <strong>Authentication, Preferences, Acknowledgement and Statistics</strong>. <br/> To learn more, please read our {privacyPolicy}.",
|
||||||
"cookies.consent.content-notice.description": "Ми збираємо та обробляємо вашу особисту інформацію для таких цілей: <strong>автентифікація, налаштування та статистика</strong>. <br/> Щоб дізнатися більше, прочитайте нашу політику {privacyPolicy}.",
|
"cookies.consent.content-notice.description": "Ми збираємо та обробляємо вашу особисту інформацію для таких цілей: <strong>автентифікація, налаштування та статистика</strong>. <br/> Щоб дізнатися більше, прочитайте нашу політику {privacyPolicy}.",
|
||||||
|
|
||||||
// "cookies.consent.content-notice.learnMore": "Customize",
|
// "cookies.consent.content-notice.learnMore": "Customize",
|
||||||
"cookies.consent.content-notice.learnMore": "Налаштувати",
|
"cookies.consent.content-notice.learnMore": "Налаштувати",
|
||||||
|
|
||||||
// "cookies.consent.content-modal.description": "Here you can see and customize the information that we collect about you.",
|
// "cookies.consent.content-modal.description": "Here you can see and customize the information that we collect about you.",
|
||||||
"cookies.consent.content-modal.description": "Тут ви можете переглянути та налаштувати збір інформаціїпро Вас.",
|
"cookies.consent.content-modal.description": "Тут ви можете переглянути та налаштувати збір інформаціїпро Вас.",
|
||||||
|
|
||||||
// "cookies.consent.content-modal.privacy-policy.name": "privacy policy",
|
// "cookies.consent.content-modal.privacy-policy.name": "privacy policy",
|
||||||
"cookies.consent.content-modal.privacy-policy.name": "політика приватності",
|
"cookies.consent.content-modal.privacy-policy.name": "політика приватності",
|
||||||
|
|
||||||
// "cookies.consent.content-modal.privacy-policy.text": " {privacyPolicy}.",
|
// "cookies.consent.content-modal.privacy-policy.text": " {privacyPolicy}.",
|
||||||
"cookies.consent.content-modal.privacy-policy.text": "Детальніше - {privacyPolicy}.",
|
"cookies.consent.content-modal.privacy-policy.text": "Детальніше - {privacyPolicy}.",
|
||||||
|
|
||||||
// "cookies.consent.content-modal.title": "Information that we collect",
|
// "cookies.consent.content-modal.title": "Information that we collect",
|
||||||
"cookies.consent.content-modal.title": "Інформація, яку ми збираємо",
|
"cookies.consent.content-modal.title": "Інформація, яку ми збираємо",
|
||||||
|
|
||||||
// "cookies.consent.app.title.authentication": "Authentication",
|
// "cookies.consent.app.title.authentication": "Authentication",
|
||||||
"cookies.consent.app.title.authentication": "Увійти",
|
"cookies.consent.app.title.authentication": "Увійти",
|
||||||
|
|
||||||
// "cookies.consent.app.description.authentication": "Required for signing you in",
|
// "cookies.consent.app.description.authentication": "Required for signing you in",
|
||||||
"cookies.consent.app.description.authentication": "Необхідно для входу",
|
"cookies.consent.app.description.authentication": "Необхідно для входу",
|
||||||
|
|
||||||
// "cookies.consent.app.title.preferences": "Preferences",
|
// "cookies.consent.app.title.preferences": "Preferences",
|
||||||
"cookies.consent.app.title.preferences": "Налаштування",
|
"cookies.consent.app.title.preferences": "Налаштування",
|
||||||
|
|
||||||
// "cookies.consent.app.description.preferences": "Required for saving your preferences",
|
// "cookies.consent.app.description.preferences": "Required for saving your preferences",
|
||||||
"cookies.consent.app.description.preferences": "Необхідно для збереження ваших налаштувань",
|
"cookies.consent.app.description.preferences": "Необхідно для збереження ваших налаштувань",
|
||||||
|
|
||||||
// "cookies.consent.app.title.acknowledgement": "Acknowledgement",
|
// "cookies.consent.app.title.acknowledgement": "Acknowledgement",
|
||||||
"cookies.consent.app.title.acknowledgement": "Підтвердження",
|
"cookies.consent.app.title.acknowledgement": "Підтвердження",
|
||||||
@@ -1663,60 +1663,60 @@
|
|||||||
"cookies.consent.app.title.google-analytics": "Google Analytics",
|
"cookies.consent.app.title.google-analytics": "Google Analytics",
|
||||||
|
|
||||||
// "cookies.consent.app.description.google-analytics": "Allows us to track statistical data",
|
// "cookies.consent.app.description.google-analytics": "Allows us to track statistical data",
|
||||||
"cookies.consent.app.description.google-analytics": "Дозволяє нам відстежувати статистичні дані",
|
"cookies.consent.app.description.google-analytics": "Дозволяє нам відстежувати статистичні дані",
|
||||||
|
|
||||||
// "cookies.consent.purpose.functional": "Functional",
|
// "cookies.consent.purpose.functional": "Functional",
|
||||||
"cookies.consent.purpose.functional": "Функціональний",
|
"cookies.consent.purpose.functional": "Функціональний",
|
||||||
|
|
||||||
// "cookies.consent.purpose.statistical": "Statistical",
|
// "cookies.consent.purpose.statistical": "Statistical",
|
||||||
"cookies.consent.purpose.statistical": "Статичний",
|
"cookies.consent.purpose.statistical": "Статичний",
|
||||||
|
|
||||||
|
|
||||||
// "curation-task.task.checklinks.label": "Check Links in Metadata",
|
// "curation-task.task.checklinks.label": "Check Links in Metadata",
|
||||||
"curation-task.task.checklinks.label": "Перевірте посилання у метаданих",
|
"curation-task.task.checklinks.label": "Перевірте посилання у метаданих",
|
||||||
|
|
||||||
// "curation-task.task.noop.label": "NOOP",
|
// "curation-task.task.noop.label": "NOOP",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"curation-task.task.noop.label": "NOOP",
|
"curation-task.task.noop.label": "NOOP",
|
||||||
|
|
||||||
// "curation-task.task.profileformats.label": "Profile Bitstream Formats",
|
// "curation-task.task.profileformats.label": "Profile Bitstream Formats",
|
||||||
"curation-task.task.profileformats.label": "Профіль форматів файлів",
|
"curation-task.task.profileformats.label": "Профіль форматів файлів",
|
||||||
|
|
||||||
// "curation-task.task.requiredmetadata.label": "Check for Required Metadata",
|
// "curation-task.task.requiredmetadata.label": "Check for Required Metadata",
|
||||||
"curation-task.task.requiredmetadata.label": "Перевірте наявність необхідних метаданих",
|
"curation-task.task.requiredmetadata.label": "Перевірте наявність необхідних метаданих",
|
||||||
|
|
||||||
// "curation-task.task.translate.label": "Microsoft Translator",
|
// "curation-task.task.translate.label": "Microsoft Translator",
|
||||||
"curation-task.task.translate.label": "Microsoft Translator",
|
"curation-task.task.translate.label": "Microsoft Translator",
|
||||||
|
|
||||||
// "curation-task.task.vscan.label": "Virus Scan",
|
// "curation-task.task.vscan.label": "Virus Scan",
|
||||||
"curation-task.task.vscan.label": "Перевірка на віруси",
|
"curation-task.task.vscan.label": "Перевірка на віруси",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// "curation.form.task-select.label": "Task:",
|
// "curation.form.task-select.label": "Task:",
|
||||||
"curation.form.task-select.label": "Завдання:",
|
"curation.form.task-select.label": "Завдання:",
|
||||||
|
|
||||||
// "curation.form.submit": "Start",
|
// "curation.form.submit": "Start",
|
||||||
"curation.form.submit": "Почати",
|
"curation.form.submit": "Почати",
|
||||||
|
|
||||||
// "curation.form.submit.success.head": "The curation task has been started successfully",
|
// "curation.form.submit.success.head": "The curation task has been started successfully",
|
||||||
"curation.form.submit.success.head": "Завдання успішно розпочате",
|
"curation.form.submit.success.head": "Завдання успішно розпочате",
|
||||||
|
|
||||||
// "curation.form.submit.success.content": "You will be redirected to the corresponding process page.",
|
// "curation.form.submit.success.content": "You will be redirected to the corresponding process page.",
|
||||||
"curation.form.submit.success.content": "Ви будете перенаправлені на сторінку відповідного процесу.",
|
"curation.form.submit.success.content": "Ви будете перенаправлені на сторінку відповідного процесу.",
|
||||||
|
|
||||||
// "curation.form.submit.error.head": "Running the curation task failed",
|
// "curation.form.submit.error.head": "Running the curation task failed",
|
||||||
"curation.form.submit.error.head": "Не вдалося виконати завдання",
|
"curation.form.submit.error.head": "Не вдалося виконати завдання",
|
||||||
|
|
||||||
// "curation.form.submit.error.content": "An error occured when trying to start the curation task.",
|
// "curation.form.submit.error.content": "An error occured when trying to start the curation task.",
|
||||||
"curation.form.submit.error.content": "Виникла помилка при спробі розпочати завдання.",
|
"curation.form.submit.error.content": "Виникла помилка при спробі розпочати завдання.",
|
||||||
|
|
||||||
// "curation.form.handle.label": "Handle:",
|
// "curation.form.handle.label": "Handle:",
|
||||||
|
|
||||||
"curation.form.handle.label": "Handle:",
|
"curation.form.handle.label": "Handle:",
|
||||||
|
|
||||||
// "curation.form.handle.hint": "Hint: Enter [your-handle-prefix]/0 to run a task across entire site (not all tasks may support this capability)",
|
// "curation.form.handle.hint": "Hint: Enter [your-handle-prefix]/0 to run a task across entire site (not all tasks may support this capability)",
|
||||||
"curation.form.handle.hint": "Підказка: Введіть [your-handle-prefix]/0 для запуску завдання на весь сайт (не всі види завдань це підтримують)",
|
"curation.form.handle.hint": "Підказка: Введіть [your-handle-prefix]/0 для запуску завдання на весь сайт (не всі види завдань це підтримують)",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1724,7 +1724,7 @@
|
|||||||
"dso-selector.create.collection.head": "Нове зібрання",
|
"dso-selector.create.collection.head": "Нове зібрання",
|
||||||
|
|
||||||
// "dso-selector.create.collection.sub-level": "Create a new collection in",
|
// "dso-selector.create.collection.sub-level": "Create a new collection in",
|
||||||
"dso-selector.create.collection.sub-level": "Створити нове зібрання в",
|
"dso-selector.create.collection.sub-level": "Створити нове зібрання в",
|
||||||
|
|
||||||
// "dso-selector.create.community.head": "New community",
|
// "dso-selector.create.community.head": "New community",
|
||||||
"dso-selector.create.community.head": "Новий фонд",
|
"dso-selector.create.community.head": "Новий фонд",
|
||||||
@@ -1755,7 +1755,7 @@
|
|||||||
"dso-selector.edit.item.head": "Редагувати документ",
|
"dso-selector.edit.item.head": "Редагувати документ",
|
||||||
|
|
||||||
// "dso-selector.export-metadata.dspaceobject.head": "Export metadata from",
|
// "dso-selector.export-metadata.dspaceobject.head": "Export metadata from",
|
||||||
"dso-selector.export-metadata.dspaceobject.head": "Експорт метаданих з",
|
"dso-selector.export-metadata.dspaceobject.head": "Експорт метаданих з",
|
||||||
|
|
||||||
// "dso-selector.no-results": "No {{ type }} found",
|
// "dso-selector.no-results": "No {{ type }} found",
|
||||||
"dso-selector.no-results": "{{ type }} не знайдено",
|
"dso-selector.no-results": "{{ type }} не знайдено",
|
||||||
@@ -1766,28 +1766,28 @@
|
|||||||
|
|
||||||
|
|
||||||
// "confirmation-modal.export-metadata.header": "Export metadata for {{ dsoName }}",
|
// "confirmation-modal.export-metadata.header": "Export metadata for {{ dsoName }}",
|
||||||
"confirmation-modal.export-metadata.header": "Експорт метаданих для {{ dsoName }}",
|
"confirmation-modal.export-metadata.header": "Експорт метаданих для {{ dsoName }}",
|
||||||
|
|
||||||
// "confirmation-modal.export-metadata.info": "Are you sure you want to export metadata for {{ dsoName }}",
|
// "confirmation-modal.export-metadata.info": "Are you sure you want to export metadata for {{ dsoName }}",
|
||||||
"confirmation-modal.export-metadata.info": "Ви впевнені, що хочете експортувати метадані для {{ dsoName }}?",
|
"confirmation-modal.export-metadata.info": "Ви впевнені, що хочете експортувати метадані для {{ dsoName }}?",
|
||||||
|
|
||||||
// "confirmation-modal.export-metadata.cancel": "Cancel",
|
// "confirmation-modal.export-metadata.cancel": "Cancel",
|
||||||
"confirmation-modal.export-metadata.cancel": "Скасувати",
|
"confirmation-modal.export-metadata.cancel": "Скасувати",
|
||||||
|
|
||||||
// "confirmation-modal.export-metadata.confirm": "Export",
|
// "confirmation-modal.export-metadata.confirm": "Export",
|
||||||
"confirmation-modal.export-metadata.confirm": "Скасувати",
|
"confirmation-modal.export-metadata.confirm": "Скасувати",
|
||||||
|
|
||||||
// "confirmation-modal.delete-eperson.header": "Delete EPerson \"{{ dsoName }}\"",
|
// "confirmation-modal.delete-eperson.header": "Delete EPerson \"{{ dsoName }}\"",
|
||||||
"confirmation-modal.delete-eperson.header": "Видалити користувача \"{{ dsoName }}\"",
|
"confirmation-modal.delete-eperson.header": "Видалити користувача \"{{ dsoName }}\"",
|
||||||
|
|
||||||
// "confirmation-modal.delete-eperson.info": "Are you sure you want to delete EPerson \"{{ dsoName }}\"",
|
// "confirmation-modal.delete-eperson.info": "Are you sure you want to delete EPerson \"{{ dsoName }}\"",
|
||||||
"confirmation-modal.delete-eperson.info": "Ви впевнені, що хочете видалити користувача \"{{ dsoName }}\"?",
|
"confirmation-modal.delete-eperson.info": "Ви впевнені, що хочете видалити користувача \"{{ dsoName }}\"?",
|
||||||
|
|
||||||
// "confirmation-modal.delete-eperson.cancel": "Cancel",
|
// "confirmation-modal.delete-eperson.cancel": "Cancel",
|
||||||
"confirmation-modal.delete-eperson.cancel": "Скасувати",
|
"confirmation-modal.delete-eperson.cancel": "Скасувати",
|
||||||
|
|
||||||
// "confirmation-modal.delete-eperson.confirm": "Delete",
|
// "confirmation-modal.delete-eperson.confirm": "Delete",
|
||||||
"confirmation-modal.delete-eperson.confirm": "Видалити",
|
"confirmation-modal.delete-eperson.confirm": "Видалити",
|
||||||
|
|
||||||
|
|
||||||
// "error.bitstream": "Error fetching bitstream",
|
// "error.bitstream": "Error fetching bitstream",
|
||||||
@@ -1865,13 +1865,13 @@
|
|||||||
"footer.link.lyrasis": "LYRASIS",
|
"footer.link.lyrasis": "LYRASIS",
|
||||||
|
|
||||||
// "footer.link.cookies": "Cookie settings",
|
// "footer.link.cookies": "Cookie settings",
|
||||||
"footer.link.cookies": "Налаштування куків",
|
"footer.link.cookies": "Налаштування куків",
|
||||||
|
|
||||||
// "footer.link.privacy-policy": "Privacy policy",
|
// "footer.link.privacy-policy": "Privacy policy",
|
||||||
"footer.link.privacy-policy": "Політика приватності",
|
"footer.link.privacy-policy": "Політика приватності",
|
||||||
|
|
||||||
// "footer.link.end-user-agreement":"End User Agreement",
|
// "footer.link.end-user-agreement":"End User Agreement",
|
||||||
"footer.link.end-user-agreement":"Угода користувача",
|
"footer.link.end-user-agreement": "Угода користувача",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1882,28 +1882,28 @@
|
|||||||
"forgot-email.form.info": "Зареєструйтесь для отримання повідомлень про нові надходження та отримайте можливість вносити документи.",
|
"forgot-email.form.info": "Зареєструйтесь для отримання повідомлень про нові надходження та отримайте можливість вносити документи.",
|
||||||
|
|
||||||
// "forgot-email.form.email": "Email Address *",
|
// "forgot-email.form.email": "Email Address *",
|
||||||
"forgot-email.form.email": "Email *",
|
"forgot-email.form.email": "Email *",
|
||||||
|
|
||||||
// "forgot-email.form.email.error.required": "Please fill in an email address",
|
// "forgot-email.form.email.error.required": "Please fill in an email address",
|
||||||
"forgot-email.form.email.error.required": "Введіть email",
|
"forgot-email.form.email.error.required": "Введіть email",
|
||||||
|
|
||||||
// "forgot-email.form.email.error.pattern": "Please fill in a valid email address",
|
// "forgot-email.form.email.error.pattern": "Please fill in a valid email address",
|
||||||
"forgot-email.form.email.error.pattern": "Ви повинні ввести правильний email",
|
"forgot-email.form.email.error.pattern": "Ви повинні ввести правильний email",
|
||||||
|
|
||||||
// "forgot-email.form.email.hint": "This address will be verified and used as your login name.",
|
// "forgot-email.form.email.hint": "This address will be verified and used as your login name.",
|
||||||
"forgot-email.form.email.hint": "Ми провіримо цей email. Використовуйте його для входу у репозитарій",
|
"forgot-email.form.email.hint": "Ми провіримо цей email. Використовуйте його для входу у репозитарій",
|
||||||
|
|
||||||
// "forgot-email.form.submit": "Submit",
|
// "forgot-email.form.submit": "Submit",
|
||||||
"forgot-email.form.submit": "Надіслати",
|
"forgot-email.form.submit": "Надіслати",
|
||||||
|
|
||||||
// "forgot-email.form.success.head": "Verification email sent",
|
// "forgot-email.form.success.head": "Verification email sent",
|
||||||
"forgot-email.form.success.head": "На Ваш email було надіслане повідомлення",
|
"forgot-email.form.success.head": "На Ваш email було надіслане повідомлення",
|
||||||
|
|
||||||
// "forgot-email.form.success.content": "An email has been sent to {{ email }} containing a special URL and further instructions.",
|
// "forgot-email.form.success.content": "An email has been sent to {{ email }} containing a special URL and further instructions.",
|
||||||
"forgot-email.form.success.content": "На {{ email }} було надіслане повідомлення, що містить спеціальне посилання та подальші інструкції.",
|
"forgot-email.form.success.content": "На {{ email }} було надіслане повідомлення, що містить спеціальне посилання та подальші інструкції.",
|
||||||
|
|
||||||
// "forgot-email.form.error.head": "Error when trying to register email",
|
// "forgot-email.form.error.head": "Error when trying to register email",
|
||||||
"forgot-email.form.error.head": "Виникла помилка при реєстрації email",
|
"forgot-email.form.error.head": "Виникла помилка при реєстрації email",
|
||||||
|
|
||||||
// "forgot-email.form.error.content": "An error occured when registering the following email address: {{ email }}",
|
// "forgot-email.form.error.content": "An error occured when registering the following email address: {{ email }}",
|
||||||
"forgot-email.form.error.content": "Виникла помилка при реєстрації email: {{ email }}",
|
"forgot-email.form.error.content": "Виникла помилка при реєстрації email: {{ email }}",
|
||||||
@@ -1911,31 +1911,31 @@
|
|||||||
|
|
||||||
|
|
||||||
// "forgot-password.title": "Forgot Password",
|
// "forgot-password.title": "Forgot Password",
|
||||||
"forgot-password.title": "Забули пароль?",
|
"forgot-password.title": "Забули пароль?",
|
||||||
|
|
||||||
// "forgot-password.form.head": "Forgot Password",
|
// "forgot-password.form.head": "Forgot Password",
|
||||||
"forgot-password.form.head": "Забули пароль?",
|
"forgot-password.form.head": "Забули пароль?",
|
||||||
|
|
||||||
// "forgot-password.form.info": "Enter a new password in the box below, and confirm it by typing it again into the second box. It should be at least six characters long.",
|
// "forgot-password.form.info": "Enter a new password in the box below, and confirm it by typing it again into the second box. It should be at least six characters long.",
|
||||||
"forgot-password.form.info": "Введіть новий пароль у поле нижче та підтвердьте його, ввівши його ще раз у друге поле. Він має містити щонайменше 6 символів.",
|
"forgot-password.form.info": "Введіть новий пароль у поле нижче та підтвердьте його, ввівши його ще раз у друге поле. Він має містити щонайменше 6 символів.",
|
||||||
|
|
||||||
// "forgot-password.form.card.security": "Security",
|
// "forgot-password.form.card.security": "Security",
|
||||||
"forgot-password.form.card.security": "Безпека",
|
"forgot-password.form.card.security": "Безпека",
|
||||||
|
|
||||||
// "forgot-password.form.identification.header": "Identify",
|
// "forgot-password.form.identification.header": "Identify",
|
||||||
"forgot-password.form.identification.header": "Ідентифікація",
|
"forgot-password.form.identification.header": "Ідентифікація",
|
||||||
|
|
||||||
// "forgot-password.form.identification.email": "Email address: ",
|
// "forgot-password.form.identification.email": "Email address: ",
|
||||||
"forgot-password.form.identification.email": "Email: ",
|
"forgot-password.form.identification.email": "Email: ",
|
||||||
|
|
||||||
// "forgot-password.form.label.password": "Password",
|
// "forgot-password.form.label.password": "Password",
|
||||||
"forgot-password.form.label.password": "Пароль",
|
"forgot-password.form.label.password": "Пароль",
|
||||||
|
|
||||||
// "forgot-password.form.label.passwordrepeat": "Retype to confirm",
|
// "forgot-password.form.label.passwordrepeat": "Retype to confirm",
|
||||||
"forgot-password.form.label.passwordrepeat": "Введіть ще раз для підтвердження",
|
"forgot-password.form.label.passwordrepeat": "Введіть ще раз для підтвердження",
|
||||||
|
|
||||||
// "forgot-password.form.error.empty-password": "Please enter a password in the box below.",
|
// "forgot-password.form.error.empty-password": "Please enter a password in the box below.",
|
||||||
"forgot-password.form.error.empty-password": "Введіть пароль у поле нижче.",
|
"forgot-password.form.error.empty-password": "Введіть пароль у поле нижче.",
|
||||||
|
|
||||||
// "forgot-password.form.error.matching-passwords": "The passwords do not match.",
|
// "forgot-password.form.error.matching-passwords": "The passwords do not match.",
|
||||||
"forgot-password.form.error.matching-passwords": "Паролі не співпадають.",
|
"forgot-password.form.error.matching-passwords": "Паролі не співпадають.",
|
||||||
@@ -1944,16 +1944,16 @@
|
|||||||
"forgot-password.form.error.password-length": "Довжина пароля повинна становити не менше 6 символів.",
|
"forgot-password.form.error.password-length": "Довжина пароля повинна становити не менше 6 символів.",
|
||||||
|
|
||||||
// "forgot-password.form.notification.error.title": "Error when trying to submit new password",
|
// "forgot-password.form.notification.error.title": "Error when trying to submit new password",
|
||||||
"forgot-password.form.notification.error.title": "Виникла помилка при реєстрації нового пароля",
|
"forgot-password.form.notification.error.title": "Виникла помилка при реєстрації нового пароля",
|
||||||
|
|
||||||
// "forgot-password.form.notification.success.content": "The password reset was successful. You have been logged in as the created user.",
|
// "forgot-password.form.notification.success.content": "The password reset was successful. You have been logged in as the created user.",
|
||||||
"forgot-password.form.notification.success.content": "Пароль успішно скинуто. Ви увійшли під щойно створеним користувачем.",
|
"forgot-password.form.notification.success.content": "Пароль успішно скинуто. Ви увійшли під щойно створеним користувачем.",
|
||||||
|
|
||||||
// "forgot-password.form.notification.success.title": "Password reset completed",
|
// "forgot-password.form.notification.success.title": "Password reset completed",
|
||||||
"forgot-password.form.notification.success.title": "Пароль скинуто успішно",
|
"forgot-password.form.notification.success.title": "Пароль скинуто успішно",
|
||||||
|
|
||||||
// "forgot-password.form.submit": "Submit password",
|
// "forgot-password.form.submit": "Submit password",
|
||||||
"forgot-password.form.submit": "Надіслати пароль",
|
"forgot-password.form.submit": "Надіслати пароль",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -2027,7 +2027,7 @@
|
|||||||
"form.search": "Пошук",
|
"form.search": "Пошук",
|
||||||
|
|
||||||
// "form.search-help": "Click here to look for an existing correspondence",
|
// "form.search-help": "Click here to look for an existing correspondence",
|
||||||
"form.search-help": "Клацніть тут, щоб знайти наявне листування",
|
"form.search-help": "Клацніть тут, щоб знайти наявне листування",
|
||||||
|
|
||||||
// "form.submit": "Submit",
|
// "form.submit": "Submit",
|
||||||
"form.submit": "Надіслати",
|
"form.submit": "Надіслати",
|
||||||
@@ -2038,7 +2038,7 @@
|
|||||||
"home.description": "",
|
"home.description": "",
|
||||||
|
|
||||||
// "home.breadcrumbs": "Home",
|
// "home.breadcrumbs": "Home",
|
||||||
"home.breadcrumbs": "Головна",
|
"home.breadcrumbs": "Головна",
|
||||||
|
|
||||||
// "home.title": "DSpace Angular :: Home",
|
// "home.title": "DSpace Angular :: Home",
|
||||||
// TODO Change univer name
|
// TODO Change univer name
|
||||||
@@ -2059,55 +2059,55 @@
|
|||||||
"info.end-user-agreement.accept.error": "Виникла помилки при при фіксуванні Вашої згоди на користувацьку угоду",
|
"info.end-user-agreement.accept.error": "Виникла помилки при при фіксуванні Вашої згоди на користувацьку угоду",
|
||||||
|
|
||||||
// "info.end-user-agreement.accept.success": "Successfully updated the End User Agreement",
|
// "info.end-user-agreement.accept.success": "Successfully updated the End User Agreement",
|
||||||
"info.end-user-agreement.accept.success": "Користувацьку угоду успішно оновлено",
|
"info.end-user-agreement.accept.success": "Користувацьку угоду успішно оновлено",
|
||||||
|
|
||||||
// "info.end-user-agreement.breadcrumbs": "End User Agreement",
|
// "info.end-user-agreement.breadcrumbs": "End User Agreement",
|
||||||
"info.end-user-agreement.breadcrumbs": "Користувацька угода",
|
"info.end-user-agreement.breadcrumbs": "Користувацька угода",
|
||||||
|
|
||||||
// "info.end-user-agreement.buttons.cancel": "Cancel",
|
// "info.end-user-agreement.buttons.cancel": "Cancel",
|
||||||
"info.end-user-agreement.buttons.cancel": "Відмінити",
|
"info.end-user-agreement.buttons.cancel": "Відмінити",
|
||||||
|
|
||||||
// "info.end-user-agreement.buttons.save": "Save",
|
// "info.end-user-agreement.buttons.save": "Save",
|
||||||
"info.end-user-agreement.buttons.save": "Зберегти",
|
"info.end-user-agreement.buttons.save": "Зберегти",
|
||||||
|
|
||||||
// "info.end-user-agreement.head": "End User Agreement",
|
// "info.end-user-agreement.head": "End User Agreement",
|
||||||
"info.end-user-agreement.head": "Користувацька угода",
|
"info.end-user-agreement.head": "Користувацька угода",
|
||||||
|
|
||||||
// "info.end-user-agreement.title": "End User Agreement",
|
// "info.end-user-agreement.title": "End User Agreement",
|
||||||
"info.end-user-agreement.title": "Користувацька угода",
|
"info.end-user-agreement.title": "Користувацька угода",
|
||||||
|
|
||||||
// "info.privacy.breadcrumbs": "Privacy Statement",
|
// "info.privacy.breadcrumbs": "Privacy Statement",
|
||||||
"info.privacy.breadcrumbs": "Заява про конфіденційність",
|
"info.privacy.breadcrumbs": "Заява про конфіденційність",
|
||||||
|
|
||||||
// "info.privacy.head": "Privacy Statement",
|
// "info.privacy.head": "Privacy Statement",
|
||||||
"info.privacy.head": "Заява про конфіденційність",
|
"info.privacy.head": "Заява про конфіденційність",
|
||||||
|
|
||||||
// "info.privacy.title": "Privacy Statement",
|
// "info.privacy.title": "Privacy Statement",
|
||||||
"info.privacy.title": "Заява про конфіденційність",
|
"info.privacy.title": "Заява про конфіденційність",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// "item.alerts.private": "This item is private",
|
// "item.alerts.private": "This item is private",
|
||||||
"item.alerts.private": "Доступ до документа закритий",
|
"item.alerts.private": "Доступ до документа закритий",
|
||||||
|
|
||||||
// "item.alerts.withdrawn": "This item has been withdrawn",
|
// "item.alerts.withdrawn": "This item has been withdrawn",
|
||||||
"item.alerts.withdrawn": "Цей документ було вилучено",
|
"item.alerts.withdrawn": "Цей документ було вилучено",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// "item.edit.authorizations.heading": "With this editor you can view and alter the policies of an item, plus alter policies of individual item components: bundles and bitstreams. Briefly, an item is a container of bundles, and bundles are containers of bitstreams. Containers usually have ADD/REMOVE/READ/WRITE policies, while bitstreams only have READ/WRITE policies.",
|
// "item.edit.authorizations.heading": "With this editor you can view and alter the policies of an item, plus alter policies of individual item components: bundles and bitstreams. Briefly, an item is a container of bundles, and bundles are containers of bitstreams. Containers usually have ADD/REMOVE/READ/WRITE policies, while bitstreams only have READ/WRITE policies.",
|
||||||
"item.edit.authorizations.heading": "За допомогою цього редактора ви можете переглядати та змінювати політики документа, а також змінювати політики окремих компонентів документа. Документ — це множина пакетів, а пакети — це множина файлів. Контейнери зазвичай мають політики ADD/REMOVE/READ/WRITE, тоді як файли мають лише політики READ/WRITE.",
|
"item.edit.authorizations.heading": "За допомогою цього редактора ви можете переглядати та змінювати політики документа, а також змінювати політики окремих компонентів документа. Документ — це множина пакетів, а пакети — це множина файлів. Контейнери зазвичай мають політики ADD/REMOVE/READ/WRITE, тоді як файли мають лише політики READ/WRITE.",
|
||||||
|
|
||||||
// "item.edit.authorizations.title": "Edit item's Policies",
|
// "item.edit.authorizations.title": "Edit item's Policies",
|
||||||
"item.edit.authorizations.title": "Редагувати політики документа",
|
"item.edit.authorizations.title": "Редагувати політики документа",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// "item.badge.private": "Private",
|
// "item.badge.private": "Private",
|
||||||
"item.badge.private": "Приватне",
|
"item.badge.private": "Приватне",
|
||||||
|
|
||||||
// "item.badge.withdrawn": "Withdrawn",
|
// "item.badge.withdrawn": "Withdrawn",
|
||||||
"item.badge.withdrawn": "Вилучено",
|
"item.badge.withdrawn": "Вилучено",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -2120,7 +2120,7 @@
|
|||||||
// "item.bitstreams.upload.bundle.new": "Create bundle",
|
// "item.bitstreams.upload.bundle.new": "Create bundle",
|
||||||
"item.bitstreams.upload.bundle.new": "Створити контейнер файлів",
|
"item.bitstreams.upload.bundle.new": "Створити контейнер файлів",
|
||||||
|
|
||||||
// "item.bitstreams.upload.bundles.empty": "This item doesn\'t contain any bundles to upload a bitstream to.",
|
// "item.bitstreams.upload.bundles.empty": "This item doesn't contain any bundles to upload a bitstream to.",
|
||||||
"item.bitstreams.upload.bundles.empty": "Цей документ не містить контейнеру файлів, щоб завантажити файл.",
|
"item.bitstreams.upload.bundles.empty": "Цей документ не містить контейнеру файлів, щоб завантажити файл.",
|
||||||
|
|
||||||
// "item.bitstreams.upload.cancel": "Cancel",
|
// "item.bitstreams.upload.cancel": "Cancel",
|
||||||
@@ -2264,10 +2264,10 @@
|
|||||||
|
|
||||||
|
|
||||||
// "item.edit.tabs.mapper.head": "Collection Mapper",
|
// "item.edit.tabs.mapper.head": "Collection Mapper",
|
||||||
"item.edit.tabs.mapper.head": "Карта зібрання",
|
"item.edit.tabs.mapper.head": "Карта зібрання",
|
||||||
|
|
||||||
// "item.edit.tabs.item-mapper.title": "Item Edit - Collection Mapper",
|
// "item.edit.tabs.item-mapper.title": "Item Edit - Collection Mapper",
|
||||||
"item.edit.tabs.item-mapper.title": "Редагування документа - карта зібрання",
|
"item.edit.tabs.item-mapper.title": "Редагування документа - карта зібрання",
|
||||||
|
|
||||||
// "item.edit.item-mapper.buttons.add": "Map item to selected collections",
|
// "item.edit.item-mapper.buttons.add": "Map item to selected collections",
|
||||||
"item.edit.item-mapper.buttons.add": "Карта документа до вибраного зібрання",
|
"item.edit.item-mapper.buttons.add": "Карта документа до вибраного зібрання",
|
||||||
@@ -2341,7 +2341,7 @@
|
|||||||
"item.edit.metadata.edit.buttons.unedit": "Зупинити редагування",
|
"item.edit.metadata.edit.buttons.unedit": "Зупинити редагування",
|
||||||
|
|
||||||
// "item.edit.metadata.empty": "The item currently doesn't contain any metadata. Click Add to start adding a metadata value.",
|
// "item.edit.metadata.empty": "The item currently doesn't contain any metadata. Click Add to start adding a metadata value.",
|
||||||
"item.edit.metadata.empty": "Документ не містить жодних метаданих. Клікніть Додати щоб почати додавати метадані.",
|
"item.edit.metadata.empty": "Документ не містить жодних метаданих. Клікніть Додати щоб почати додавати метадані.",
|
||||||
|
|
||||||
// "item.edit.metadata.headers.edit": "Edit",
|
// "item.edit.metadata.headers.edit": "Edit",
|
||||||
"item.edit.metadata.headers.edit": "Редагувати",
|
"item.edit.metadata.headers.edit": "Редагувати",
|
||||||
@@ -2503,7 +2503,7 @@
|
|||||||
"item.edit.relationships.discard-button": "Відмінити",
|
"item.edit.relationships.discard-button": "Відмінити",
|
||||||
|
|
||||||
// "item.edit.relationships.edit.buttons.add": "Add",
|
// "item.edit.relationships.edit.buttons.add": "Add",
|
||||||
"item.edit.relationships.edit.buttons.add": "Додати",
|
"item.edit.relationships.edit.buttons.add": "Додати",
|
||||||
|
|
||||||
// "item.edit.relationships.edit.buttons.remove": "Remove",
|
// "item.edit.relationships.edit.buttons.remove": "Remove",
|
||||||
"item.edit.relationships.edit.buttons.remove": "Видалити",
|
"item.edit.relationships.edit.buttons.remove": "Видалити",
|
||||||
@@ -2557,7 +2557,7 @@
|
|||||||
"item.edit.tabs.curate.head": "Curate",
|
"item.edit.tabs.curate.head": "Curate",
|
||||||
|
|
||||||
// "item.edit.tabs.curate.title": "Item Edit - Curate",
|
// "item.edit.tabs.curate.title": "Item Edit - Curate",
|
||||||
// TODO translate
|
// TODO translate
|
||||||
"item.edit.tabs.curate.title": "Редагування документа - Curate",
|
"item.edit.tabs.curate.title": "Редагування документа - Curate",
|
||||||
|
|
||||||
// "item.edit.tabs.metadata.head": "Metadata",
|
// "item.edit.tabs.metadata.head": "Metadata",
|
||||||
@@ -2679,28 +2679,25 @@
|
|||||||
|
|
||||||
|
|
||||||
// "item.listelement.badge": "Item",
|
// "item.listelement.badge": "Item",
|
||||||
"item.listelement.badge": "Документ",
|
"item.listelement.badge": "Документ",
|
||||||
|
|
||||||
// "item.page.description": "Description",
|
// "item.page.description": "Description",
|
||||||
"item.page.description": "Опис",
|
"item.page.description": "Опис",
|
||||||
|
|
||||||
// "item.page.edit": "Edit this item",
|
|
||||||
"item.page.edit": "Редагувати цей документ",
|
|
||||||
|
|
||||||
// "item.page.journal-issn": "Journal ISSN",
|
// "item.page.journal-issn": "Journal ISSN",
|
||||||
"item.page.journal-issn": "Номер ISSN",
|
"item.page.journal-issn": "Номер ISSN",
|
||||||
|
|
||||||
// "item.page.journal-title": "Journal Title",
|
// "item.page.journal-title": "Journal Title",
|
||||||
"item.page.journal-title": "Назва журналу",
|
"item.page.journal-title": "Назва журналу",
|
||||||
|
|
||||||
// "item.page.publisher": "Publisher",
|
// "item.page.publisher": "Publisher",
|
||||||
"item.page.publisher": "Видавець",
|
"item.page.publisher": "Видавець",
|
||||||
|
|
||||||
// "item.page.titleprefix": "Item: ",
|
// "item.page.titleprefix": "Item: ",
|
||||||
"item.page.titleprefix": "Документ: ",
|
"item.page.titleprefix": "Документ: ",
|
||||||
|
|
||||||
// "item.page.volume-title": "Volume Title",
|
// "item.page.volume-title": "Volume Title",
|
||||||
"item.page.volume-title": "Назва тому",
|
"item.page.volume-title": "Назва тому",
|
||||||
|
|
||||||
// "item.search.results.head": "Результат пошуку за документами",
|
// "item.search.results.head": "Результат пошуку за документами",
|
||||||
"item.search.results.head": "Результат пошуку за документами",
|
"item.search.results.head": "Результат пошуку за документами",
|
||||||
@@ -2726,7 +2723,7 @@
|
|||||||
"item.page.date": "Дата",
|
"item.page.date": "Дата",
|
||||||
|
|
||||||
// "item.page.edit": "Edit this item",
|
// "item.page.edit": "Edit this item",
|
||||||
"item.page.edit": "Редагувати цей документ",
|
"item.page.edit": "Редагувати цей документ",
|
||||||
|
|
||||||
// "item.page.files": "Files",
|
// "item.page.files": "Files",
|
||||||
"item.page.files": "Файли",
|
"item.page.files": "Файли",
|
||||||
@@ -2783,49 +2780,49 @@
|
|||||||
"item.page.uri": "URI",
|
"item.page.uri": "URI",
|
||||||
|
|
||||||
// "item.page.bitstreams.view-more": "Show more",
|
// "item.page.bitstreams.view-more": "Show more",
|
||||||
"item.page.bitstreams.view-more": "Показати більше",
|
"item.page.bitstreams.view-more": "Показати більше",
|
||||||
|
|
||||||
// "item.page.bitstreams.collapse": "Collapse",
|
// "item.page.bitstreams.collapse": "Collapse",
|
||||||
"item.page.bitstreams.collapse": "Згорнути",
|
"item.page.bitstreams.collapse": "Згорнути",
|
||||||
|
|
||||||
// "item.page.filesection.original.bundle" : "Original bundle",
|
// "item.page.filesection.original.bundle" : "Original bundle",
|
||||||
"item.page.filesection.original.bundle" : "Контейнер файлів",
|
"item.page.filesection.original.bundle": "Контейнер файлів",
|
||||||
|
|
||||||
// "item.page.filesection.license.bundle" : "License bundle",
|
// "item.page.filesection.license.bundle" : "License bundle",
|
||||||
"item.page.filesection.license.bundle" : "Ліцензійна угода",
|
"item.page.filesection.license.bundle": "Ліцензійна угода",
|
||||||
|
|
||||||
// "item.preview.dc.identifier.uri": "Identifier:",
|
// "item.preview.dc.identifier.uri": "Identifier:",
|
||||||
"item.preview.dc.identifier.uri": "Ідентифікатор:",
|
"item.preview.dc.identifier.uri": "Ідентифікатор:",
|
||||||
|
|
||||||
// "item.preview.dc.contributor.author": "Authors:",
|
// "item.preview.dc.contributor.author": "Authors:",
|
||||||
"item.preview.dc.contributor.author": "Автори:",
|
"item.preview.dc.contributor.author": "Автори:",
|
||||||
|
|
||||||
// "item.preview.dc.date.issued": "Published date:",
|
// "item.preview.dc.date.issued": "Published date:",
|
||||||
"item.preview.dc.date.issued": "Дата публікації:",
|
"item.preview.dc.date.issued": "Дата публікації:",
|
||||||
|
|
||||||
// "item.preview.dc.description.abstract": "Abstract:",
|
// "item.preview.dc.description.abstract": "Abstract:",
|
||||||
"item.preview.dc.description.abstract": "Анотація:",
|
"item.preview.dc.description.abstract": "Анотація:",
|
||||||
|
|
||||||
// "item.preview.dc.identifier.other": "Other identifier:",
|
// "item.preview.dc.identifier.other": "Other identifier:",
|
||||||
"item.preview.dc.identifier.other": "Інший ідентифікатор:",
|
"item.preview.dc.identifier.other": "Інший ідентифікатор:",
|
||||||
|
|
||||||
// "item.preview.dc.language.iso": "Language:",
|
// "item.preview.dc.language.iso": "Language:",
|
||||||
"item.preview.dc.language.iso": "Мова:",
|
"item.preview.dc.language.iso": "Мова:",
|
||||||
|
|
||||||
// "item.preview.dc.subject": "Subjects:",
|
// "item.preview.dc.subject": "Subjects:",
|
||||||
"item.preview.dc.subject": "Ключові слова:",
|
"item.preview.dc.subject": "Ключові слова:",
|
||||||
|
|
||||||
// "item.preview.dc.title": "Title:",
|
// "item.preview.dc.title": "Title:",
|
||||||
"item.preview.dc.title": "Назва:",
|
"item.preview.dc.title": "Назва:",
|
||||||
|
|
||||||
// "item.preview.person.familyName": "Surname:",
|
// "item.preview.person.familyName": "Surname:",
|
||||||
"item.preview.person.familyName": "Прізвище:",
|
"item.preview.person.familyName": "Прізвище:",
|
||||||
|
|
||||||
// "item.preview.person.givenName": "Name:",
|
// "item.preview.person.givenName": "Name:",
|
||||||
"item.preview.person.givenName": "Ім'я:",
|
"item.preview.person.givenName": "Ім'я:",
|
||||||
|
|
||||||
// "item.preview.person.identifier.orcid": "ORCID:",
|
// "item.preview.person.identifier.orcid": "ORCID:",
|
||||||
"item.preview.person.identifier.orcid": "ORCID:",
|
"item.preview.person.identifier.orcid": "ORCID:",
|
||||||
|
|
||||||
|
|
||||||
// "item.select.confirm": "Confirm selected",
|
// "item.select.confirm": "Confirm selected",
|
||||||
@@ -2885,7 +2882,7 @@
|
|||||||
"journal.page.description": "Опис",
|
"journal.page.description": "Опис",
|
||||||
|
|
||||||
// "journal.page.edit": "Edit this item",
|
// "journal.page.edit": "Edit this item",
|
||||||
"journal.page.edit": "Редагувати цей документ",
|
"journal.page.edit": "Редагувати цей документ",
|
||||||
|
|
||||||
// "journal.page.editor": "Editor-in-Chief",
|
// "journal.page.editor": "Editor-in-Chief",
|
||||||
"journal.page.editor": "Головний редактор",
|
"journal.page.editor": "Головний редактор",
|
||||||
@@ -2914,7 +2911,7 @@
|
|||||||
"journalissue.page.description": "Опис",
|
"journalissue.page.description": "Опис",
|
||||||
|
|
||||||
// "journalissue.page.edit": "Edit this item",
|
// "journalissue.page.edit": "Edit this item",
|
||||||
"journalissue.page.edit": "Редагувати цей документ",
|
"journalissue.page.edit": "Редагувати цей документ",
|
||||||
|
|
||||||
// "journalissue.page.issuedate": "Issue Date",
|
// "journalissue.page.issuedate": "Issue Date",
|
||||||
"journalissue.page.issuedate": "Дата випуску",
|
"journalissue.page.issuedate": "Дата випуску",
|
||||||
@@ -3550,7 +3547,7 @@
|
|||||||
|
|
||||||
|
|
||||||
// "process.new.select-parameters": "Parameters",
|
// "process.new.select-parameters": "Parameters",
|
||||||
"process.new.select-parameters": "Параметри",
|
"process.new.select-parameters": "Параметри",
|
||||||
|
|
||||||
// "process.new.cancel": "Cancel",
|
// "process.new.cancel": "Cancel",
|
||||||
"process.new.cancel": "Відмінити",
|
"process.new.cancel": "Відмінити",
|
||||||
@@ -3574,16 +3571,16 @@
|
|||||||
"process.new.parameter.file.required": "Виберіть файл",
|
"process.new.parameter.file.required": "Виберіть файл",
|
||||||
|
|
||||||
// "process.new.parameter.string.required": "Parameter value is required",
|
// "process.new.parameter.string.required": "Parameter value is required",
|
||||||
"process.new.parameter.string.required": "Цей параметр є обв'язковим",
|
"process.new.parameter.string.required": "Цей параметр є обв'язковим",
|
||||||
|
|
||||||
// "process.new.parameter.type.value": "value",
|
// "process.new.parameter.type.value": "value",
|
||||||
"process.new.parameter.type.value": "значення",
|
"process.new.parameter.type.value": "значення",
|
||||||
|
|
||||||
// "process.new.parameter.type.file": "file",
|
// "process.new.parameter.type.file": "file",
|
||||||
"process.new.parameter.type.file": "файл",
|
"process.new.parameter.type.file": "файл",
|
||||||
|
|
||||||
// "process.new.parameter.required.missing": "The following parameters are required but still missing:",
|
// "process.new.parameter.required.missing": "The following parameters are required but still missing:",
|
||||||
"process.new.parameter.required.missing": "Наступні параметри є обов’язковими, але все ще відсутні:",
|
"process.new.parameter.required.missing": "Наступні параметри є обов’язковими, але все ще відсутні:",
|
||||||
|
|
||||||
// "process.new.notification.success.title": "Success",
|
// "process.new.notification.success.title": "Success",
|
||||||
"process.new.notification.success.title": "Успіх",
|
"process.new.notification.success.title": "Успіх",
|
||||||
@@ -3592,7 +3589,7 @@
|
|||||||
"process.new.notification.success.content": "Процес успішно запущено",
|
"process.new.notification.success.content": "Процес успішно запущено",
|
||||||
|
|
||||||
// "process.new.notification.error.title": "Error",
|
// "process.new.notification.error.title": "Error",
|
||||||
"process.new.notification.error.title": "Виникла якась помилка, бодай би вона скисла",
|
"process.new.notification.error.title": "Виникла якась помилка, бодай би вона скисла",
|
||||||
|
|
||||||
// "process.new.notification.error.content": "An error occurred while creating this process",
|
// "process.new.notification.error.content": "An error occurred while creating this process",
|
||||||
"process.new.notification.error.content": "Виникла помилка при створенні процесу",
|
"process.new.notification.error.content": "Виникла помилка при створенні процесу",
|
||||||
@@ -3604,21 +3601,21 @@
|
|||||||
"process.new.title": "Створити новий процес",
|
"process.new.title": "Створити новий процес",
|
||||||
|
|
||||||
// "process.new.breadcrumbs": "Create a new process",
|
// "process.new.breadcrumbs": "Create a new process",
|
||||||
"process.new.breadcrumbs": "Створити новий процес",
|
"process.new.breadcrumbs": "Створити новий процес",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// "process.detail.arguments" : "Arguments",
|
// "process.detail.arguments" : "Arguments",
|
||||||
"process.detail.arguments" : "Аргументи",
|
"process.detail.arguments": "Аргументи",
|
||||||
|
|
||||||
// "process.detail.arguments.empty" : "This process doesn't contain any arguments",
|
// "process.detail.arguments.empty" : "This process doesn't contain any arguments",
|
||||||
"process.detail.arguments.empty" : "Процес не містить жодних аргументів",
|
"process.detail.arguments.empty": "Процес не містить жодних аргументів",
|
||||||
|
|
||||||
// "process.detail.back" : "Back",
|
// "process.detail.back" : "Back",
|
||||||
"process.detail.back" : "Повернутись",
|
"process.detail.back": "Повернутись",
|
||||||
|
|
||||||
// "process.detail.output" : "Process Output",
|
// "process.detail.output" : "Process Output",
|
||||||
"process.detail.output" : "Прооцес завершено",
|
"process.detail.output": "Прооцес завершено",
|
||||||
|
|
||||||
// "process.detail.logs.button": "Retrieve process output",
|
// "process.detail.logs.button": "Retrieve process output",
|
||||||
"process.detail.logs.button": "Отримати вихідні дані процесу",
|
"process.detail.logs.button": "Отримати вихідні дані процесу",
|
||||||
@@ -3630,48 +3627,48 @@
|
|||||||
"process.detail.logs.none": "Процес не генерує вихідних даних",
|
"process.detail.logs.none": "Процес не генерує вихідних даних",
|
||||||
|
|
||||||
// "process.detail.output-files" : "Output Files",
|
// "process.detail.output-files" : "Output Files",
|
||||||
"process.detail.output-files" : "Вихідні файли",
|
"process.detail.output-files": "Вихідні файли",
|
||||||
|
|
||||||
// "process.detail.output-files.empty" : "This process doesn't contain any output files",
|
// "process.detail.output-files.empty" : "This process doesn't contain any output files",
|
||||||
"process.detail.output-files.empty" : "Процес не містить жодних вихдних файлів",
|
"process.detail.output-files.empty": "Процес не містить жодних вихдних файлів",
|
||||||
|
|
||||||
// "process.detail.script" : "Script",
|
// "process.detail.script" : "Script",
|
||||||
"process.detail.script" : "Скрипт",
|
"process.detail.script": "Скрипт",
|
||||||
|
|
||||||
// "process.detail.title" : "Process: {{ id }} - {{ name }}",
|
// "process.detail.title" : "Process: {{ id }} - {{ name }}",
|
||||||
"process.detail.title" : "Процеси: {{ id }} - {{ name }}",
|
"process.detail.title": "Процеси: {{ id }} - {{ name }}",
|
||||||
|
|
||||||
// "process.detail.start-time" : "Start time",
|
// "process.detail.start-time" : "Start time",
|
||||||
"process.detail.start-time" : "Дата старту",
|
"process.detail.start-time": "Дата старту",
|
||||||
|
|
||||||
// "process.detail.end-time" : "Finish time",
|
// "process.detail.end-time" : "Finish time",
|
||||||
"process.detail.end-time" : "Дата завершення",
|
"process.detail.end-time": "Дата завершення",
|
||||||
|
|
||||||
// "process.detail.status" : "Status",
|
// "process.detail.status" : "Status",
|
||||||
"process.detail.status" : "Статус",
|
"process.detail.status": "Статус",
|
||||||
|
|
||||||
// "process.detail.create" : "Create similar process",
|
// "process.detail.create" : "Create similar process",
|
||||||
"process.detail.create" : "Створіть аналогічний процес",
|
"process.detail.create": "Створіть аналогічний процес",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// "process.overview.table.finish" : "Finish time",
|
// "process.overview.table.finish" : "Finish time",
|
||||||
"process.overview.table.finish" : "Дата завершення",
|
"process.overview.table.finish": "Дата завершення",
|
||||||
|
|
||||||
// "process.overview.table.id" : "Process ID",
|
// "process.overview.table.id" : "Process ID",
|
||||||
"process.overview.table.id" : "ID процесу",
|
"process.overview.table.id": "ID процесу",
|
||||||
|
|
||||||
// "process.overview.table.name" : "Name",
|
// "process.overview.table.name" : "Name",
|
||||||
"process.overview.table.name" : "Назва",
|
"process.overview.table.name": "Назва",
|
||||||
|
|
||||||
// "process.overview.table.start" : "Start time",
|
// "process.overview.table.start" : "Start time",
|
||||||
"process.overview.table.start" : "Дата старту",
|
"process.overview.table.start": "Дата старту",
|
||||||
|
|
||||||
// "process.overview.table.status" : "Status",
|
// "process.overview.table.status" : "Status",
|
||||||
"process.overview.table.status" : "Статус",
|
"process.overview.table.status": "Статус",
|
||||||
|
|
||||||
// "process.overview.table.user" : "User",
|
// "process.overview.table.user" : "User",
|
||||||
"process.overview.table.user" : "Користувач",
|
"process.overview.table.user": "Користувач",
|
||||||
|
|
||||||
// "process.overview.title": "Processes Overview",
|
// "process.overview.title": "Processes Overview",
|
||||||
"process.overview.title": "Огляд процесів",
|
"process.overview.title": "Огляд процесів",
|
||||||
@@ -4913,7 +4910,7 @@
|
|||||||
|
|
||||||
"submission.sections.describe.relationship-lookup.title.isJournalIssueOfPublication": "Випуски видання",
|
"submission.sections.describe.relationship-lookup.title.isJournalIssueOfPublication": "Випуски видання",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.title.JournalIssue": "Journal Issues",
|
// "submission.sections.describe.relationship-lookup.title.JournalIssue": "Journal Issues",
|
||||||
|
|
||||||
"submission.sections.describe.relationship-lookup.title.JournalIssue": "Випуски видання",
|
"submission.sections.describe.relationship-lookup.title.JournalIssue": "Випуски видання",
|
||||||
|
|
||||||
@@ -5067,7 +5064,7 @@
|
|||||||
|
|
||||||
"submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Результати пошуку",
|
"submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Результати пошуку",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don\'t you can still use it for this submission.",
|
// "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don't you can still use it for this submission.",
|
||||||
"submission.sections.describe.relationship-lookup.name-variant.notification.content": "Чи бажаєте ви зберегти \"{{ value }}\" як варіант імені для цього користувача, щоб ви та інші могли повторно використовувати його для майбутніх надсилань? Якщо ви цього не зробите, ви можете використовувати його для цього надсилання.",
|
"submission.sections.describe.relationship-lookup.name-variant.notification.content": "Чи бажаєте ви зберегти \"{{ value }}\" як варіант імені для цього користувача, щоб ви та інші могли повторно використовувати його для майбутніх надсилань? Якщо ви цього не зробите, ви можете використовувати його для цього надсилання.",
|
||||||
|
|
||||||
// "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant",
|
// "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant",
|
||||||
@@ -5197,7 +5194,7 @@
|
|||||||
"submission.sections.upload.form.access-condition-label": "Умови доступу",
|
"submission.sections.upload.form.access-condition-label": "Умови доступу",
|
||||||
|
|
||||||
// "submission.sections.upload.form.date-required": "Date is required.",
|
// "submission.sections.upload.form.date-required": "Date is required.",
|
||||||
"submission.sections.upload.form.date-required": "Поле дати є обов\'язковим для заповнення.",
|
"submission.sections.upload.form.date-required": "Поле дати є обов'язковим для заповнення.",
|
||||||
|
|
||||||
// "submission.sections.upload.form.from-label": "Grant access from",
|
// "submission.sections.upload.form.from-label": "Grant access from",
|
||||||
|
|
||||||
@@ -5210,7 +5207,7 @@
|
|||||||
"submission.sections.upload.form.group-label": "Група",
|
"submission.sections.upload.form.group-label": "Група",
|
||||||
|
|
||||||
// "submission.sections.upload.form.group-required": "Group is required.",
|
// "submission.sections.upload.form.group-required": "Group is required.",
|
||||||
"submission.sections.upload.form.group-required": "Група є обов\'язковою.",
|
"submission.sections.upload.form.group-required": "Група є обов'язковою.",
|
||||||
|
|
||||||
// "submission.sections.upload.form.until-label": "Grant access until",
|
// "submission.sections.upload.form.until-label": "Grant access until",
|
||||||
|
|
||||||
@@ -5469,7 +5466,7 @@
|
|||||||
|
|
||||||
// "workflow-item.send-back.button.confirm": "Send back"
|
// "workflow-item.send-back.button.confirm": "Send back"
|
||||||
|
|
||||||
"workflow-item.send-back.button.confirm": "Надіслати назад"
|
"workflow-item.send-back.button.confirm": "Надіслати назад",
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -3,7 +3,6 @@ import 'reflect-metadata';
|
|||||||
import 'core-js/es/reflect';
|
import 'core-js/es/reflect';
|
||||||
|
|
||||||
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
|
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
|
||||||
import { load as loadWebFont } from 'webfontloader';
|
|
||||||
|
|
||||||
import { BrowserAppModule } from './modules/app/browser-app.module';
|
import { BrowserAppModule } from './modules/app/browser-app.module';
|
||||||
|
|
||||||
@@ -24,14 +23,6 @@ const bootstrap = () => platformBrowserDynamic()
|
|||||||
const hasTransferState = document.querySelector('script#dspace-angular-state') !== null;
|
const hasTransferState = document.querySelector('script#dspace-angular-state') !== null;
|
||||||
|
|
||||||
const main = () => {
|
const main = () => {
|
||||||
// Load fonts async
|
|
||||||
// https://github.com/typekit/webfontloader#configuration
|
|
||||||
loadWebFont({
|
|
||||||
google: {
|
|
||||||
families: ['Droid Sans']
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
if (environment.production) {
|
if (environment.production) {
|
||||||
enableProdMode();
|
enableProdMode();
|
||||||
}
|
}
|
||||||
|
@@ -26,16 +26,21 @@ import { AuthService } from '../../app/core/auth/auth.service';
|
|||||||
import { ThemeService } from '../../app/shared/theme-support/theme.service';
|
import { ThemeService } from '../../app/shared/theme-support/theme.service';
|
||||||
import { StoreAction, StoreActionTypes } from '../../app/store.actions';
|
import { StoreAction, StoreActionTypes } from '../../app/store.actions';
|
||||||
import { coreSelector } from '../../app/core/core.selectors';
|
import { coreSelector } from '../../app/core/core.selectors';
|
||||||
import { find, map } from 'rxjs/operators';
|
import { filter, find, map } from 'rxjs/operators';
|
||||||
import { isNotEmpty } from '../../app/shared/empty.util';
|
import { isNotEmpty } from '../../app/shared/empty.util';
|
||||||
import { logStartupMessage } from '../../../startup-message';
|
import { logStartupMessage } from '../../../startup-message';
|
||||||
import { MenuService } from '../../app/shared/menu/menu.service';
|
import { MenuService } from '../../app/shared/menu/menu.service';
|
||||||
|
import { RootDataService } from '../../app/core/data/root-data.service';
|
||||||
|
import { firstValueFrom, Subscription } from 'rxjs';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Performs client-side initialization.
|
* Performs client-side initialization.
|
||||||
*/
|
*/
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class BrowserInitService extends InitService {
|
export class BrowserInitService extends InitService {
|
||||||
|
|
||||||
|
sub: Subscription;
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
protected store: Store<AppState>,
|
protected store: Store<AppState>,
|
||||||
protected correlationIdService: CorrelationIdService,
|
protected correlationIdService: CorrelationIdService,
|
||||||
@@ -51,6 +56,7 @@ export class BrowserInitService extends InitService {
|
|||||||
protected authService: AuthService,
|
protected authService: AuthService,
|
||||||
protected themeService: ThemeService,
|
protected themeService: ThemeService,
|
||||||
protected menuService: MenuService,
|
protected menuService: MenuService,
|
||||||
|
private rootDataService: RootDataService
|
||||||
) {
|
) {
|
||||||
super(
|
super(
|
||||||
store,
|
store,
|
||||||
@@ -80,6 +86,7 @@ export class BrowserInitService extends InitService {
|
|||||||
return async () => {
|
return async () => {
|
||||||
await this.loadAppState();
|
await this.loadAppState();
|
||||||
this.checkAuthenticationToken();
|
this.checkAuthenticationToken();
|
||||||
|
this.externalAuthCheck();
|
||||||
this.initCorrelationId();
|
this.initCorrelationId();
|
||||||
|
|
||||||
this.checkEnvironment();
|
this.checkEnvironment();
|
||||||
@@ -134,4 +141,35 @@ export class BrowserInitService extends InitService {
|
|||||||
protected initGoogleAnalytics() {
|
protected initGoogleAnalytics() {
|
||||||
this.googleAnalyticsService.addTrackingIdToPage();
|
this.googleAnalyticsService.addTrackingIdToPage();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* During an external authentication flow invalidate the SSR transferState
|
||||||
|
* data in the cache. This allows the app to fetch fresh content.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
private externalAuthCheck() {
|
||||||
|
|
||||||
|
this.sub = this.authService.isExternalAuthentication().pipe(
|
||||||
|
filter((externalAuth: boolean) => externalAuth)
|
||||||
|
).subscribe(() => {
|
||||||
|
// Clear the transferState data.
|
||||||
|
this.rootDataService.invalidateRootCache();
|
||||||
|
this.authService.setExternalAuthStatus(false);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
this.closeAuthCheckSubscription();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Unsubscribe the external authentication subscription
|
||||||
|
* when authentication is no longer blocking.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
private closeAuthCheckSubscription() {
|
||||||
|
firstValueFrom(this.authenticationReady$()).then(() => {
|
||||||
|
this.sub.unsubscribe();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
23
yarn.lock
23
yarn.lock
@@ -5388,6 +5388,15 @@ eslint-plugin-jsdoc@^39.6.4:
|
|||||||
semver "^7.3.8"
|
semver "^7.3.8"
|
||||||
spdx-expression-parse "^3.0.1"
|
spdx-expression-parse "^3.0.1"
|
||||||
|
|
||||||
|
eslint-plugin-jsonc@^2.6.0:
|
||||||
|
version "2.6.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/eslint-plugin-jsonc/-/eslint-plugin-jsonc-2.6.0.tgz#5a439ec15b4930c022bf157264a3d4f4712b982c"
|
||||||
|
integrity sha512-4bA9YTx58QaWalua1Q1b82zt7eZMB7i+ed8q8cKkbKP75ofOA2SXbtFyCSok7RY6jIXeCqQnKjN9If8zCgv6PA==
|
||||||
|
dependencies:
|
||||||
|
eslint-utils "^3.0.0"
|
||||||
|
jsonc-eslint-parser "^2.0.4"
|
||||||
|
natural-compare "^1.4.0"
|
||||||
|
|
||||||
eslint-plugin-lodash@^7.4.0:
|
eslint-plugin-lodash@^7.4.0:
|
||||||
version "7.4.0"
|
version "7.4.0"
|
||||||
resolved "https://registry.npmjs.org/eslint-plugin-lodash/-/eslint-plugin-lodash-7.4.0.tgz"
|
resolved "https://registry.npmjs.org/eslint-plugin-lodash/-/eslint-plugin-lodash-7.4.0.tgz"
|
||||||
@@ -5443,7 +5452,7 @@ eslint-visitor-keys@^2.0.0:
|
|||||||
resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz"
|
resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz"
|
||||||
integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==
|
integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==
|
||||||
|
|
||||||
eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.0:
|
eslint-visitor-keys@^3.0.0, eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.0:
|
||||||
version "3.4.0"
|
version "3.4.0"
|
||||||
resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.0.tgz"
|
resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.0.tgz"
|
||||||
integrity sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ==
|
integrity sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ==
|
||||||
@@ -5499,7 +5508,7 @@ esm@^3.2.25:
|
|||||||
resolved "https://registry.npmjs.org/esm/-/esm-3.2.25.tgz"
|
resolved "https://registry.npmjs.org/esm/-/esm-3.2.25.tgz"
|
||||||
integrity sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==
|
integrity sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==
|
||||||
|
|
||||||
espree@^9.5.1:
|
espree@^9.0.0, espree@^9.5.1:
|
||||||
version "9.5.1"
|
version "9.5.1"
|
||||||
resolved "https://registry.npmjs.org/espree/-/espree-9.5.1.tgz"
|
resolved "https://registry.npmjs.org/espree/-/espree-9.5.1.tgz"
|
||||||
integrity sha512-5yxtHSZXRSW5pvv3hAlXM5+/Oswi1AUFqBmbibKb5s6bp3rGIDkyXU6xCoyuuLhijr4SFwPrXRoZjz0AZDN9tg==
|
integrity sha512-5yxtHSZXRSW5pvv3hAlXM5+/Oswi1AUFqBmbibKb5s6bp3rGIDkyXU6xCoyuuLhijr4SFwPrXRoZjz0AZDN9tg==
|
||||||
@@ -7310,6 +7319,16 @@ json5@^2.1.2, json5@^2.2.1, json5@^2.2.2, json5@^2.2.3:
|
|||||||
resolved "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz"
|
resolved "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz"
|
||||||
integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==
|
integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==
|
||||||
|
|
||||||
|
jsonc-eslint-parser@^2.0.4:
|
||||||
|
version "2.1.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/jsonc-eslint-parser/-/jsonc-eslint-parser-2.1.0.tgz#4c126b530aa583d85308d0b3041ff81ce402bbb2"
|
||||||
|
integrity sha512-qCRJWlbP2v6HbmKW7R3lFbeiVWHo+oMJ0j+MizwvauqnCV/EvtAeEeuCgoc/ErtsuoKgYB8U4Ih8AxJbXoE6/g==
|
||||||
|
dependencies:
|
||||||
|
acorn "^8.5.0"
|
||||||
|
eslint-visitor-keys "^3.0.0"
|
||||||
|
espree "^9.0.0"
|
||||||
|
semver "^7.3.5"
|
||||||
|
|
||||||
jsonc-parser@3.0.0, jsonc-parser@^3.0.0:
|
jsonc-parser@3.0.0, jsonc-parser@^3.0.0:
|
||||||
version "3.0.0"
|
version "3.0.0"
|
||||||
resolved "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.0.0.tgz"
|
resolved "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.0.0.tgz"
|
||||||
|
Reference in New Issue
Block a user