mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 18:14:17 +00:00
Merge remote-tracking branch 'upstream/main' into #885-media-viewer
This commit is contained in:
@@ -160,6 +160,7 @@ import { EndUserAgreementService } from './end-user-agreement/end-user-agreement
|
|||||||
import { SiteRegisterGuard } from './data/feature-authorization/feature-authorization-guard/site-register.guard';
|
import { SiteRegisterGuard } from './data/feature-authorization/feature-authorization-guard/site-register.guard';
|
||||||
import { ShortLivedToken } from './auth/models/short-lived-token.model';
|
import { ShortLivedToken } from './auth/models/short-lived-token.model';
|
||||||
import { UsageReport } from './statistics/models/usage-report.model';
|
import { UsageReport } from './statistics/models/usage-report.model';
|
||||||
|
import { RootDataService } from './data/root-data.service';
|
||||||
import { Root } from './data/root.model';
|
import { Root } from './data/root.model';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -279,6 +280,7 @@ const PROVIDERS = [
|
|||||||
EndUserAgreementCurrentUserGuard,
|
EndUserAgreementCurrentUserGuard,
|
||||||
EndUserAgreementCookieGuard,
|
EndUserAgreementCookieGuard,
|
||||||
EndUserAgreementService,
|
EndUserAgreementService,
|
||||||
|
RootDataService,
|
||||||
// register AuthInterceptor as HttpInterceptor
|
// register AuthInterceptor as HttpInterceptor
|
||||||
{
|
{
|
||||||
provide: HTTP_INTERCEPTORS,
|
provide: HTTP_INTERCEPTORS,
|
||||||
@@ -353,6 +355,7 @@ export const models =
|
|||||||
ShortLivedToken,
|
ShortLivedToken,
|
||||||
Registration,
|
Registration,
|
||||||
UsageReport,
|
UsageReport,
|
||||||
|
Root,
|
||||||
];
|
];
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
|
38
src/app/core/data/root-data.service.spec.ts
Normal file
38
src/app/core/data/root-data.service.spec.ts
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
import { RootDataService } from './root-data.service';
|
||||||
|
import { HALEndpointService } from '../shared/hal-endpoint.service';
|
||||||
|
import { createSuccessfulRemoteDataObject$ } from '../../shared/remote-data.utils';
|
||||||
|
import { Observable } from 'rxjs';
|
||||||
|
import { RemoteData } from './remote-data';
|
||||||
|
import { Root } from './root.model';
|
||||||
|
|
||||||
|
describe('RootDataService', () => {
|
||||||
|
let service: RootDataService;
|
||||||
|
let halService: HALEndpointService;
|
||||||
|
let rootEndpoint;
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
rootEndpoint = 'root-endpoint';
|
||||||
|
halService = jasmine.createSpyObj('halService', {
|
||||||
|
getRootHref: rootEndpoint
|
||||||
|
});
|
||||||
|
service = new RootDataService(null, null, null, null, halService, null, null, null);
|
||||||
|
(service as any).dataService = jasmine.createSpyObj('dataService', {
|
||||||
|
findByHref: createSuccessfulRemoteDataObject$({})
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('findRoot', () => {
|
||||||
|
let result$: Observable<RemoteData<Root>>;
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
result$ = service.findRoot();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should call findByHref using the root endpoint', (done) => {
|
||||||
|
result$.subscribe(() => {
|
||||||
|
expect((service as any).dataService.findByHref).toHaveBeenCalledWith(rootEndpoint, true);
|
||||||
|
done();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
103
src/app/core/data/root-data.service.ts
Normal file
103
src/app/core/data/root-data.service.ts
Normal file
@@ -0,0 +1,103 @@
|
|||||||
|
import { DataService } from './data.service';
|
||||||
|
import { Root } from './root.model';
|
||||||
|
import { Injectable } from '@angular/core';
|
||||||
|
import { ROOT } from './root.resource-type';
|
||||||
|
import { dataService } from '../cache/builders/build-decorators';
|
||||||
|
import { RequestService } from './request.service';
|
||||||
|
import { RemoteDataBuildService } from '../cache/builders/remote-data-build.service';
|
||||||
|
import { Store } from '@ngrx/store';
|
||||||
|
import { CoreState } from '../core.reducers';
|
||||||
|
import { ObjectCacheService } from '../cache/object-cache.service';
|
||||||
|
import { HALEndpointService } from '../shared/hal-endpoint.service';
|
||||||
|
import { NotificationsService } from '../../shared/notifications/notifications.service';
|
||||||
|
import { HttpClient } from '@angular/common/http';
|
||||||
|
import { DefaultChangeAnalyzer } from './default-change-analyzer.service';
|
||||||
|
import { Observable } from 'rxjs';
|
||||||
|
import { RemoteData } from './remote-data';
|
||||||
|
import { FollowLinkConfig } from '../../shared/utils/follow-link-config.model';
|
||||||
|
import { FindListOptions } from './request.models';
|
||||||
|
import { PaginatedList } from './paginated-list.model';
|
||||||
|
|
||||||
|
/* tslint:disable:max-classes-per-file */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A private DataService implementation to delegate specific methods to.
|
||||||
|
*/
|
||||||
|
class DataServiceImpl extends DataService<Root> {
|
||||||
|
protected linkPath = '';
|
||||||
|
protected responseMsToLive = 6 * 60 * 60 * 1000;
|
||||||
|
|
||||||
|
constructor(
|
||||||
|
protected requestService: RequestService,
|
||||||
|
protected rdbService: RemoteDataBuildService,
|
||||||
|
protected store: Store<CoreState>,
|
||||||
|
protected objectCache: ObjectCacheService,
|
||||||
|
protected halService: HALEndpointService,
|
||||||
|
protected notificationsService: NotificationsService,
|
||||||
|
protected http: HttpClient,
|
||||||
|
protected comparator: DefaultChangeAnalyzer<Root>) {
|
||||||
|
super();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A service to retrieve the {@link Root} object from the REST API.
|
||||||
|
*/
|
||||||
|
@Injectable()
|
||||||
|
@dataService(ROOT)
|
||||||
|
export class RootDataService {
|
||||||
|
/**
|
||||||
|
* A private DataService instance to delegate specific methods to.
|
||||||
|
*/
|
||||||
|
private dataService: DataServiceImpl;
|
||||||
|
|
||||||
|
constructor(
|
||||||
|
protected requestService: RequestService,
|
||||||
|
protected rdbService: RemoteDataBuildService,
|
||||||
|
protected store: Store<CoreState>,
|
||||||
|
protected objectCache: ObjectCacheService,
|
||||||
|
protected halService: HALEndpointService,
|
||||||
|
protected notificationsService: NotificationsService,
|
||||||
|
protected http: HttpClient,
|
||||||
|
protected comparator: DefaultChangeAnalyzer<Root>) {
|
||||||
|
this.dataService = new DataServiceImpl(requestService, rdbService, null, objectCache, halService, notificationsService, http, comparator);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Find the {@link Root} object of the REST API
|
||||||
|
* @param reRequestOnStale Whether or not the request should automatically be re-requested after
|
||||||
|
* the response becomes stale
|
||||||
|
* @param linksToFollow List of {@link FollowLinkConfig} that indicate which {@link HALLink}s should be automatically resolved
|
||||||
|
*/
|
||||||
|
findRoot(reRequestOnStale = true, ...linksToFollow: FollowLinkConfig<Root>[]): Observable<RemoteData<Root>> {
|
||||||
|
return this.dataService.findByHref(this.halService.getRootHref(), reRequestOnStale, ...linksToFollow);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns an observable of {@link RemoteData} of an object, based on an href, with a list of
|
||||||
|
* {@link FollowLinkConfig}, to automatically resolve {@link HALLink}s of the object
|
||||||
|
* @param href The url of object we want to retrieve
|
||||||
|
* @param reRequestOnStale Whether or not the request should automatically be re-requested after
|
||||||
|
* the response becomes stale
|
||||||
|
* @param linksToFollow List of {@link FollowLinkConfig} that indicate which {@link HALLink}s
|
||||||
|
* should be automatically resolved
|
||||||
|
*/
|
||||||
|
findByHref(href: string, reRequestOnStale = true, ...linksToFollow: FollowLinkConfig<Root>[]): Observable<RemoteData<Root>> {
|
||||||
|
return this.dataService.findByHref(href, reRequestOnStale, ...linksToFollow);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns a list of observables of {@link RemoteData} of objects, based on an href, with a list
|
||||||
|
* of {@link FollowLinkConfig}, to automatically resolve {@link HALLink}s of the object
|
||||||
|
* @param href The url of object we want to retrieve
|
||||||
|
* @param findListOptions Find list options object
|
||||||
|
* @param reRequestOnStale Whether or not the request should automatically be re-requested after
|
||||||
|
* the response becomes stale
|
||||||
|
* @param linksToFollow List of {@link FollowLinkConfig} that indicate which {@link HALLink}s
|
||||||
|
* should be automatically resolved
|
||||||
|
*/
|
||||||
|
findAllByHref(href: string, findListOptions: FindListOptions = {}, reRequestOnStale = true, ...linksToFollow: FollowLinkConfig<Root>[]): Observable<RemoteData<PaginatedList<Root>>> {
|
||||||
|
return this.dataService.findAllByHref(href, findListOptions, reRequestOnStale, ...linksToFollow);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/* tslint:enable:max-classes-per-file */
|
@@ -38,6 +38,12 @@ export class Root implements CacheableObject {
|
|||||||
@autoserialize
|
@autoserialize
|
||||||
dspaceServer: string;
|
dspaceServer: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The current DSpace version
|
||||||
|
*/
|
||||||
|
@autoserialize
|
||||||
|
dspaceVersion: string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The {@link HALLink}s for the root object
|
* The {@link HALLink}s for the root object
|
||||||
*/
|
*/
|
||||||
|
@@ -53,6 +53,8 @@ import { environment } from '../../../environments/environment';
|
|||||||
import { storeModuleConfig } from '../../app.reducer';
|
import { storeModuleConfig } from '../../app.reducer';
|
||||||
import { HardRedirectService } from '../services/hard-redirect.service';
|
import { HardRedirectService } from '../services/hard-redirect.service';
|
||||||
import { URLCombiner } from '../url-combiner/url-combiner';
|
import { URLCombiner } from '../url-combiner/url-combiner';
|
||||||
|
import { RootDataService } from '../data/root-data.service';
|
||||||
|
import { Root } from '../data/root.model';
|
||||||
|
|
||||||
/* tslint:disable:max-classes-per-file */
|
/* tslint:disable:max-classes-per-file */
|
||||||
@Component({
|
@Component({
|
||||||
@@ -91,6 +93,7 @@ describe('MetadataService', () => {
|
|||||||
let remoteDataBuildService: RemoteDataBuildService;
|
let remoteDataBuildService: RemoteDataBuildService;
|
||||||
let itemDataService: ItemDataService;
|
let itemDataService: ItemDataService;
|
||||||
let authService: AuthService;
|
let authService: AuthService;
|
||||||
|
let rootService: RootDataService;
|
||||||
|
|
||||||
let location: Location;
|
let location: Location;
|
||||||
let router: Router;
|
let router: Router;
|
||||||
@@ -130,6 +133,11 @@ describe('MetadataService', () => {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
rootService = jasmine.createSpyObj('rootService', {
|
||||||
|
findRoot: createSuccessfulRemoteDataObject$(Object.assign(new Root(), {
|
||||||
|
dspaceVersion: 'mock-dspace-version'
|
||||||
|
}))
|
||||||
|
});
|
||||||
|
|
||||||
TestBed.configureTestingModule({
|
TestBed.configureTestingModule({
|
||||||
imports: [
|
imports: [
|
||||||
@@ -168,6 +176,7 @@ describe('MetadataService', () => {
|
|||||||
{ provide: DefaultChangeAnalyzer, useValue: {} },
|
{ provide: DefaultChangeAnalyzer, useValue: {} },
|
||||||
{ provide: BitstreamFormatDataService, useValue: mockBitstreamFormatDataService },
|
{ provide: BitstreamFormatDataService, useValue: mockBitstreamFormatDataService },
|
||||||
{ provide: BitstreamDataService, useValue: mockBitstreamDataService },
|
{ provide: BitstreamDataService, useValue: mockBitstreamDataService },
|
||||||
|
{ provide: RootDataService, useValue: rootService },
|
||||||
Meta,
|
Meta,
|
||||||
Title,
|
Title,
|
||||||
// tslint:disable-next-line:no-empty
|
// tslint:disable-next-line:no-empty
|
||||||
@@ -225,17 +234,18 @@ describe('MetadataService', () => {
|
|||||||
expect(tagStore.get('citation_technical_report_institution')[0].content).toEqual('Mock Publisher');
|
expect(tagStore.get('citation_technical_report_institution')[0].content).toEqual('Mock Publisher');
|
||||||
}));
|
}));
|
||||||
|
|
||||||
it('other navigation should title and description', fakeAsync(() => {
|
it('other navigation should add title, description and Generator', fakeAsync(() => {
|
||||||
spyOn(itemDataService, 'findById').and.returnValue(mockRemoteData(ItemMock));
|
spyOn(itemDataService, 'findById').and.returnValue(mockRemoteData(ItemMock));
|
||||||
router.navigate(['/items/0ec7ff22-f211-40ab-a69e-c819b0b1f357']);
|
router.navigate(['/items/0ec7ff22-f211-40ab-a69e-c819b0b1f357']);
|
||||||
tick();
|
tick();
|
||||||
expect(tagStore.size).toBeGreaterThan(0);
|
expect(tagStore.size).toBeGreaterThan(0);
|
||||||
router.navigate(['/other']);
|
router.navigate(['/other']);
|
||||||
tick();
|
tick();
|
||||||
expect(tagStore.size).toEqual(2);
|
expect(tagStore.size).toEqual(3);
|
||||||
expect(title.getTitle()).toEqual('Dummy Title');
|
expect(title.getTitle()).toEqual('Dummy Title');
|
||||||
expect(tagStore.get('title')[0].content).toEqual('Dummy Title');
|
expect(tagStore.get('title')[0].content).toEqual('Dummy Title');
|
||||||
expect(tagStore.get('description')[0].content).toEqual('This is a dummy item component for testing!');
|
expect(tagStore.get('description')[0].content).toEqual('This is a dummy item component for testing!');
|
||||||
|
expect(tagStore.get('Generator')[0].content).toEqual('mock-dspace-version');
|
||||||
}));
|
}));
|
||||||
|
|
||||||
describe('when the item has no bitstreams', () => {
|
describe('when the item has no bitstreams', () => {
|
||||||
|
@@ -22,6 +22,7 @@ import { Item } from '../shared/item.model';
|
|||||||
import { getFirstSucceededRemoteDataPayload, getFirstSucceededRemoteListPayload } from '../shared/operators';
|
import { getFirstSucceededRemoteDataPayload, getFirstSucceededRemoteListPayload } from '../shared/operators';
|
||||||
import { HardRedirectService } from '../services/hard-redirect.service';
|
import { HardRedirectService } from '../services/hard-redirect.service';
|
||||||
import { URLCombiner } from '../url-combiner/url-combiner';
|
import { URLCombiner } from '../url-combiner/url-combiner';
|
||||||
|
import { RootDataService } from '../data/root-data.service';
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class MetadataService {
|
export class MetadataService {
|
||||||
@@ -40,7 +41,8 @@ export class MetadataService {
|
|||||||
private dsoNameService: DSONameService,
|
private dsoNameService: DSONameService,
|
||||||
private bitstreamDataService: BitstreamDataService,
|
private bitstreamDataService: BitstreamDataService,
|
||||||
private bitstreamFormatDataService: BitstreamFormatDataService,
|
private bitstreamFormatDataService: BitstreamFormatDataService,
|
||||||
private redirectService: HardRedirectService
|
private redirectService: HardRedirectService,
|
||||||
|
private rootService: RootDataService
|
||||||
) {
|
) {
|
||||||
// TODO: determine what open graph meta tags are needed and whether
|
// TODO: determine what open graph meta tags are needed and whether
|
||||||
// the differ per route. potentially add image based on DSpaceObject
|
// the differ per route. potentially add image based on DSpaceObject
|
||||||
@@ -91,6 +93,8 @@ export class MetadataService {
|
|||||||
this.addMetaTag('description', translatedDescription);
|
this.addMetaTag('description', translatedDescription);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this.setGenerator();
|
||||||
}
|
}
|
||||||
|
|
||||||
private initialize(dspaceObject: DSpaceObject): void {
|
private initialize(dspaceObject: DSpaceObject): void {
|
||||||
@@ -290,6 +294,15 @@ export class MetadataService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Add <meta name="Generator" ... > to the <head> containing the current DSpace version
|
||||||
|
*/
|
||||||
|
private setGenerator(): void {
|
||||||
|
this.rootService.findRoot().pipe(getFirstSucceededRemoteDataPayload()).subscribe((root) => {
|
||||||
|
this.addMetaTag('Generator', root.dspaceVersion);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
private hasType(value: string): boolean {
|
private hasType(value: string): boolean {
|
||||||
return this.currentObject.value.hasMetadata('dc.type', { value: value, ignoreCase: true });
|
return this.currentObject.value.hasMetadata('dc.type', { value: value, ignoreCase: true });
|
||||||
}
|
}
|
||||||
|
@@ -20,7 +20,7 @@ export class HALEndpointService {
|
|||||||
) {
|
) {
|
||||||
}
|
}
|
||||||
|
|
||||||
protected getRootHref(): string {
|
public getRootHref(): string {
|
||||||
return new RESTURLCombiner().toString();
|
return new RESTURLCombiner().toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -162,7 +162,7 @@
|
|||||||
"admin.registries.metadata.schemas.no-items": "Es gibt keinen Metadatenschemata in der Referenzliste.",
|
"admin.registries.metadata.schemas.no-items": "Es gibt keinen Metadatenschemata in der Referenzliste.",
|
||||||
|
|
||||||
// "admin.registries.metadata.schemas.table.delete": "Delete selected",
|
// "admin.registries.metadata.schemas.table.delete": "Delete selected",
|
||||||
"admin.registries.metadata.schemas.table.delete": "Ausgewählte löschen",
|
"admin.registries.metadata.schemas.table.delete": "Auswahl löschen",
|
||||||
|
|
||||||
// "admin.registries.metadata.schemas.table.id": "ID",
|
// "admin.registries.metadata.schemas.table.id": "ID",
|
||||||
"admin.registries.metadata.schemas.table.id": "ID",
|
"admin.registries.metadata.schemas.table.id": "ID",
|
||||||
@@ -322,19 +322,16 @@
|
|||||||
|
|
||||||
// "admin.access-control.epeople.form.firstName": "First name",
|
// "admin.access-control.epeople.form.firstName": "First name",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"admin.access-control.epeople.form.firstName": "First name",
|
"admin.access-control.epeople.form.firstName": "Vorname",
|
||||||
|
|
||||||
// "admin.access-control.epeople.form.lastName": "Last name",
|
// "admin.access-control.epeople.form.lastName": "Last name",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.epeople.form.lastName": "Nachname",
|
||||||
"admin.access-control.epeople.form.lastName": "Last name",
|
|
||||||
|
|
||||||
// "admin.access-control.epeople.form.email": "E-mail",
|
// "admin.access-control.epeople.form.email": "E-mail",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.epeople.form.email": "E-Mail-Adresse",
|
||||||
"admin.access-control.epeople.form.email": "E-mail",
|
|
||||||
|
|
||||||
// "admin.access-control.epeople.form.emailHint": "Must be valid e-mail address",
|
// "admin.access-control.epeople.form.emailHint": "Must be valid e-mail address",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.epeople.form.emailHint": "Muss eine gültige E-Mail-Adresse sein",
|
||||||
"admin.access-control.epeople.form.emailHint": "Must be valid e-mail address",
|
|
||||||
|
|
||||||
// "admin.access-control.epeople.form.canLogIn": "Can log in",
|
// "admin.access-control.epeople.form.canLogIn": "Can log in",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -690,12 +687,10 @@
|
|||||||
"admin.search.item.reinstate": "Reinstate",
|
"admin.search.item.reinstate": "Reinstate",
|
||||||
|
|
||||||
// "admin.search.item.withdraw": "Withdraw",
|
// "admin.search.item.withdraw": "Withdraw",
|
||||||
// TODO New key - Add a translation
|
"admin.search.item.withdraw": "Zurückziehen",
|
||||||
"admin.search.item.withdraw": "Withdraw",
|
|
||||||
|
|
||||||
// "admin.search.item.withdrawn": "Withdrawn",
|
// "admin.search.item.withdrawn": "Withdrawn",
|
||||||
// TODO New key - Add a translation
|
"admin.search.item.withdrawn": "Zurückgezogen",
|
||||||
"admin.search.item.withdrawn": "Withdrawn",
|
|
||||||
|
|
||||||
// "admin.search.title": "Administrative Search",
|
// "admin.search.title": "Administrative Search",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -704,10 +699,10 @@
|
|||||||
|
|
||||||
|
|
||||||
// "auth.errors.invalid-user": "Invalid email address or password.",
|
// "auth.errors.invalid-user": "Invalid email address or password.",
|
||||||
"auth.errors.invalid-user": "Password oder E-Mail-Adresse ungültig.",
|
"auth.errors.invalid-user": "Passwort oder E-Mail-Adresse ungültig.",
|
||||||
|
|
||||||
// "auth.messages.expired": "Your session has expired. Please log in again.",
|
// "auth.messages.expired": "Your session has expired. Please log in again.",
|
||||||
"auth.messages.expired": "Ihre Sitzung ist abgelaufen, bitte loggen Sie sich erneut ein.",
|
"auth.messages.expired": "Ihre Sitzung ist abgelaufen, bitte melden Sie sich erneut an.",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -942,7 +937,7 @@
|
|||||||
"collection.edit.item-mapper.description": "Sammlungsadministratoren haben die Möglichkeit Ressourcen von einer Sammlung in eine andere zu spiegeln. Man kann nach Ressourcen in anderen Sammlungen suchen und diese spiegeln oder sich eine Liste der gespiegelten Ressourcen anzeigen lassen.",
|
"collection.edit.item-mapper.description": "Sammlungsadministratoren haben die Möglichkeit Ressourcen von einer Sammlung in eine andere zu spiegeln. Man kann nach Ressourcen in anderen Sammlungen suchen und diese spiegeln oder sich eine Liste der gespiegelten Ressourcen anzeigen lassen.",
|
||||||
|
|
||||||
// "collection.edit.item-mapper.head": "Item Mapper - Map Items from Other Collections",
|
// "collection.edit.item-mapper.head": "Item Mapper - Map Items from Other Collections",
|
||||||
"collection.edit.item-mapper.head": "Ressourcen Spiegeln - Spiegelt Ressourcen aus anderen Sammlungen",
|
"collection.edit.item-mapper.head": "Ressourcen spiegeln - Spiegelt Ressourcen aus anderen Sammlungen",
|
||||||
|
|
||||||
// "collection.edit.item-mapper.no-search": "Please enter a query to search",
|
// "collection.edit.item-mapper.no-search": "Please enter a query to search",
|
||||||
"collection.edit.item-mapper.no-search": "Bitte geben Sie eine Suchanfrage ein.",
|
"collection.edit.item-mapper.no-search": "Bitte geben Sie eine Suchanfrage ein.",
|
||||||
@@ -1142,7 +1137,7 @@
|
|||||||
|
|
||||||
|
|
||||||
// "collection.source.update.notifications.error.content": "The provided settings have been tested and didn't work.",
|
// "collection.source.update.notifications.error.content": "The provided settings have been tested and didn't work.",
|
||||||
"collection.source.update.notifications.error.content": "Die angegebenen Einstellen wurden getestet und haben nicht funktioniert.",
|
"collection.source.update.notifications.error.content": "Die angegebenen Einstellungen wurden getestet und haben nicht funktioniert.",
|
||||||
|
|
||||||
// "collection.source.update.notifications.error.title": "Server Error",
|
// "collection.source.update.notifications.error.title": "Server Error",
|
||||||
"collection.source.update.notifications.error.title": "Serverfehler",
|
"collection.source.update.notifications.error.title": "Serverfehler",
|
||||||
@@ -1350,7 +1345,7 @@
|
|||||||
"error.objects": "Fehler beim Laden der Objekte",
|
"error.objects": "Fehler beim Laden der Objekte",
|
||||||
|
|
||||||
// "error.recent-submissions": "Error fetching recent submissions",
|
// "error.recent-submissions": "Error fetching recent submissions",
|
||||||
"error.recent-submissions": "Fehler beim Laden der aktuellsten Veröffentlichungen",
|
"error.recent-submissions": "Fehler beim Laden der neuesten Veröffentlichungen",
|
||||||
|
|
||||||
// "error.search-results": "Error fetching search results",
|
// "error.search-results": "Error fetching search results",
|
||||||
"error.search-results": "Fehler beim Laden der Suchergebnisse",
|
"error.search-results": "Fehler beim Laden der Suchergebnisse",
|
||||||
@@ -1371,7 +1366,7 @@
|
|||||||
"error.validation.license.notgranted": "Um die Veröffentlichung abzuschließen, müssen Sie die Lizenzbedingungen akzeptieren. Wenn Sie zur Zeit dazu nicht in der Lage sind, können Sie Ihre Arbeit sichern und später dazu zurückgkehren, um zuzustimmen oder die Einreichung zu löschen.",
|
"error.validation.license.notgranted": "Um die Veröffentlichung abzuschließen, müssen Sie die Lizenzbedingungen akzeptieren. Wenn Sie zur Zeit dazu nicht in der Lage sind, können Sie Ihre Arbeit sichern und später dazu zurückgkehren, um zuzustimmen oder die Einreichung zu löschen.",
|
||||||
|
|
||||||
// "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.",
|
// "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.",
|
||||||
"error.validation.pattern": "Die Eingabe hat dem folgenden Muster zu entsprechen: {{ pattern }}.",
|
"error.validation.pattern": "Die Eingabe muss dem folgenden Muster entsprechen: {{ pattern }}.",
|
||||||
|
|
||||||
// "error.validation.filerequired": "The file upload is mandatory",
|
// "error.validation.filerequired": "The file upload is mandatory",
|
||||||
"error.validation.filerequired": "Das Hochladen einer Datei ist erforderlich.",
|
"error.validation.filerequired": "Das Hochladen einer Datei ist erforderlich.",
|
||||||
@@ -1407,7 +1402,7 @@
|
|||||||
"form.edit": "Bearbeiten",
|
"form.edit": "Bearbeiten",
|
||||||
|
|
||||||
// "form.edit-help": "Click here to edit the selected value",
|
// "form.edit-help": "Click here to edit the selected value",
|
||||||
"form.edit-help": "Klicken Sie hier, um den ausgwählten Wert zu bearbeiten",
|
"form.edit-help": "Klicken Sie hier, um den ausgewählten Wert zu bearbeiten",
|
||||||
|
|
||||||
// "form.first-name": "First name",
|
// "form.first-name": "First name",
|
||||||
"form.first-name": "Vorname",
|
"form.first-name": "Vorname",
|
||||||
@@ -1422,7 +1417,7 @@
|
|||||||
"form.group-expand": "Auffalten",
|
"form.group-expand": "Auffalten",
|
||||||
|
|
||||||
// "form.group-expand-help": "Click here to expand and add more elements",
|
// "form.group-expand-help": "Click here to expand and add more elements",
|
||||||
"form.group-expand-help": "Zum Ausklappten und Hinzufügen von mehr Elementen, klicken Sie hier",
|
"form.group-expand-help": "Zum Ausklappen und Hinzufügen von weiteren Elementen klicken Sie hier",
|
||||||
|
|
||||||
// "form.last-name": "Last name",
|
// "form.last-name": "Last name",
|
||||||
"form.last-name": "Nachname",
|
"form.last-name": "Nachname",
|
||||||
@@ -1475,7 +1470,7 @@
|
|||||||
"home.top-level-communities.head": "Hauptbereiche in DSpace",
|
"home.top-level-communities.head": "Hauptbereiche in DSpace",
|
||||||
|
|
||||||
// "home.top-level-communities.help": "Select a community to browse its collections.",
|
// "home.top-level-communities.help": "Select a community to browse its collections.",
|
||||||
"home.top-level-communities.help": "Wählen Sie einen Bereiche, um dessen Inhalt anzusehen.",
|
"home.top-level-communities.help": "Wählen Sie einen Bereich, um dessen Inhalt anzusehen.",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1687,7 +1682,7 @@
|
|||||||
"item.edit.item-mapper.description": "Sammlungsadministratoren haben die Möglichkeit Ressourcen von einer Sammlung in eine andere zu spiegeln. Man kann nach Ressourcen in anderen Sammlungen suchen und diese spiegeln oder sich eine Liste der gespiegelten Ressourcen anzeigen lassen.",
|
"item.edit.item-mapper.description": "Sammlungsadministratoren haben die Möglichkeit Ressourcen von einer Sammlung in eine andere zu spiegeln. Man kann nach Ressourcen in anderen Sammlungen suchen und diese spiegeln oder sich eine Liste der gespiegelten Ressourcen anzeigen lassen.",
|
||||||
|
|
||||||
// "item.edit.item-mapper.head": "Item Mapper - Map Item to Collections",
|
// "item.edit.item-mapper.head": "Item Mapper - Map Item to Collections",
|
||||||
"item.edit.item-mapper.head": "Ressourcen Spiegeln - Spiegelt eine Resource in andere Sammlungen",
|
"item.edit.item-mapper.head": "Ressourcen spiegeln - Spiegelt eine Ressource in andere Sammlungen",
|
||||||
|
|
||||||
// "item.edit.item-mapper.item": "Item: \"<b>{{name}}</b>\"",
|
// "item.edit.item-mapper.item": "Item: \"<b>{{name}}</b>\"",
|
||||||
"item.edit.item-mapper.item": "Ressource: \"<b>{{name}}</b>\"",
|
"item.edit.item-mapper.item": "Ressource: \"<b>{{name}}</b>\"",
|
||||||
@@ -1696,7 +1691,7 @@
|
|||||||
"item.edit.item-mapper.no-search": "Bitte geben Sie einen Suchbegriff ein",
|
"item.edit.item-mapper.no-search": "Bitte geben Sie einen Suchbegriff ein",
|
||||||
|
|
||||||
// "item.edit.item-mapper.notifications.add.error.content": "Errors occurred for mapping of item to {{amount}} collections.",
|
// "item.edit.item-mapper.notifications.add.error.content": "Errors occurred for mapping of item to {{amount}} collections.",
|
||||||
"item.edit.item-mapper.notifications.add.error.content": "Beim Spiegeln der Resource in {{amount}} Sammlung(en) ist ein Fehler aufgetreten.",
|
"item.edit.item-mapper.notifications.add.error.content": "Beim Spiegeln der Ressource in {{amount}} Sammlung(en) ist ein Fehler aufgetreten.",
|
||||||
|
|
||||||
// "item.edit.item-mapper.notifications.add.error.head": "Mapping errors",
|
// "item.edit.item-mapper.notifications.add.error.head": "Mapping errors",
|
||||||
"item.edit.item-mapper.notifications.add.error.head": "Fehler beim Spiegeln",
|
"item.edit.item-mapper.notifications.add.error.head": "Fehler beim Spiegeln",
|
||||||
@@ -1865,7 +1860,7 @@
|
|||||||
"item.edit.public.confirm": "Öffentlich machen",
|
"item.edit.public.confirm": "Öffentlich machen",
|
||||||
|
|
||||||
// "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": "Sind Sie sicher, dasss diese Ressource im Repositorium öffentlich gemacht werden soll?",
|
"item.edit.public.description": "Sind Sie sicher, dass diese Ressource im Repositorium öffentlich gemacht werden soll?",
|
||||||
|
|
||||||
// "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": "Ein Fehler ist aufgetreten, als die Ressource öffentlich gemacht werden sollte.",
|
"item.edit.public.error": "Ein Fehler ist aufgetreten, als die Ressource öffentlich gemacht werden sollte.",
|
||||||
@@ -2031,7 +2026,7 @@
|
|||||||
"item.edit.tabs.status.labels.lastModified": "Zuletzt geändert",
|
"item.edit.tabs.status.labels.lastModified": "Zuletzt geändert",
|
||||||
|
|
||||||
// "item.edit.tabs.status.title": "Item Edit - Status",
|
// "item.edit.tabs.status.title": "Item Edit - Status",
|
||||||
"item.edit.tabs.status.title": "Ressource Bearbeiten - Status",
|
"item.edit.tabs.status.title": "Ressource bearbeiten - Status",
|
||||||
|
|
||||||
// "item.edit.tabs.versionhistory.head": "Version History",
|
// "item.edit.tabs.versionhistory.head": "Version History",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -2046,7 +2041,7 @@
|
|||||||
"item.edit.tabs.versionhistory.under-construction": "Editing or adding new versions is not yet possible in this user interface.",
|
"item.edit.tabs.versionhistory.under-construction": "Editing or adding new versions is not yet possible in this user interface.",
|
||||||
|
|
||||||
// "item.edit.tabs.view.head": "View Item",
|
// "item.edit.tabs.view.head": "View Item",
|
||||||
"item.edit.tabs.view.head": "Ressource Ansehen",
|
"item.edit.tabs.view.head": "Ressource ansehen",
|
||||||
|
|
||||||
// "item.edit.tabs.view.title": "Item Edit - View",
|
// "item.edit.tabs.view.title": "Item Edit - View",
|
||||||
"item.edit.tabs.view.title": "Ressource bearbeiten - Ansicht",
|
"item.edit.tabs.view.title": "Ressource bearbeiten - Ansicht",
|
||||||
@@ -2275,59 +2270,59 @@
|
|||||||
|
|
||||||
// "loading.bitstream": "Loading bitstream...",
|
// "loading.bitstream": "Loading bitstream...",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"loading.bitstream": "Loading bitstream...",
|
"loading.bitstream": "Lade Bitstream...",
|
||||||
|
|
||||||
// "loading.bitstreams": "Loading bitstreams...",
|
// "loading.bitstreams": "Loading bitstreams...",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
"loading.bitstreams": "Loading bitstreams...",
|
"loading.bitstreams": "Lade Bitstreams...",
|
||||||
|
|
||||||
// "loading.browse-by": "Loading items...",
|
// "loading.browse-by": "Loading items...",
|
||||||
"loading.browse-by": "Ressourcen am laden...",
|
"loading.browse-by": "Lade Ressourcen...",
|
||||||
|
|
||||||
// "loading.browse-by-page": "Loading page...",
|
// "loading.browse-by-page": "Loading page...",
|
||||||
"loading.browse-by-page": "Seite am Laden...",
|
"loading.browse-by-page": "Lade Seite...",
|
||||||
|
|
||||||
// "loading.collection": "Loading collection...",
|
// "loading.collection": "Loading collection...",
|
||||||
"loading.collection": "Sammlung am Laden...",
|
"loading.collection": "Lade Sammlung...",
|
||||||
|
|
||||||
// "loading.collections": "Loading collections...",
|
// "loading.collections": "Loading collections...",
|
||||||
"loading.collections": "Sammlungen am Laden...",
|
"loading.collections": "Lade Sammlungen...",
|
||||||
|
|
||||||
// "loading.content-source": "Loading content source...",
|
// "loading.content-source": "Loading content source...",
|
||||||
"loading.content-source": "Laden der Bezugsquelle...",
|
"loading.content-source": "Lade Bezugsquelle...",
|
||||||
|
|
||||||
// "loading.community": "Loading community...",
|
// "loading.community": "Loading community...",
|
||||||
"loading.community": "Bereich am Laden...",
|
"loading.community": "Lade Bereich...",
|
||||||
|
|
||||||
// "loading.default": "Loading...",
|
// "loading.default": "Loading...",
|
||||||
"loading.default": "Am Laden...",
|
"loading.default": "Lade...",
|
||||||
|
|
||||||
// "loading.item": "Loading item...",
|
// "loading.item": "Loading item...",
|
||||||
"loading.item": "Ressource am Laden...",
|
"loading.item": "Lade Ressource...",
|
||||||
|
|
||||||
// "loading.items": "Loading items...",
|
// "loading.items": "Loading items...",
|
||||||
"loading.items": "Ressourcen am Laden...",
|
"loading.items": "Lade Ressourcen...",
|
||||||
|
|
||||||
// "loading.mydspace-results": "Loading items...",
|
// "loading.mydspace-results": "Loading items...",
|
||||||
"loading.mydspace-results": "Ressourcen am Laden...",
|
"loading.mydspace-results": "Lade Ressourcen...",
|
||||||
|
|
||||||
// "loading.objects": "Loading...",
|
// "loading.objects": "Loading...",
|
||||||
"loading.objects": "Am Laden...",
|
"loading.objects": "Lade...",
|
||||||
|
|
||||||
// "loading.recent-submissions": "Loading recent submissions...",
|
// "loading.recent-submissions": "Loading recent submissions...",
|
||||||
"loading.recent-submissions": "Aktuellste Veröffentlichungen am Laden...",
|
"loading.recent-submissions": "Lade neueste Veröffentlichungen...",
|
||||||
|
|
||||||
// "loading.search-results": "Loading search results...",
|
// "loading.search-results": "Loading search results...",
|
||||||
"loading.search-results": "Suchergebnisse am Laden...",
|
"loading.search-results": "Lade Suchergebnisse...",
|
||||||
|
|
||||||
// "loading.sub-collections": "Loading sub-collections...",
|
// "loading.sub-collections": "Loading sub-collections...",
|
||||||
"loading.sub-collections": "Untersammlungen am Laden...",
|
"loading.sub-collections": "Lade Untersammlungen...",
|
||||||
|
|
||||||
// "loading.sub-communities": "Loading sub-communities...",
|
// "loading.sub-communities": "Loading sub-communities...",
|
||||||
"loading.sub-communities": "Teilbereiche am Laden...",
|
"loading.sub-communities": "Lade Teilbereiche...",
|
||||||
|
|
||||||
// "loading.top-level-communities": "Loading top-level communities...",
|
// "loading.top-level-communities": "Loading top-level communities...",
|
||||||
"loading.top-level-communities": "Hauptbereiche am Laden...",
|
"loading.top-level-communities": "Lade Hauptbereiche...",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -2338,30 +2333,28 @@
|
|||||||
"login.form.forgot-password": "Haben Sie Ihr Passwort vergessen?",
|
"login.form.forgot-password": "Haben Sie Ihr Passwort vergessen?",
|
||||||
|
|
||||||
// "login.form.header": "Please log in to DSpace",
|
// "login.form.header": "Please log in to DSpace",
|
||||||
"login.form.header": "Bitte loggen Sie sich ein.",
|
"login.form.header": "Bitte melden Sie sich an.",
|
||||||
|
|
||||||
// "login.form.new-user": "New user? Click here to register.",
|
// "login.form.new-user": "New user? Click here to register.",
|
||||||
"login.form.new-user": "Neu hier? Klicken Sie hier, um sich zu registrieren.",
|
"login.form.new-user": "Neu hier? Klicken Sie hier, um sich zu registrieren.",
|
||||||
|
|
||||||
// "login.form.or-divider": "or",
|
// "login.form.or-divider": "or",
|
||||||
// TODO New key - Add a translation
|
"login.form.or-divider": "oder",
|
||||||
"login.form.or-divider": "or",
|
|
||||||
|
|
||||||
// "login.form.password": "Password",
|
// "login.form.password": "Password",
|
||||||
"login.form.password": "Passwort",
|
"login.form.password": "Passwort",
|
||||||
|
|
||||||
// "login.form.shibboleth": "Log in with Shibboleth",
|
// "login.form.shibboleth": "Log in with Shibboleth",
|
||||||
// TODO New key - Add a translation
|
"login.form.shibboleth": "Anmeldung mit Shibboleth",
|
||||||
"login.form.shibboleth": "Log in with Shibboleth",
|
|
||||||
|
|
||||||
// "login.form.submit": "Log in",
|
// "login.form.submit": "Log in",
|
||||||
"login.form.submit": "Einloggen",
|
"login.form.submit": "Anmelden",
|
||||||
|
|
||||||
// "login.title": "Login",
|
// "login.title": "Login",
|
||||||
"login.title": "Einloggen",
|
"login.title": "Anmelden",
|
||||||
|
|
||||||
// "login.breadcrumbs": "Login",
|
// "login.breadcrumbs": "Login",
|
||||||
"login.breadcrumbs": "Einloggen",
|
"login.breadcrumbs": "Anmelden",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -2513,7 +2506,7 @@
|
|||||||
"menu.section.icon.statistics_task": "Menübereich Statistikaufgaben",
|
"menu.section.icon.statistics_task": "Menübereich Statistikaufgaben",
|
||||||
|
|
||||||
// "menu.section.icon.unpin": "Unpin sidebar",
|
// "menu.section.icon.unpin": "Unpin sidebar",
|
||||||
"menu.section.icon.unpin": "Seitenbereich Loslösen",
|
"menu.section.icon.unpin": "Seitenbereich loslösen",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -2727,17 +2720,16 @@
|
|||||||
"nav.language": "Sprachumschalter",
|
"nav.language": "Sprachumschalter",
|
||||||
|
|
||||||
// "nav.login": "Log In",
|
// "nav.login": "Log In",
|
||||||
"nav.login": "Einloggen",
|
"nav.login": "Anmelden",
|
||||||
|
|
||||||
// "nav.logout": "Log Out",
|
// "nav.logout": "Log Out",
|
||||||
"nav.logout": "Ausloggen",
|
"nav.logout": "Abmelden",
|
||||||
|
|
||||||
// "nav.mydspace": "MyDSpace",
|
// "nav.mydspace": "MyDSpace",
|
||||||
"nav.mydspace": "Mein DSpace",
|
"nav.mydspace": "Mein DSpace",
|
||||||
|
|
||||||
// "nav.profile": "Profile",
|
// "nav.profile": "Profile",
|
||||||
// TODO New key - Add a translation
|
"nav.profile": "Profil",
|
||||||
"nav.profile": "Profile",
|
|
||||||
|
|
||||||
// "nav.search": "Search",
|
// "nav.search": "Search",
|
||||||
"nav.search": "Suche",
|
"nav.search": "Suche",
|
||||||
@@ -2847,28 +2839,22 @@
|
|||||||
"profile.head": "Update Profile",
|
"profile.head": "Update Profile",
|
||||||
|
|
||||||
// "profile.metadata.form.error.firstname.required": "First Name is required",
|
// "profile.metadata.form.error.firstname.required": "First Name is required",
|
||||||
// TODO New key - Add a translation
|
"profile.metadata.form.error.firstname.required": "Vorname muss angegeben werden",
|
||||||
"profile.metadata.form.error.firstname.required": "First Name is required",
|
|
||||||
|
|
||||||
// "profile.metadata.form.error.lastname.required": "Last Name is required",
|
// "profile.metadata.form.error.lastname.required": "Last Name is required",
|
||||||
// TODO New key - Add a translation
|
"profile.metadata.form.error.lastname.required": "Nachname muss angegeben werden",
|
||||||
"profile.metadata.form.error.lastname.required": "Last Name is required",
|
|
||||||
|
|
||||||
// "profile.metadata.form.label.email": "Email Address",
|
// "profile.metadata.form.label.email": "Email Address",
|
||||||
// TODO New key - Add a translation
|
"profile.metadata.form.label.email": "E-Mail-Adresse",
|
||||||
"profile.metadata.form.label.email": "Email Address",
|
|
||||||
|
|
||||||
// "profile.metadata.form.label.firstname": "First Name",
|
// "profile.metadata.form.label.firstname": "First Name",
|
||||||
// TODO New key - Add a translation
|
"profile.metadata.form.label.firstname": "Vorname",
|
||||||
"profile.metadata.form.label.firstname": "First Name",
|
|
||||||
|
|
||||||
// "profile.metadata.form.label.language": "Language",
|
// "profile.metadata.form.label.language": "Language",
|
||||||
// TODO New key - Add a translation
|
"profile.metadata.form.label.language": "Sprache",
|
||||||
"profile.metadata.form.label.language": "Language",
|
|
||||||
|
|
||||||
// "profile.metadata.form.label.lastname": "Last Name",
|
// "profile.metadata.form.label.lastname": "Last Name",
|
||||||
// TODO New key - Add a translation
|
"profile.metadata.form.label.lastname": "Nachname",
|
||||||
"profile.metadata.form.label.lastname": "Last Name",
|
|
||||||
|
|
||||||
// "profile.metadata.form.label.phone": "Contact Telephone",
|
// "profile.metadata.form.label.phone": "Contact Telephone",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -2903,8 +2889,7 @@
|
|||||||
"profile.security.form.info": "Optionally, you can 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.",
|
"profile.security.form.info": "Optionally, you can 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.",
|
||||||
|
|
||||||
// "profile.security.form.label.password": "Password",
|
// "profile.security.form.label.password": "Password",
|
||||||
// TODO New key - Add a translation
|
"profile.security.form.label.password": "Passwort",
|
||||||
"profile.security.form.label.password": "Password",
|
|
||||||
|
|
||||||
// "profile.security.form.label.passwordrepeat": "Retype to confirm",
|
// "profile.security.form.label.passwordrepeat": "Retype to confirm",
|
||||||
// TODO New key - Add a translation
|
// TODO New key - Add a translation
|
||||||
@@ -3095,8 +3080,7 @@
|
|||||||
"search.filters.applied.f.birthDate.min": "Anfang Geburtsdatum",
|
"search.filters.applied.f.birthDate.min": "Anfang Geburtsdatum",
|
||||||
|
|
||||||
// "search.filters.applied.f.withdrawn": "Withdrawn",
|
// "search.filters.applied.f.withdrawn": "Withdrawn",
|
||||||
// TODO New key - Add a translation
|
"search.filters.applied.f.withdrawn": "Zurückgezogen",
|
||||||
"search.filters.applied.f.withdrawn": "Withdrawn",
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -3156,8 +3140,7 @@
|
|||||||
"search.filters.filter.discoverable.head": "Private",
|
"search.filters.filter.discoverable.head": "Private",
|
||||||
|
|
||||||
// "search.filters.filter.withdrawn.head": "Withdrawn",
|
// "search.filters.filter.withdrawn.head": "Withdrawn",
|
||||||
// TODO New key - Add a translation
|
"search.filters.filter.withdrawn.head": "Zurückgezogen",
|
||||||
"search.filters.filter.withdrawn.head": "Withdrawn",
|
|
||||||
|
|
||||||
// "search.filters.filter.entityType.head": "Item Type",
|
// "search.filters.filter.entityType.head": "Item Type",
|
||||||
"search.filters.filter.entityType.head": "Art der Ressource",
|
"search.filters.filter.entityType.head": "Art der Ressource",
|
||||||
@@ -3255,28 +3238,22 @@
|
|||||||
"search.filters.entityType.OrgUnit": "Organizational Unit",
|
"search.filters.entityType.OrgUnit": "Organizational Unit",
|
||||||
|
|
||||||
// "search.filters.has_content_in_original_bundle.true": "Yes",
|
// "search.filters.has_content_in_original_bundle.true": "Yes",
|
||||||
// TODO New key - Add a translation
|
"search.filters.has_content_in_original_bundle.true": "Ja",
|
||||||
"search.filters.has_content_in_original_bundle.true": "Yes",
|
|
||||||
|
|
||||||
// "search.filters.has_content_in_original_bundle.false": "No",
|
// "search.filters.has_content_in_original_bundle.false": "No",
|
||||||
// TODO New key - Add a translation
|
"search.filters.has_content_in_original_bundle.false": "Nein",
|
||||||
"search.filters.has_content_in_original_bundle.false": "No",
|
|
||||||
|
|
||||||
// "search.filters.discoverable.true": "No",
|
// "search.filters.discoverable.true": "No",
|
||||||
// TODO New key - Add a translation
|
"search.filters.discoverable.true": "Nein",
|
||||||
"search.filters.discoverable.true": "No",
|
|
||||||
|
|
||||||
// "search.filters.discoverable.false": "Yes",
|
// "search.filters.discoverable.false": "Yes",
|
||||||
// TODO New key - Add a translation
|
"search.filters.discoverable.false": "Ja",
|
||||||
"search.filters.discoverable.false": "Yes",
|
|
||||||
|
|
||||||
// "search.filters.withdrawn.true": "Yes",
|
// "search.filters.withdrawn.true": "Yes",
|
||||||
// TODO New key - Add a translation
|
"search.filters.withdrawn.true": "Ja",
|
||||||
"search.filters.withdrawn.true": "Yes",
|
|
||||||
|
|
||||||
// "search.filters.withdrawn.false": "No",
|
// "search.filters.withdrawn.false": "No",
|
||||||
// TODO New key - Add a translation
|
"search.filters.withdrawn.false": "Nein",
|
||||||
"search.filters.withdrawn.false": "No",
|
|
||||||
|
|
||||||
|
|
||||||
// "search.filters.head": "Filters",
|
// "search.filters.head": "Filters",
|
||||||
@@ -3603,7 +3580,7 @@
|
|||||||
"submission.sections.general.collection": "Sammlung",
|
"submission.sections.general.collection": "Sammlung",
|
||||||
|
|
||||||
// "submission.sections.general.deposit_error_notice": "There was an issue when submitting the item, please try again later.",
|
// "submission.sections.general.deposit_error_notice": "There was an issue when submitting the item, please try again later.",
|
||||||
"submission.sections.general.deposit_error_notice": "Beim Einreichen der Ressoruce ist ein Fehler aufgetreten. Bitte versuchen Sie es später noch einmal.",
|
"submission.sections.general.deposit_error_notice": "Beim Einreichen der Ressource ist ein Fehler aufgetreten. Bitte versuchen Sie es später noch einmal.",
|
||||||
|
|
||||||
// "submission.sections.general.deposit_success_notice": "Submission deposited successfully.",
|
// "submission.sections.general.deposit_success_notice": "Submission deposited successfully.",
|
||||||
"submission.sections.general.deposit_success_notice": "Veröffentlichung erfolgreich eingereicht",
|
"submission.sections.general.deposit_success_notice": "Veröffentlichung erfolgreich eingereicht",
|
||||||
@@ -3721,7 +3698,7 @@
|
|||||||
"submission.sections.upload.no-entry": "Kein Eintrag",
|
"submission.sections.upload.no-entry": "Kein Eintrag",
|
||||||
|
|
||||||
// "submission.sections.upload.no-file-uploaded": "No file uploaded yet.",
|
// "submission.sections.upload.no-file-uploaded": "No file uploaded yet.",
|
||||||
"submission.sections.upload.no-file-uploaded": "Es wurde noch keine Datei hochgeladen",
|
"submission.sections.upload.no-file-uploaded": "Es wurde noch keine Datei hochgeladen.",
|
||||||
|
|
||||||
// "submission.sections.upload.save-metadata": "Save metadata",
|
// "submission.sections.upload.save-metadata": "Save metadata",
|
||||||
"submission.sections.upload.save-metadata": "Metadaten speichern",
|
"submission.sections.upload.save-metadata": "Metadaten speichern",
|
||||||
@@ -3746,7 +3723,7 @@
|
|||||||
"submission.workflow.generic.delete": "Löschen",
|
"submission.workflow.generic.delete": "Löschen",
|
||||||
|
|
||||||
// "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": "If you would to discard this item, select \"Delete\". You will then be asked to confirm it.",
|
||||||
"submission.workflow.generic.delete-help": "Wenn Sie die Ressource verwerfen möchten, Wählen Sie \"Löschen\". Sie werden dies noch einmal gefragt, um die Aktion zu bestätigen.",
|
"submission.workflow.generic.delete-help": "Wenn Sie die Ressource verwerfen möchten, wählen Sie \"Löschen\". Sie werden dies noch einmal gefragt, um die Aktion zu bestätigen.",
|
||||||
|
|
||||||
// "submission.workflow.generic.edit": "Edit",
|
// "submission.workflow.generic.edit": "Edit",
|
||||||
"submission.workflow.generic.edit": "Bearbeiten",
|
"submission.workflow.generic.edit": "Bearbeiten",
|
||||||
@@ -3766,7 +3743,7 @@
|
|||||||
"submission.workflow.tasks.claimed.approve": "Zustimmen",
|
"submission.workflow.tasks.claimed.approve": "Zustimmen",
|
||||||
|
|
||||||
// "submission.workflow.tasks.claimed.approve_help": "If you have reviewed the item and it is suitable for inclusion in the collection, select \"Approve\".",
|
// "submission.workflow.tasks.claimed.approve_help": "If you have reviewed the item and it is suitable for inclusion in the collection, select \"Approve\".",
|
||||||
"submission.workflow.tasks.claimed.approve_help": "Wenn Sie die Ressource begutachtet und die Aufnahme in die Sammlung befürworten, wählen Sie \"Zustimmen\".",
|
"submission.workflow.tasks.claimed.approve_help": "Wenn Sie die Ressource begutachtet haben und die Aufnahme in die Sammlung befürworten, wählen Sie \"Zustimmen\".",
|
||||||
|
|
||||||
// "submission.workflow.tasks.claimed.edit": "Edit",
|
// "submission.workflow.tasks.claimed.edit": "Edit",
|
||||||
"submission.workflow.tasks.claimed.edit": "Bearbeiten",
|
"submission.workflow.tasks.claimed.edit": "Bearbeiten",
|
||||||
@@ -3781,7 +3758,7 @@
|
|||||||
"submission.workflow.tasks.claimed.reject.reason.placeholder": "Beschreiben Sie den Grund für die Ablehnung",
|
"submission.workflow.tasks.claimed.reject.reason.placeholder": "Beschreiben Sie den Grund für die Ablehnung",
|
||||||
|
|
||||||
// "submission.workflow.tasks.claimed.reject.reason.submit": "Reject item",
|
// "submission.workflow.tasks.claimed.reject.reason.submit": "Reject item",
|
||||||
"submission.workflow.tasks.claimed.reject.reason.submit": "Ressource Ablehnen",
|
"submission.workflow.tasks.claimed.reject.reason.submit": "Ressource ablehnen",
|
||||||
|
|
||||||
// "submission.workflow.tasks.claimed.reject.reason.title": "Reason",
|
// "submission.workflow.tasks.claimed.reject.reason.title": "Reason",
|
||||||
"submission.workflow.tasks.claimed.reject.reason.title": "Grund",
|
"submission.workflow.tasks.claimed.reject.reason.title": "Grund",
|
||||||
@@ -3790,7 +3767,7 @@
|
|||||||
"submission.workflow.tasks.claimed.reject.submit": "Ablehnen",
|
"submission.workflow.tasks.claimed.reject.submit": "Ablehnen",
|
||||||
|
|
||||||
// "submission.workflow.tasks.claimed.reject_help": "If you have reviewed the item and found it is <strong>not</strong> suitable for inclusion in the collection, select \"Reject\". You will then be asked to enter a message indicating why the item is unsuitable, and whether the submitter should change something and resubmit.",
|
// "submission.workflow.tasks.claimed.reject_help": "If you have reviewed the item and found it is <strong>not</strong> suitable for inclusion in the collection, select \"Reject\". You will then be asked to enter a message indicating why the item is unsuitable, and whether the submitter should change something and resubmit.",
|
||||||
"submission.workflow.tasks.claimed.reject_help": "Wenn Sie die Ressource begutachte und als <strong>ungeeignet</strong> für die Aufnahme in die Sammlung befunden haben, wählen Sie \"Ablehnen\". Sie haben dann die Möglichkeit dem/der Einreichenden, den Grund für die Ablehnung zu erklären und ob es eine Möglichkeit gibt, durch entsprechenden Änderungen die Ressource erneut einzureichen.",
|
"submission.workflow.tasks.claimed.reject_help": "Wenn Sie die Ressource begutachtet und als <strong>ungeeignet</strong> für die Aufnahme in die Sammlung befunden haben, wählen Sie \"Ablehnen\". Sie haben dann die Möglichkeit dem/der Einreichenden, den Grund für die Ablehnung zu erklären und ob es eine Möglichkeit gibt, durch entsprechenden Änderungen die Ressource erneut einzureichen.",
|
||||||
|
|
||||||
// "submission.workflow.tasks.claimed.return": "Return to pool",
|
// "submission.workflow.tasks.claimed.return": "Return to pool",
|
||||||
"submission.workflow.tasks.claimed.return": "Zurück in den gemeinsamen Aufgabenbereich",
|
"submission.workflow.tasks.claimed.return": "Zurück in den gemeinsamen Aufgabenbereich",
|
||||||
@@ -3855,7 +3832,7 @@
|
|||||||
"uploader.processing": "Bearbeitung läuft",
|
"uploader.processing": "Bearbeitung läuft",
|
||||||
|
|
||||||
// "uploader.queue-length": "Queue length",
|
// "uploader.queue-length": "Queue length",
|
||||||
"uploader.queue-length": "Länge der Warteschleife",
|
"uploader.queue-length": "Länge der Warteschlange",
|
||||||
|
|
||||||
// "virtual-metadata.delete-item.info": "Select the types for which you want to save the virtual metadata as real metadata",
|
// "virtual-metadata.delete-item.info": "Select the types for which you want to save the virtual metadata as real metadata",
|
||||||
"virtual-metadata.delete-item.info": "Wählen Sie die Typen für die Sie die virtuellen Metadaten als reelle Metadaten speichern wollen",
|
"virtual-metadata.delete-item.info": "Wählen Sie die Typen für die Sie die virtuellen Metadaten als reelle Metadaten speichern wollen",
|
||||||
|
4030
src/assets/i18n/hu.json5
Normal file
4030
src/assets/i18n/hu.json5
Normal file
File diff suppressed because it is too large
Load Diff
@@ -57,7 +57,6 @@
|
|||||||
"admin.registries.bitstream-formats.edit.extensions.label": "Faila paplašinājums",
|
"admin.registries.bitstream-formats.edit.extensions.label": "Faila paplašinājums",
|
||||||
|
|
||||||
// "admin.registries.bitstream-formats.edit.extensions.placeholder": "Enter a file extension without the dot",
|
// "admin.registries.bitstream-formats.edit.extensions.placeholder": "Enter a file extension without the dot",
|
||||||
// TODO Source message changed - Revise the translation
|
|
||||||
"admin.registries.bitstream-formats.edit.extensions.placeholder": "Ievadiet faila paplašinājumu bez punkta",
|
"admin.registries.bitstream-formats.edit.extensions.placeholder": "Ievadiet faila paplašinājumu bez punkta",
|
||||||
|
|
||||||
// "admin.registries.bitstream-formats.edit.failure.content": "An error occurred while editing the bitstream format.",
|
// "admin.registries.bitstream-formats.edit.failure.content": "An error occurred while editing the bitstream format.",
|
||||||
@@ -262,8 +261,7 @@
|
|||||||
"admin.access-control.epeople.search.head": "Meklēt",
|
"admin.access-control.epeople.search.head": "Meklēt",
|
||||||
|
|
||||||
// "admin.access-control.epeople.button.see-all": "Browse All",
|
// "admin.access-control.epeople.button.see-all": "Browse All",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.epeople.button.see-all": "Skatīt visus",
|
||||||
"admin.access-control.epeople.button.see-all": "Browse All",
|
|
||||||
|
|
||||||
// "admin.access-control.epeople.search.scope.metadata": "Metadata",
|
// "admin.access-control.epeople.search.scope.metadata": "Metadata",
|
||||||
"admin.access-control.epeople.search.scope.metadata": "Metadati",
|
"admin.access-control.epeople.search.scope.metadata": "Metadati",
|
||||||
@@ -284,19 +282,16 @@
|
|||||||
"admin.access-control.epeople.table.name": "Lietotājs",
|
"admin.access-control.epeople.table.name": "Lietotājs",
|
||||||
|
|
||||||
// "admin.access-control.epeople.table.email": "E-mail (exact)",
|
// "admin.access-control.epeople.table.email": "E-mail (exact)",
|
||||||
// TODO Source message changed - Revise the translation
|
"admin.access-control.epeople.table.email": "E-pasts (precīzs)",
|
||||||
"admin.access-control.epeople.table.email": "E-pasts",
|
|
||||||
|
|
||||||
// "admin.access-control.epeople.table.edit": "Edit",
|
// "admin.access-control.epeople.table.edit": "Edit",
|
||||||
"admin.access-control.epeople.table.edit": "Rediģēt",
|
"admin.access-control.epeople.table.edit": "Rediģēt",
|
||||||
|
|
||||||
// "admin.access-control.epeople.table.edit.buttons.edit": "Edit \"{{name}}\"",
|
// "admin.access-control.epeople.table.edit.buttons.edit": "Edit \"{{name}}\"",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.epeople.table.edit.buttons.edit": "Rediģēt \"{{name}}\"",
|
||||||
"admin.access-control.epeople.table.edit.buttons.edit": "Edit \"{{name}}\"",
|
|
||||||
|
|
||||||
// "admin.access-control.epeople.table.edit.buttons.remove": "Delete \"{{name}}\"",
|
// "admin.access-control.epeople.table.edit.buttons.remove": "Delete \"{{name}}\"",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.epeople.table.edit.buttons.remove": "Dzēst \"{{name}}\"",
|
||||||
"admin.access-control.epeople.table.edit.buttons.remove": "Delete \"{{name}}\"",
|
|
||||||
|
|
||||||
// "admin.access-control.epeople.no-items": "No EPeople to show.",
|
// "admin.access-control.epeople.no-items": "No EPeople to show.",
|
||||||
"admin.access-control.epeople.no-items": "Nav pieejamas EPersonas.",
|
"admin.access-control.epeople.no-items": "Nav pieejamas EPersonas.",
|
||||||
@@ -344,24 +339,19 @@
|
|||||||
"admin.access-control.epeople.form.notification.edited.failure": "Neizdevās rediģēt EPerosnu \"{{name}}\"",
|
"admin.access-control.epeople.form.notification.edited.failure": "Neizdevās rediģēt EPerosnu \"{{name}}\"",
|
||||||
|
|
||||||
// "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "Member of these groups:",
|
// "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "Member of these groups:",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.epeople.form.groupsEPersonIsMemberOf": "Grupas lietotāji:",
|
||||||
"admin.access-control.epeople.form.groupsEPersonIsMemberOf": "Member of these groups:",
|
|
||||||
|
|
||||||
// "admin.access-control.epeople.form.table.id": "ID",
|
// "admin.access-control.epeople.form.table.id": "ID",
|
||||||
// TODO New key - Add a translation
|
|
||||||
"admin.access-control.epeople.form.table.id": "ID",
|
"admin.access-control.epeople.form.table.id": "ID",
|
||||||
|
|
||||||
// "admin.access-control.epeople.form.table.name": "Name",
|
// "admin.access-control.epeople.form.table.name": "Name",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.epeople.form.table.name": "Vārds",
|
||||||
"admin.access-control.epeople.form.table.name": "Name",
|
|
||||||
|
|
||||||
// "admin.access-control.epeople.form.memberOfNoGroups": "This EPerson is not a member of any groups",
|
// "admin.access-control.epeople.form.memberOfNoGroups": "This EPerson is not a member of any groups",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.epeople.form.memberOfNoGroups": "EPersona nepieder nevienai grupai",
|
||||||
"admin.access-control.epeople.form.memberOfNoGroups": "This EPerson is not a member of any groups",
|
|
||||||
|
|
||||||
// "admin.access-control.epeople.form.goToGroups": "Add to groups",
|
// "admin.access-control.epeople.form.goToGroups": "Add to groups",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.epeople.form.goToGroups": "Pievienot grupām",
|
||||||
"admin.access-control.epeople.form.goToGroups": "Add to groups",
|
|
||||||
|
|
||||||
// "admin.access-control.epeople.notification.deleted.failure": "Failed to delete EPerson: \"{{name}}\"",
|
// "admin.access-control.epeople.notification.deleted.failure": "Failed to delete EPerson: \"{{name}}\"",
|
||||||
"admin.access-control.epeople.notification.deleted.failure": "Neizdevās dzēst EPersonu: \"{{name}}\"",
|
"admin.access-control.epeople.notification.deleted.failure": "Neizdevās dzēst EPersonu: \"{{name}}\"",
|
||||||
@@ -372,253 +362,191 @@
|
|||||||
|
|
||||||
|
|
||||||
// "admin.access-control.groups.title": "DSpace Angular :: Groups",
|
// "admin.access-control.groups.title": "DSpace Angular :: Groups",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.title": "DSpace Angular :: Grupas",
|
||||||
"admin.access-control.groups.title": "DSpace Angular :: Groups",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.head": "Groups",
|
// "admin.access-control.groups.head": "Groups",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.head": "Grupas",
|
||||||
"admin.access-control.groups.head": "Groups",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.button.add": "Add group",
|
// "admin.access-control.groups.button.add": "Add group",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.button.add": "Pievienot grupu",
|
||||||
"admin.access-control.groups.button.add": "Add group",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.search.head": "Search groups",
|
// "admin.access-control.groups.search.head": "Search groups",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.search.head": "Meklēt grupas",
|
||||||
"admin.access-control.groups.search.head": "Search groups",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.button.see-all": "Browse all",
|
// "admin.access-control.groups.button.see-all": "Browse all",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.button.see-all": "Skatīt visas",
|
||||||
"admin.access-control.groups.button.see-all": "Browse all",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.search.button": "Search",
|
// "admin.access-control.groups.search.button": "Search",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.search.button": "Meklēt",
|
||||||
"admin.access-control.groups.search.button": "Search",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.table.id": "ID",
|
// "admin.access-control.groups.table.id": "ID",
|
||||||
// TODO New key - Add a translation
|
|
||||||
"admin.access-control.groups.table.id": "ID",
|
"admin.access-control.groups.table.id": "ID",
|
||||||
|
|
||||||
// "admin.access-control.groups.table.name": "Name",
|
// "admin.access-control.groups.table.name": "Name",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.table.name": "Vārds",
|
||||||
"admin.access-control.groups.table.name": "Name",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.table.members": "Members",
|
// "admin.access-control.groups.table.members": "Members",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.table.members": "Lietotāji",
|
||||||
"admin.access-control.groups.table.members": "Members",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.table.comcol": "Community / Collection",
|
// "admin.access-control.groups.table.comcol": "Community / Collection",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.table.comcol": "Kategorija / Kolekcija",
|
||||||
"admin.access-control.groups.table.comcol": "Community / Collection",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.table.edit": "Edit",
|
// "admin.access-control.groups.table.edit": "Edit",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.table.edit": "Rediģēt",
|
||||||
"admin.access-control.groups.table.edit": "Edit",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.table.edit.buttons.edit": "Edit \"{{name}}\"",
|
// "admin.access-control.groups.table.edit.buttons.edit": "Edit \"{{name}}\"",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.table.edit.buttons.edit": "Rediģēt \"{{name}}\"",
|
||||||
"admin.access-control.groups.table.edit.buttons.edit": "Edit \"{{name}}\"",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.table.edit.buttons.remove": "Delete \"{{name}}\"",
|
// "admin.access-control.groups.table.edit.buttons.remove": "Delete \"{{name}}\"",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.table.edit.buttons.remove": "Dzēst \"{{name}}\"",
|
||||||
"admin.access-control.groups.table.edit.buttons.remove": "Delete \"{{name}}\"",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.no-items": "No groups found with this in their name or this as UUID",
|
// "admin.access-control.groups.no-items": "No groups found with this in their name or this as UUID",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.no-items": "Netika atrasta grupa ar šādu nosaukumu vai identifikatoru",
|
||||||
"admin.access-control.groups.no-items": "No groups found with this in their name or this as UUID",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.notification.deleted.success": "Successfully deleted group \"{{name}}\"",
|
// "admin.access-control.groups.notification.deleted.success": "Successfully deleted group \"{{name}}\"",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.notification.deleted.success": "Veiksmīgi dzēsta grupa \"{{name}}\"",
|
||||||
"admin.access-control.groups.notification.deleted.success": "Successfully deleted group \"{{name}}\"",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.notification.deleted.failure": "Failed to delete group \"{{name}}\"",
|
// "admin.access-control.groups.notification.deleted.failure": "Failed to delete group \"{{name}}\"",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.notification.deleted.failure": "Neizdevās dzēst grupu \"{{name}}\"",
|
||||||
"admin.access-control.groups.notification.deleted.failure": "Failed to delete group \"{{name}}\"",
|
|
||||||
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.head.create": "Create group",
|
// "admin.access-control.groups.form.head.create": "Create group",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.head.create": "Izveidot grupu",
|
||||||
"admin.access-control.groups.form.head.create": "Create group",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.head.edit": "Edit group",
|
// "admin.access-control.groups.form.head.edit": "Edit group",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.head.edit": "Rediģēt grupu",
|
||||||
"admin.access-control.groups.form.head.edit": "Edit group",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.groupName": "Group name",
|
// "admin.access-control.groups.form.groupName": "Group name",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.groupName": "Grupas nosaukums",
|
||||||
"admin.access-control.groups.form.groupName": "Group name",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.groupDescription": "Description",
|
// "admin.access-control.groups.form.groupDescription": "Description",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.groupDescription": "Apraksts",
|
||||||
"admin.access-control.groups.form.groupDescription": "Description",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.notification.created.success": "Successfully created Group \"{{name}}\"",
|
// "admin.access-control.groups.form.notification.created.success": "Successfully created Group \"{{name}}\"",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.notification.created.success": "Izveidota grupa \"{{name}}\"",
|
||||||
"admin.access-control.groups.form.notification.created.success": "Successfully created Group \"{{name}}\"",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.notification.created.failure": "Failed to create Group \"{{name}}\"",
|
// "admin.access-control.groups.form.notification.created.failure": "Failed to create Group \"{{name}}\"",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.notification.created.failure": "Neizdevās izveidot grupu \"{{name}}\"",
|
||||||
"admin.access-control.groups.form.notification.created.failure": "Failed to create Group \"{{name}}\"",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.notification.created.failure.groupNameInUse": "Failed to create Group with name: \"{{name}}\", make sure the name is not already in use.",
|
// "admin.access-control.groups.form.notification.created.failure.groupNameInUse": "Failed to create Group with name: \"{{name}}\", make sure the name is not already in use.",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.notification.created.failure.groupNameInUse": "Neizdevās izveidot grupu ar nosaukumu: \"{{name}}\", pārliecinies vai grupa ar šādu nosaukumu jau netiek izmantota.",
|
||||||
"admin.access-control.groups.form.notification.created.failure.groupNameInUse": "Failed to create Group with name: \"{{name}}\", make sure the name is not already in use.",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.members-list.head": "EPeople",
|
// "admin.access-control.groups.form.members-list.head": "EPeople",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.members-list.head": "EPersona",
|
||||||
"admin.access-control.groups.form.members-list.head": "EPeople",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.members-list.search.head": "Add EPeople",
|
// "admin.access-control.groups.form.members-list.search.head": "Add EPeople",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.members-list.search.head": "Pievienot EPersonu",
|
||||||
"admin.access-control.groups.form.members-list.search.head": "Add EPeople",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.members-list.button.see-all": "Browse All",
|
// "admin.access-control.groups.form.members-list.button.see-all": "Browse All",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.members-list.button.see-all": "Skatīt visus",
|
||||||
"admin.access-control.groups.form.members-list.button.see-all": "Browse All",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.members-list.headMembers": "Current Members",
|
// "admin.access-control.groups.form.members-list.headMembers": "Current Members",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.members-list.headMembers": "Pašreizējie lietotāji",
|
||||||
"admin.access-control.groups.form.members-list.headMembers": "Current Members",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.members-list.search.scope.metadata": "Metadata",
|
// "admin.access-control.groups.form.members-list.search.scope.metadata": "Metadata",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.members-list.search.scope.metadata": "Metadats",
|
||||||
"admin.access-control.groups.form.members-list.search.scope.metadata": "Metadata",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.members-list.search.scope.email": "E-mail (exact)",
|
// "admin.access-control.groups.form.members-list.search.scope.email": "E-mail (exact)",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.members-list.search.scope.email": "E-pasts (precīzi)",
|
||||||
"admin.access-control.groups.form.members-list.search.scope.email": "E-mail (exact)",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.members-list.search.button": "Search",
|
// "admin.access-control.groups.form.members-list.search.button": "Search",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.members-list.search.button": "Meklēt",
|
||||||
"admin.access-control.groups.form.members-list.search.button": "Search",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.members-list.table.id": "ID",
|
// "admin.access-control.groups.form.members-list.table.id": "ID",
|
||||||
// TODO New key - Add a translation
|
|
||||||
"admin.access-control.groups.form.members-list.table.id": "ID",
|
"admin.access-control.groups.form.members-list.table.id": "ID",
|
||||||
|
|
||||||
// "admin.access-control.groups.form.members-list.table.name": "Name",
|
// "admin.access-control.groups.form.members-list.table.name": "Name",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.members-list.table.name": "Nosaukums",
|
||||||
"admin.access-control.groups.form.members-list.table.name": "Name",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.members-list.table.edit": "Remove / Add",
|
// "admin.access-control.groups.form.members-list.table.edit": "Remove / Add",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.members-list.table.edit": "Noņemt / Pievienot",
|
||||||
"admin.access-control.groups.form.members-list.table.edit": "Remove / Add",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.members-list.table.edit.buttons.remove": "Remove member with name \"{{name}}\"",
|
// "admin.access-control.groups.form.members-list.table.edit.buttons.remove": "Remove member with name \"{{name}}\"",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.members-list.table.edit.buttons.remove": "Noņemt lietotāju ar vārdu \"{{name}}\"",
|
||||||
"admin.access-control.groups.form.members-list.table.edit.buttons.remove": "Remove member with name \"{{name}}\"",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.members-list.notification.success.addMember": "Successfully added member: \"{{name}}\"",
|
// "admin.access-control.groups.form.members-list.notification.success.addMember": "Successfully added member: \"{{name}}\"",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.members-list.notification.success.addMember": "Veiksmīgi pievienots lietotājs: \"{{name}}\"",
|
||||||
"admin.access-control.groups.form.members-list.notification.success.addMember": "Successfully added member: \"{{name}}\"",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.members-list.notification.failure.addMember": "Failed to add member: \"{{name}}\"",
|
// "admin.access-control.groups.form.members-list.notification.failure.addMember": "Failed to add member: \"{{name}}\"",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.members-list.notification.failure.addMember": "Neizdevās pievienot lietotāju: \"{{name}}\"",
|
||||||
"admin.access-control.groups.form.members-list.notification.failure.addMember": "Failed to add member: \"{{name}}\"",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.members-list.notification.success.deleteMember": "Successfully deleted member: \"{{name}}\"",
|
// "admin.access-control.groups.form.members-list.notification.success.deleteMember": "Successfully deleted member: \"{{name}}\"",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.members-list.notification.success.deleteMember": "Veiksmīgi dzēsts lietotājs: \"{{name}}\"",
|
||||||
"admin.access-control.groups.form.members-list.notification.success.deleteMember": "Successfully deleted member: \"{{name}}\"",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.members-list.notification.failure.deleteMember": "Failed to delete member: \"{{name}}\"",
|
// "admin.access-control.groups.form.members-list.notification.failure.deleteMember": "Failed to delete member: \"{{name}}\"",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.members-list.notification.failure.deleteMember": "Neizdevās dzēst lietotāju: \"{{name}}\"",
|
||||||
"admin.access-control.groups.form.members-list.notification.failure.deleteMember": "Failed to delete member: \"{{name}}\"",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.members-list.table.edit.buttons.add": "Add member with name \"{{name}}\"",
|
// "admin.access-control.groups.form.members-list.table.edit.buttons.add": "Add member with name \"{{name}}\"",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.members-list.table.edit.buttons.add": "Pievienot lietotāju ar vārdu \"{{name}}\"",
|
||||||
"admin.access-control.groups.form.members-list.table.edit.buttons.add": "Add member with name \"{{name}}\"",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.members-list.notification.failure.noActiveGroup": "No current active group, submit a name first.",
|
// "admin.access-control.groups.form.members-list.notification.failure.noActiveGroup": "No current active group, submit a name first.",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.members-list.notification.failure.noActiveGroup": "Pašlaik nav aktīvu grupu, iesniegt sākumā vārdu.",
|
||||||
"admin.access-control.groups.form.members-list.notification.failure.noActiveGroup": "No current active group, submit a name first.",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.members-list.no-members-yet": "No members in group yet, search and add.",
|
// "admin.access-control.groups.form.members-list.no-members-yet": "No members in group yet, search and add.",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.members-list.no-members-yet": "Grupā nav lietotāju, atrast un pievienot.",
|
||||||
"admin.access-control.groups.form.members-list.no-members-yet": "No members in group yet, search and add.",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.members-list.no-items": "No EPeople found in that search",
|
// "admin.access-control.groups.form.members-list.no-items": "No EPeople found in that search",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.members-list.no-items": "Netika atrasta neviena EPersona",
|
||||||
"admin.access-control.groups.form.members-list.no-items": "No EPeople found in that search",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.subgroups-list.head": "Groups",
|
// "admin.access-control.groups.form.subgroups-list.head": "Groups",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.subgroups-list.head": "Grupas",
|
||||||
"admin.access-control.groups.form.subgroups-list.head": "Groups",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.subgroups-list.search.head": "Add Subgroup",
|
// "admin.access-control.groups.form.subgroups-list.search.head": "Add Subgroup",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.subgroups-list.search.head": "Pievienot apakšgrupu",
|
||||||
"admin.access-control.groups.form.subgroups-list.search.head": "Add Subgroup",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.subgroups-list.button.see-all": "Browse All",
|
// "admin.access-control.groups.form.subgroups-list.button.see-all": "Browse All",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.subgroups-list.button.see-all": "Skatīt visus",
|
||||||
"admin.access-control.groups.form.subgroups-list.button.see-all": "Browse All",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.subgroups-list.headSubgroups": "Current Subgroups",
|
// "admin.access-control.groups.form.subgroups-list.headSubgroups": "Current Subgroups",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.subgroups-list.headSubgroups": "Pašreizējās apakšgrupas",
|
||||||
"admin.access-control.groups.form.subgroups-list.headSubgroups": "Current Subgroups",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.subgroups-list.search.button": "Search",
|
// "admin.access-control.groups.form.subgroups-list.search.button": "Search",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.subgroups-list.search.button": "Meklēt",
|
||||||
"admin.access-control.groups.form.subgroups-list.search.button": "Search",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.subgroups-list.table.id": "ID",
|
// "admin.access-control.groups.form.subgroups-list.table.id": "ID",
|
||||||
// TODO New key - Add a translation
|
|
||||||
"admin.access-control.groups.form.subgroups-list.table.id": "ID",
|
"admin.access-control.groups.form.subgroups-list.table.id": "ID",
|
||||||
|
|
||||||
// "admin.access-control.groups.form.subgroups-list.table.name": "Name",
|
// "admin.access-control.groups.form.subgroups-list.table.name": "Name",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.subgroups-list.table.name": "Vārds",
|
||||||
"admin.access-control.groups.form.subgroups-list.table.name": "Name",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.subgroups-list.table.edit": "Remove / Add",
|
// "admin.access-control.groups.form.subgroups-list.table.edit": "Remove / Add",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.subgroups-list.table.edit": "Noņemt / Pievienot",
|
||||||
"admin.access-control.groups.form.subgroups-list.table.edit": "Remove / Add",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.subgroups-list.table.edit.buttons.remove": "Remove subgroup with name \"{{name}}\"",
|
// "admin.access-control.groups.form.subgroups-list.table.edit.buttons.remove": "Remove subgroup with name \"{{name}}\"",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.subgroups-list.table.edit.buttons.remove": "Noņemt apakšgrupu ar nosaukumu \"{{name}}\"",
|
||||||
"admin.access-control.groups.form.subgroups-list.table.edit.buttons.remove": "Remove subgroup with name \"{{name}}\"",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.subgroups-list.table.edit.buttons.add": "Add subgroup with name \"{{name}}\"",
|
// "admin.access-control.groups.form.subgroups-list.table.edit.buttons.add": "Add subgroup with name \"{{name}}\"",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.subgroups-list.table.edit.buttons.add": "Pievienot apakšgrupu ar nosaukumu \"{{name}}\"",
|
||||||
"admin.access-control.groups.form.subgroups-list.table.edit.buttons.add": "Add subgroup with name \"{{name}}\"",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.subgroups-list.table.edit.currentGroup": "Current group",
|
// "admin.access-control.groups.form.subgroups-list.table.edit.currentGroup": "Current group",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.subgroups-list.table.edit.currentGroup": "Pašreizējā grupa",
|
||||||
"admin.access-control.groups.form.subgroups-list.table.edit.currentGroup": "Current group",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.subgroups-list.notification.success.addSubgroup": "Successfully added subgroup: \"{{name}}\"",
|
// "admin.access-control.groups.form.subgroups-list.notification.success.addSubgroup": "Successfully added subgroup: \"{{name}}\"",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.subgroups-list.notification.success.addSubgroup": "Veiksmīgi pievienota apakšgrupa: \"{{name}}\"",
|
||||||
"admin.access-control.groups.form.subgroups-list.notification.success.addSubgroup": "Successfully added subgroup: \"{{name}}\"",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.subgroups-list.notification.failure.addSubgroup": "Failed to add subgroup: \"{{name}}\"",
|
// "admin.access-control.groups.form.subgroups-list.notification.failure.addSubgroup": "Failed to add subgroup: \"{{name}}\"",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.subgroups-list.notification.failure.addSubgroup": "Neizdevās pievienot apakšgrupu: \"{{name}}\"",
|
||||||
"admin.access-control.groups.form.subgroups-list.notification.failure.addSubgroup": "Failed to add subgroup: \"{{name}}\"",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.subgroups-list.notification.success.deleteSubgroup": "Successfully deleted subgroup: \"{{name}}\"",
|
// "admin.access-control.groups.form.subgroups-list.notification.success.deleteSubgroup": "Successfully deleted subgroup: \"{{name}}\"",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.subgroups-list.notification.success.deleteSubgroup": "Veiksmīgi dzēsta apakšgrupa: \"{{name}}\"",
|
||||||
"admin.access-control.groups.form.subgroups-list.notification.success.deleteSubgroup": "Successfully deleted subgroup: \"{{name}}\"",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.subgroups-list.notification.failure.deleteSubgroup": "Failed to delete subgroup: \"{{name}}\"",
|
// "admin.access-control.groups.form.subgroups-list.notification.failure.deleteSubgroup": "Failed to delete subgroup: \"{{name}}\"",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.subgroups-list.notification.failure.deleteSubgroup": "Neizdevās dzēst apakšgrupu: \"{{name}}\"",
|
||||||
"admin.access-control.groups.form.subgroups-list.notification.failure.deleteSubgroup": "Failed to delete subgroup: \"{{name}}\"",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.subgroups-list.notification.failure.noActiveGroup": "No current active group, submit a name first.",
|
// "admin.access-control.groups.form.subgroups-list.notification.failure.noActiveGroup": "No current active group, submit a name first.",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.subgroups-list.notification.failure.noActiveGroup": "Pašlaik nav aktīvu grupu, iesniegt sākumā vārdu.",
|
||||||
"admin.access-control.groups.form.subgroups-list.notification.failure.noActiveGroup": "No current active group, submit a name first.",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.subgroups-list.notification.failure.subgroupToAddIsActiveGroup": "This is the current group, can't be added.",
|
// "admin.access-control.groups.form.subgroups-list.notification.failure.subgroupToAddIsActiveGroup": "This is the current group, can't be added.",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.subgroups-list.notification.failure.subgroupToAddIsActiveGroup": "Šī ir pašreizēja grupa, nevar pievienot",
|
||||||
"admin.access-control.groups.form.subgroups-list.notification.failure.subgroupToAddIsActiveGroup": "This is the current group, can't be added.",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.subgroups-list.no-items": "No groups found with this in their name or this as UUID",
|
// "admin.access-control.groups.form.subgroups-list.no-items": "No groups found with this in their name or this as UUID",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.subgroups-list.no-items": "Netika atrasta grupa ar šādu nosaukumu vai identifikatoru",
|
||||||
"admin.access-control.groups.form.subgroups-list.no-items": "No groups found with this in their name or this as UUID",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.subgroups-list.no-subgroups-yet": "No subgroups in group yet.",
|
// "admin.access-control.groups.form.subgroups-list.no-subgroups-yet": "No subgroups in group yet.",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.subgroups-list.no-subgroups-yet": "Grupā pašreiz nav apakšgrupu.",
|
||||||
"admin.access-control.groups.form.subgroups-list.no-subgroups-yet": "No subgroups in group yet.",
|
|
||||||
|
|
||||||
// "admin.access-control.groups.form.return": "Return to groups",
|
// "admin.access-control.groups.form.return": "Return to groups",
|
||||||
// TODO New key - Add a translation
|
"admin.access-control.groups.form.return": "Atgriezties pie grupām",
|
||||||
"admin.access-control.groups.form.return": "Return to groups",
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -662,6 +590,22 @@
|
|||||||
"admin.search.title": "Administratīvā Meklēšana",
|
"admin.search.title": "Administratīvā Meklēšana",
|
||||||
|
|
||||||
|
|
||||||
|
// "admin.workflow.breadcrumbs": "Administer Workflow",
|
||||||
|
"admin.workflow.breadcrumbs": "Administrēt darba plūsmu",
|
||||||
|
|
||||||
|
// "admin.workflow.title": "Administer Workflow",
|
||||||
|
"admin.workflow.title": "Administrēt darba plūsmu",
|
||||||
|
|
||||||
|
// "admin.workflow.item.workflow": "Workflow",
|
||||||
|
"admin.workflow.item.workflow": "Darba plūsma",
|
||||||
|
|
||||||
|
// "admin.workflow.item.delete": "Delete",
|
||||||
|
"admin.workflow.item.delete": "Dzēst",
|
||||||
|
|
||||||
|
// "admin.workflow.item.send-back": "Send back",
|
||||||
|
"admin.workflow.item.send-back": "Sūtīt atpakaļ",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// "auth.errors.invalid-user": "Invalid email address or password.",
|
// "auth.errors.invalid-user": "Invalid email address or password.",
|
||||||
"auth.errors.invalid-user": "Nepareizs e-pasta adrese vai parole.",
|
"auth.errors.invalid-user": "Nepareizs e-pasta adrese vai parole.",
|
||||||
@@ -672,72 +616,55 @@
|
|||||||
|
|
||||||
|
|
||||||
// "bitstream.edit.bitstream": "Bitstream: ",
|
// "bitstream.edit.bitstream": "Bitstream: ",
|
||||||
// TODO New key - Add a translation
|
"bitstream.edit.bitstream": "Bitu straume: ",
|
||||||
"bitstream.edit.bitstream": "Bitstream: ",
|
|
||||||
|
|
||||||
// "bitstream.edit.form.description.hint": "Optionally, provide a brief description of the file, for example \"<i>Main article</i>\" or \"<i>Experiment data readings</i>\".",
|
// "bitstream.edit.form.description.hint": "Optionally, provide a brief description of the file, for example \"<i>Main article</i>\" or \"<i>Experiment data readings</i>\".",
|
||||||
// TODO New key - Add a translation
|
"bitstream.edit.form.description.hint": "Pēc izvēles sniedziet īsu faila aprakstu, piemēram, \"<i>Galvanais raksts</i>\" vai \"<i>Eksperimenta datu nolasījumi</i>\".",
|
||||||
"bitstream.edit.form.description.hint": "Optionally, provide a brief description of the file, for example \"<i>Main article</i>\" or \"<i>Experiment data readings</i>\".",
|
|
||||||
|
|
||||||
// "bitstream.edit.form.description.label": "Description",
|
// "bitstream.edit.form.description.label": "Description",
|
||||||
// TODO New key - Add a translation
|
"bitstream.edit.form.description.label": "Apraksts",
|
||||||
"bitstream.edit.form.description.label": "Description",
|
|
||||||
|
|
||||||
// "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.",
|
||||||
// TODO New key - Add a translation
|
"bitstream.edit.form.embargo.hint": "Pirmā diena, no kuras atļauta pieeja. <b>Šai formai nevarēs mainīt datumu.</b> Lai uzstādītu embargo datumu šai bitu straumei, doties uz <i>Materiāla statuss</i>, noklikšķiniet uz <i>Autorizācijas...</i>, izveidot vai rediģēt bitu straumes <i>LASĪT</i> politiku, un uzstādīt <i>Sākuma datumu</i> kā vēlaties.",
|
||||||
"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.label": "Embargo until specific date",
|
// "bitstream.edit.form.embargo.label": "Embargo until specific date",
|
||||||
// TODO New key - Add a translation
|
"bitstream.edit.form.embargo.label": "Embargo līdz noteiktam datumam",
|
||||||
"bitstream.edit.form.embargo.label": "Embargo until specific date",
|
|
||||||
|
|
||||||
// "bitstream.edit.form.fileName.hint": "Change the filename for the bitstream. Note that this will change the display bitstream URL, but old links will still resolve as long as the sequence ID does not change.",
|
// "bitstream.edit.form.fileName.hint": "Change the filename for the bitstream. Note that this will change the display bitstream URL, but old links will still resolve as long as the sequence ID does not change.",
|
||||||
// TODO New key - Add a translation
|
"bitstream.edit.form.fileName.hint": "Mainīt faila nosaukumu bitu straumei. Ņemiet vērā, ka tas mainīs redzamo bitu straumes URL, bet vecās saites joprojām būš pieejamas, kamēr ID secība nemainīsies.",
|
||||||
"bitstream.edit.form.fileName.hint": "Change the filename for the bitstream. Note that this will change the display bitstream URL, but old links will still resolve as long as the sequence ID does not change.",
|
|
||||||
|
|
||||||
// "bitstream.edit.form.fileName.label": "Filename",
|
// "bitstream.edit.form.fileName.label": "Filename",
|
||||||
// TODO New key - Add a translation
|
"bitstream.edit.form.fileName.label": "Faila nosaukums",
|
||||||
"bitstream.edit.form.fileName.label": "Filename",
|
|
||||||
|
|
||||||
// "bitstream.edit.form.newFormat.label": "Describe new format",
|
// "bitstream.edit.form.newFormat.label": "Describe new format",
|
||||||
// TODO New key - Add a translation
|
"bitstream.edit.form.newFormat.label": "Aprakstīt jauno formātu",
|
||||||
"bitstream.edit.form.newFormat.label": "Describe new format",
|
|
||||||
|
|
||||||
// "bitstream.edit.form.newFormat.hint": "The application you used to create the file, and the version number (for example, \"<i>ACMESoft SuperApp version 1.5</i>\").",
|
// "bitstream.edit.form.newFormat.hint": "The application you used to create the file, and the version number (for example, \"<i>ACMESoft SuperApp version 1.5</i>\").",
|
||||||
// TODO New key - Add a translation
|
"bitstream.edit.form.newFormat.hint": "Lietojumprogramma, kuru izmantojāt faila izveidošanai, un versijas numurs (piemēram, \"<i> ACMESoft SuperApp versija 1.5 </i>\").",
|
||||||
"bitstream.edit.form.newFormat.hint": "The application you used to create the file, and the version number (for example, \"<i>ACMESoft SuperApp version 1.5</i>\").",
|
|
||||||
|
|
||||||
// "bitstream.edit.form.primaryBitstream.label": "Primary bitstream",
|
// "bitstream.edit.form.primaryBitstream.label": "Primary bitstream",
|
||||||
// TODO New key - Add a translation
|
"bitstream.edit.form.primaryBitstream.label": "Galvenā bitu straume",
|
||||||
"bitstream.edit.form.primaryBitstream.label": "Primary bitstream",
|
|
||||||
|
|
||||||
// "bitstream.edit.form.selectedFormat.hint": "If the format is not in the above list, <b>select \"format not in list\" above</b> and describe it under \"Describe new format\".",
|
// "bitstream.edit.form.selectedFormat.hint": "If the format is not in the above list, <b>select \"format not in list\" above</b> and describe it under \"Describe new format\".",
|
||||||
// TODO New key - Add a translation
|
"bitstream.edit.form.selectedFormat.hint": "Ja formāts nav iepriekš minētajā sarakstā, <b>atlasiet “formāts, kurš nav sarakstā” iepriekš </b> un aprakstiet to sadaļā “Aprakstīt jauno formātu”.",
|
||||||
"bitstream.edit.form.selectedFormat.hint": "If the format is not in the above list, <b>select \"format not in list\" above</b> and describe it under \"Describe new format\".",
|
|
||||||
|
|
||||||
// "bitstream.edit.form.selectedFormat.label": "Selected Format",
|
// "bitstream.edit.form.selectedFormat.label": "Selected Format",
|
||||||
// TODO New key - Add a translation
|
"bitstream.edit.form.selectedFormat.label": "Izvēlētais formāts",
|
||||||
"bitstream.edit.form.selectedFormat.label": "Selected Format",
|
|
||||||
|
|
||||||
// "bitstream.edit.form.selectedFormat.unknown": "Format not in list",
|
// "bitstream.edit.form.selectedFormat.unknown": "Format not in list",
|
||||||
// TODO New key - Add a translation
|
"bitstream.edit.form.selectedFormat.unknown": "Formāts, kurš nav sarakstā",
|
||||||
"bitstream.edit.form.selectedFormat.unknown": "Format not in list",
|
|
||||||
|
|
||||||
// "bitstream.edit.notifications.error.format.title": "An error occurred saving the bitstream's format",
|
// "bitstream.edit.notifications.error.format.title": "An error occurred saving the bitstream's format",
|
||||||
// TODO New key - Add a translation
|
"bitstream.edit.notifications.error.format.title": "Saglabājot bitu straumes formātu, radās kļūda",
|
||||||
"bitstream.edit.notifications.error.format.title": "An error occurred saving the bitstream's format",
|
|
||||||
|
|
||||||
// "bitstream.edit.notifications.saved.content": "Your changes to this bitstream were saved.",
|
// "bitstream.edit.notifications.saved.content": "Your changes to this bitstream were saved.",
|
||||||
// TODO New key - Add a translation
|
"bitstream.edit.notifications.saved.content": "Jūsu izmaiņas šajā bitu straumē tika saglabātas.",
|
||||||
"bitstream.edit.notifications.saved.content": "Your changes to this bitstream were saved.",
|
|
||||||
|
|
||||||
// "bitstream.edit.notifications.saved.title": "Bitstream saved",
|
// "bitstream.edit.notifications.saved.title": "Bitstream saved",
|
||||||
// TODO New key - Add a translation
|
"bitstream.edit.notifications.saved.title": "Bitu straume saglabāta",
|
||||||
"bitstream.edit.notifications.saved.title": "Bitstream saved",
|
|
||||||
|
|
||||||
// "bitstream.edit.title": "Edit bitstream",
|
// "bitstream.edit.title": "Edit bitstream",
|
||||||
// TODO New key - Add a translation
|
"bitstream.edit.title": "Rediģēt bitu straumi",
|
||||||
"bitstream.edit.title": "Edit bitstream",
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1279,8 +1206,7 @@
|
|||||||
|
|
||||||
|
|
||||||
// "error.bitstream": "Error fetching bitstream",
|
// "error.bitstream": "Error fetching bitstream",
|
||||||
// TODO New key - Add a translation
|
"error.bitstream": "Radās kļūda, saņemot bitu straumi",
|
||||||
"error.bitstream": "Error fetching bitstream",
|
|
||||||
|
|
||||||
// "error.browse-by": "Error fetching items",
|
// "error.browse-by": "Error fetching items",
|
||||||
"error.browse-by": "Materiālu ielasīšanas kļūda",
|
"error.browse-by": "Materiālu ielasīšanas kļūda",
|
||||||
@@ -1441,170 +1367,129 @@
|
|||||||
|
|
||||||
|
|
||||||
// "item.bitstreams.upload.bundle": "Bundle",
|
// "item.bitstreams.upload.bundle": "Bundle",
|
||||||
// TODO New key - Add a translation
|
"item.bitstreams.upload.bundle": "Kopiens",
|
||||||
"item.bitstreams.upload.bundle": "Bundle",
|
|
||||||
|
|
||||||
// "item.bitstreams.upload.bundle.placeholder": "Select a bundle",
|
// "item.bitstreams.upload.bundle.placeholder": "Select a bundle",
|
||||||
// TODO New key - Add a translation
|
"item.bitstreams.upload.bundle.placeholder": "Izvēlēties kopienu",
|
||||||
"item.bitstreams.upload.bundle.placeholder": "Select a bundle",
|
|
||||||
|
|
||||||
// "item.bitstreams.upload.bundle.new": "Create bundle",
|
// "item.bitstreams.upload.bundle.new": "Create bundle",
|
||||||
// TODO New key - Add a translation
|
"item.bitstreams.upload.bundle.new": "Izveidot kopienu",
|
||||||
"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
|
"item.bitstreams.upload.bundles.empty": "Materiālā nav neviena kopiena ko augšupielādēt bitu straumē.",
|
||||||
"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
|
"item.bitstreams.upload.cancel": "Atcelt",
|
||||||
"item.bitstreams.upload.cancel": "Cancel",
|
|
||||||
|
|
||||||
// "item.bitstreams.upload.drop-message": "Drop a file to upload",
|
// "item.bitstreams.upload.drop-message": "Drop a file to upload",
|
||||||
// TODO New key - Add a translation
|
"item.bitstreams.upload.drop-message": "Nomest failu augšupielādei",
|
||||||
"item.bitstreams.upload.drop-message": "Drop a file to upload",
|
|
||||||
|
|
||||||
// "item.bitstreams.upload.item": "Item: ",
|
// "item.bitstreams.upload.item": "Item: ",
|
||||||
// TODO New key - Add a translation
|
"item.bitstreams.upload.item": "Materiāls: ",
|
||||||
"item.bitstreams.upload.item": "Item: ",
|
|
||||||
|
|
||||||
// "item.bitstreams.upload.notifications.bundle.created.content": "Successfully created new bundle.",
|
// "item.bitstreams.upload.notifications.bundle.created.content": "Successfully created new bundle.",
|
||||||
// TODO New key - Add a translation
|
"item.bitstreams.upload.notifications.bundle.created.content": "Veiksmīgi izveidota kopiena.",
|
||||||
"item.bitstreams.upload.notifications.bundle.created.content": "Successfully created new bundle.",
|
|
||||||
|
|
||||||
// "item.bitstreams.upload.notifications.bundle.created.title": "Created bundle",
|
// "item.bitstreams.upload.notifications.bundle.created.title": "Created bundle",
|
||||||
// TODO New key - Add a translation
|
"item.bitstreams.upload.notifications.bundle.created.title": "Izveidot kopienu",
|
||||||
"item.bitstreams.upload.notifications.bundle.created.title": "Created bundle",
|
|
||||||
|
|
||||||
// "item.bitstreams.upload.notifications.upload.failed": "Upload failed. Please verify the content before retrying.",
|
// "item.bitstreams.upload.notifications.upload.failed": "Upload failed. Please verify the content before retrying.",
|
||||||
// TODO New key - Add a translation
|
"item.bitstreams.upload.notifications.upload.failed": "Augšupielāde neizdevās. Lūdzu pārbaudi saturu pirms mēģini vēlreiz.",
|
||||||
"item.bitstreams.upload.notifications.upload.failed": "Upload failed. Please verify the content before retrying.",
|
|
||||||
|
|
||||||
// "item.bitstreams.upload.title": "Upload bitstream",
|
// "item.bitstreams.upload.title": "Upload bitstream",
|
||||||
// TODO New key - Add a translation
|
"item.bitstreams.upload.title": "Augšupielādēt bitu straumi",
|
||||||
"item.bitstreams.upload.title": "Upload bitstream",
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// "item.edit.bitstreams.bundle.edit.buttons.upload": "Upload",
|
// "item.edit.bitstreams.bundle.edit.buttons.upload": "Upload",
|
||||||
// TODO New key - Add a translation
|
"item.edit.bitstreams.bundle.edit.buttons.upload": "Augšupielādēt",
|
||||||
"item.edit.bitstreams.bundle.edit.buttons.upload": "Upload",
|
|
||||||
|
|
||||||
// "item.edit.bitstreams.bundle.displaying": "Currently displaying {{ amount }} bitstreams of {{ total }}.",
|
// "item.edit.bitstreams.bundle.displaying": "Currently displaying {{ amount }} bitstreams of {{ total }}.",
|
||||||
// TODO New key - Add a translation
|
"item.edit.bitstreams.bundle.displaying": "Šobrīd rāda {{ amount }} bitu straumes no {{ total }}.",
|
||||||
"item.edit.bitstreams.bundle.displaying": "Currently displaying {{ amount }} bitstreams of {{ total }}.",
|
|
||||||
|
|
||||||
// "item.edit.bitstreams.bundle.load.all": "Load all ({{ total }})",
|
// "item.edit.bitstreams.bundle.load.all": "Load all ({{ total }})",
|
||||||
// TODO New key - Add a translation
|
"item.edit.bitstreams.bundle.load.all": "Ielādēt visus ({{ total }})",
|
||||||
"item.edit.bitstreams.bundle.load.all": "Load all ({{ total }})",
|
|
||||||
|
|
||||||
// "item.edit.bitstreams.bundle.load.more": "Load more",
|
// "item.edit.bitstreams.bundle.load.more": "Load more",
|
||||||
// TODO New key - Add a translation
|
"item.edit.bitstreams.bundle.load.more": "Ielādēt vēl",
|
||||||
"item.edit.bitstreams.bundle.load.more": "Load more",
|
|
||||||
|
|
||||||
// "item.edit.bitstreams.bundle.name": "BUNDLE: {{ name }}",
|
// "item.edit.bitstreams.bundle.name": "BUNDLE: {{ name }}",
|
||||||
// TODO New key - Add a translation
|
"item.edit.bitstreams.bundle.name": "KOPIENA: {{ name }}",
|
||||||
"item.edit.bitstreams.bundle.name": "BUNDLE: {{ name }}",
|
|
||||||
|
|
||||||
// "item.edit.bitstreams.discard-button": "Discard",
|
// "item.edit.bitstreams.discard-button": "Discard",
|
||||||
// TODO New key - Add a translation
|
"item.edit.bitstreams.discard-button": "Atsaukt",
|
||||||
"item.edit.bitstreams.discard-button": "Discard",
|
|
||||||
|
|
||||||
// "item.edit.bitstreams.edit.buttons.download": "Download",
|
// "item.edit.bitstreams.edit.buttons.download": "Download",
|
||||||
// TODO New key - Add a translation
|
"item.edit.bitstreams.edit.buttons.download": "Lejupielādēt",
|
||||||
"item.edit.bitstreams.edit.buttons.download": "Download",
|
|
||||||
|
|
||||||
// "item.edit.bitstreams.edit.buttons.drag": "Drag",
|
// "item.edit.bitstreams.edit.buttons.drag": "Drag",
|
||||||
// TODO New key - Add a translation
|
"item.edit.bitstreams.edit.buttons.drag": "Vilkt",
|
||||||
"item.edit.bitstreams.edit.buttons.drag": "Drag",
|
|
||||||
|
|
||||||
// "item.edit.bitstreams.edit.buttons.edit": "Edit",
|
// "item.edit.bitstreams.edit.buttons.edit": "Edit",
|
||||||
// TODO New key - Add a translation
|
"item.edit.bitstreams.edit.buttons.edit": "Rediģēt",
|
||||||
"item.edit.bitstreams.edit.buttons.edit": "Edit",
|
|
||||||
|
|
||||||
// "item.edit.bitstreams.edit.buttons.remove": "Remove",
|
// "item.edit.bitstreams.edit.buttons.remove": "Remove",
|
||||||
// TODO New key - Add a translation
|
"item.edit.bitstreams.edit.buttons.remove": "Noņemt",
|
||||||
"item.edit.bitstreams.edit.buttons.remove": "Remove",
|
|
||||||
|
|
||||||
// "item.edit.bitstreams.edit.buttons.undo": "Undo changes",
|
// "item.edit.bitstreams.edit.buttons.undo": "Undo changes",
|
||||||
// TODO New key - Add a translation
|
"item.edit.bitstreams.edit.buttons.undo": "Atlikt izmaiņas",
|
||||||
"item.edit.bitstreams.edit.buttons.undo": "Undo changes",
|
|
||||||
|
|
||||||
// "item.edit.bitstreams.empty": "This item doesn't contain any bitstreams. Click the upload button to create one.",
|
// "item.edit.bitstreams.empty": "This item doesn't contain any bitstreams. Click the upload button to create one.",
|
||||||
// TODO New key - Add a translation
|
"item.edit.bitstreams.empty": "Šis materiāls nesatur bitu straumi. Nospied augšupielādes pogu, lai izveidotu jaunu.",
|
||||||
"item.edit.bitstreams.empty": "This item doesn't contain any bitstreams. Click the upload button to create one.",
|
|
||||||
|
|
||||||
// "item.edit.bitstreams.headers.actions": "Actions",
|
// "item.edit.bitstreams.headers.actions": "Actions",
|
||||||
// TODO New key - Add a translation
|
"item.edit.bitstreams.headers.actions": "Darbības",
|
||||||
"item.edit.bitstreams.headers.actions": "Actions",
|
|
||||||
|
|
||||||
// "item.edit.bitstreams.headers.bundle": "Bundle",
|
// "item.edit.bitstreams.headers.bundle": "Bundle",
|
||||||
// TODO New key - Add a translation
|
"item.edit.bitstreams.headers.bundle": "Kopiena",
|
||||||
"item.edit.bitstreams.headers.bundle": "Bundle",
|
|
||||||
|
|
||||||
// "item.edit.bitstreams.headers.description": "Description",
|
// "item.edit.bitstreams.headers.description": "Description",
|
||||||
// TODO New key - Add a translation
|
"item.edit.bitstreams.headers.description": "Apraksts",
|
||||||
"item.edit.bitstreams.headers.description": "Description",
|
|
||||||
|
|
||||||
// "item.edit.bitstreams.headers.format": "Format",
|
// "item.edit.bitstreams.headers.format": "Format",
|
||||||
// TODO New key - Add a translation
|
"item.edit.bitstreams.headers.format": "Formāts",
|
||||||
"item.edit.bitstreams.headers.format": "Format",
|
|
||||||
|
|
||||||
// "item.edit.bitstreams.headers.name": "Name",
|
// "item.edit.bitstreams.headers.name": "Name",
|
||||||
// TODO New key - Add a translation
|
"item.edit.bitstreams.headers.name": "Nosaukums",
|
||||||
"item.edit.bitstreams.headers.name": "Name",
|
|
||||||
|
|
||||||
// "item.edit.bitstreams.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button",
|
// "item.edit.bitstreams.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button",
|
||||||
// TODO New key - Add a translation
|
"item.edit.bitstreams.notifications.discarded.content": "Jūsu veiktās izmaiņas tika atsaukt. Lai atjaunotu izmaiņas, noklikšķiniet uz pogas Atsaukt",
|
||||||
"item.edit.bitstreams.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button",
|
|
||||||
|
|
||||||
// "item.edit.bitstreams.notifications.discarded.title": "Changes discarded",
|
// "item.edit.bitstreams.notifications.discarded.title": "Changes discarded",
|
||||||
// TODO New key - Add a translation
|
"item.edit.bitstreams.notifications.discarded.title": "Izmaiņas atsauktas",
|
||||||
"item.edit.bitstreams.notifications.discarded.title": "Changes discarded",
|
|
||||||
|
|
||||||
// "item.edit.bitstreams.notifications.move.failed.title": "Error moving bitstreams",
|
// "item.edit.bitstreams.notifications.move.failed.title": "Error moving bitstreams",
|
||||||
// TODO New key - Add a translation
|
"item.edit.bitstreams.notifications.move.failed.title": "Radās kļūda pārvietojot bitu straumi",
|
||||||
"item.edit.bitstreams.notifications.move.failed.title": "Error moving bitstreams",
|
|
||||||
|
|
||||||
// "item.edit.bitstreams.notifications.move.saved.content": "Your move changes to this item's bitstreams and bundles have been saved.",
|
// "item.edit.bitstreams.notifications.move.saved.content": "Your move changes to this item's bitstreams and bundles have been saved.",
|
||||||
// TODO New key - Add a translation
|
"item.edit.bitstreams.notifications.move.saved.content": "Jūsu pārvietošanas izmaiņas materiāla bitu straumē un kopienā ir saglabātas.",
|
||||||
"item.edit.bitstreams.notifications.move.saved.content": "Your move changes to this item's bitstreams and bundles have been saved.",
|
|
||||||
|
|
||||||
// "item.edit.bitstreams.notifications.move.saved.title": "Move changes saved",
|
// "item.edit.bitstreams.notifications.move.saved.title": "Move changes saved",
|
||||||
// TODO New key - Add a translation
|
"item.edit.bitstreams.notifications.move.saved.title": "Pārvietošanas izmaiņas saglabātas",
|
||||||
"item.edit.bitstreams.notifications.move.saved.title": "Move changes saved",
|
|
||||||
|
|
||||||
// "item.edit.bitstreams.notifications.outdated.content": "The item you're currently working on has been changed by another user. Your current changes are discarded to prevent conflicts",
|
// "item.edit.bitstreams.notifications.outdated.content": "The item you're currently working on has been changed by another user. Your current changes are discarded to prevent conflicts",
|
||||||
// TODO New key - Add a translation
|
"item.edit.bitstreams.notifications.outdated.content": "Materiāls, kurā pašlaik strādājat, ir mainījis kāds cits lietotājs. Jūsu pašreizējās izmaiņas tiek atmestas, lai novērstu konfliktus",
|
||||||
"item.edit.bitstreams.notifications.outdated.content": "The item you're currently working on has been changed by another user. Your current changes are discarded to prevent conflicts",
|
|
||||||
|
|
||||||
// "item.edit.bitstreams.notifications.outdated.title": "Changes outdated",
|
// "item.edit.bitstreams.notifications.outdated.title": "Changes outdated",
|
||||||
// TODO New key - Add a translation
|
"item.edit.bitstreams.notifications.outdated.title": "Novecojušas izmaiņas",
|
||||||
"item.edit.bitstreams.notifications.outdated.title": "Changes outdated",
|
|
||||||
|
|
||||||
// "item.edit.bitstreams.notifications.remove.failed.title": "Error deleting bitstream",
|
// "item.edit.bitstreams.notifications.remove.failed.title": "Error deleting bitstream",
|
||||||
// TODO New key - Add a translation
|
"item.edit.bitstreams.notifications.remove.failed.title": "Radās kļūda dzēšot bitu straumi",
|
||||||
"item.edit.bitstreams.notifications.remove.failed.title": "Error deleting bitstream",
|
|
||||||
|
|
||||||
// "item.edit.bitstreams.notifications.remove.saved.content": "Your removal changes to this item's bitstreams have been saved.",
|
// "item.edit.bitstreams.notifications.remove.saved.content": "Your removal changes to this item's bitstreams have been saved.",
|
||||||
// TODO New key - Add a translation
|
"item.edit.bitstreams.notifications.remove.saved.content": "Jūsu materiāla bitu straumes izņemšanas izmaiņas ir saglabātas.",
|
||||||
"item.edit.bitstreams.notifications.remove.saved.content": "Your removal changes to this item's bitstreams have been saved.",
|
|
||||||
|
|
||||||
// "item.edit.bitstreams.notifications.remove.saved.title": "Removal changes saved",
|
// "item.edit.bitstreams.notifications.remove.saved.title": "Removal changes saved",
|
||||||
// TODO New key - Add a translation
|
"item.edit.bitstreams.notifications.remove.saved.title": "Izņemšanas izmaiņas ir saglabātas",
|
||||||
"item.edit.bitstreams.notifications.remove.saved.title": "Removal changes saved",
|
|
||||||
|
|
||||||
// "item.edit.bitstreams.reinstate-button": "Undo",
|
// "item.edit.bitstreams.reinstate-button": "Undo",
|
||||||
// TODO New key - Add a translation
|
"item.edit.bitstreams.reinstate-button": "Atlikt",
|
||||||
"item.edit.bitstreams.reinstate-button": "Undo",
|
|
||||||
|
|
||||||
// "item.edit.bitstreams.save-button": "Save",
|
// "item.edit.bitstreams.save-button": "Save",
|
||||||
// TODO New key - Add a translation
|
"item.edit.bitstreams.save-button": "Saglabāt",
|
||||||
"item.edit.bitstreams.save-button": "Save",
|
|
||||||
|
|
||||||
// "item.edit.bitstreams.upload-button": "Upload",
|
// "item.edit.bitstreams.upload-button": "Upload",
|
||||||
// TODO New key - Add a translation
|
"item.edit.bitstreams.upload-button": "Augšupielādēt",
|
||||||
"item.edit.bitstreams.upload-button": "Upload",
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1897,8 +1782,7 @@
|
|||||||
|
|
||||||
|
|
||||||
// "item.edit.tabs.bitstreams.head": "Bitstreams",
|
// "item.edit.tabs.bitstreams.head": "Bitstreams",
|
||||||
// TODO Source message changed - Revise the translation
|
"item.edit.tabs.bitstreams.head": "Bitu straume",
|
||||||
"item.edit.tabs.bitstreams.head": "Materiālu Bitstreams",
|
|
||||||
|
|
||||||
// "item.edit.tabs.bitstreams.title": "Item Edit - Bitstreams",
|
// "item.edit.tabs.bitstreams.title": "Item Edit - Bitstreams",
|
||||||
"item.edit.tabs.bitstreams.title": "Rediģēt Materiālu - Bitu straumes",
|
"item.edit.tabs.bitstreams.title": "Rediģēt Materiālu - Bitu straumes",
|
||||||
@@ -1910,15 +1794,13 @@
|
|||||||
"item.edit.tabs.curate.title": "Rediģēt Materiālu - Pārvaldība",
|
"item.edit.tabs.curate.title": "Rediģēt Materiālu - Pārvaldība",
|
||||||
|
|
||||||
// "item.edit.tabs.metadata.head": "Metadata",
|
// "item.edit.tabs.metadata.head": "Metadata",
|
||||||
// TODO Source message changed - Revise the translation
|
"item.edit.tabs.metadata.head": "Metadati",
|
||||||
"item.edit.tabs.metadata.head": "Materiāla Metadati",
|
|
||||||
|
|
||||||
// "item.edit.tabs.metadata.title": "Item Edit - Metadata",
|
// "item.edit.tabs.metadata.title": "Item Edit - Metadata",
|
||||||
"item.edit.tabs.metadata.title": "Rediģēt Materiālu - Metadati",
|
"item.edit.tabs.metadata.title": "Rediģēt Materiālu - Metadati",
|
||||||
|
|
||||||
// "item.edit.tabs.relationships.head": "Relationships",
|
// "item.edit.tabs.relationships.head": "Relationships",
|
||||||
// TODO Source message changed - Revise the translation
|
"item.edit.tabs.relationships.head": "Attiecības",
|
||||||
"item.edit.tabs.relationships.head": "Materiāla Attiecības",
|
|
||||||
|
|
||||||
// "item.edit.tabs.relationships.title": "Item Edit - Relationships",
|
// "item.edit.tabs.relationships.title": "Item Edit - Relationships",
|
||||||
"item.edit.tabs.relationships.title": "Rediģēt Materiālu - Attiecības",
|
"item.edit.tabs.relationships.title": "Rediģēt Materiālu - Attiecības",
|
||||||
@@ -1975,8 +1857,7 @@
|
|||||||
"item.edit.tabs.status.description": "Laipni lūdzam vienumu pārvaldības lapā. Šeit jūs varat materiālu izņemt, atjaunot, pārvietot vai izdzēst. Citās cilnēs varat arī atjaunināt vai pievienot jaunus metadatus / bitu straumes.",
|
"item.edit.tabs.status.description": "Laipni lūdzam vienumu pārvaldības lapā. Šeit jūs varat materiālu izņemt, atjaunot, pārvietot vai izdzēst. Citās cilnēs varat arī atjaunināt vai pievienot jaunus metadatus / bitu straumes.",
|
||||||
|
|
||||||
// "item.edit.tabs.status.head": "Status",
|
// "item.edit.tabs.status.head": "Status",
|
||||||
// TODO Source message changed - Revise the translation
|
"item.edit.tabs.status.head": "Status",
|
||||||
"item.edit.tabs.status.head": "Materiāla Status",
|
|
||||||
|
|
||||||
// "item.edit.tabs.status.labels.handle": "Handle",
|
// "item.edit.tabs.status.labels.handle": "Handle",
|
||||||
"item.edit.tabs.status.labels.handle": "Apstrāde",
|
"item.edit.tabs.status.labels.handle": "Apstrāde",
|
||||||
@@ -2111,7 +1992,6 @@
|
|||||||
"item.select.table.author": "Autors",
|
"item.select.table.author": "Autors",
|
||||||
|
|
||||||
// "item.select.table.collection": "Collection",
|
// "item.select.table.collection": "Collection",
|
||||||
// TODO Source message changed - Revise the translation
|
|
||||||
"item.select.table.collection": "Kolekcija",
|
"item.select.table.collection": "Kolekcija",
|
||||||
|
|
||||||
// "item.select.table.title": "Title",
|
// "item.select.table.title": "Title",
|
||||||
@@ -2222,12 +2102,10 @@
|
|||||||
|
|
||||||
|
|
||||||
// "loading.bitstream": "Loading bitstream...",
|
// "loading.bitstream": "Loading bitstream...",
|
||||||
// TODO New key - Add a translation
|
"loading.bitstream": "Notiek bitu straumes ielāde...",
|
||||||
"loading.bitstream": "Loading bitstream...",
|
|
||||||
|
|
||||||
// "loading.bitstreams": "Loading bitstreams...",
|
// "loading.bitstreams": "Loading bitstreams...",
|
||||||
// TODO New key - Add a translation
|
"loading.bitstreams": "Notiek bitu straumes ielāde...",
|
||||||
"loading.bitstreams": "Loading bitstreams...",
|
|
||||||
|
|
||||||
// "loading.browse-by": "Loading items...",
|
// "loading.browse-by": "Loading items...",
|
||||||
"loading.browse-by": "Notiek materiālu ielāde...",
|
"loading.browse-by": "Notiek materiālu ielāde...",
|
||||||
@@ -2342,18 +2220,10 @@
|
|||||||
// "menu.section.access_control_people": "People",
|
// "menu.section.access_control_people": "People",
|
||||||
"menu.section.access_control_people": "Personas",
|
"menu.section.access_control_people": "Personas",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// "menu.section.admin_search": "Admin Search",
|
|
||||||
"menu.section.admin_search": "Administratora Meklēšana",
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// "menu.section.browse_community": "This Community",
|
// "menu.section.browse_community": "This Community",
|
||||||
"menu.section.browse_community": "Šī kategorija",
|
"menu.section.browse_community": "Šī kategorija",
|
||||||
|
|
||||||
// "menu.section.browse_community_by_author": "By Author",
|
// "menu.section.browse_community_by_author": "By Author",
|
||||||
// TODO Source message changed - Revise the translation
|
|
||||||
"menu.section.browse_community_by_author": "Pēc Autora",
|
"menu.section.browse_community_by_author": "Pēc Autora",
|
||||||
|
|
||||||
// "menu.section.browse_community_by_issue_date": "By Issue Date",
|
// "menu.section.browse_community_by_issue_date": "By Issue Date",
|
||||||
@@ -2477,7 +2347,7 @@
|
|||||||
"menu.section.new": "Jauns",
|
"menu.section.new": "Jauns",
|
||||||
|
|
||||||
// "menu.section.new_collection": "Collection",
|
// "menu.section.new_collection": "Collection",
|
||||||
"menu.section.new_collection": "Kolkecija",
|
"menu.section.new_collection": "Kolekcija",
|
||||||
|
|
||||||
// "menu.section.new_community": "Community",
|
// "menu.section.new_community": "Community",
|
||||||
"menu.section.new_community": "Kategorija",
|
"menu.section.new_community": "Kategorija",
|
||||||
@@ -2498,6 +2368,10 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
"menu.section.processes": "Procesi",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// "menu.section.registries": "Registries",
|
// "menu.section.registries": "Registries",
|
||||||
"menu.section.registries": "Reģistri",
|
"menu.section.registries": "Reģistri",
|
||||||
|
|
||||||
@@ -2548,6 +2422,9 @@
|
|||||||
"menu.section.toggle.statistics_task": "Pārslēgt Statistikas Uzdevumu sadaļu",
|
"menu.section.toggle.statistics_task": "Pārslēgt Statistikas Uzdevumu sadaļu",
|
||||||
|
|
||||||
|
|
||||||
|
// "menu.section.workflow": "Administer workflow",
|
||||||
|
"menu.section.workflow": "Administrēt darba plūsmu",
|
||||||
|
|
||||||
|
|
||||||
// "mydspace.description": "",
|
// "mydspace.description": "",
|
||||||
"mydspace.description": "",
|
"mydspace.description": "",
|
||||||
@@ -3767,6 +3644,6 @@
|
|||||||
// "virtual-metadata.delete-relationship.modal-head": "Select the items for which you want to save the virtual metadata as real metadata",
|
// "virtual-metadata.delete-relationship.modal-head": "Select the items for which you want to save the virtual metadata as real metadata",
|
||||||
"virtual-metadata.delete-relationship.modal-head": "Izēlieties materiālus, kam vēlaties saglabāt virtuālos metadatus kā reālus metadatus",
|
"virtual-metadata.delete-relationship.modal-head": "Izēlieties materiālus, kam vēlaties saglabāt virtuālos metadatus kā reālus metadatus",
|
||||||
|
|
||||||
|
// "workflowAdmin.search.results.head": "Administer Workflow",
|
||||||
|
"workflowAdmin.search.results.head": "Administrēt darba plūsmu"
|
||||||
}
|
}
|
@@ -174,6 +174,10 @@ export const environment: GlobalConfig = {
|
|||||||
code: 'fi',
|
code: 'fi',
|
||||||
label: 'Suomi',
|
label: 'Suomi',
|
||||||
active: true,
|
active: true,
|
||||||
|
},{
|
||||||
|
code: 'hu',
|
||||||
|
label: 'magyar',
|
||||||
|
active: true,
|
||||||
}],
|
}],
|
||||||
// Browse-By Pages
|
// Browse-By Pages
|
||||||
browseBy: {
|
browseBy: {
|
||||||
|
Reference in New Issue
Block a user